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