Merge branch '1.0' of ssh://carlh.dyndns.org/home/carl/git/dvdomatic into 1.0
[dcpomatic.git] / src / lib / content.h
1 /*
2     Copyright (C) 2013 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 DCPOMATIC_CONTENT_H
21 #define DCPOMATIC_CONTENT_H
22
23 #include <set>
24 #include <boost/filesystem.hpp>
25 #include <boost/signals2.hpp>
26 #include <boost/thread/mutex.hpp>
27 #include <boost/enable_shared_from_this.hpp>
28 #include <libxml++/libxml++.h>
29 #include "types.h"
30
31 namespace cxml {
32         class Node;
33 }
34
35 class Job;
36 class Film;
37
38 class ContentProperty
39 {
40 public:
41         static int const PATH;
42         static int const POSITION;
43         static int const LENGTH;
44         static int const TRIM_START;
45         static int const TRIM_END;
46 };
47
48 class Content : public boost::enable_shared_from_this<Content>, public boost::noncopyable
49 {
50 public:
51         Content (boost::shared_ptr<const Film>, Time);
52         Content (boost::shared_ptr<const Film>, boost::filesystem::path);
53         Content (boost::shared_ptr<const Film>, boost::shared_ptr<const cxml::Node>);
54         virtual ~Content () {}
55         
56         virtual void examine (boost::shared_ptr<Job>);
57         virtual std::string summary () const = 0;
58         virtual std::string technical_summary () const;
59         virtual std::string information () const = 0;
60         virtual void as_xml (xmlpp::Node *) const;
61         virtual Time full_length () const = 0;
62         virtual std::string identifier () const;
63
64         boost::shared_ptr<Content> clone () const;
65
66         void set_path (boost::filesystem::path);
67         
68         boost::filesystem::path path () const {
69                 boost::mutex::scoped_lock lm (_mutex);
70                 return _path;
71         }
72
73         bool path_valid () const;
74
75         /** @return MD5 digest of the content's file(s) */
76         std::string digest () const {
77                 boost::mutex::scoped_lock lm (_mutex);
78                 return _digest;
79         }
80
81         void set_position (Time);
82
83         /** Time that this content starts; i.e. the time that the first
84          *  bit of the content (trimmed or not) will happen.
85          */
86         Time position () const {
87                 boost::mutex::scoped_lock lm (_mutex);
88                 return _position;
89         }
90
91         void set_trim_start (Time);
92
93         Time trim_start () const {
94                 boost::mutex::scoped_lock lm (_mutex);
95                 return _trim_start;
96         }
97
98         void set_trim_end (Time);
99         
100         Time trim_end () const {
101                 boost::mutex::scoped_lock lm (_mutex);
102                 return _trim_end;
103         }
104         
105         Time end () const {
106                 return position() + length_after_trim() - 1;
107         }
108
109         Time length_after_trim () const;
110         
111         void set_change_signals_frequent (bool f) {
112                 _change_signals_frequent = f;
113         }
114
115         bool trimmed (Time) const;
116
117         boost::signals2::signal<void (boost::weak_ptr<Content>, int, bool)> Changed;
118
119 protected:
120         void signal_changed (int);
121
122         boost::weak_ptr<const Film> _film;
123
124         /** _mutex which should be used to protect accesses, as examine
125             jobs can update content state in threads other than the main one.
126         */
127         mutable boost::mutex _mutex;
128
129 private:
130         /** Path of a file or a directory containing files */
131         boost::filesystem::path _path;
132         std::string _digest;
133         Time _position;
134         Time _trim_start;
135         Time _trim_end;
136         bool _change_signals_frequent;
137 };
138
139 #endif