Logging improvements to allow prettier displays in the server GUI.
[dcpomatic.git] / src / lib / data.cc
1 /*
2     Copyright (C) 2015 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "data.h"
21 #include "cross.h"
22 #include "exceptions.h"
23 #include <cstdio>
24
25 #include "i18n.h"
26
27 using boost::shared_array;
28
29 Data::Data ()
30         : _size (0)
31 {
32
33 }
34
35 Data::Data (int size)
36         : _data (new uint8_t[size])
37         , _size (size)
38 {
39
40 }
41
42 Data::Data (uint8_t const * data, int size)
43         : _data (new uint8_t[size])
44         , _size (size)
45 {
46         memcpy (_data.get(), data, size);
47 }
48
49 Data::Data (boost::filesystem::path file)
50 {
51         _size = boost::filesystem::file_size (file);
52         _data.reset (new uint8_t[_size]);
53
54         FILE* f = fopen_boost (file, "rb");
55         if (!f) {
56                 throw FileError (_("could not open file for reading"), file);
57         }
58
59         size_t const r = fread (_data.get(), 1, _size, f);
60         if (r != size_t (_size)) {
61                 fclose (f);
62                 throw FileError (_("could not read from file"), file);
63         }
64
65         fclose (f);
66 }
67
68 void
69 Data::write (boost::filesystem::path file) const
70 {
71         FILE* f = fopen_boost (file, "wb");
72         if (!f) {
73                 throw WriteFileError (file, errno);
74         }
75         size_t const r = fwrite (_data.get(), 1, _size, f);
76         if (r != size_t (_size)) {
77                 fclose (f);
78                 throw FileError ("could not write to file", file);
79         }
80         fclose (f);
81 }
82
83 void
84 Data::write_via_temp (boost::filesystem::path temp, boost::filesystem::path final) const
85 {
86         write (temp);
87         boost::filesystem::rename (temp, final);
88 }