Remove slightly strange InteropSubtitleAsset constructor; add default one for SMPTESu...
[libdcp.git] / src / smpte_subtitle_asset.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 /** @file  src/smpte_subtitle_asset.h
21  *  @brief SMPTESubtitleAsset class.
22  */
23
24 #include "subtitle_asset.h"
25 #include "local_time.h"
26 #include "mxf.h"
27 #include <boost/filesystem.hpp>
28
29 namespace dcp {
30
31 class SMPTELoadFontNode;
32
33 /** @class SMPTESubtitleAsset
34  *  @brief A set of subtitles to be read and/or written in the SMPTE format.
35  */
36 class SMPTESubtitleAsset : public SubtitleAsset, public MXF
37 {
38 public:
39         SMPTESubtitleAsset ();
40         
41         /** @param file File name
42          *  @param mxf true if `file' is a MXF, or false if it is an XML file.
43          */
44         SMPTESubtitleAsset (boost::filesystem::path file, bool mxf = true);
45
46         bool equals (
47                 boost::shared_ptr<const Asset>,
48                 EqualityOptions,
49                 NoteHandler note
50                 ) const;
51         
52         std::list<boost::shared_ptr<LoadFontNode> > load_font_nodes () const;
53
54         Glib::ustring xml_as_string () const;
55         void write (boost::filesystem::path path) const;
56
57         /** @return title of the film that these subtitles are for,
58          *  to be presented to the user.
59          */
60         std::string content_title_text () const {
61                 return _content_title_text;
62         }
63
64         /** @return language as a xs:language, if one was specified */
65         boost::optional<std::string> language () const {
66                 return _language;
67         }
68
69         /** @return annotation text, to be presented to the user */
70         boost::optional<std::string> annotation_text () const {
71                 return _annotation_text;
72         }
73
74         /** @return file creation time and date */
75         LocalTime issue_date () const {
76                 return _issue_date;
77         }
78
79         boost::optional<int> reel_number () const {
80                 return _reel_number;
81         }
82
83         Fraction edit_rate () const {
84                 return _edit_rate;
85         }
86
87         /** @return subdivision of 1 second that is used for subtitle times;
88          *  e.g. a time_code_rate of 250 means that a subtitle time of 0:0:0:001
89          *  represents 4ms.
90          */
91         int time_code_rate () const {
92                 return _time_code_rate;
93         }
94
95         boost::optional<Time> start_time () const {
96                 return _start_time;
97         }
98         
99         static bool valid_mxf (boost::filesystem::path);
100
101 protected:
102         
103         std::string pkl_type (Standard) const {
104                 return "application/mxf";
105         }
106         
107 private:
108         std::string _content_title_text;
109         boost::optional<std::string> _language;
110         boost::optional<std::string> _annotation_text;
111         LocalTime _issue_date;
112         boost::optional<int> _reel_number;
113         Fraction _edit_rate;
114         int _time_code_rate;
115         boost::optional<Time> _start_time;
116         
117         std::list<boost::shared_ptr<SMPTELoadFontNode> > _load_font_nodes;
118 };
119
120 }