Use libdcp.
[dcpomatic.git] / src / lib / util.cc
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/lib/util.cc
22  *  @brief Some utility functions and classes.
23  */
24
25 #include <sstream>
26 #include <iomanip>
27 #include <iostream>
28 #include <execinfo.h>
29 #include <cxxabi.h>
30 #include <signal.h>
31 #include <sys/types.h> 
32 #include <sys/socket.h>
33 #include <boost/algorithm/string.hpp>
34 #include <openjpeg.h>
35 #include <magick/MagickCore.h>
36 #include <magick/version.h>
37 #include <libssh/libssh.h>
38 extern "C" {
39 #include <libavcodec/avcodec.h>
40 #include <libavformat/avformat.h>
41 #include <libswscale/swscale.h>
42 #include <libswresample/swresample.h>
43 #include <libavfilter/avfiltergraph.h>
44 #include <libavfilter/avcodec.h>
45 #include <libavfilter/buffersink.h>
46 #include <libpostproc/postprocess.h>
47 #include <libavutil/pixfmt.h>
48 }
49 #include "util.h"
50 #include "exceptions.h"
51 #include "scaler.h"
52 #include "format.h"
53 #include "dcp_content_type.h"
54 #include "filter.h"
55 #include "screen.h"
56 #include "film_state.h"
57 #include "player_manager.h"
58
59 #ifdef DEBUG_HASH
60 #include <mhash.h>
61 #endif
62
63 using namespace std;
64 using namespace boost;
65
66 /** Convert some number of seconds to a string representation
67  *  in hours, minutes and seconds.
68  *
69  *  @param s Seconds.
70  *  @return String of the form H:M:S (where H is hours, M
71  *  is minutes and S is seconds).
72  */
73 string
74 seconds_to_hms (int s)
75 {
76         int m = s / 60;
77         s -= (m * 60);
78         int h = m / 60;
79         m -= (h * 60);
80
81         stringstream hms;
82         hms << h << ":";
83         hms.width (2);
84         hms << setfill ('0') << m << ":";
85         hms.width (2);
86         hms << setfill ('0') << s;
87
88         return hms.str ();
89 }
90
91 /** @param s Number of seconds.
92  *  @return String containing an approximate description of s (e.g. "about 2 hours")
93  */
94 string
95 seconds_to_approximate_hms (int s)
96 {
97         int m = s / 60;
98         s -= (m * 60);
99         int h = m / 60;
100         m -= (h * 60);
101
102         stringstream ap;
103         
104         if (h > 0) {
105                 if (m > 30) {
106                         ap << (h + 1) << " hours";
107                 } else {
108                         if (h == 1) {
109                                 ap << "1 hour";
110                         } else {
111                                 ap << h << " hours";
112                         }
113                 }
114         } else if (m > 0) {
115                 if (m == 1) {
116                         ap << "1 minute";
117                 } else {
118                         ap << m << " minutes";
119                 }
120         } else {
121                 ap << s << " seconds";
122         }
123
124         return ap.str ();
125 }
126
127 /** @param l Mangled C++ identifier.
128  *  @return Demangled version.
129  */
130 static string
131 demangle (string l)
132 {
133         string::size_type const b = l.find_first_of ("(");
134         if (b == string::npos) {
135                 return l;
136         }
137
138         string::size_type const p = l.find_last_of ("+");
139         if (p == string::npos) {
140                 return l;
141         }
142
143         if ((p - b) <= 1) {
144                 return l;
145         }
146         
147         string const fn = l.substr (b + 1, p - b - 1);
148
149         int status;
150         try {
151                 
152                 char* realname = abi::__cxa_demangle (fn.c_str(), 0, 0, &status);
153                 string d (realname);
154                 free (realname);
155                 return d;
156                 
157         } catch (std::exception) {
158                 
159         }
160         
161         return l;
162 }
163
164 /** Write a stacktrace to an ostream.
165  *  @param out Stream to write to.
166  *  @param levels Number of levels to go up the call stack.
167  */
168 void
169 stacktrace (ostream& out, int levels)
170 {
171         void *array[200];
172         size_t size;
173         char **strings;
174         size_t i;
175      
176         size = backtrace (array, 200);
177         strings = backtrace_symbols (array, size);
178      
179         if (strings) {
180                 for (i = 0; i < size && (levels == 0 || i < size_t(levels)); i++) {
181                         out << "  " << demangle (strings[i]) << endl;
182                 }
183                 
184                 free (strings);
185         }
186 }
187
188 /** @param s Sample format.
189  *  @return String representation.
190  */
191 string
192 audio_sample_format_to_string (AVSampleFormat s)
193 {
194         /* Our sample format handling is not exactly complete */
195         
196         switch (s) {
197         case AV_SAMPLE_FMT_S16:
198                 return "S16";
199         default:
200                 break;
201         }
202
203         return "Unknown";
204 }
205
206 /** @param s String representation of a sample format, as returned from audio_sample_format_to_string().
207  *  @return Sample format.
208  */
209 AVSampleFormat
210 audio_sample_format_from_string (string s)
211 {
212         if (s == "S16") {
213                 return AV_SAMPLE_FMT_S16;
214         }
215
216         return AV_SAMPLE_FMT_NONE;
217 }
218
219 /** @return Version of vobcopy that is on the path (and hence that we will use) */
220 static string
221 vobcopy_version ()
222 {
223         FILE* f = popen ("vobcopy -V 2>&1", "r");
224         if (f == 0) {
225                 throw EncodeError ("could not run vobcopy to check version");
226         }
227
228         string version = "unknown";
229         
230         while (!feof (f)) {
231                 char* buf = 0;
232                 size_t n = 0;
233                 ssize_t const r = getline (&buf, &n, f);
234                 if (r > 0) {
235                         string s (buf);
236                         vector<string> b;
237                         split (b, s, is_any_of (" "));
238                         if (b.size() >= 2 && b[0] == "Vobcopy") {
239                                 version = b[1];
240                         }
241                         free (buf);
242                 }
243         }
244
245         pclose (f);
246
247         return version;
248 }
249
250 /** @param v Version as used by FFmpeg.
251  *  @return A string representation of v.
252  */
253 static string
254 ffmpeg_version_to_string (int v)
255 {
256         stringstream s;
257         s << ((v & 0xff0000) >> 16) << "." << ((v & 0xff00) >> 8) << "." << (v & 0xff);
258         return s.str ();
259 }
260
261 /** Return a user-readable string summarising the versions of our dependencies */
262 string
263 dependency_version_summary ()
264 {
265         stringstream s;
266         s << "libopenjpeg " << opj_version () << ", "
267           << "vobcopy " << vobcopy_version() << ", "
268           << "libswresample " << ffmpeg_version_to_string (swresample_version()) << ", "
269           << "libavcodec " << ffmpeg_version_to_string (avcodec_version()) << ", "
270           << "libavfilter " << ffmpeg_version_to_string (avfilter_version()) << ", "
271           << "libavformat " << ffmpeg_version_to_string (avformat_version()) << ", "
272           << "libavutil " << ffmpeg_version_to_string (avutil_version()) << ", "
273           << "libpostproc " << ffmpeg_version_to_string (postproc_version()) << ", "
274           << "libswscale " << ffmpeg_version_to_string (swscale_version()) << ", "
275           << MagickVersion << ", "
276           << "libssh " << ssh_version (0);
277
278         return s.str ();
279 }
280
281 /** Write some data to a socket.
282  *  @param fd Socket file descriptor.
283  *  @param data Data.
284  *  @param size Amount to write, in bytes.
285  */
286 void
287 socket_write (int fd, uint8_t const * data, int size)
288 {
289         uint8_t const * p = data;
290         while (size) {
291                 int const n = send (fd, p, size, MSG_NOSIGNAL);
292                 if (n < 0) {
293                         stringstream s;
294                         s << "could not write (" << strerror (errno) << ")";
295                         throw NetworkError (s.str ());
296                 }
297
298                 size -= n;
299                 p += n;
300         }
301 }
302
303 double
304 seconds (struct timeval t)
305 {
306         return t.tv_sec + (double (t.tv_usec) / 1e6);
307 }
308
309 /** @param fd File descriptor to read from */
310 SocketReader::SocketReader (int fd)
311         : _fd (fd)
312         , _buffer_data (0)
313 {
314
315 }
316
317 /** Mark some data as being `consumed', so that it will not be returned
318  *  as data again.
319  *  @param size Amount of data to consume, in bytes.
320  */
321 void
322 SocketReader::consume (int size)
323 {
324         assert (_buffer_data >= size);
325         
326         _buffer_data -= size;
327         if (_buffer_data > 0) {
328                 /* Shift still-valid data to the start of the buffer */
329                 memmove (_buffer, _buffer + size, _buffer_data);
330         }
331 }
332
333 /** Read a definite amount of data from our socket, and mark
334  *  it as consumed.
335  *  @param data Where to put the data.
336  *  @param size Number of bytes to read.
337  */
338 void
339 SocketReader::read_definite_and_consume (uint8_t* data, int size)
340 {
341         int const from_buffer = min (_buffer_data, size);
342         if (from_buffer > 0) {
343                 /* Get data from our buffer */
344                 memcpy (data, _buffer, from_buffer);
345                 consume (from_buffer);
346                 /* Update our output state */
347                 data += from_buffer;
348                 size -= from_buffer;
349         }
350
351         /* read() the rest */
352         while (size > 0) {
353                 int const n = ::read (_fd, data, size);
354                 if (n <= 0) {
355                         throw NetworkError ("could not read");
356                 }
357
358                 data += n;
359                 size -= n;
360         }
361 }
362
363 /** Read as much data as is available, up to some limit.
364  *  @param data Where to put the data.
365  *  @param size Maximum amount of data to read.
366  */
367 void
368 SocketReader::read_indefinite (uint8_t* data, int size)
369 {
370         assert (size < int (sizeof (_buffer)));
371
372         /* Amount of extra data we need to read () */
373         int to_read = size - _buffer_data;
374         while (to_read > 0) {
375                 /* read as much of it as we can (into our buffer) */
376                 int const n = ::read (_fd, _buffer + _buffer_data, to_read);
377                 if (n <= 0) {
378                         throw NetworkError ("could not read");
379                 }
380
381                 to_read -= n;
382                 _buffer_data += n;
383         }
384
385         assert (_buffer_data >= size);
386
387         /* copy data into the output buffer */
388         assert (size >= _buffer_data);
389         memcpy (data, _buffer, size);
390 }
391
392 void
393 sigchld_handler (int, siginfo_t* info, void *)
394 {
395         PlayerManager::instance()->child_exited (info->si_pid);
396 }
397
398 /** Call the required functions to set up DVD-o-matic's static arrays, etc. */
399 void
400 dvdomatic_setup ()
401 {
402         Format::setup_formats ();
403         DCPContentType::setup_dcp_content_types ();
404         Scaler::setup_scalers ();
405         Filter::setup_filters ();
406
407         struct sigaction sa;
408         sa.sa_flags = SA_SIGINFO;
409         sigemptyset (&sa.sa_mask);
410         sa.sa_sigaction = sigchld_handler;
411         sigaction (SIGCHLD, &sa, 0);
412 }
413
414 string
415 crop_string (Position start, Size size)
416 {
417         stringstream s;
418         s << "crop=" << size.width << ":" << size.height << ":" << start.x << ":" << start.y;
419         return s.str ();
420 }
421
422 vector<string>
423 split_at_spaces_considering_quotes (string s)
424 {
425         vector<string> out;
426         bool in_quotes = false;
427         string c;
428         for (string::size_type i = 0; i < s.length(); ++i) {
429                 if (s[i] == ' ' && !in_quotes) {
430                         out.push_back (c);
431                         c = "";
432                 } else if (s[i] == '"') {
433                         in_quotes = !in_quotes;
434                 } else {
435                         c += s[i];
436                 }
437         }
438
439         out.push_back (c);
440         return out;
441 }
442
443 #ifdef DEBUG_HASH
444 void
445 md5_data (string title, void const * data, int size)
446 {
447         MHASH ht = mhash_init (MHASH_MD5);
448         if (ht == MHASH_FAILED) {
449                 throw EncodeError ("could not create hash thread");
450         }
451
452         mhash (ht, data, size);
453         
454         uint8_t hash[16];
455         mhash_deinit (ht, hash);
456         
457         printf ("%s [%d]: ", title.c_str (), size);
458         for (int i = 0; i < int (mhash_get_block_size (MHASH_MD5)); ++i) {
459                 printf ("%.2x", hash[i]);
460         }
461         printf ("\n");
462 }
463 #endif
464