No-op: whitespace.
[libdcp.git] / src / picture_asset_writer.h
1 /*
2     Copyright (C) 2012-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 #ifndef LIBDCP_PICTURE_ASSET_WRITER_H
21 #define LIBDCP_PICTURE_ASSET_WRITER_H
22
23 #include <stdint.h>
24 #include <string>
25 #include <fstream>
26 #include <boost/shared_ptr.hpp>
27 #include <boost/utility.hpp>
28 #include "metadata.h"
29 #include "types.h"
30
31 namespace libdcp {
32
33 class PictureAsset;
34
35 /** Information about a single frame (either a monoscopic frame or a left *or* right eye stereoscopic frame) */
36 struct FrameInfo
37 {
38         FrameInfo ()
39                 : offset (0)
40                 , size (0)
41         {}
42
43         FrameInfo (uint64_t o, uint64_t s, std::string h)
44                 : offset (o)
45                 , size (s)
46                 , hash (h)
47         {}
48
49         uint64_t offset;
50         uint64_t size;
51         std::string hash;
52 };
53
54 class PictureAssetWriter : public boost::noncopyable
55 {
56 public:
57         virtual ~PictureAssetWriter () {}
58         virtual FrameInfo write (uint8_t *, int) = 0;
59         virtual void finalize () = 0;
60         virtual void fake_write (int) = 0;
61
62 protected:
63         template <class P, class Q>
64         friend void start (PictureAssetWriter *, boost::shared_ptr<P>, Q *, uint8_t *, int);
65
66         PictureAssetWriter (PictureAsset *, bool);
67
68         PictureAsset* _asset;
69
70         /** Number of picture frames written to the asset so far.  For stereo assets
71          *  this will be incremented for each eye (i.e. there will be twice the number
72          *  of frames as in a mono asset).
73          */
74         int _frames_written;
75         bool _started;
76         /** true if finalize() has been called */
77         bool _finalized;
78         bool _overwrite;
79 };
80
81 }
82
83 #endif