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