aaf2e4f9c3341424581582eaad4921a8a4e06a8e
[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
26 using std::string;
27 using boost::shared_ptr;
28 using boost::lexical_cast;
29
30 int const ContentProperty::START = 400;
31
32 Content::Content (shared_ptr<const Film> f, Time s)
33         : _film (f)
34         , _start (s)
35 {
36
37 }
38
39 Content::Content (shared_ptr<const Film> f, boost::filesystem::path p)
40         : _film (f)
41         , _file (p)
42         , _start (0)
43 {
44
45 }
46
47 Content::Content (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node)
48         : _film (f)
49 {
50         _file = node->string_child ("File");
51         _digest = node->string_child ("Digest");
52         _start = node->number_child<Time> ("Start");
53 }
54
55 Content::Content (Content const & o)
56         : boost::enable_shared_from_this<Content> (o)
57         , _film (o._film)
58         , _file (o._file)
59         , _digest (o._digest)
60         , _start (o._start)
61 {
62
63 }
64
65 void
66 Content::as_xml (xmlpp::Node* node) const
67 {
68         boost::mutex::scoped_lock lm (_mutex);
69         node->add_child("File")->add_child_text (_file.string());
70         node->add_child("Digest")->add_child_text (_digest);
71         node->add_child("Start")->add_child_text (lexical_cast<string> (_start));
72 }
73
74 void
75 Content::examine (shared_ptr<Job>)
76 {
77         string const d = md5_digest (_file);
78         boost::mutex::scoped_lock lm (_mutex);
79         _digest = d;
80 }
81
82 void
83 Content::signal_changed (int p)
84 {
85         Changed (shared_from_this (), p);
86 }
87
88 void
89 Content::set_start (Time s)
90 {
91         {
92                 boost::mutex::scoped_lock lm (_mutex);
93                 _start = s;
94         }
95
96         signal_changed (ContentProperty::START);
97 }