Decode DCP audio too.
[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         take_from_audio_examiner (examiner);
72
73         boost::mutex::scoped_lock lm (_mutex);
74         _name = examiner->name ();
75 }
76
77 string
78 DCPContent::summary () const
79 {
80         boost::mutex::scoped_lock lm (_mutex);
81         return String::compose (_("%1 [DCP]"), _name);
82 }
83
84 string
85 DCPContent::technical_summary () const
86 {
87         return Content::technical_summary() + " - "
88                 + VideoContent::technical_summary() + " - "
89                 + AudioContent::technical_summary() + " - ";
90 }
91
92 void
93 DCPContent::as_xml (xmlpp::Node* node) const
94 {
95         node->add_child("Type")->add_child_text ("DCP");
96
97         Content::as_xml (node);
98         VideoContent::as_xml (node);
99         SingleStreamAudioContent::as_xml (node);
100         SubtitleContent::as_xml (node);
101
102         node->add_child("Name")->add_child_text (_name);
103         node->add_child("Directory")->add_child_text (_directory.string ());
104 }
105
106 DCPTime
107 DCPContent::full_length () const
108 {
109         shared_ptr<const Film> film = _film.lock ();
110         assert (film);
111         return DCPTime (video_length (), FrameRateChange (video_frame_rate (), film->video_frame_rate ()));
112 }