dd486b0a7943c85899ec5b928edc08bcac2090d1
[dcpomatic.git] / src / lib / moving_image_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 <libcxml/cxml.h>
21 #include "moving_image_content.h"
22 #include "moving_image_examiner.h"
23 #include "config.h"
24 #include "compose.hpp"
25 #include "film.h"
26 #include "job.h"
27
28 #include "i18n.h"
29
30 using std::string;
31 using std::cout;
32 using std::list;
33 using std::stringstream;
34 using std::vector;
35 using boost::shared_ptr;
36
37 MovingImageContent::MovingImageContent (shared_ptr<const Film> f, boost::filesystem::path p)
38         : Content (f, p)
39         , VideoContent (f, p)
40 {
41
42 }
43
44 MovingImageContent::MovingImageContent (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node)
45         : Content (f, node)
46         , VideoContent (f, node)
47 {
48         list<cxml::NodePtr> c = node->node_children ("File");
49         for (list<cxml::NodePtr>::const_iterator i = c.begin(); i != c.end(); ++i) {
50                 _files.push_back ((*i)->content ());
51         }
52 }
53
54 string
55 MovingImageContent::summary () const
56 {
57         /* Get the string() here so that the name does not have quotes around it */
58         return String::compose (_("%1 [moving images]"), path().filename().string());
59 }
60
61 string
62 MovingImageContent::technical_summary () const
63 {
64         return Content::technical_summary() + " - "
65                 + VideoContent::technical_summary() + " - "
66                 + "moving";
67 }
68
69 void
70 MovingImageContent::as_xml (xmlpp::Node* node) const
71 {
72         node->add_child("Type")->add_child_text ("MovingImage");
73         Content::as_xml (node);
74         VideoContent::as_xml (node);
75
76         for (vector<boost::filesystem::path>::const_iterator i = _files.begin(); i != _files.end(); ++i) {
77                 node->add_child("File")->add_child_text (i->filename().string());
78         }
79 }
80
81 void
82 MovingImageContent::examine (shared_ptr<Job> job)
83 {
84         job->sub (_("Computing digest"));
85         Content::examine (job);
86
87         shared_ptr<const Film> film = _film.lock ();
88         assert (film);
89
90         job->sub (_("Examining content"));
91         shared_ptr<MovingImageExaminer> examiner (new MovingImageExaminer (film, shared_from_this(), job));
92
93         take_from_video_examiner (examiner);
94
95         _video_length = examiner->files().size ();
96         _files = examiner->files ();
97 }
98
99 Time
100 MovingImageContent::full_length () const
101 {
102         shared_ptr<const Film> film = _film.lock ();
103         assert (film);
104
105         FrameRateConversion frc (video_frame_rate(), film->video_frame_rate ());
106         return video_length() * frc.factor() * TIME_HZ / video_frame_rate();
107 }
108
109 string
110 MovingImageContent::identifier () const
111 {
112         stringstream s;
113         s << VideoContent::identifier ();
114         s << "_" << video_length();
115         return s.str ();
116 }