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
29 Content::Content (boost::filesystem::path f)
30         : _file (f)
31 {
32
33 }
34
35 Content::Content (shared_ptr<const cxml::Node> node)
36 {
37         _file = node->string_child ("File");
38         _digest = node->string_child ("Digest");
39 }
40
41 Content::Content (Content const & o)
42         : boost::enable_shared_from_this<Content> (o)
43         , _file (o._file)
44         , _digest (o._digest)
45 {
46
47 }
48
49 void
50 Content::as_xml (xmlpp::Node* node) const
51 {
52         boost::mutex::scoped_lock lm (_mutex);
53         node->add_child("File")->add_child_text (_file.string());
54         node->add_child("Digest")->add_child_text (_digest);
55 }
56
57 void
58 Content::examine (shared_ptr<Film>, shared_ptr<Job>, bool)
59 {
60         string const d = md5_digest (_file);
61         boost::mutex::scoped_lock lm (_mutex);
62         _digest = d;
63 }
64
65 void
66 Content::signal_changed (int p)
67 {
68         Changed (shared_from_this (), p);
69 }