Split EncodedData classes into their own file.
[dcpomatic.git] / src / lib / encoded_data.cc
1 /*
2     Copyright (C) 2012-2014 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 "encoded_data.h"
21 #include "cross.h"
22 #include "exceptions.h"
23 #include "film.h"
24
25 #include "i18n.h"
26
27 using boost::shared_ptr;
28
29 EncodedData::EncodedData (int s)
30         : _data (new uint8_t[s])
31         , _size (s)
32 {
33
34 }
35
36 EncodedData::EncodedData (boost::filesystem::path file)
37 {
38         _size = boost::filesystem::file_size (file);
39         _data = new uint8_t[_size];
40
41         FILE* f = fopen_boost (file, "rb");
42         if (!f) {
43                 throw FileError (_("could not open file for reading"), file);
44         }
45         
46         size_t const r = fread (_data, 1, _size, f);
47         if (r != size_t (_size)) {
48                 fclose (f);
49                 throw FileError (_("could not read encoded data"), file);
50         }
51                 
52         fclose (f);
53 }
54
55
56 EncodedData::~EncodedData ()
57 {
58         delete[] _data;
59 }
60
61 /** Write this data to a J2K file.
62  *  @param Film Film.
63  *  @param frame DCP frame index.
64  */
65 void
66 EncodedData::write (shared_ptr<const Film> film, int frame, Eyes eyes) const
67 {
68         boost::filesystem::path const tmp_j2c = film->j2c_path (frame, eyes, true);
69
70         FILE* f = fopen_boost (tmp_j2c, "wb");
71         
72         if (!f) {
73                 throw WriteFileError (tmp_j2c, errno);
74         }
75
76         fwrite (_data, 1, _size, f);
77         fclose (f);
78
79         boost::filesystem::path const real_j2c = film->j2c_path (frame, eyes, false);
80
81         /* Rename the file from foo.j2c.tmp to foo.j2c now that it is complete */
82         boost::filesystem::rename (tmp_j2c, real_j2c);
83 }
84
85 void
86 EncodedData::write_info (shared_ptr<const Film> film, int frame, Eyes eyes, dcp::FrameInfo fin) const
87 {
88         boost::filesystem::path const info = film->info_path (frame, eyes);
89         FILE* h = fopen_boost (info, "w");
90         fin.write (h);
91         fclose (h);
92 }
93
94 /** Send this data to a socket.
95  *  @param socket Socket
96  */
97 void
98 EncodedData::send (shared_ptr<Socket> socket)
99 {
100         socket->write (_size);
101         socket->write (_data, _size);
102 }
103
104 LocallyEncodedData::LocallyEncodedData (uint8_t* d, int s)
105         : EncodedData (s)
106 {
107         memcpy (_data, d, s);
108 }
109
110 /** @param s Size of data in bytes */
111 RemotelyEncodedData::RemotelyEncodedData (int s)
112         : EncodedData (s)
113 {
114
115 }