663846e26400d2de65eb54d52c20f60d419af16c
[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 void
43 DCPContent::read_directory (boost::filesystem::path p)
44 {
45         for (boost::filesystem::directory_iterator i(p); i != boost::filesystem::directory_iterator(); ++i) {
46                 if (boost::filesystem::is_regular_file (i->path ())) {
47                         _paths.push_back (i->path ());
48                 } else if (boost::filesystem::is_directory (i->path ())) {
49                         read_directory (i->path ());
50                 }
51         }
52 }
53
54 void
55 DCPContent::examine (shared_ptr<Job> job)
56 {
57         job->set_progress_unknown ();
58         Content::examine (job);
59         shared_ptr<VideoExaminer> examiner (new DCPExaminer (shared_from_this ()));
60         take_from_video_examiner (examiner);
61 }
62
63 string
64 DCPContent::summary () const
65 {
66         return String::compose (_("%1 [DCP]"), path_summary ());
67 }
68
69 string
70 DCPContent::technical_summary () const
71 {
72         return Content::technical_summary() + " - "
73                 + VideoContent::technical_summary() + " - "
74                 + AudioContent::technical_summary() + " - ";
75 }
76
77 void
78 DCPContent::as_xml (xmlpp::Node* node) const
79 {
80         node->add_child("Type")->add_child_text ("DCP");
81         Content::as_xml (node);
82         VideoContent::as_xml (node);
83         SingleStreamAudioContent::as_xml (node);
84 }
85
86 DCPTime
87 DCPContent::full_length () const
88 {
89         shared_ptr<const Film> film = _film.lock ();
90         assert (film);
91         return DCPTime (video_length (), FrameRateChange (video_frame_rate (), film->video_frame_rate ()));
92 }