More noncopyable.
[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_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::stringstream;
31 using boost::shared_ptr;
32
33 ImageMagickContent::ImageMagickContent (shared_ptr<const Film> f, boost::filesystem::path p)
34         : Content (f, p)
35         , VideoContent (f, p)
36 {
37
38 }
39
40 ImageMagickContent::ImageMagickContent (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node)
41         : Content (f, node)
42         , VideoContent (f, node)
43 {
44         
45 }
46
47 string
48 ImageMagickContent::summary () const
49 {
50         return String::compose (_("Image: %1"), file().filename().string());
51 }
52
53 bool
54 ImageMagickContent::valid_file (boost::filesystem::path f)
55 {
56         string ext = f.extension().string();
57         transform (ext.begin(), ext.end(), ext.begin(), ::tolower);
58         return (ext == ".tif" || ext == ".tiff" || ext == ".jpg" || ext == ".jpeg" || ext == ".png" || ext == ".bmp");
59 }
60
61 void
62 ImageMagickContent::as_xml (xmlpp::Node* node) const
63 {
64         node->add_child("Type")->add_child_text ("ImageMagick");
65         Content::as_xml (node);
66         VideoContent::as_xml (node);
67 }
68
69 void
70 ImageMagickContent::examine (shared_ptr<Job> job)
71 {
72         Content::examine (job);
73
74         shared_ptr<const Film> film = _film.lock ();
75         assert (film);
76         
77         shared_ptr<ImageMagickExaminer> examiner (new ImageMagickExaminer (film, shared_from_this()));
78
79         set_video_length (Config::instance()->default_still_length() * 24);
80         take_from_video_examiner (examiner);
81 }
82
83 void
84 ImageMagickContent::set_video_length (VideoContent::Frame len)
85 {
86         {
87                 boost::mutex::scoped_lock lm (_mutex);
88                 _video_length = len;
89         }
90
91         signal_changed (ContentProperty::LENGTH);
92 }
93
94 Time
95 ImageMagickContent::length () const
96 {
97         shared_ptr<const Film> film = _film.lock ();
98         assert (film);
99         
100         FrameRateConversion frc (24, film->dcp_video_frame_rate ());
101         return video_length() * frc.factor() * TIME_HZ / film->dcp_video_frame_rate ();
102 }
103
104 string
105 ImageMagickContent::identifier () const
106 {
107         stringstream s;
108         s << VideoContent::identifier ();
109         s << "_" << video_length();
110         return s.str ();
111 }