24f6d338d4a8d3d75d06daebb07945c45f736f6f
[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 "compose.hpp"
24
25 #include "i18n.h"
26
27 using std::string;
28 using std::stringstream;
29 using boost::shared_ptr;
30
31 ImageMagickContent::ImageMagickContent (boost::filesystem::path f)
32         : Content (f)
33         , VideoContent (f)
34 {
35
36 }
37
38 ImageMagickContent::ImageMagickContent (shared_ptr<const cxml::Node> node)
39         : Content (node)
40         , VideoContent (node)
41 {
42         
43 }
44
45 string
46 ImageMagickContent::summary () const
47 {
48         return String::compose (_("Image: %1"), file().filename().string());
49 }
50
51 bool
52 ImageMagickContent::valid_file (boost::filesystem::path f)
53 {
54         string ext = f.extension().string();
55         transform (ext.begin(), ext.end(), ext.begin(), ::tolower);
56         return (ext == ".tif" || ext == ".tiff" || ext == ".jpg" || ext == ".jpeg" || ext == ".png" || ext == ".bmp");
57 }
58
59 void
60 ImageMagickContent::as_xml (xmlpp::Node* node) const
61 {
62         node->add_child("Type")->add_child_text ("ImageMagick");
63         Content::as_xml (node);
64         VideoContent::as_xml (node);
65 }
66
67 void
68 ImageMagickContent::examine (shared_ptr<Film> film, shared_ptr<Job> job, bool quick)
69 {
70         Content::examine (film, job, quick);
71         shared_ptr<ImageMagickDecoder> decoder (new ImageMagickDecoder (film, shared_from_this()));
72
73         {
74                 boost::mutex::scoped_lock lm (_mutex);
75                 /* Initial length */
76                 _video_length = 10 * 24;
77         }
78         
79         take_from_video_decoder (decoder);
80         
81         signal_changed (VideoContentProperty::VIDEO_LENGTH);
82 }
83
84 shared_ptr<Content>
85 ImageMagickContent::clone () const
86 {
87         return shared_ptr<Content> (new ImageMagickContent (*this));
88 }
89
90 void
91 ImageMagickContent::set_video_length (ContentVideoFrame len)
92 {
93         {
94                 boost::mutex::scoped_lock lm (_mutex);
95                 _video_length = len;
96         }
97
98         signal_changed (VideoContentProperty::VIDEO_LENGTH);
99 }