Runs.
[dcpomatic.git] / src / lib / util.h
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3     Copyright (C) 2000-2007 Paul Davis
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 /** @file src/util.h
22  *  @brief Some utility functions and classes.
23  */
24
25 #ifndef DVDOMATIC_UTIL_H
26 #define DVDOMATIC_UTIL_H
27
28 #include <string>
29 #include <vector>
30 #include <boost/shared_ptr.hpp>
31 #include <boost/asio.hpp>
32 #include <boost/optional.hpp>
33 #include <boost/filesystem.hpp>
34 #include <libdcp/util.h>
35 extern "C" {
36 #include <libavcodec/avcodec.h>
37 #include <libavfilter/avfilter.h>
38 }
39 #include "compose.hpp"
40
41 #ifdef DVDOMATIC_DEBUG
42 #define TIMING(...) _film->log()->microsecond_log (String::compose (__VA_ARGS__), Log::TIMING);
43 #else
44 #define TIMING(...)
45 #endif
46
47 /** The maximum number of audio channels that we can cope with */
48 #define MAX_AUDIO_CHANNELS 6
49
50 class Scaler;
51
52 extern std::string seconds_to_hms (int);
53 extern std::string seconds_to_approximate_hms (int);
54 extern void stacktrace (std::ostream &, int);
55 extern std::string dependency_version_summary ();
56 extern double seconds (struct timeval);
57 extern void dvdomatic_setup ();
58 extern void dvdomatic_setup_i18n (std::string);
59 extern std::vector<std::string> split_at_spaces_considering_quotes (std::string);
60 extern std::string md5_digest (boost::filesystem::path);
61 extern std::string md5_digest (void const *, int);
62 extern void ensure_ui_thread ();
63 extern std::string audio_channel_name (int);
64 #ifdef DVDOMATIC_WINDOWS
65 extern boost::filesystem::path mo_path ();
66 #endif
67
68 typedef int SourceFrame;
69 typedef int64_t ContentAudioFrame;
70 typedef int ContentVideoFrame;
71
72 struct FrameRateConversion
73 {
74         FrameRateConversion (float, int);
75
76         /** @return factor by which to multiply a source frame rate
77             to get the effective rate after any skip or repeat has happened.
78         */
79         float factor () const {
80                 if (skip) {
81                         return 0.5;
82                 } else if (repeat) {
83                         return 2;
84                 }
85
86                 return 1;
87         }
88
89         /** true to skip every other frame */
90         bool skip;
91         /** true to repeat every frame once */
92         bool repeat;
93         /** true if this DCP will run its video faster or slower than the source
94          *  without taking into account `repeat' nor `skip'.
95          *  (e.g. change_speed will be true if
96          *          source is 29.97fps, DCP is 30fps
97          *          source is 14.50fps, DCP is 30fps
98          *  but not if
99          *          source is 15.00fps, DCP is 30fps
100          *          source is 12.50fps, DCP is 25fps)
101          */
102         bool change_speed;
103
104         std::string description;
105 };
106
107 int best_dcp_frame_rate (float);
108
109 enum ContentType {
110         STILL, ///< content is still images
111         VIDEO  ///< content is a video
112 };
113
114 /** @struct Crop
115  *  @brief A description of the crop of an image or video.
116  */
117 struct Crop
118 {
119         Crop () : left (0), right (0), top (0), bottom (0) {}
120
121         /** Number of pixels to remove from the left-hand side */
122         int left;
123         /** Number of pixels to remove from the right-hand side */
124         int right;
125         /** Number of pixels to remove from the top */
126         int top;
127         /** Number of pixels to remove from the bottom */
128         int bottom;
129 };
130
131 extern bool operator== (Crop const & a, Crop const & b);
132 extern bool operator!= (Crop const & a, Crop const & b);
133
134 /** @struct Position
135  *  @brief A position.
136  */
137 struct Position
138 {
139         Position ()
140                 : x (0)
141                 , y (0)
142         {}
143
144         Position (int x_, int y_)
145                 : x (x_)
146                 , y (y_)
147         {}
148
149         /** x coordinate */
150         int x;
151         /** y coordinate */
152         int y;
153 };
154
155 /** @struct Rect
156  *  @brief A rectangle.
157  */
158 struct Rect
159 {
160         Rect ()
161                 : x (0)
162                 , y (0)
163                 , width (0)
164                 , height (0)
165         {}
166
167         Rect (int x_, int y_, int w_, int h_)
168                 : x (x_)
169                 , y (y_)
170                 , width (w_)
171                 , height (h_)
172         {}
173
174         int x;
175         int y;
176         int width;
177         int height;
178
179         Position position () const {
180                 return Position (x, y);
181         }
182
183         libdcp::Size size () const {
184                 return libdcp::Size (width, height);
185         }
186
187         Rect intersection (Rect const & other) const;
188 };
189
190 extern std::string crop_string (Position, libdcp::Size);
191 extern int dcp_audio_sample_rate (int);
192 extern std::string colour_lut_index_to_name (int index);
193 extern int stride_round_up (int, int const *, int);
194 extern int stride_lookup (int c, int const * stride);
195 extern std::multimap<std::string, std::string> read_key_value (std::istream& s);
196 extern int get_required_int (std::multimap<std::string, std::string> const & kv, std::string k);
197 extern float get_required_float (std::multimap<std::string, std::string> const & kv, std::string k);
198 extern std::string get_required_string (std::multimap<std::string, std::string> const & kv, std::string k);
199 extern int get_optional_int (std::multimap<std::string, std::string> const & kv, std::string k);
200 extern std::string get_optional_string (std::multimap<std::string, std::string> const & kv, std::string k);
201
202 /** @class Socket
203  *  @brief A class to wrap a boost::asio::ip::tcp::socket with some things
204  *  that are useful for DVD-o-matic.
205  *
206  *  This class wraps some things that I could not work out how to do with boost;
207  *  most notably, sync read/write calls with timeouts.
208  */
209 class Socket
210 {
211 public:
212         Socket (int timeout = 30);
213
214         /** @return Our underlying socket */
215         boost::asio::ip::tcp::socket& socket () {
216                 return _socket;
217         }
218
219         void connect (boost::asio::ip::basic_resolver_entry<boost::asio::ip::tcp> const & endpoint);
220
221         void write (uint32_t n);
222         void write (uint8_t const * data, int size);
223         
224         void read (uint8_t* data, int size);
225         uint32_t read_uint32 ();
226         
227 private:
228         void check ();
229
230         Socket (Socket const &);
231
232         boost::asio::io_service _io_service;
233         boost::asio::deadline_timer _deadline;
234         boost::asio::ip::tcp::socket _socket;
235         int _timeout;
236 };
237
238 /** @class AudioBuffers
239  *  @brief A class to hold multi-channel audio data in float format.
240  */
241 class AudioBuffers
242 {
243 public:
244         AudioBuffers (int channels, int frames);
245         AudioBuffers (AudioBuffers const &);
246         ~AudioBuffers ();
247
248         float** data () const {
249                 return _data;
250         }
251         
252         float* data (int) const;
253
254         int channels () const {
255                 return _channels;
256         }
257
258         int frames () const {
259                 return _frames;
260         }
261
262         void set_frames (int f);
263
264         void make_silent ();
265         void make_silent (int c);
266
267         void copy_from (AudioBuffers* from, int frames_to_copy, int read_offset, int write_offset);
268         void move (int from, int to, int frames);
269
270 private:
271         /** Number of channels */
272         int _channels;
273         /** Number of frames (where a frame is one sample across all channels) */
274         int _frames;
275         /** Number of frames that _data can hold */
276         int _allocated_frames;
277         /** Audio data (so that, e.g. _data[2][6] is channel 2, sample 6) */
278         float** _data;
279 };
280
281 class AudioMapping
282 {
283 public:
284         AudioMapping (int);
285
286         boost::optional<libdcp::Channel> source_to_dcp (int c) const;
287         boost::optional<int> dcp_to_source (libdcp::Channel c) const;
288         int dcp_channels () const;
289
290 private:
291         int _source_channels;
292 };
293
294 extern int64_t video_frames_to_audio_frames (SourceFrame v, float audio_sample_rate, float frames_per_second);
295 extern bool still_image_file (std::string);
296 extern std::pair<std::string, int> cpu_info ();
297
298 #endif
299