summaryrefslogtreecommitdiff
path: root/src/lib/content.h
blob: eddce2858d2d77e775ea2120fc443a562c442db8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
/*
    Copyright (C) 2013-2021 Carl Hetherington <cth@carlh.net>

    This file is part of DCP-o-matic.

    DCP-o-matic is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    DCP-o-matic is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.

*/


/** @file  src/lib/content.h
 *  @brief Content class.
 */


#ifndef DCPOMATIC_CONTENT_H
#define DCPOMATIC_CONTENT_H


#include "change_signaller.h"
#include "dcpomatic_time.h"
#include "signaller.h"
#include "user_property.h"
#include "text_type.h"
#include <libcxml/cxml.h>
#include <boost/filesystem.hpp>
#include <boost/signals2.hpp>
#include <boost/thread/mutex.hpp>


namespace xmlpp {
	class Node;
}

namespace cxml {
	class Node;
}

class Job;
class Film;
class AtmosContent;
class AudioContent;
class TextContent;
class VideoContent;

class ContentProperty
{
public:
	static int const PATH;
	static int const POSITION;
	static int const LENGTH;
	static int const TRIM_START;
	static int const TRIM_END;
	static int const VIDEO_FRAME_RATE;
};


/** @class Content
 *  @brief A piece of content represented by one or more files on disk.
 */
class Content : public std::enable_shared_from_this<Content>, public Signaller
{
public:
	explicit Content ();
	Content (dcpomatic::DCPTime);
	Content (boost::filesystem::path);
	Content (cxml::ConstNodePtr);
	Content (std::vector<std::shared_ptr<Content>>);
	virtual ~Content () {}

	Content (Content const&) = delete;
	Content& operator= (Content const&) = delete;

	/** Examine the content to establish digest, frame rates and any other
	 *  useful metadata.
	 *  @param job Job to use to report progress, or 0.
	 */
	virtual void examine (std::shared_ptr<const Film> film, std::shared_ptr<Job> job);

	virtual void take_settings_from (std::shared_ptr<const Content> c);

	/** @return Quick one-line summary of the content, as will be presented in the
	 *  film editor.
	 */
	virtual std::string summary () const = 0;

	/** @return Technical details of this content; these are written to logs to
	 *  help with debugging.
	 */
	virtual std::string technical_summary () const;

	virtual void as_xml (xmlpp::Node *, bool with_paths) const;
	virtual dcpomatic::DCPTime full_length (std::shared_ptr<const Film>) const = 0;
	virtual dcpomatic::DCPTime approximate_length () const = 0;
	virtual std::string identifier () const;
	/** @return points at which to split this content when
	 *  REELTYPE_BY_VIDEO_CONTENT is in use.
	 */
	virtual std::list<dcpomatic::DCPTime> reel_split_points (std::shared_ptr<const Film>) const;

	std::shared_ptr<Content> clone () const;

	void set_paths (std::vector<boost::filesystem::path> paths);

	std::string path_summary () const;

	std::vector<boost::filesystem::path> paths () const {
		boost::mutex::scoped_lock lm (_mutex);
		return _paths;
	}

	size_t number_of_paths () const {
		boost::mutex::scoped_lock lm (_mutex);
		return _paths.size ();
	}

	boost::filesystem::path path (size_t i) const {
		boost::mutex::scoped_lock lm (_mutex);
		return _paths[i];
	}

	std::time_t last_write_time (size_t i) const {
		boost::mutex::scoped_lock lm (_mutex);
		return _last_write_times[i];
	}

	bool paths_valid () const;

	/** @return Digest of the content's file(s).  Note: this is
	 *  not a complete MD5-or-whatever hash, but a sort of poor
	 *  man's version (see comments in examine()).
	 */
	std::string digest () const {
		boost::mutex::scoped_lock lm (_mutex);
		return _digest;
	}

	void set_position (std::shared_ptr<const Film> film, dcpomatic::DCPTime, bool force_emit = false);

	/** dcpomatic::DCPTime that this content starts; i.e. the time that the first
	 *  bit of the content (trimmed or not) will happen.
	 */
	dcpomatic::DCPTime position () const {
		boost::mutex::scoped_lock lm (_mutex);
		return _position;
	}

	void set_trim_start(std::shared_ptr<const Film> film, dcpomatic::ContentTime);

	dcpomatic::ContentTime trim_start () const {
		boost::mutex::scoped_lock lm (_mutex);
		return _trim_start;
	}

	void set_trim_end (dcpomatic::ContentTime);

	dcpomatic::ContentTime trim_end () const {
		boost::mutex::scoped_lock lm (_mutex);
		return _trim_end;
	}

	/** @return Time immediately after the last thing in this content */
	dcpomatic::DCPTime end (std::shared_ptr<const Film> film) const {
		return position() + length_after_trim(film);
	}

	dcpomatic::DCPTime length_after_trim (std::shared_ptr<const Film> film) const;

	boost::optional<double> video_frame_rate () const {
		boost::mutex::scoped_lock lm (_mutex);
		return _video_frame_rate;
	}

	void set_video_frame_rate(std::shared_ptr<const Film> film, double r);
	void unset_video_frame_rate ();

	double active_video_frame_rate (std::shared_ptr<const Film> film) const;

	void set_change_signals_frequent (bool f) {
		_change_signals_frequent = f;
	}

	std::list<UserProperty> user_properties (std::shared_ptr<const Film> film) const;

	std::string calculate_digest () const;

	virtual bool can_be_played () const {
		return true;
	}

	/* ChangeType::PENDING and ChangeType::CANCELLED may be emitted from any thread; ChangeType::DONE always from GUI thread */
	boost::signals2::signal<void (ChangeType, std::weak_ptr<Content>, int, bool)> Change;

	std::shared_ptr<VideoContent> video;
	std::shared_ptr<AudioContent> audio;
	std::list<std::shared_ptr<TextContent>> text;
	std::shared_ptr<AtmosContent> atmos;

	std::shared_ptr<TextContent> only_text () const;
	std::shared_ptr<TextContent> text_of_original_type (TextType type) const;

	/** @return true if this content has changed since it was last examined */
	bool changed () const;

protected:

	virtual void add_properties (std::shared_ptr<const Film> film, std::list<UserProperty> &) const;

	/** _mutex which should be used to protect accesses, as examine
	 *  jobs can update content state in threads other than the main one.
	 */
	mutable boost::mutex _mutex;

	void add_path (boost::filesystem::path p);

private:
	friend struct ffmpeg_pts_offset_test;
	friend struct best_dcp_frame_rate_test_single;
	friend struct best_dcp_frame_rate_test_double;
	friend struct audio_sampling_rate_test;
	friend struct subtitle_font_id_change_test2;
	template<class, class> friend class ChangeSignaller;

	void signal_change (ChangeType, int);

	/** Paths of our data files */
	std::vector<boost::filesystem::path> _paths;
	std::vector<std::time_t> _last_write_times;

	std::string _digest;
	dcpomatic::DCPTime _position;
	dcpomatic::ContentTime _trim_start;
	dcpomatic::ContentTime _trim_end;
	/** The video frame rate that this content is or was prepared to be used with,
	 *  or empty if the effective rate of this content should be dictated by something
	 *  else (either some video happening at the same time, or the rate of the DCP).
	 */
	boost::optional<double> _video_frame_rate;
	bool _change_signals_frequent = false;
};


typedef ChangeSignaller<Content, int> ContentChangeSignaller;


#endif