a72ad6e8e3d33858409be576e4116e3be4a53892
[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<shared_ptr<cxml::Node> > c = node->node_children ("File");
49         for (list<shared_ptr<cxml::Node> >::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->descend (0.5);
85         Content::examine (job);
86         job->ascend ();
87
88         shared_ptr<const Film> film = _film.lock ();
89         assert (film);
90         
91         job->descend (0.5);
92         shared_ptr<MovingImageExaminer> examiner (new MovingImageExaminer (film, shared_from_this(), job));
93         job->ascend ();
94
95         take_from_video_examiner (examiner);
96
97         _video_length = examiner->files().size ();
98         _files = examiner->files ();
99 }
100
101 Time
102 MovingImageContent::full_length () const
103 {
104         shared_ptr<const Film> film = _film.lock ();
105         assert (film);
106
107         FrameRateConversion frc (video_frame_rate(), film->video_frame_rate ());
108         return video_length() * frc.factor() * TIME_HZ / video_frame_rate();
109 }
110
111 string
112 MovingImageContent::identifier () const
113 {
114         stringstream s;
115         s << VideoContent::identifier ();
116         s << "_" << video_length();
117         return s.str ();
118 }