8b809a1bda04141d019ae54273cd255c06246f64
[dcpomatic.git] / src / lib / dcp_content.cc
1 /*
2     Copyright (C) 2014 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 <dcp/dcp.h>
21 #include "dcp_content.h"
22 #include "dcp_examiner.h"
23 #include "job.h"
24 #include "film.h"
25 #include "compose.hpp"
26
27 #include "i18n.h"
28
29 using std::string;
30 using boost::shared_ptr;
31
32 DCPContent::DCPContent (shared_ptr<const Film> f, boost::filesystem::path p)
33         : Content (f)
34         , VideoContent (f)
35         , SingleStreamAudioContent (f)
36         , SubtitleContent (f)
37         , _directory (p)
38 {
39         read_directory (p);
40 }
41
42 DCPContent::DCPContent (shared_ptr<const Film> f, cxml::ConstNodePtr node, int version)
43         : Content (f, node)
44         , VideoContent (f, node, version)
45         , SingleStreamAudioContent (f, node, version)
46         , SubtitleContent (f, node, version)
47 {
48         _name = node->string_child ("Name");
49         _directory = node->string_child ("Directory");
50 }
51
52 void
53 DCPContent::read_directory (boost::filesystem::path p)
54 {
55         for (boost::filesystem::directory_iterator i(p); i != boost::filesystem::directory_iterator(); ++i) {
56                 if (boost::filesystem::is_regular_file (i->path ())) {
57                         _paths.push_back (i->path ());
58                 } else if (boost::filesystem::is_directory (i->path ())) {
59                         read_directory (i->path ());
60                 }
61         }
62 }
63
64 void
65 DCPContent::examine (shared_ptr<Job> job)
66 {
67         job->set_progress_unknown ();
68         Content::examine (job);
69         shared_ptr<DCPExaminer> examiner (new DCPExaminer (shared_from_this ()));
70         take_from_video_examiner (examiner);
71
72         boost::mutex::scoped_lock lm (_mutex);
73         _name = examiner->name ();
74 }
75
76 string
77 DCPContent::summary () const
78 {
79         boost::mutex::scoped_lock lm (_mutex);
80         return String::compose (_("%1 [DCP]"), _name);
81 }
82
83 string
84 DCPContent::technical_summary () const
85 {
86         return Content::technical_summary() + " - "
87                 + VideoContent::technical_summary() + " - "
88                 + AudioContent::technical_summary() + " - ";
89 }
90
91 void
92 DCPContent::as_xml (xmlpp::Node* node) const
93 {
94         node->add_child("Type")->add_child_text ("DCP");
95
96         Content::as_xml (node);
97         VideoContent::as_xml (node);
98         SingleStreamAudioContent::as_xml (node);
99         SubtitleContent::as_xml (node);
100
101         node->add_child("Name")->add_child_text (_name);
102         node->add_child("Directory")->add_child_text (_directory.string ());
103 }
104
105 DCPTime
106 DCPContent::full_length () const
107 {
108         shared_ptr<const Film> film = _film.lock ();
109         assert (film);
110         return DCPTime (video_length (), FrameRateChange (video_frame_rate (), film->video_frame_rate ()));
111 }