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