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