Rename Content::_file to path and support md5sums of directories.
[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 #include "content_factory.h"
26 #include "ui_signaller.h"
27
28 using std::string;
29 using std::set;
30 using boost::shared_ptr;
31 using boost::lexical_cast;
32
33 int const ContentProperty::START = 400;
34 int const ContentProperty::LENGTH = 401;
35
36 Content::Content (shared_ptr<const Film> f, Time s)
37         : _film (f)
38         , _start (s)
39         , _change_signals_frequent (false)
40 {
41
42 }
43
44 Content::Content (shared_ptr<const Film> f, boost::filesystem::path p)
45         : _film (f)
46         , _path (p)
47         , _start (0)
48         , _change_signals_frequent (false)
49 {
50
51 }
52
53 Content::Content (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node)
54         : _film (f)
55         , _change_signals_frequent (false)
56 {
57         _path = node->string_child ("Path");
58         _digest = node->string_child ("Digest");
59         _start = node->number_child<Time> ("Start");
60 }
61
62 void
63 Content::as_xml (xmlpp::Node* node) const
64 {
65         boost::mutex::scoped_lock lm (_mutex);
66         node->add_child("Path")->add_child_text (_path.string());
67         node->add_child("Digest")->add_child_text (_digest);
68         node->add_child("Start")->add_child_text (lexical_cast<string> (_start));
69 }
70
71 void
72 Content::examine (shared_ptr<Job>)
73 {
74         string d;
75         if (boost::filesystem::is_regular_file (_path)) {
76                 d = md5_digest (_path);
77         } else {
78                 d = md5_digest_directory (_path);
79         }
80         
81         boost::mutex::scoped_lock lm (_mutex);
82         _digest = d;
83 }
84
85 void
86 Content::signal_changed (int p)
87 {
88         if (ui_signaller) {
89                 ui_signaller->emit (boost::bind (boost::ref (Changed), shared_from_this (), p, _change_signals_frequent));
90         }
91 }
92
93 void
94 Content::set_start (Time s)
95 {
96         {
97                 boost::mutex::scoped_lock lm (_mutex);
98                 _start = s;
99         }
100
101         signal_changed (ContentProperty::START);
102 }
103
104 shared_ptr<Content>
105 Content::clone () const
106 {
107         shared_ptr<const Film> film = _film.lock ();
108         if (!film) {
109                 return shared_ptr<Content> ();
110         }
111         
112         /* This is a bit naughty, but I can't think of a compelling reason not to do it ... */
113         xmlpp::Document doc;
114         xmlpp::Node* node = doc.create_root_node ("Content");
115         as_xml (node);
116         return content_factory (film, shared_ptr<cxml::Node> (new cxml::Node (node)));
117 }
118
119 string
120 Content::technical_summary () const
121 {
122         return String::compose ("%1 %2 %3", path(), digest(), start());
123 }