Rename EncodedData -> Data and trim it a bit.
[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
24 #include "i18n.h"
25
26 using boost::shared_array;
27
28 Data::Data (int size)
29         : _data (new uint8_t[size])
30         , _size (size)
31 {
32
33 }
34
35 Data::Data (uint8_t const * data, int size)
36         : _data (new uint8_t[size])
37         , _size (size)
38 {
39         memcpy (_data.get(), data, size);
40 }
41
42 Data::Data (boost::filesystem::path file)
43 {
44         _size = boost::filesystem::file_size (file);
45         _data.reset (new uint8_t[_size]);
46
47         FILE* f = fopen_boost (file, "rb");
48         if (!f) {
49                 throw FileError (_("could not open file for reading"), file);
50         }
51         
52         size_t const r = fread (_data.get(), 1, _size, f);
53         if (r != size_t (_size)) {
54                 fclose (f);
55                 throw FileError (_("could not read from file"), file);
56         }
57                 
58         fclose (f);
59 }
60
61 void
62 Data::write (boost::filesystem::path file) const
63 {
64         FILE* f = fopen_boost (file, "wb");
65         if (!f) {
66                 throw WriteFileError (file, errno);
67         }
68         size_t const r = fwrite (_data.get(), 1, _size, f);
69         if (r != size_t (_size)) {
70                 fclose (f);
71                 throw FileError ("could not write to file", file);
72         }
73         fclose (f);
74 }
75
76 void
77 Data::write_via_temp (boost::filesystem::path temp, boost::filesystem::path final) const
78 {
79         write (temp);
80         boost::filesystem::rename (temp, final);
81 }