Various more hacks; basically trying to remove Regions as an unnecessary complexity.
[dcpomatic.git] / src / lib / content.cc
1 /* -*- c-basic-offset: 8; default-tab-width: 8; -*- */
2
3 /*
4     Copyright (C) 2013 Carl Hetherington <cth@carlh.net>
5
6     This program is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     This program is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with this program; if not, write to the Free Software
18     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 */
21
22 #include <boost/thread/mutex.hpp>
23 #include <libxml++/libxml++.h>
24 #include <libcxml/cxml.h>
25 #include "content.h"
26 #include "util.h"
27
28 using std::string;
29 using boost::shared_ptr;
30 using boost::lexical_cast;
31
32 Content::Content (boost::filesystem::path f)
33         : _file (f)
34         , _time (0)
35 {
36
37 }
38
39 Content::Content (shared_ptr<const cxml::Node> node)
40 {
41         _file = node->string_child ("File");
42         _digest = node->string_child ("Digest");
43         _time = node->number_child<Time> ("Time");
44 }
45
46 Content::Content (Content const & o)
47         : boost::enable_shared_from_this<Content> (o)
48         , _file (o._file)
49         , _digest (o._digest)
50         , _time (o._time)
51 {
52
53 }
54
55 void
56 Content::as_xml (xmlpp::Node* node) const
57 {
58         boost::mutex::scoped_lock lm (_mutex);
59         node->add_child("File")->add_child_text (_file.string());
60         node->add_child("Digest")->add_child_text (_digest);
61         node->add_child("Time")->add_child_text (lexical_cast<string> (_time));
62 }
63
64 void
65 Content::examine (shared_ptr<Film>, shared_ptr<Job>, bool)
66 {
67         string const d = md5_digest (_file);
68         boost::mutex::scoped_lock lm (_mutex);
69         _digest = d;
70 }
71
72 void
73 Content::signal_changed (int p)
74 {
75         Changed (shared_from_this (), p);
76 }