Add basic content information, and some other bits.
[dcpomatic.git] / src / lib / content.h
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 #ifndef DVDOMATIC_CONTENT_H
21 #define DVDOMATIC_CONTENT_H
22
23 #include <boost/filesystem.hpp>
24 #include <boost/signals2.hpp>
25 #include <boost/thread/mutex.hpp>
26 #include <libxml++/libxml++.h>
27
28 namespace cxml {
29         class Node;
30 }
31
32 class Job;
33 class Film;
34
35 class Content
36 {
37 public:
38         Content (boost::filesystem::path);
39         Content (boost::shared_ptr<const cxml::Node>);
40         Content (Content const &);
41         
42         virtual void examine (boost::shared_ptr<Film>, boost::shared_ptr<Job>, bool);
43         virtual std::string summary () const = 0;
44         virtual std::string information () const = 0;
45         virtual void as_xml (xmlpp::Node *) const;
46         virtual boost::shared_ptr<Content> clone () const = 0;
47         
48         boost::filesystem::path file () const {
49                 boost::mutex::scoped_lock lm (_mutex);
50                 return _file;
51         }
52
53         boost::signals2::signal<void (int)> Changed;
54
55 protected:
56         mutable boost::mutex _mutex;
57
58 private:
59         boost::filesystem::path _file;
60         std::string _digest;
61 };
62
63 #endif