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