Various work.
[libdcp.git] / src / mxf.h
1 /*
2     Copyright (C) 2012 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_MXF_ASSET_H
21 #define LIBDCP_MXF_ASSET_H
22
23 #include <boost/signals2.hpp>
24 #include "content.h"
25 #include "key.h"
26 #include "metadata.h"
27
28 namespace ASDCP {
29         class AESEncContext;
30         class AESDecContext;
31 }
32
33 namespace dcp
34 {
35
36 class MXFMetadata;      
37
38 /** @class MXF
39  *  @brief Parent class for classes which represent MXF files.
40  */
41 class MXF : public Content
42 {
43 public:
44         MXF (boost::filesystem::path file);
45         MXF (int edit_rate);
46         
47         ~MXF ();
48
49         virtual bool equals (boost::shared_ptr<const Content> other, EqualityOptions opt, boost::function<void (NoteType, std::string)> note) const;
50         virtual void write_to_cpl (xmlpp::Element *) const;
51         virtual std::string key_type () const = 0;
52         
53         /** Fill in a ADSCP::WriteInfo struct.
54          *  @param w struct to fill in.
55          */
56         void fill_writer_info (ASDCP::WriterInfo* w);
57
58         void set_progress (boost::signals2::signal<void (float)>* progress) {
59                 _progress = progress;
60         }
61
62         bool encrypted () const {
63                 return !_key_id.empty ();
64         }
65
66         void set_key_id (std::string i) {
67                 _key_id = i;
68         }
69
70         std::string key_id () const {
71                 return _key_id;
72         }
73         
74         void set_key (Key);
75
76         boost::optional<Key> key () const {
77                 return _key;
78         }
79
80         ASDCP::AESEncContext* encryption_context () const {
81                 return _encryption_context;
82         }
83
84         void set_metadata (MXFMetadata m) {
85                 _metadata = m;
86         }
87
88         MXFMetadata metadata () const {
89                 return _metadata;
90         }
91
92         /** Set whether or not the asset should be written in Interop mode.
93          *  @param i true to use interop.
94          */
95         void set_interop (bool i) {
96                 _interop = i;
97         }
98
99         bool interop () const {
100                 return _interop;
101         }
102
103 protected:
104         virtual std::string cpl_node_name () const = 0;
105         virtual std::pair<std::string, std::string> cpl_node_attribute () const {
106                 return std::make_pair ("", "");
107         }
108         
109         /** Signal to emit to report progress, or 0 */
110         boost::signals2::signal<void (float)>* _progress;
111         ASDCP::AESEncContext* _encryption_context;
112         ASDCP::AESDecContext* _decryption_context;
113         std::string _key_id;
114         boost::optional<Key> _key;
115         MXFMetadata _metadata;
116         bool _interop;
117 };
118
119 }
120
121 #endif