6d1738419bab10287a9df5149d2d31bec911a255
[dcpomatic.git] / src / lib / image_content.cc
1 /*
2     Copyright (C) 2013-2015 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 "image_content.h"
21 #include "video_content.h"
22 #include "image_examiner.h"
23 #include "compose.hpp"
24 #include "film.h"
25 #include "job.h"
26 #include "frame_rate_change.h"
27 #include "exceptions.h"
28 #include "safe_stringstream.h"
29 #include "image_filename_sorter.h"
30 #include <libcxml/cxml.h>
31 #include <libxml++/libxml++.h>
32 #include <boost/foreach.hpp>
33 #include <iostream>
34
35 #include "i18n.h"
36
37 using std::string;
38 using std::cout;
39 using boost::shared_ptr;
40
41 ImageContent::ImageContent (shared_ptr<const Film> film, boost::filesystem::path p)
42         : Content (film)
43 {
44         video.reset (new VideoContent (this));
45
46         if (boost::filesystem::is_regular_file (p) && valid_image_file (p)) {
47                 _paths.push_back (p);
48         } else {
49                 for (boost::filesystem::directory_iterator i(p); i != boost::filesystem::directory_iterator(); ++i) {
50                         if (boost::filesystem::is_regular_file (i->path()) && valid_image_file (i->path())) {
51                                 _paths.push_back (i->path ());
52                         }
53                 }
54
55                 if (_paths.empty()) {
56                         throw FileError (_("No valid image files were found in the folder."), p);
57                 }
58
59                 sort (_paths.begin(), _paths.end(), ImageFilenameSorter ());
60         }
61
62         set_default_colour_conversion ();
63 }
64
65
66 ImageContent::ImageContent (shared_ptr<const Film> film, cxml::ConstNodePtr node, int version)
67         : Content (film, node)
68 {
69         video = VideoContent::from_xml (this, node, version);
70 }
71
72 string
73 ImageContent::summary () const
74 {
75         string s = path_summary () + " ";
76         /* Get the string() here so that the name does not have quotes around it */
77         if (still ()) {
78                 s += _("[still]");
79         } else {
80                 s += _("[moving images]");
81         }
82
83         return s;
84 }
85
86 string
87 ImageContent::technical_summary () const
88 {
89         string s = Content::technical_summary() + " - "
90                 + video->technical_summary() + " - ";
91
92         if (still ()) {
93                 s += _("still");
94         } else {
95                 s += _("moving");
96         }
97
98         return s;
99 }
100
101 void
102 ImageContent::as_xml (xmlpp::Node* node) const
103 {
104         node->add_child("Type")->add_child_text ("Image");
105         Content::as_xml (node);
106
107         if (video) {
108                 video->as_xml (node);
109         }
110 }
111
112 void
113 ImageContent::examine (shared_ptr<Job> job)
114 {
115         Content::examine (job);
116
117         shared_ptr<const Film> film = _film.lock ();
118         DCPOMATIC_ASSERT (film);
119
120         shared_ptr<ImageExaminer> examiner (new ImageExaminer (film, shared_from_this(), job));
121         video->take_from_examiner (examiner);
122         set_default_colour_conversion ();
123 }
124
125 DCPTime
126 ImageContent::full_length () const
127 {
128         shared_ptr<const Film> film = _film.lock ();
129         DCPOMATIC_ASSERT (film);
130         FrameRateChange const frc (active_video_frame_rate(), film->video_frame_rate());
131         return DCPTime::from_frames (llrint (video->length_after_3d_combine() * frc.factor ()), film->video_frame_rate ());
132 }
133
134 string
135 ImageContent::identifier () const
136 {
137         SafeStringStream s;
138         s << Content::identifier();
139         s << "_" << video->identifier ();
140         s << "_" << video->length();
141         return s.str ();
142 }
143
144 bool
145 ImageContent::still () const
146 {
147         return number_of_paths() == 1;
148 }
149
150 void
151 ImageContent::set_default_colour_conversion ()
152 {
153         BOOST_FOREACH (boost::filesystem::path i, _paths) {
154                 if (valid_j2k_file (i)) {
155                         /* We default to no colour conversion if we have JPEG2000 files */
156                         video->unset_colour_conversion ();
157                         return;
158                 }
159         }
160
161         bool const s = still ();
162
163         boost::mutex::scoped_lock lm (_mutex);
164
165         if (s) {
166                 video->set_colour_conversion (PresetColourConversion::from_id ("srgb").conversion);
167         } else {
168                 video->set_colour_conversion (PresetColourConversion::from_id ("rec709").conversion);
169         }
170 }