More noncopyable.
[dcpomatic.git] / src / lib / video_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 <iomanip>
21 #include <libcxml/cxml.h>
22 #include "video_content.h"
23 #include "video_examiner.h"
24 #include "ratio.h"
25 #include "compose.hpp"
26
27 #include "i18n.h"
28
29 int const VideoContentProperty::VIDEO_SIZE       = 0;
30 int const VideoContentProperty::VIDEO_FRAME_RATE = 1;
31 int const VideoContentProperty::VIDEO_CROP       = 2;
32 int const VideoContentProperty::VIDEO_RATIO      = 3;
33
34 using std::string;
35 using std::stringstream;
36 using std::setprecision;
37 using boost::shared_ptr;
38 using boost::lexical_cast;
39 using boost::optional;
40
41 VideoContent::VideoContent (shared_ptr<const Film> f, Time s, VideoContent::Frame len)
42         : Content (f, s)
43         , _video_length (len)
44         , _video_frame_rate (0)
45         , _ratio (Ratio::from_id ("185"))
46 {
47
48 }
49
50 VideoContent::VideoContent (shared_ptr<const Film> f, boost::filesystem::path p)
51         : Content (f, p)
52         , _video_length (0)
53         , _video_frame_rate (0)
54         , _ratio (Ratio::from_id ("185"))
55 {
56
57 }
58
59 VideoContent::VideoContent (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node)
60         : Content (f, node)
61 {
62         _video_length = node->number_child<VideoContent::Frame> ("VideoLength");
63         _video_size.width = node->number_child<int> ("VideoWidth");
64         _video_size.height = node->number_child<int> ("VideoHeight");
65         _video_frame_rate = node->number_child<float> ("VideoFrameRate");
66         _crop.left = node->number_child<int> ("LeftCrop");
67         _crop.right = node->number_child<int> ("RightCrop");
68         _crop.top = node->number_child<int> ("TopCrop");
69         _crop.bottom = node->number_child<int> ("BottomCrop");
70         optional<string> r = node->optional_string_child ("Ratio");
71         if (r) {
72                 _ratio = Ratio::from_id (r.get ());
73         }
74 }
75
76 void
77 VideoContent::as_xml (xmlpp::Node* node) const
78 {
79         boost::mutex::scoped_lock lm (_mutex);
80         node->add_child("VideoLength")->add_child_text (lexical_cast<string> (_video_length));
81         node->add_child("VideoWidth")->add_child_text (lexical_cast<string> (_video_size.width));
82         node->add_child("VideoHeight")->add_child_text (lexical_cast<string> (_video_size.height));
83         node->add_child("VideoFrameRate")->add_child_text (lexical_cast<string> (_video_frame_rate));
84         node->add_child("LeftCrop")->add_child_text (boost::lexical_cast<string> (_crop.left));
85         node->add_child("RightCrop")->add_child_text (boost::lexical_cast<string> (_crop.right));
86         node->add_child("TopCrop")->add_child_text (boost::lexical_cast<string> (_crop.top));
87         node->add_child("BottomCrop")->add_child_text (boost::lexical_cast<string> (_crop.bottom));
88         if (_ratio) {
89                 node->add_child("Ratio")->add_child_text (_ratio->id ());
90         }
91 }
92
93 void
94 VideoContent::take_from_video_examiner (shared_ptr<VideoExaminer> d)
95 {
96         /* These examiner calls could call other content methods which take a lock on the mutex */
97         libdcp::Size const vs = d->video_size ();
98         float const vfr = d->video_frame_rate ();
99         
100         {
101                 boost::mutex::scoped_lock lm (_mutex);
102                 _video_size = vs;
103                 _video_frame_rate = vfr;
104         }
105         
106         signal_changed (VideoContentProperty::VIDEO_SIZE);
107         signal_changed (VideoContentProperty::VIDEO_FRAME_RATE);
108 }
109
110
111 string
112 VideoContent::information () const
113 {
114         if (video_size().width == 0 || video_size().height == 0) {
115                 return "";
116         }
117         
118         stringstream s;
119
120         s << String::compose (
121                 _("%1x%2 pixels (%3:1)"),
122                 video_size().width,
123                 video_size().height,
124                 setprecision (3), float (video_size().width) / video_size().height
125                 );
126         
127         return s.str ();
128 }
129
130 void
131 VideoContent::set_left_crop (int c)
132 {
133         {
134                 boost::mutex::scoped_lock lm (_mutex);
135                 
136                 if (_crop.left == c) {
137                         return;
138                 }
139                 
140                 _crop.left = c;
141         }
142         
143         signal_changed (VideoContentProperty::VIDEO_CROP);
144 }
145
146 void
147 VideoContent::set_right_crop (int c)
148 {
149         {
150                 boost::mutex::scoped_lock lm (_mutex);
151                 if (_crop.right == c) {
152                         return;
153                 }
154                 
155                 _crop.right = c;
156         }
157         
158         signal_changed (VideoContentProperty::VIDEO_CROP);
159 }
160
161 void
162 VideoContent::set_top_crop (int c)
163 {
164         {
165                 boost::mutex::scoped_lock lm (_mutex);
166                 if (_crop.top == c) {
167                         return;
168                 }
169                 
170                 _crop.top = c;
171         }
172         
173         signal_changed (VideoContentProperty::VIDEO_CROP);
174 }
175
176 void
177 VideoContent::set_bottom_crop (int c)
178 {
179         {
180                 boost::mutex::scoped_lock lm (_mutex);
181                 if (_crop.bottom == c) {
182                         return;
183                 }
184                 
185                 _crop.bottom = c;
186         }
187
188         signal_changed (VideoContentProperty::VIDEO_CROP);
189 }
190
191 void
192 VideoContent::set_ratio (Ratio const * r)
193 {
194         {
195                 boost::mutex::scoped_lock lm (_mutex);
196                 if (_ratio == r) {
197                         return;
198                 }
199
200                 _ratio = r;
201         }
202
203         signal_changed (VideoContentProperty::VIDEO_RATIO);
204 }
205
206 /** @return string which includes everything about how this content looks */
207 string
208 VideoContent::identifier () const
209 {
210         stringstream s;
211         s << Content::digest()
212           << "_" << crop().left
213           << "_" << crop().right
214           << "_" << crop().top
215           << "_" << crop().bottom;
216
217         if (ratio()) {
218                 s << "_" << ratio()->id ();
219         }
220
221         return s.str ();
222 }