0db93d5e358622a33f4aa73127e2e30ff7b5331d
[dcpomatic.git] / src / lib / content.cc
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 #include <boost/thread/mutex.hpp>
21 #include <libxml++/libxml++.h>
22 #include <libcxml/cxml.h>
23 #include "content.h"
24 #include "util.h"
25 #include "content_factory.h"
26 #include "ui_signaller.h"
27
28 using std::string;
29 using std::set;
30 using boost::shared_ptr;
31 using boost::lexical_cast;
32
33 int const ContentProperty::START = 400;
34 int const ContentProperty::LENGTH = 401;
35
36 Content::Content (shared_ptr<const Film> f, Time s)
37         : _film (f)
38         , _start (s)
39         , _change_signals_frequent (false)
40 {
41
42 }
43
44 Content::Content (shared_ptr<const Film> f, boost::filesystem::path p)
45         : _film (f)
46         , _file (p)
47         , _start (0)
48         , _change_signals_frequent (false)
49 {
50
51 }
52
53 Content::Content (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node)
54         : _film (f)
55         , _change_signals_frequent (false)
56 {
57         _file = node->string_child ("File");
58         _digest = node->string_child ("Digest");
59         _start = node->number_child<Time> ("Start");
60 }
61
62 void
63 Content::as_xml (xmlpp::Node* node) const
64 {
65         boost::mutex::scoped_lock lm (_mutex);
66         node->add_child("File")->add_child_text (_file.string());
67         node->add_child("Digest")->add_child_text (_digest);
68         node->add_child("Start")->add_child_text (lexical_cast<string> (_start));
69 }
70
71 void
72 Content::examine (shared_ptr<Job>)
73 {
74         string const d = md5_digest (_file);
75         boost::mutex::scoped_lock lm (_mutex);
76         _digest = d;
77 }
78
79 void
80 Content::signal_changed (int p)
81 {
82         if (ui_signaller) {
83                 ui_signaller->emit (boost::bind (boost::ref (Changed), shared_from_this (), p, _change_signals_frequent));
84         }
85 }
86
87 void
88 Content::set_start (Time s)
89 {
90         {
91                 boost::mutex::scoped_lock lm (_mutex);
92                 _start = s;
93         }
94
95         signal_changed (ContentProperty::START);
96 }
97
98 shared_ptr<Content>
99 Content::clone () const
100 {
101         shared_ptr<const Film> film = _film.lock ();
102         if (!film) {
103                 return shared_ptr<Content> ();
104         }
105         
106         /* This is a bit naughty, but I can't think of a compelling reason not to do it ... */
107         xmlpp::Document doc;
108         xmlpp::Node* node = doc.create_root_node ("Content");
109         as_xml (node);
110         return content_factory (film, shared_ptr<cxml::Node> (new cxml::Node (node)));
111 }
112
113 string
114 Content::technical_summary () const
115 {
116         return String::compose ("%1 %2 %3", file(), digest(), start());
117 }