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