53e78e57c8f1d44142bf5e2551812ce63d1b069f
[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 extern "C" {
33 #include <libavcodec/avcodec.h>
34 #include <libavfilter/avfilter.h>
35 }
36 #include "compose.hpp"
37
38 #ifdef DVDOMATIC_DEBUG
39 #define TIMING(...) _film->log()->microsecond_log (String::compose (__VA_ARGS__), Log::TIMING);
40 #else
41 #define TIMING(...)
42 #endif
43
44 #define MAX_AUDIO_CHANNELS 6
45
46 class Scaler;
47
48 extern std::string seconds_to_hms (int);
49 extern std::string seconds_to_approximate_hms (int);
50 extern void stacktrace (std::ostream &, int);
51 extern std::string dependency_version_summary ();
52 extern double seconds (struct timeval);
53 extern void dvdomatic_setup ();
54 extern std::vector<std::string> split_at_spaces_considering_quotes (std::string);
55 extern std::string md5_digest (std::string);
56 extern std::string md5_digest (void const *, int);
57 extern void ensure_ui_thread ();
58
59 typedef int SourceFrame;
60
61 struct DCPFrameRate
62 {
63         int frames_per_second;
64         int skip;
65         bool run_fast;
66 };
67
68 enum ContentType {
69         STILL,
70         VIDEO
71 };
72
73 /** @class Size
74  *  @brief Representation of the size of something */
75 struct Size
76 {
77         /** Construct a zero Size */
78         Size ()
79                 : width (0)
80                 , height (0)
81         {}
82
83         /** @param w Width.
84          *  @param h Height.
85          */
86         Size (int w, int h)
87                 : width (w)
88                 , height (h)
89         {}
90
91         /** width */
92         int width;
93         /** height */
94         int height;
95 };
96
97 extern bool operator== (Size const & a, Size const & b);
98
99 /** A description of the crop of an image or video. */
100 struct Crop
101 {
102         Crop () : left (0), right (0), top (0), bottom (0) {}
103
104         /** Number of pixels to remove from the left-hand side */
105         int left;
106         /** Number of pixels to remove from the right-hand side */
107         int right;
108         /** Number of pixels to remove from the top */
109         int top;
110         /** Number of pixels to remove from the bottom */
111         int bottom;
112 };
113
114 extern bool operator== (Crop const & a, Crop const & b);
115 extern bool operator!= (Crop const & a, Crop const & b);
116
117 /** A position */
118 struct Position
119 {
120         Position ()
121                 : x (0)
122                 , y (0)
123         {}
124
125         Position (int x_, int y_)
126                 : x (x_)
127                 , y (y_)
128         {}
129
130         /** x coordinate */
131         int x;
132         /** y coordinate */
133         int y;
134 };
135
136 /** A rectangle */
137 struct Rect
138 {
139         Rect ()
140                 : x (0)
141                 , y (0)
142                 , width (0)
143                 , height (0)
144         {}
145
146         Rect (int x_, int y_, int w_, int h_)
147                 : x (x_)
148                 , y (y_)
149                 , width (w_)
150                 , height (h_)
151         {}
152
153         int x;
154         int y;
155         int width;
156         int height;
157
158         Position position () const {
159                 return Position (x, y);
160         }
161
162         Size size () const {
163                 return Size (width, height);
164         }
165
166         Rect intersection (Rect const & other) const;
167 };
168
169 extern std::string crop_string (Position, Size);
170 extern int dcp_audio_sample_rate (int);
171 extern DCPFrameRate dcp_frame_rate (float);
172 extern std::string colour_lut_index_to_name (int index);
173 extern int stride_round_up (int, int const *, int);
174 extern int stride_lookup (int c, int const * stride);
175 extern std::multimap<std::string, std::string> read_key_value (std::istream& s);
176 extern int get_required_int (std::multimap<std::string, std::string> const & kv, std::string k);
177 extern float get_required_float (std::multimap<std::string, std::string> const & kv, std::string k);
178 extern std::string get_required_string (std::multimap<std::string, std::string> const & kv, std::string k);
179 extern int get_optional_int (std::multimap<std::string, std::string> const & kv, std::string k);
180 extern std::string get_optional_string (std::multimap<std::string, std::string> const & kv, std::string k);
181
182 /** @class Socket
183  *  @brief A class to wrap a boost::asio::ip::tcp::socket with some things
184  *  that are useful for DVD-o-matic.
185  *
186  *  This class wraps some things that I could not work out how to do with boost;
187  *  most notably, sync read/write calls with timeouts, and the ability to peek into
188  *  data being read.
189  */
190 class Socket
191 {
192 public:
193         Socket ();
194
195         /** @return Our underlying socket */
196         boost::asio::ip::tcp::socket& socket () {
197                 return _socket;
198         }
199
200         void connect (boost::asio::ip::basic_resolver_entry<boost::asio::ip::tcp> const & endpoint, int timeout);
201         void write (uint8_t const * data, int size, int timeout);
202         
203         void read_definite_and_consume (uint8_t* data, int size, int timeout);
204         void read_indefinite (uint8_t* data, int size, int timeout);
205         void consume (int amount);
206         
207 private:
208         void check ();
209         int read (uint8_t* data, int size, int timeout);
210
211         Socket (Socket const &);
212
213         boost::asio::io_service _io_service;
214         boost::asio::deadline_timer _deadline;
215         boost::asio::ip::tcp::socket _socket;
216         /** a buffer for small reads */
217         uint8_t _buffer[1024];
218         /** amount of valid data in the buffer */
219         int _buffer_data;
220 };
221
222 class AudioBuffers
223 {
224 public:
225         AudioBuffers (int channels, int frames);
226         AudioBuffers (AudioBuffers const &);
227         ~AudioBuffers ();
228
229         float** data () const {
230                 return _data;
231         }
232         
233         float* data (int) const;
234
235         int channels () const {
236                 return _channels;
237         }
238
239         int frames () const {
240                 return _frames;
241         }
242
243         void set_frames (int f);
244
245         void make_silent ();
246         void make_silent (int c);
247
248         void copy_from (AudioBuffers* from, int frames_to_copy, int read_offset, int write_offset);
249         void move (int from, int to, int frames);
250
251 private:
252         int _channels;
253         int _frames;
254         int _allocated_frames;
255         float** _data;
256 };
257
258 extern int64_t video_frames_to_audio_frames (SourceFrame v, float audio_sample_rate, float frames_per_second);
259 extern bool still_image_file (std::string);
260
261 #endif
262