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