Merge master
[libdcp.git] / src / mxf_asset.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 "asset.h"
25
26 namespace ASDCP {
27         class AESEncContext;
28 }
29
30 namespace libdcp
31 {
32
33 /** @brief Parent class for assets which have MXF files */      
34 class MXFAsset : public Asset
35 {
36 public:
37         /** Construct an MXFAsset.
38          *  @param directory Directory where MXF file is.
39          *  @param file_name Name of MXF file.
40          *  @param progress Signal to inform of progress.
41          *  @param fps Frames per second.
42          *  @param entry_point The entry point of this MXF; ie the first frame that should be used.
43          *  @param length Length in frames.
44          *  @param encrypted true if the MXF should be encrypted.
45          */
46         MXFAsset (
47                 std::string directory, std::string file_name, boost::signals2::signal<void (float)>* progress, int fps, int entry_point, int length, bool encrypted
48                 );
49
50         ~MXFAsset ();
51
52         virtual bool equals (boost::shared_ptr<const Asset> other, EqualityOptions opt, std::list<std::string>& notes) const;
53         
54         int length () const;
55         void add_typed_key_id (xmlpp::Element *) const;
56
57 protected:
58         virtual std::string key_type () const = 0;
59         
60         /** Fill in a ADSCP::WriteInfo struct.
61          *  @param w struct to fill in.
62          */
63         void fill_writer_info (ASDCP::WriterInfo* w) const;
64
65         /** Signal to emit to report progress */
66         boost::signals2::signal<void (float)>* _progress;
67         /** Frames per second */
68         int _fps;
69         int _entry_point;
70         /** Length in frames */
71         int _length;
72         bool _encrypted;
73         ASDCP::AESEncContext* _encryption_context;
74         std::string _key_value;
75         std::string _key_id;
76 };
77
78 }
79
80 #endif