Split up some files.
[libdcp.git] / src / picture_asset_writer.cc
1 /*
2     Copyright (C) 2012-2013 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 "AS_DCP.h"
21 #include "KM_fileio.h"
22 #include "picture_asset_writer.h"
23 #include "exceptions.h"
24 #include "picture_asset.h"
25
26 using std::istream;
27 using std::ostream;
28 using std::string;
29 using boost::shared_ptr;
30 using namespace libdcp;
31
32 FrameInfo::FrameInfo (istream& s)
33         : offset (0)
34         , size (0)
35 {
36         s >> offset >> size;
37
38         if (!s.good ()) {
39                 /* Make sure we zero these if something bad happened, otherwise
40                    the caller might try to alloc lots of RAM.
41                 */
42                 offset = size = 0;
43         }
44
45         s >> hash;
46 }
47
48 void
49 FrameInfo::write (ostream& s)
50 {
51         s << offset << " " << size << " " << hash;
52 }
53
54
55 PictureAssetWriter::PictureAssetWriter (PictureAsset* asset, bool overwrite)
56         : _asset (asset)
57         , _frames_written (0)
58         , _started (false)
59         , _finalized (false)
60         , _overwrite (overwrite)
61 {
62
63 }