Add set_reel_number method.
[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 ASDCP {
30         namespace TimedText {
31                 class MXFReader;
32         }
33 }
34
35 namespace dcp {
36
37 class SMPTELoadFontNode;
38
39 /** @class SMPTESubtitleAsset
40  *  @brief A set of subtitles to be read and/or written in the SMPTE format.
41  */
42 class SMPTESubtitleAsset : public SubtitleAsset, public MXF
43 {
44 public:
45         SMPTESubtitleAsset ();
46
47         /** @param file File name
48          */
49         SMPTESubtitleAsset (boost::filesystem::path file);
50
51         bool equals (
52                 boost::shared_ptr<const Asset>,
53                 EqualityOptions,
54                 NoteHandler note
55                 ) const;
56
57         std::list<boost::shared_ptr<LoadFontNode> > load_font_nodes () const;
58
59         Glib::ustring xml_as_string () const;
60         void write (boost::filesystem::path path) const;
61         void add_font (std::string id, boost::filesystem::path file);
62
63         void set_content_title_text (std::string t) {
64                 _content_title_text = t;
65         }
66
67         void set_language (std::string l) {
68                 _language = l;
69         }
70
71         void set_reel_number (int r) {
72                 _reel_number = r;
73         }
74
75         void set_edit_rate (Fraction e) {
76                 _edit_rate = e;
77         }
78
79         void set_time_code_rate (int t) {
80                 _time_code_rate = t;
81         }
82
83         /** @return title of the film that these subtitles are for,
84          *  to be presented to the user.
85          */
86         std::string content_title_text () const {
87                 return _content_title_text;
88         }
89
90         /** @return language as a xs:language, if one was specified */
91         boost::optional<std::string> language () const {
92                 return _language;
93         }
94
95         /** @return annotation text, to be presented to the user */
96         boost::optional<std::string> annotation_text () const {
97                 return _annotation_text;
98         }
99
100         /** @return file creation time and date */
101         LocalTime issue_date () const {
102                 return _issue_date;
103         }
104
105         boost::optional<int> reel_number () const {
106                 return _reel_number;
107         }
108
109         Fraction edit_rate () const {
110                 return _edit_rate;
111         }
112
113         /** @return subdivision of 1 second that is used for subtitle times;
114          *  e.g. a time_code_rate of 250 means that a subtitle time of 0:0:0:001
115          *  represents 4ms.
116          */
117         int time_code_rate () const {
118                 return _time_code_rate;
119         }
120
121         boost::optional<Time> start_time () const {
122                 return _start_time;
123         }
124
125         static bool valid_mxf (boost::filesystem::path);
126
127 protected:
128
129         std::string pkl_type (Standard) const {
130                 return "application/mxf";
131         }
132
133 private:
134         void read_fonts (boost::shared_ptr<ASDCP::TimedText::MXFReader>);
135
136         std::string _content_title_text;
137         boost::optional<std::string> _language;
138         boost::optional<std::string> _annotation_text;
139         LocalTime _issue_date;
140         boost::optional<int> _reel_number;
141         Fraction _edit_rate;
142         int _time_code_rate;
143         boost::optional<Time> _start_time;
144
145         std::list<boost::shared_ptr<SMPTELoadFontNode> > _load_font_nodes;
146 };
147
148 }