GUI and metadata for external 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 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 round_up (int, int);
174 extern std::multimap<std::string, std::string> read_key_value (std::istream& s);
175 extern int get_required_int (std::multimap<std::string, std::string> const & kv, std::string k);
176 extern float get_required_float (std::multimap<std::string, std::string> const & kv, std::string k);
177 extern std::string get_required_string (std::multimap<std::string, std::string> const & kv, std::string k);
178 extern int get_optional_int (std::multimap<std::string, std::string> const & kv, std::string k);
179 extern std::string get_optional_string (std::multimap<std::string, std::string> const & kv, std::string k);
180
181 /** @class Socket
182  *  @brief A class to wrap a boost::asio::ip::tcp::socket with some things
183  *  that are useful for DVD-o-matic.
184  *
185  *  This class wraps some things that I could not work out how to do with boost;
186  *  most notably, sync read/write calls with timeouts, and the ability to peek into
187  *  data being read.
188  */
189 class Socket
190 {
191 public:
192         Socket ();
193
194         /** @return Our underlying socket */
195         boost::asio::ip::tcp::socket& socket () {
196                 return _socket;
197         }
198
199         void connect (boost::asio::ip::basic_resolver_entry<boost::asio::ip::tcp> const & endpoint, int timeout);
200         void write (uint8_t const * data, int size, int timeout);
201         
202         void read_definite_and_consume (uint8_t* data, int size, int timeout);
203         void read_indefinite (uint8_t* data, int size, int timeout);
204         void consume (int amount);
205         
206 private:
207         void check ();
208         int read (uint8_t* data, int size, int timeout);
209
210         Socket (Socket const &);
211
212         boost::asio::io_service _io_service;
213         boost::asio::deadline_timer _deadline;
214         boost::asio::ip::tcp::socket _socket;
215         /** a buffer for small reads */
216         uint8_t _buffer[1024];
217         /** amount of valid data in the buffer */
218         int _buffer_data;
219 };
220
221 class AudioBuffers
222 {
223 public:
224         AudioBuffers (int channels, int frames);
225         AudioBuffers (AudioBuffers const &);
226         ~AudioBuffers ();
227
228         float** data () const {
229                 return _data;
230         }
231         
232         float* data (int) const;
233
234         int channels () const {
235                 return _channels;
236         }
237
238         int frames () const {
239                 return _frames;
240         }
241
242         void set_frames (int f);
243
244         void make_silent ();
245
246         void copy_from (AudioBuffers* from, int frames_to_copy, int read_offset, int write_offset);
247         void move (int from, int to, int frames);
248
249 private:
250         int _channels;
251         int _frames;
252         int _allocated_frames;
253         float** _data;
254 };
255
256 extern int64_t video_frames_to_audio_frames (SourceFrame v, float audio_sample_rate, float frames_per_second);
257
258 #endif
259