Fix a couple of logging things.
[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 bool
64 StillImageContent::valid_file (boost::filesystem::path f)
65 {
66         string ext = f.extension().string();
67         transform (ext.begin(), ext.end(), ext.begin(), ::tolower);
68         return (ext == ".tif" || ext == ".tiff" || ext == ".jpg" || ext == ".jpeg" || ext == ".png" || ext == ".bmp");
69 }
70
71 void
72 StillImageContent::as_xml (xmlpp::Node* node) const
73 {
74         node->add_child("Type")->add_child_text ("StillImage");
75         Content::as_xml (node);
76         VideoContent::as_xml (node);
77 }
78
79 void
80 StillImageContent::examine (shared_ptr<Job> job)
81 {
82         Content::examine (job);
83
84         shared_ptr<const Film> film = _film.lock ();
85         assert (film);
86         
87         shared_ptr<StillImageExaminer> examiner (new StillImageExaminer (film, shared_from_this()));
88
89         take_from_video_examiner (examiner);
90         set_video_length (Config::instance()->default_still_length() * video_frame_rate());
91 }
92
93 void
94 StillImageContent::set_video_length (VideoContent::Frame len)
95 {
96         {
97                 boost::mutex::scoped_lock lm (_mutex);
98                 _video_length = len;
99         }
100
101         signal_changed (ContentProperty::LENGTH);
102 }
103
104 Time
105 StillImageContent::length () const
106 {
107         shared_ptr<const Film> film = _film.lock ();
108         assert (film);
109         
110         FrameRateConversion frc (video_frame_rate(), film->video_frame_rate ());
111         return video_length() * frc.factor() * TIME_HZ / video_frame_rate();
112 }
113
114 string
115 StillImageContent::identifier () const
116 {
117         stringstream s;
118         s << VideoContent::identifier ();
119         s << "_" << video_length();
120         return s.str ();
121 }