Merge branch '1.0' of /home/carl/git/dvdomatic into 1.0
[dcpomatic.git] / src / lib / still_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 "still_image_content.h"
22 #include "still_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::stringstream;
32 using boost::shared_ptr;
33
34 StillImageContent::StillImageContent (shared_ptr<const Film> f, boost::filesystem::path p)
35         : Content (f, p)
36         , VideoContent (f, p)
37 {
38
39 }
40
41 StillImageContent::StillImageContent (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node)
42         : Content (f, node)
43         , VideoContent (f, node)
44 {
45         
46 }
47
48 string
49 StillImageContent::summary () const
50 {
51         /* Get the string() here so that the name does not have quotes around it */
52         return String::compose (_("%1 [still]"), path().filename().string());
53 }
54
55 string
56 StillImageContent::technical_summary () const
57 {
58         return Content::technical_summary() + " - "
59                 + VideoContent::technical_summary() + " - "
60                 + "still";
61 }
62
63 void
64 StillImageContent::as_xml (xmlpp::Node* node) const
65 {
66         node->add_child("Type")->add_child_text ("StillImage");
67         Content::as_xml (node);
68         VideoContent::as_xml (node);
69 }
70
71 void
72 StillImageContent::examine (shared_ptr<Job> job)
73 {
74         Content::examine (job);
75
76         shared_ptr<const Film> film = _film.lock ();
77         assert (film);
78         
79         shared_ptr<StillImageExaminer> examiner (new StillImageExaminer (film, shared_from_this()));
80
81         take_from_video_examiner (examiner);
82         set_video_length (Config::instance()->default_still_length() * video_frame_rate());
83 }
84
85 void
86 StillImageContent::set_video_length (VideoContent::Frame len)
87 {
88         {
89                 boost::mutex::scoped_lock lm (_mutex);
90                 _video_length = len;
91         }
92
93         signal_changed (ContentProperty::LENGTH);
94 }
95
96 Time
97 StillImageContent::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 StillImageContent::identifier () const
108 {
109         stringstream s;
110         s << VideoContent::identifier ();
111         s << "_" << video_length();
112         return s.str ();
113 }