Merge master.
[dcpomatic.git] / src / lib / util.cc
1 /*
2     Copyright (C) 2012-2014 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 <iomanip>
26 #include <iostream>
27 #include <fstream>
28 #include <climits>
29 #include <stdexcept>
30 #ifdef DCPOMATIC_POSIX
31 #include <execinfo.h>
32 #include <cxxabi.h>
33 #endif
34 #include <libssh/libssh.h>
35 #include <signal.h>
36 #include <boost/algorithm/string.hpp>
37 #include <boost/bind.hpp>
38 #include <boost/lambda/lambda.hpp>
39 #include <boost/thread.hpp>
40 #include <boost/filesystem.hpp>
41 #ifdef DCPOMATIC_WINDOWS
42 #include <boost/locale.hpp>
43 #endif
44 #include <glib.h>
45 #include <openjpeg.h>
46 #include <pangomm/init.h>
47 #include <magick/MagickCore.h>
48 #include <magick/version.h>
49 #include <dcp/version.h>
50 #include <dcp/util.h>
51 #include <dcp/signer.h>
52 #include <dcp/raw_convert.h>
53 extern "C" {
54 #include <libavcodec/avcodec.h>
55 #include <libavformat/avformat.h>
56 #include <libswscale/swscale.h>
57 #include <libavfilter/avfiltergraph.h>
58 #include <libavutil/pixfmt.h>
59 }
60 #include "util.h"
61 #include "exceptions.h"
62 #include "scaler.h"
63 #include "dcp_content_type.h"
64 #include "filter.h"
65 #include "cinema_sound_processor.h"
66 #include "config.h"
67 #include "ratio.h"
68 #include "job.h"
69 #include "cross.h"
70 #include "video_content.h"
71 #include "rect.h"
72 #include "md5_digester.h"
73 #include "audio_processor.h"
74 #include "safe_stringstream.h"
75 #ifdef DCPOMATIC_WINDOWS
76 #include "stack.hpp"
77 #endif
78
79 #include "i18n.h"
80
81 using std::string;
82 using std::setfill;
83 using std::ostream;
84 using std::endl;
85 using std::vector;
86 using std::hex;
87 using std::setw;
88 using std::ios;
89 using std::min;
90 using std::max;
91 using std::list;
92 using std::multimap;
93 using std::map;
94 using std::istream;
95 using std::numeric_limits;
96 using std::pair;
97 using std::cout;
98 using std::bad_alloc;
99 using std::streampos;
100 using std::set_terminate;
101 using boost::shared_ptr;
102 using boost::thread;
103 using boost::optional;
104 using dcp::Size;
105 using dcp::raw_convert;
106
107 static boost::thread::id ui_thread;
108 static boost::filesystem::path backtrace_file;
109
110 /** Convert some number of seconds to a string representation
111  *  in hours, minutes and seconds.
112  *
113  *  @param s Seconds.
114  *  @return String of the form H:M:S (where H is hours, M
115  *  is minutes and S is seconds).
116  */
117 string
118 seconds_to_hms (int s)
119 {
120         int m = s / 60;
121         s -= (m * 60);
122         int h = m / 60;
123         m -= (h * 60);
124
125         SafeStringStream hms;
126         hms << h << N_(":");
127         hms.width (2);
128         hms << std::setfill ('0') << m << N_(":");
129         hms.width (2);
130         hms << std::setfill ('0') << s;
131
132         return hms.str ();
133 }
134
135 /** @param s Number of seconds.
136  *  @return String containing an approximate description of s (e.g. "about 2 hours")
137  */
138 string
139 seconds_to_approximate_hms (int s)
140 {
141         int m = s / 60;
142         s -= (m * 60);
143         int h = m / 60;
144         m -= (h * 60);
145
146         SafeStringStream ap;
147
148         bool const hours = h > 0;
149         bool const minutes = h < 10 && m > 0;
150         bool const seconds = m < 10 && s > 0;
151
152         if (hours) {
153                 if (m > 30 && !minutes) {
154                         ap << (h + 1) << N_(" ") << _("hours");
155                 } else {
156                         ap << h << N_(" ");
157                         if (h == 1) {
158                                 ap << _("hour");
159                         } else {
160                                 ap << _("hours");
161                         }
162                 }
163
164                 if (minutes | seconds) {
165                         ap << N_(" ");
166                 }
167         }
168
169         if (minutes) {
170                 /* Minutes */
171                 if (s > 30 && !seconds) {
172                         ap << (m + 1) << N_(" ") << _("minutes");
173                 } else {
174                         ap << m << N_(" ");
175                         if (m == 1) {
176                                 ap << _("minute");
177                         } else {
178                                 ap << _("minutes");
179                         }
180                 }
181
182                 if (seconds) {
183                         ap << N_(" ");
184                 }
185         }
186
187         if (seconds) {
188                 /* Seconds */
189                 ap << s << N_(" ");
190                 if (s == 1) {
191                         ap << _("second");
192                 } else {
193                         ap << _("seconds");
194                 }
195         }
196
197         return ap.str ();
198 }
199
200 #ifdef DCPOMATIC_POSIX
201 /** @param l Mangled C++ identifier.
202  *  @return Demangled version.
203  */
204 static string
205 demangle (string l)
206 {
207         string::size_type const b = l.find_first_of (N_("("));
208         if (b == string::npos) {
209                 return l;
210         }
211
212         string::size_type const p = l.find_last_of (N_("+"));
213         if (p == string::npos) {
214                 return l;
215         }
216
217         if ((p - b) <= 1) {
218                 return l;
219         }
220         
221         string const fn = l.substr (b + 1, p - b - 1);
222
223         int status;
224         try {
225                 
226                 char* realname = abi::__cxa_demangle (fn.c_str(), 0, 0, &status);
227                 string d (realname);
228                 free (realname);
229                 return d;
230                 
231         } catch (std::exception) {
232                 
233         }
234         
235         return l;
236 }
237
238 /** Write a stacktrace to an ostream.
239  *  @param out Stream to write to.
240  *  @param levels Number of levels to go up the call stack.
241  */
242 void
243 stacktrace (ostream& out, int levels)
244 {
245         void *array[200];
246         size_t size = backtrace (array, 200);
247         char** strings = backtrace_symbols (array, size);
248      
249         if (strings) {
250                 for (size_t i = 0; i < size && (levels == 0 || i < size_t(levels)); i++) {
251                         out << N_("  ") << demangle (strings[i]) << "\n";
252                 }
253                 
254                 free (strings);
255         }
256 }
257 #endif
258
259 /** @param v Version as used by FFmpeg.
260  *  @return A string representation of v.
261  */
262 static string
263 ffmpeg_version_to_string (int v)
264 {
265         SafeStringStream s;
266         s << ((v & 0xff0000) >> 16) << N_(".") << ((v & 0xff00) >> 8) << N_(".") << (v & 0xff);
267         return s.str ();
268 }
269
270 double
271 seconds (struct timeval t)
272 {
273         return t.tv_sec + (double (t.tv_usec) / 1e6);
274 }
275
276 #ifdef DCPOMATIC_WINDOWS
277 LONG WINAPI exception_handler(struct _EXCEPTION_POINTERS *)
278 {
279         dbg::stack s;
280         FILE* f = fopen_boost (backtrace_file, "w");
281         fprintf (f, "Exception thrown:");
282         for (dbg::stack::const_iterator i = s.begin(); i != s.end(); ++i) {
283                 fprintf (f, "%p %s %d %s\n", i->instruction, i->function.c_str(), i->line, i->module.c_str());
284         }
285         fclose (f);
286         return EXCEPTION_CONTINUE_SEARCH;
287 }
288 #endif
289
290 /* From http://stackoverflow.com/questions/2443135/how-do-i-find-where-an-exception-was-thrown-in-c */
291 void
292 terminate ()
293 {
294         static bool tried_throw = false;
295
296         try {
297                 // try once to re-throw currently active exception
298                 if (!tried_throw) {
299                         tried_throw = true;
300                         throw;
301                 }
302         }
303         catch (const std::exception &e) {
304                 std::cerr << __FUNCTION__ << " caught unhandled exception. what(): "
305                           << e.what() << std::endl;
306         }
307         catch (...) {
308                 std::cerr << __FUNCTION__ << " caught unknown/unhandled exception." 
309                           << std::endl;
310         }
311
312 #ifdef DCPOMATIC_POSIX
313         stacktrace (cout, 50);
314 #endif
315         abort();
316 }
317
318 /** Call the required functions to set up DCP-o-matic's static arrays, etc.
319  *  Must be called from the UI thread, if there is one.
320  */
321 void
322 dcpomatic_setup ()
323 {
324 #ifdef DCPOMATIC_WINDOWS
325         backtrace_file /= g_get_user_config_dir ();
326         backtrace_file /= "backtrace.txt";
327         SetUnhandledExceptionFilter(exception_handler);
328
329         /* Dark voodoo which, I think, gets boost::filesystem::path to
330            correctly convert UTF-8 strings to paths, and also paths
331            back to UTF-8 strings (on path::string()).
332
333            After this, constructing boost::filesystem::paths from strings
334            converts from UTF-8 to UTF-16 inside the path.  Then
335            path::string().c_str() gives UTF-8 and
336            path::c_str()          gives UTF-16.
337
338            This is all Windows-only.  AFAICT Linux/OS X use UTF-8 everywhere,
339            so things are much simpler.
340         */
341         std::locale::global (boost::locale::generator().generate (""));
342         boost::filesystem::path::imbue (std::locale ());
343 #endif  
344         
345         avfilter_register_all ();
346
347 #ifdef DCPOMATIC_OSX
348         /* Add our lib directory to the libltdl search path so that
349            xmlsec can find xmlsec1-openssl.
350         */
351         boost::filesystem::path lib = app_contents ();
352         lib /= "lib";
353         setenv ("LTDL_LIBRARY_PATH", lib.c_str (), 1);
354 #endif
355
356         set_terminate (terminate);
357
358         Pango::init ();
359         dcp::init ();
360         
361         Ratio::setup_ratios ();
362         VideoContentScale::setup_scales ();
363         DCPContentType::setup_dcp_content_types ();
364         Scaler::setup_scalers ();
365         Filter::setup_filters ();
366         CinemaSoundProcessor::setup_cinema_sound_processors ();
367         AudioProcessor::setup_audio_processors ();
368
369         ui_thread = boost::this_thread::get_id ();
370 }
371
372 #ifdef DCPOMATIC_WINDOWS
373 boost::filesystem::path
374 mo_path ()
375 {
376         wchar_t buffer[512];
377         GetModuleFileName (0, buffer, 512 * sizeof(wchar_t));
378         boost::filesystem::path p (buffer);
379         p = p.parent_path ();
380         p = p.parent_path ();
381         p /= "locale";
382         return p;
383 }
384 #endif
385
386 #ifdef DCPOMATIC_OSX
387 boost::filesystem::path
388 mo_path ()
389 {
390         return "DCP-o-matic.app/Contents/Resources";
391 }
392 #endif
393
394 void
395 dcpomatic_setup_gettext_i18n (string lang)
396 {
397 #ifdef DCPOMATIC_LINUX
398         lang += ".UTF8";
399 #endif
400
401         if (!lang.empty ()) {
402                 /* Override our environment language.  Note that the caller must not
403                    free the string passed into putenv().
404                 */
405                 string s = String::compose ("LANGUAGE=%1", lang);
406                 putenv (strdup (s.c_str ()));
407                 s = String::compose ("LANG=%1", lang);
408                 putenv (strdup (s.c_str ()));
409                 s = String::compose ("LC_ALL=%1", lang);
410                 putenv (strdup (s.c_str ()));
411         }
412
413         setlocale (LC_ALL, "");
414         textdomain ("libdcpomatic");
415
416 #if defined(DCPOMATIC_WINDOWS) || defined(DCPOMATIC_OSX)
417         bindtextdomain ("libdcpomatic", mo_path().string().c_str());
418         bind_textdomain_codeset ("libdcpomatic", "UTF8");
419 #endif  
420
421 #ifdef DCPOMATIC_LINUX
422         bindtextdomain ("libdcpomatic", POSIX_LOCALE_PREFIX);
423 #endif
424 }
425
426 /** @param s A string.
427  *  @return Parts of the string split at spaces, except when a space is within quotation marks.
428  */
429 vector<string>
430 split_at_spaces_considering_quotes (string s)
431 {
432         vector<string> out;
433         bool in_quotes = false;
434         string c;
435         for (string::size_type i = 0; i < s.length(); ++i) {
436                 if (s[i] == ' ' && !in_quotes) {
437                         out.push_back (c);
438                         c = N_("");
439                 } else if (s[i] == '"') {
440                         in_quotes = !in_quotes;
441                 } else {
442                         c += s[i];
443                 }
444         }
445
446         out.push_back (c);
447         return out;
448 }
449
450 /** @param job Optional job for which to report progress */
451 string
452 md5_digest (vector<boost::filesystem::path> files, shared_ptr<Job> job)
453 {
454         boost::uintmax_t const buffer_size = 64 * 1024;
455         char buffer[buffer_size];
456
457         MD5Digester digester;
458
459         vector<int64_t> sizes;
460         for (size_t i = 0; i < files.size(); ++i) {
461                 sizes.push_back (boost::filesystem::file_size (files[i]));
462         }
463
464         for (size_t i = 0; i < files.size(); ++i) {
465                 FILE* f = fopen_boost (files[i], "rb");
466                 if (!f) {
467                         throw OpenFileError (files[i].string());
468                 }
469
470                 boost::uintmax_t const bytes = boost::filesystem::file_size (files[i]);
471                 boost::uintmax_t remaining = bytes;
472
473                 while (remaining > 0) {
474                         int const t = min (remaining, buffer_size);
475                         fread (buffer, 1, t, f);
476                         digester.add (buffer, t);
477                         remaining -= t;
478
479                         if (job) {
480                                 job->set_progress ((float (i) + 1 - float(remaining) / bytes) / files.size ());
481                         }
482                 }
483
484                 fclose (f);
485         }
486
487         return digester.get ();
488 }
489
490 /** @param An arbitrary audio frame rate.
491  *  @return The appropriate DCP-approved frame rate (48kHz or 96kHz).
492  */
493 int
494 dcp_audio_frame_rate (int fs)
495 {
496         if (fs <= 48000) {
497                 return 48000;
498         }
499
500         return 96000;
501 }
502
503 Socket::Socket (int timeout)
504         : _deadline (_io_service)
505         , _socket (_io_service)
506         , _acceptor (0)
507         , _timeout (timeout)
508 {
509         _deadline.expires_at (boost::posix_time::pos_infin);
510         check ();
511 }
512
513 Socket::~Socket ()
514 {
515         delete _acceptor;
516 }
517
518 void
519 Socket::check ()
520 {
521         if (_deadline.expires_at() <= boost::asio::deadline_timer::traits_type::now ()) {
522                 if (_acceptor) {
523                         _acceptor->cancel ();
524                 } else {
525                         _socket.close ();
526                 }
527                 _deadline.expires_at (boost::posix_time::pos_infin);
528         }
529
530         _deadline.async_wait (boost::bind (&Socket::check, this));
531 }
532
533 /** Blocking connect.
534  *  @param endpoint End-point to connect to.
535  */
536 void
537 Socket::connect (boost::asio::ip::tcp::endpoint endpoint)
538 {
539         _deadline.expires_from_now (boost::posix_time::seconds (_timeout));
540         boost::system::error_code ec = boost::asio::error::would_block;
541         _socket.async_connect (endpoint, boost::lambda::var(ec) = boost::lambda::_1);
542         do {
543                 _io_service.run_one();
544         } while (ec == boost::asio::error::would_block);
545
546         if (ec) {
547                 throw NetworkError (String::compose (_("error during async_connect (%1)"), ec.value ()));
548         }
549
550         if (!_socket.is_open ()) {
551                 throw NetworkError (_("connect timed out"));
552         }
553 }
554
555 void
556 Socket::accept (int port)
557 {
558         _acceptor = new boost::asio::ip::tcp::acceptor (_io_service, boost::asio::ip::tcp::endpoint (boost::asio::ip::tcp::v4(), port));
559         
560         _deadline.expires_from_now (boost::posix_time::seconds (_timeout));
561         boost::system::error_code ec = boost::asio::error::would_block;
562         _acceptor->async_accept (_socket, boost::lambda::var(ec) = boost::lambda::_1);
563         do {
564                 _io_service.run_one ();
565         } while (ec == boost::asio::error::would_block );
566
567         delete _acceptor;
568         _acceptor = 0;
569         
570         if (ec) {
571                 throw NetworkError (String::compose (_("error during async_accept (%1)"), ec.value ()));
572         }
573 }
574
575 /** Blocking write.
576  *  @param data Buffer to write.
577  *  @param size Number of bytes to write.
578  */
579 void
580 Socket::write (uint8_t const * data, int size)
581 {
582         _deadline.expires_from_now (boost::posix_time::seconds (_timeout));
583         boost::system::error_code ec = boost::asio::error::would_block;
584
585         boost::asio::async_write (_socket, boost::asio::buffer (data, size), boost::lambda::var(ec) = boost::lambda::_1);
586         
587         do {
588                 _io_service.run_one ();
589         } while (ec == boost::asio::error::would_block);
590
591         if (ec) {
592                 throw NetworkError (String::compose (_("error during async_write (%1)"), ec.value ()));
593         }
594 }
595
596 void
597 Socket::write (uint32_t v)
598 {
599         v = htonl (v);
600         write (reinterpret_cast<uint8_t*> (&v), 4);
601 }
602
603 /** Blocking read.
604  *  @param data Buffer to read to.
605  *  @param size Number of bytes to read.
606  */
607 void
608 Socket::read (uint8_t* data, int size)
609 {
610         _deadline.expires_from_now (boost::posix_time::seconds (_timeout));
611         boost::system::error_code ec = boost::asio::error::would_block;
612
613         boost::asio::async_read (_socket, boost::asio::buffer (data, size), boost::lambda::var(ec) = boost::lambda::_1);
614
615         do {
616                 _io_service.run_one ();
617         } while (ec == boost::asio::error::would_block);
618         
619         if (ec) {
620                 throw NetworkError (String::compose (_("error during async_read (%1)"), ec.value ()));
621         }
622 }
623
624 uint32_t
625 Socket::read_uint32 ()
626 {
627         uint32_t v;
628         read (reinterpret_cast<uint8_t *> (&v), 4);
629         return ntohl (v);
630 }
631
632 /** Round a number up to the nearest multiple of another number.
633  *  @param c Index.
634  *  @param s Array of numbers to round, indexed by c.
635  *  @param t Multiple to round to.
636  *  @return Rounded number.
637  */
638 int
639 stride_round_up (int c, int const * stride, int t)
640 {
641         int const a = stride[c] + (t - 1);
642         return a - (a % t);
643 }
644
645 /** @param n A number.
646  *  @param r Rounding `boundary' (must be a power of 2)
647  *  @return n rounded to the nearest r
648  */
649 int
650 round_to (float n, int r)
651 {
652         assert (r == 1 || r == 2 || r == 4);
653         return int (n + float(r) / 2) &~ (r - 1);
654 }
655
656 /** Read a sequence of key / value pairs from a text stream;
657  *  the keys are the first words on the line, and the values are
658  *  the remainder of the line following the key.  Lines beginning
659  *  with # are ignored.
660  *  @param s Stream to read.
661  *  @return key/value pairs.
662  */
663 multimap<string, string>
664 read_key_value (istream &s) 
665 {
666         multimap<string, string> kv;
667         
668         string line;
669         while (getline (s, line)) {
670                 if (line.empty ()) {
671                         continue;
672                 }
673
674                 if (line[0] == '#') {
675                         continue;
676                 }
677
678                 if (line[line.size() - 1] == '\r') {
679                         line = line.substr (0, line.size() - 1);
680                 }
681
682                 size_t const s = line.find (' ');
683                 if (s == string::npos) {
684                         continue;
685                 }
686
687                 kv.insert (make_pair (line.substr (0, s), line.substr (s + 1)));
688         }
689
690         return kv;
691 }
692
693 string
694 get_required_string (multimap<string, string> const & kv, string k)
695 {
696         if (kv.count (k) > 1) {
697                 throw StringError (N_("unexpected multiple keys in key-value set"));
698         }
699
700         multimap<string, string>::const_iterator i = kv.find (k);
701         
702         if (i == kv.end ()) {
703                 throw StringError (String::compose (_("missing key %1 in key-value set"), k));
704         }
705
706         return i->second;
707 }
708
709 int
710 get_required_int (multimap<string, string> const & kv, string k)
711 {
712         string const v = get_required_string (kv, k);
713         return raw_convert<int> (v);
714 }
715
716 float
717 get_required_float (multimap<string, string> const & kv, string k)
718 {
719         string const v = get_required_string (kv, k);
720         return raw_convert<float> (v);
721 }
722
723 string
724 get_optional_string (multimap<string, string> const & kv, string k)
725 {
726         if (kv.count (k) > 1) {
727                 throw StringError (N_("unexpected multiple keys in key-value set"));
728         }
729
730         multimap<string, string>::const_iterator i = kv.find (k);
731         if (i == kv.end ()) {
732                 return N_("");
733         }
734
735         return i->second;
736 }
737
738 int
739 get_optional_int (multimap<string, string> const & kv, string k)
740 {
741         if (kv.count (k) > 1) {
742                 throw StringError (N_("unexpected multiple keys in key-value set"));
743         }
744
745         multimap<string, string>::const_iterator i = kv.find (k);
746         if (i == kv.end ()) {
747                 return 0;
748         }
749
750         return raw_convert<int> (i->second);
751 }
752
753 /** Trip an assert if the caller is not in the UI thread */
754 void
755 ensure_ui_thread ()
756 {
757         assert (boost::this_thread::get_id() == ui_thread);
758 }
759
760 string
761 audio_channel_name (int c)
762 {
763         assert (MAX_DCP_AUDIO_CHANNELS == 12);
764
765         /* TRANSLATORS: these are the names of audio channels; Lfe (sub) is the low-frequency
766            enhancement channel (sub-woofer).  HI is the hearing-impaired audio track and
767            VI is the visually-impaired audio track (audio describe).
768         */
769         string const channels[] = {
770                 _("Left"),
771                 _("Right"),
772                 _("Centre"),
773                 _("Lfe (sub)"),
774                 _("Left surround"),
775                 _("Right surround"),
776                 _("Hearing impaired"),
777                 _("Visually impaired"),
778                 _("Left centre"),
779                 _("Right centre"),
780                 _("Left rear surround"),
781                 _("Right rear surround"),
782         };
783
784         return channels[c];
785 }
786
787 bool
788 valid_image_file (boost::filesystem::path f)
789 {
790         string ext = f.extension().string();
791         transform (ext.begin(), ext.end(), ext.begin(), ::tolower);
792         return (ext == ".tif" || ext == ".tiff" || ext == ".jpg" || ext == ".jpeg" || ext == ".png" || ext == ".bmp" || ext == ".tga" || ext == ".dpx");
793 }
794
795 string
796 tidy_for_filename (string f)
797 {
798         string t;
799         for (size_t i = 0; i < f.length(); ++i) {
800                 if (isalnum (f[i]) || f[i] == '_' || f[i] == '-') {
801                         t += f[i];
802                 } else {
803                         t += '_';
804                 }
805         }
806
807         return t;
808 }
809
810 map<string, string>
811 split_get_request (string url)
812 {
813         enum {
814                 AWAITING_QUESTION_MARK,
815                 KEY,
816                 VALUE
817         } state = AWAITING_QUESTION_MARK;
818         
819         map<string, string> r;
820         string k;
821         string v;
822         for (size_t i = 0; i < url.length(); ++i) {
823                 switch (state) {
824                 case AWAITING_QUESTION_MARK:
825                         if (url[i] == '?') {
826                                 state = KEY;
827                         }
828                         break;
829                 case KEY:
830                         if (url[i] == '=') {
831                                 v.clear ();
832                                 state = VALUE;
833                         } else {
834                                 k += url[i];
835                         }
836                         break;
837                 case VALUE:
838                         if (url[i] == '&') {
839                                 r.insert (make_pair (k, v));
840                                 k.clear ();
841                                 state = KEY;
842                         } else {
843                                 v += url[i];
844                         }
845                         break;
846                 }
847         }
848
849         if (state == VALUE) {
850                 r.insert (make_pair (k, v));
851         }
852
853         return r;
854 }
855
856 dcp::Size
857 fit_ratio_within (float ratio, dcp::Size full_frame, int round)
858 {
859         if (ratio < full_frame.ratio ()) {
860                 return dcp::Size (round_to (full_frame.height * ratio, round), full_frame.height);
861         }
862         
863         return dcp::Size (full_frame.width, round_to (full_frame.width / ratio, round));
864 }
865
866 void *
867 wrapped_av_malloc (size_t s)
868 {
869         void* p = av_malloc (s);
870         if (!p) {
871                 throw bad_alloc ();
872         }
873         return p;
874 }
875                 
876 string
877 entities_to_text (string e)
878 {
879         boost::algorithm::replace_all (e, "%3A", ":");
880         boost::algorithm::replace_all (e, "%2F", "/");
881         return e;
882 }
883
884 int64_t
885 divide_with_round (int64_t a, int64_t b)
886 {
887         if (a % b >= (b / 2)) {
888                 return (a + b - 1) / b;
889         } else {
890                 return a / b;
891         }
892 }
893
894 /** Return a user-readable string summarising the versions of our dependencies */
895 string
896 dependency_version_summary ()
897 {
898         SafeStringStream s;
899         s << N_("libopenjpeg ") << opj_version () << N_(", ")
900           << N_("libavcodec ") << ffmpeg_version_to_string (avcodec_version()) << N_(", ")
901           << N_("libavfilter ") << ffmpeg_version_to_string (avfilter_version()) << N_(", ")
902           << N_("libavformat ") << ffmpeg_version_to_string (avformat_version()) << N_(", ")
903           << N_("libavutil ") << ffmpeg_version_to_string (avutil_version()) << N_(", ")
904           << N_("libswscale ") << ffmpeg_version_to_string (swscale_version()) << N_(", ")
905           << MagickVersion << N_(", ")
906           << N_("libssh ") << ssh_version (0) << N_(", ")
907           << N_("libdcp ") << dcp::version << N_(" git ") << dcp::git_commit;
908
909         return s.str ();
910 }
911
912 /** Construct a ScopedTemporary.  A temporary filename is decided but the file is not opened
913  *  until ::open() is called.
914  */
915 ScopedTemporary::ScopedTemporary ()
916         : _open (0)
917 {
918         _file = boost::filesystem::temp_directory_path() / boost::filesystem::unique_path ();
919 }
920
921 /** Close and delete the temporary file */
922 ScopedTemporary::~ScopedTemporary ()
923 {
924         close ();       
925         boost::system::error_code ec;
926         boost::filesystem::remove (_file, ec);
927 }
928
929 /** @return temporary filename */
930 char const *
931 ScopedTemporary::c_str () const
932 {
933         return _file.string().c_str ();
934 }
935
936 /** Open the temporary file.
937  *  @return File's FILE pointer.
938  */
939 FILE*
940 ScopedTemporary::open (char const * params)
941 {
942         _open = fopen (c_str(), params);
943         return _open;
944 }
945
946 /** Close the file */
947 void
948 ScopedTemporary::close ()
949 {
950         if (_open) {
951                 fclose (_open);
952                 _open = 0;
953         }
954 }
955
956 ContentTimePeriod
957 subtitle_period (AVSubtitle const & sub)
958 {
959         ContentTime const packet_time = ContentTime::from_seconds (static_cast<double> (sub.pts) / AV_TIME_BASE);
960
961         ContentTimePeriod period (
962                 packet_time + ContentTime::from_seconds (sub.start_display_time / 1e3),
963                 packet_time + ContentTime::from_seconds (sub.end_display_time / 1e3)
964                 );
965
966         return period;
967 }