More 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 void
61 Content::as_xml (xmlpp::Node* node) const
62 {
63         boost::mutex::scoped_lock lm (_mutex);
64         node->add_child("File")->add_child_text (_file.string());
65         node->add_child("Digest")->add_child_text (_digest);
66         node->add_child("Start")->add_child_text (lexical_cast<string> (_start));
67 }
68
69 void
70 Content::examine (shared_ptr<Job>)
71 {
72         string const d = md5_digest (_file);
73         boost::mutex::scoped_lock lm (_mutex);
74         _digest = d;
75 }
76
77 void
78 Content::signal_changed (int p)
79 {
80         Changed (shared_from_this (), p, _change_signals_frequent);
81 }
82
83 void
84 Content::set_start (Time s)
85 {
86         {
87                 boost::mutex::scoped_lock lm (_mutex);
88                 _start = s;
89         }
90
91         signal_changed (ContentProperty::START);
92 }