Basics of subtitle split.
[dcpomatic.git] / src / lib / content.h
1 /*
2     Copyright (C) 2013-2016 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/lib/content.h
21  *  @brief Content class.
22  */
23
24 #ifndef DCPOMATIC_CONTENT_H
25 #define DCPOMATIC_CONTENT_H
26
27 #include "types.h"
28 #include "signaller.h"
29 #include "dcpomatic_time.h"
30 #include "raw_convert.h"
31 #include "user_property.h"
32 #include <libcxml/cxml.h>
33 #include <boost/filesystem.hpp>
34 #include <boost/signals2.hpp>
35 #include <boost/thread/mutex.hpp>
36 #include <boost/enable_shared_from_this.hpp>
37
38 namespace xmlpp {
39         class Node;
40 }
41
42 namespace cxml {
43         class Node;
44 }
45
46 class Job;
47 class Film;
48
49 class ContentProperty
50 {
51 public:
52         static int const PATH;
53         static int const POSITION;
54         static int const LENGTH;
55         static int const TRIM_START;
56         static int const TRIM_END;
57 };
58
59 /** @class Content
60  *  @brief A piece of content represented by one or more files on disk.
61  */
62 class Content : public boost::enable_shared_from_this<Content>, public Signaller, public boost::noncopyable
63 {
64 public:
65         Content (boost::shared_ptr<const Film>);
66         Content (boost::shared_ptr<const Film>, DCPTime);
67         Content (boost::shared_ptr<const Film>, boost::filesystem::path);
68         Content (boost::shared_ptr<const Film>, cxml::ConstNodePtr);
69         Content (boost::shared_ptr<const Film>, std::vector<boost::shared_ptr<Content> >);
70         virtual ~Content () {}
71
72         /** Examine the content to establish digest, frame rates and any other
73          *  useful metadata.
74          *  @param job Job to use to report progress, or 0.
75          */
76         virtual void examine (boost::shared_ptr<Job> job);
77
78         /** @return Quick one-line summary of the content, as will be presented in the
79          *  film editor.
80          */
81         virtual std::string summary () const = 0;
82
83         /** @return Technical details of this content; these are written to logs to
84          *  help with debugging.
85          */
86         virtual std::string technical_summary () const;
87
88         virtual void as_xml (xmlpp::Node *) const;
89         virtual DCPTime full_length () const = 0;
90         virtual std::string identifier () const;
91         /** @return points at which to split this content when
92          *  REELTYPE_BY_VIDEO_CONTENT is in use.
93          */
94         virtual std::list<DCPTime> reel_split_points () const;
95
96         boost::shared_ptr<Content> clone () const;
97
98         void set_path (boost::filesystem::path);
99
100         std::string path_summary () const;
101
102         std::vector<boost::filesystem::path> paths () const {
103                 boost::mutex::scoped_lock lm (_mutex);
104                 return _paths;
105         }
106
107         size_t number_of_paths () const {
108                 boost::mutex::scoped_lock lm (_mutex);
109                 return _paths.size ();
110         }
111
112         boost::filesystem::path path (size_t i) const {
113                 boost::mutex::scoped_lock lm (_mutex);
114                 return _paths[i];
115         }
116
117         bool paths_valid () const;
118
119         /** @return Digest of the content's file(s).  Note: this is
120          *  not a complete MD5-or-whatever hash, but a sort of poor
121          *  man's version (see comments in ::examine).
122          */
123         std::string digest () const {
124                 boost::mutex::scoped_lock lm (_mutex);
125                 return _digest;
126         }
127
128         void set_position (DCPTime);
129
130         /** DCPTime that this content starts; i.e. the time that the first
131          *  bit of the content (trimmed or not) will happen.
132          */
133         DCPTime position () const {
134                 boost::mutex::scoped_lock lm (_mutex);
135                 return _position;
136         }
137
138         void set_trim_start (ContentTime);
139
140         ContentTime trim_start () const {
141                 boost::mutex::scoped_lock lm (_mutex);
142                 return _trim_start;
143         }
144
145         void set_trim_end (ContentTime);
146
147         ContentTime trim_end () const {
148                 boost::mutex::scoped_lock lm (_mutex);
149                 return _trim_end;
150         }
151
152         /** @return Time immediately after the last thing in this content */
153         DCPTime end () const {
154                 return position() + length_after_trim();
155         }
156
157         DCPTime length_after_trim () const;
158
159         void set_change_signals_frequent (bool f) {
160                 _change_signals_frequent = f;
161         }
162
163         boost::shared_ptr<const Film> film () const;
164
165         std::list<UserProperty> user_properties () const;
166
167         boost::signals2::signal<void (boost::weak_ptr<Content>, int, bool)> Changed;
168
169         boost::shared_ptr<VideoContent> video;
170         boost::shared_ptr<SubtitleContent> subtitle;
171
172         void signal_changed (int);
173
174 protected:
175
176         virtual void add_properties (std::list<UserProperty> &) const {}
177
178         boost::weak_ptr<const Film> _film;
179
180         /** _mutex which should be used to protect accesses, as examine
181          *  jobs can update content state in threads other than the main one.
182          */
183         mutable boost::mutex _mutex;
184
185         /** Paths of our data files */
186         std::vector<boost::filesystem::path> _paths;
187
188 private:
189         std::string _digest;
190         DCPTime _position;
191         ContentTime _trim_start;
192         ContentTime _trim_end;
193         bool _change_signals_frequent;
194 };
195
196 #endif