Merge master and multifarious hackery.
[dcpomatic.git] / src / lib / imagemagick_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 "imagemagick_content.h"
22 #include "imagemagick_decoder.h"
23 #include "config.h"
24 #include "compose.hpp"
25
26 #include "i18n.h"
27
28 using std::string;
29 using std::stringstream;
30 using boost::shared_ptr;
31
32 ImageMagickContent::ImageMagickContent (shared_ptr<const Film> f, boost::filesystem::path p)
33         : Content (f, p)
34         , VideoContent (f, p)
35 {
36
37 }
38
39 ImageMagickContent::ImageMagickContent (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node)
40         : Content (f, node)
41         , VideoContent (f, node)
42 {
43         
44 }
45
46 string
47 ImageMagickContent::summary () const
48 {
49         return String::compose (_("Image: %1"), file().filename().string());
50 }
51
52 bool
53 ImageMagickContent::valid_file (boost::filesystem::path f)
54 {
55         string ext = f.extension().string();
56         transform (ext.begin(), ext.end(), ext.begin(), ::tolower);
57         return (ext == ".tif" || ext == ".tiff" || ext == ".jpg" || ext == ".jpeg" || ext == ".png" || ext == ".bmp");
58 }
59
60 void
61 ImageMagickContent::as_xml (xmlpp::Node* node) const
62 {
63         node->add_child("Type")->add_child_text ("ImageMagick");
64         Content::as_xml (node);
65         VideoContent::as_xml (node);
66 }
67
68 void
69 ImageMagickContent::examine (shared_ptr<Job> job)
70 {
71         Content::examine (job);
72
73         shared_ptr<const Film> film = _film.lock ();
74         assert (film);
75         
76         shared_ptr<ImageMagickDecoder> decoder (new ImageMagickDecoder (film, shared_from_this()));
77
78         {
79                 boost::mutex::scoped_lock lm (_mutex);
80                 /* Initial length */
81                 _video_length = Config::instance()->default_still_length() * 24;
82         }
83         
84         take_from_video_decoder (decoder);
85         
86         signal_changed (VideoContentProperty::VIDEO_LENGTH);
87 }
88
89 shared_ptr<Content>
90 ImageMagickContent::clone () const
91 {
92         return shared_ptr<Content> (new ImageMagickContent (*this));
93 }
94
95 void
96 ImageMagickContent::set_video_length (ContentVideoFrame len)
97 {
98         {
99                 boost::mutex::scoped_lock lm (_mutex);
100                 _video_length = len;
101         }
102
103         signal_changed (VideoContentProperty::VIDEO_LENGTH);
104 }
105
106 Time
107 ImageMagickContent::length () const
108 {
109         shared_ptr<const Film> film = _film.lock ();
110         assert (film);
111         
112         FrameRateConversion frc (24, film->dcp_video_frame_rate ());
113         return video_length() * frc.factor() * TIME_HZ / film->dcp_video_frame_rate ();
114 }