Use io_service per thread.
[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 <fstream>
29 #ifdef DVDOMATIC_POSIX
30 #include <execinfo.h>
31 #include <cxxabi.h>
32 #endif
33 #include <libssh/libssh.h>
34 #include <signal.h>
35 #include <boost/algorithm/string.hpp>
36 #include <boost/bind.hpp>
37 #include <boost/lambda/lambda.hpp>
38 #include <openjpeg.h>
39 #include <openssl/md5.h>
40 #include <magick/MagickCore.h>
41 #include <magick/version.h>
42 #include <libdcp/version.h>
43 extern "C" {
44 #include <libavcodec/avcodec.h>
45 #include <libavformat/avformat.h>
46 #include <libswscale/swscale.h>
47 #include <libavfilter/avfiltergraph.h>
48 #include <libpostproc/postprocess.h>
49 #include <libavutil/pixfmt.h>
50 }
51 #include "util.h"
52 #include "exceptions.h"
53 #include "scaler.h"
54 #include "format.h"
55 #include "dcp_content_type.h"
56 #include "filter.h"
57 #include "screen.h"
58 #include "film_state.h"
59 #include "sound_processor.h"
60 #ifndef DVDOMATIC_DISABLE_PLAYER
61 #include "player_manager.h"
62 #endif
63
64 #ifdef DEBUG_HASH
65 #include <mhash.h>
66 #endif
67
68 using namespace std;
69 using namespace boost;
70
71 /** Convert some number of seconds to a string representation
72  *  in hours, minutes and seconds.
73  *
74  *  @param s Seconds.
75  *  @return String of the form H:M:S (where H is hours, M
76  *  is minutes and S is seconds).
77  */
78 string
79 seconds_to_hms (int s)
80 {
81         int m = s / 60;
82         s -= (m * 60);
83         int h = m / 60;
84         m -= (h * 60);
85
86         stringstream hms;
87         hms << h << ":";
88         hms.width (2);
89         hms << setfill ('0') << m << ":";
90         hms.width (2);
91         hms << setfill ('0') << s;
92
93         return hms.str ();
94 }
95
96 /** @param s Number of seconds.
97  *  @return String containing an approximate description of s (e.g. "about 2 hours")
98  */
99 string
100 seconds_to_approximate_hms (int s)
101 {
102         int m = s / 60;
103         s -= (m * 60);
104         int h = m / 60;
105         m -= (h * 60);
106
107         stringstream ap;
108         
109         if (h > 0) {
110                 if (m > 30) {
111                         ap << (h + 1) << " hours";
112                 } else {
113                         if (h == 1) {
114                                 ap << "1 hour";
115                         } else {
116                                 ap << h << " hours";
117                         }
118                 }
119         } else if (m > 0) {
120                 if (m == 1) {
121                         ap << "1 minute";
122                 } else {
123                         ap << m << " minutes";
124                 }
125         } else {
126                 ap << s << " seconds";
127         }
128
129         return ap.str ();
130 }
131
132 #ifdef DVDOMATIC_POSIX
133 /** @param l Mangled C++ identifier.
134  *  @return Demangled version.
135  */
136 static string
137 demangle (string l)
138 {
139         string::size_type const b = l.find_first_of ("(");
140         if (b == string::npos) {
141                 return l;
142         }
143
144         string::size_type const p = l.find_last_of ("+");
145         if (p == string::npos) {
146                 return l;
147         }
148
149         if ((p - b) <= 1) {
150                 return l;
151         }
152         
153         string const fn = l.substr (b + 1, p - b - 1);
154
155         int status;
156         try {
157                 
158                 char* realname = abi::__cxa_demangle (fn.c_str(), 0, 0, &status);
159                 string d (realname);
160                 free (realname);
161                 return d;
162                 
163         } catch (std::exception) {
164                 
165         }
166         
167         return l;
168 }
169
170 /** Write a stacktrace to an ostream.
171  *  @param out Stream to write to.
172  *  @param levels Number of levels to go up the call stack.
173  */
174 void
175 stacktrace (ostream& out, int levels)
176 {
177         void *array[200];
178         size_t size;
179         char **strings;
180         size_t i;
181      
182         size = backtrace (array, 200);
183         strings = backtrace_symbols (array, size);
184      
185         if (strings) {
186                 for (i = 0; i < size && (levels == 0 || i < size_t(levels)); i++) {
187                         out << "  " << demangle (strings[i]) << endl;
188                 }
189                 
190                 free (strings);
191         }
192 }
193 #endif
194
195 /** @param s Sample format.
196  *  @return String representation.
197  */
198 string
199 audio_sample_format_to_string (AVSampleFormat s)
200 {
201         /* Our sample format handling is not exactly complete */
202         
203         switch (s) {
204         case AV_SAMPLE_FMT_S16:
205                 return "S16";
206         default:
207                 break;
208         }
209
210         return "Unknown";
211 }
212
213 /** @param s String representation of a sample format, as returned from audio_sample_format_to_string().
214  *  @return Sample format.
215  */
216 AVSampleFormat
217 audio_sample_format_from_string (string s)
218 {
219         if (s == "S16") {
220                 return AV_SAMPLE_FMT_S16;
221         }
222
223         return AV_SAMPLE_FMT_NONE;
224 }
225
226 /** @return Version of vobcopy that is on the path (and hence that we will use) */
227 static string
228 vobcopy_version ()
229 {
230         FILE* f = popen ("vobcopy -V 2>&1", "r");
231         if (f == 0) {
232                 throw EncodeError ("could not run vobcopy to check version");
233         }
234
235         string version = "unknown";
236         
237         while (!feof (f)) {
238                 char buf[256];
239                 if (fgets (buf, sizeof (buf), f)) {
240                         string s (buf);
241                         vector<string> b;
242                         split (b, s, is_any_of (" "));
243                         if (b.size() >= 2 && b[0] == "Vobcopy") {
244                                 version = b[1];
245                         }
246                 }
247         }
248
249         pclose (f);
250
251         return version;
252 }
253
254 /** @param v Version as used by FFmpeg.
255  *  @return A string representation of v.
256  */
257 static string
258 ffmpeg_version_to_string (int v)
259 {
260         stringstream s;
261         s << ((v & 0xff0000) >> 16) << "." << ((v & 0xff00) >> 8) << "." << (v & 0xff);
262         return s.str ();
263 }
264
265 /** Return a user-readable string summarising the versions of our dependencies */
266 string
267 dependency_version_summary ()
268 {
269         stringstream s;
270         s << "libopenjpeg " << opj_version () << ", "
271           << "vobcopy " << vobcopy_version() << ", "
272           << "libavcodec " << ffmpeg_version_to_string (avcodec_version()) << ", "
273           << "libavfilter " << ffmpeg_version_to_string (avfilter_version()) << ", "
274           << "libavformat " << ffmpeg_version_to_string (avformat_version()) << ", "
275           << "libavutil " << ffmpeg_version_to_string (avutil_version()) << ", "
276           << "libpostproc " << ffmpeg_version_to_string (postproc_version()) << ", "
277           << "libswscale " << ffmpeg_version_to_string (swscale_version()) << ", "
278           << MagickVersion << ", "
279           << "libssh " << ssh_version (0) << ", "
280           << "libdcp " << libdcp::version << " git " << libdcp::git_commit;
281
282         return s.str ();
283 }
284
285 double
286 seconds (struct timeval t)
287 {
288         return t.tv_sec + (double (t.tv_usec) / 1e6);
289 }
290
291
292 #ifdef DVDOMATIC_POSIX
293 void
294 sigchld_handler (int, siginfo_t* info, void *)
295 {
296 #ifndef DVDOMATIC_DISABLE_PLAYER        
297         PlayerManager::instance()->child_exited (info->si_pid);
298 #endif  
299 }
300 #endif
301
302 /** Call the required functions to set up DVD-o-matic's static arrays, etc. */
303 void
304 dvdomatic_setup ()
305 {
306         Format::setup_formats ();
307         DCPContentType::setup_dcp_content_types ();
308         Scaler::setup_scalers ();
309         Filter::setup_filters ();
310         SoundProcessor::setup_sound_processors ();
311
312 #ifdef DVDOMATIC_POSIX  
313         struct sigaction sa;
314         sa.sa_flags = SA_SIGINFO;
315         sigemptyset (&sa.sa_mask);
316         sa.sa_sigaction = sigchld_handler;
317         sigaction (SIGCHLD, &sa, 0);
318 #endif  
319 }
320
321 string
322 crop_string (Position start, Size size)
323 {
324         stringstream s;
325         s << "crop=" << size.width << ":" << size.height << ":" << start.x << ":" << start.y;
326         return s.str ();
327 }
328
329 vector<string>
330 split_at_spaces_considering_quotes (string s)
331 {
332         vector<string> out;
333         bool in_quotes = false;
334         string c;
335         for (string::size_type i = 0; i < s.length(); ++i) {
336                 if (s[i] == ' ' && !in_quotes) {
337                         out.push_back (c);
338                         c = "";
339                 } else if (s[i] == '"') {
340                         in_quotes = !in_quotes;
341                 } else {
342                         c += s[i];
343                 }
344         }
345
346         out.push_back (c);
347         return out;
348 }
349
350 #ifdef DEBUG_HASH
351 void
352 md5_data (string title, void const * data, int size)
353 {
354         MHASH ht = mhash_init (MHASH_MD5);
355         if (ht == MHASH_FAILED) {
356                 throw EncodeError ("could not create hash thread");
357         }
358
359         mhash (ht, data, size);
360         
361         uint8_t hash[16];
362         mhash_deinit (ht, hash);
363         
364         printf ("%s [%d]: ", title.c_str (), size);
365         for (int i = 0; i < int (mhash_get_block_size (MHASH_MD5)); ++i) {
366                 printf ("%.2x", hash[i]);
367         }
368         printf ("\n");
369 }
370 #endif
371
372 string
373 md5_digest (string file)
374 {
375         ifstream f (file.c_str(), ios::binary);
376         if (!f.good ()) {
377                 throw OpenFileError (file);
378         }
379         
380         f.seekg (0, ios::end);
381         int bytes = f.tellg ();
382         f.seekg (0, ios::beg);
383
384         int const buffer_size = 64 * 1024;
385         char buffer[buffer_size];
386
387         MD5_CTX md5_context;
388         MD5_Init (&md5_context);
389         while (bytes > 0) {
390                 int const t = min (bytes, buffer_size);
391                 f.read (buffer, t);
392                 MD5_Update (&md5_context, buffer, t);
393                 bytes -= t;
394         }
395
396         unsigned char digest[MD5_DIGEST_LENGTH];
397         MD5_Final (digest, &md5_context);
398
399         stringstream s;
400         for (int i = 0; i < MD5_DIGEST_LENGTH; ++i) {
401                 s << hex << setfill('0') << setw(2) << ((int) digest[i]);
402         }
403
404         return s.str ();
405 }
406
407 int
408 dcp_audio_sample_rate (int fs)
409 {
410         if (fs <= 48000) {
411                 return 48000;
412         }
413
414         return 96000;
415 }
416
417 bool operator== (Crop const & a, Crop const & b)
418 {
419         return (a.left == b.left && a.right == b.right && a.top == b.top && a.bottom == b.bottom);
420 }
421
422 bool operator!= (Crop const & a, Crop const & b)
423 {
424         return !(a == b);
425 }
426
427 string
428 colour_lut_index_to_name (int index)
429 {
430         switch (index) {
431         case 0:
432                 return "sRGB";
433         case 1:
434                 return "Rec 709";
435         }
436
437         assert (false);
438         return "";
439 }
440
441 DeadlineWrapper::DeadlineWrapper ()
442         : _deadline (_io_service)
443         , _socket (_io_service)
444         , _buffer_data (0)
445 {
446         _deadline.expires_at (posix_time::pos_infin);
447         check ();
448 }
449
450 void
451 DeadlineWrapper::check ()
452 {
453         if (_deadline.expires_at() <= asio::deadline_timer::traits_type::now ()) {
454                 _socket.close ();
455                 _deadline.expires_at (posix_time::pos_infin);
456         }
457
458         _deadline.async_wait (boost::bind (&DeadlineWrapper::check, this));
459 }
460
461 void
462 DeadlineWrapper::connect (asio::ip::basic_resolver_entry<asio::ip::tcp> const & endpoint, int timeout)
463 {
464         system::error_code ec = asio::error::would_block;
465         _socket.async_connect (endpoint, lambda::var(ec) = lambda::_1);
466         do {
467                 _io_service.run_one();
468         } while (ec == asio::error::would_block);
469
470         if (ec || !_socket.is_open ()) {
471                 throw NetworkError ("connect timed out");
472         }
473 }
474
475 void
476 DeadlineWrapper::write (uint8_t const * data, int size, int timeout)
477 {
478         _deadline.expires_from_now (posix_time::seconds (timeout));
479         system::error_code ec = asio::error::would_block;
480
481         asio::async_write (_socket, asio::buffer (data, size), lambda::var(ec) = lambda::_1);
482         do {
483                 _io_service.run_one ();
484         } while (ec == asio::error::would_block);
485
486         if (ec) {
487                 throw NetworkError ("write timed out");
488         }
489 }
490
491 int
492 DeadlineWrapper::read (uint8_t* data, int size, int timeout)
493 {
494         _deadline.expires_from_now (posix_time::seconds (timeout));
495         system::error_code ec = asio::error::would_block;
496
497         int amount_read = 0;
498
499         _socket.async_read_some (
500                 asio::buffer (data, size),
501                 (lambda::var(ec) = lambda::_1, lambda::var(amount_read) = lambda::_2)
502                 );
503
504         do {
505                 _io_service.run_one ();
506         } while (ec == asio::error::would_block);
507         
508         if (ec) {
509                 amount_read = 0;
510         }
511
512         return amount_read;
513 }
514
515 /** Mark some data as being `consumed', so that it will not be returned
516  *  as data again.
517  *  @param size Amount of data to consume, in bytes.
518  */
519 void
520 DeadlineWrapper::consume (int size)
521 {
522         assert (_buffer_data >= size);
523         
524         _buffer_data -= size;
525         if (_buffer_data > 0) {
526                 /* Shift still-valid data to the start of the buffer */
527                 memmove (_buffer, _buffer + size, _buffer_data);
528         }
529 }
530
531 /** Read a definite amount of data from our socket, and mark
532  *  it as consumed.
533  *  @param data Where to put the data.
534  *  @param size Number of bytes to read.
535  */
536 void
537 DeadlineWrapper::read_definite_and_consume (uint8_t* data, int size, int timeout)
538 {
539         int const from_buffer = min (_buffer_data, size);
540         if (from_buffer > 0) {
541                 /* Get data from our buffer */
542                 memcpy (data, _buffer, from_buffer);
543                 consume (from_buffer);
544                 /* Update our output state */
545                 data += from_buffer;
546                 size -= from_buffer;
547         }
548
549         /* read() the rest */
550         while (size > 0) {
551                 int const n = read (data, size, timeout);
552                 if (n <= 0) {
553                         throw NetworkError ("could not read");
554                 }
555
556                 data += n;
557                 size -= n;
558         }
559 }
560
561 /** Read as much data as is available, up to some limit.
562  *  @param data Where to put the data.
563  *  @param size Maximum amount of data to read.
564  */
565 void
566 DeadlineWrapper::read_indefinite (uint8_t* data, int size, int timeout)
567 {
568         assert (size < int (sizeof (_buffer)));
569
570         /* Amount of extra data we need to read () */
571         int to_read = size - _buffer_data;
572         while (to_read > 0) {
573                 /* read as much of it as we can (into our buffer) */
574                 int const n = read (_buffer + _buffer_data, to_read, timeout);
575                 if (n <= 0) {
576                         throw NetworkError ("could not read");
577                 }
578
579                 to_read -= n;
580                 _buffer_data += n;
581         }
582
583         assert (_buffer_data >= size);
584
585         /* copy data into the output buffer */
586         assert (size >= _buffer_data);
587         memcpy (data, _buffer, size);
588 }