Another static fix.
[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 2.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                         int const r = fread (buffer, 1, t, f);
476                         if (r != t) {
477                                 throw ReadFileError (files[i], errno);
478                         }
479                         digester.add (buffer, t);
480                         remaining -= t;
481
482                         if (job) {
483                                 job->set_progress ((float (i) + 1 - float(remaining) / bytes) / files.size ());
484                         }
485                 }
486
487                 fclose (f);
488         }
489
490         return digester.get ();
491 }
492
493 /** @param An arbitrary audio frame rate.
494  *  @return The appropriate DCP-approved frame rate (48kHz or 96kHz).
495  */
496 int
497 dcp_audio_frame_rate (int fs)
498 {
499         if (fs <= 48000) {
500                 return 48000;
501         }
502
503         return 96000;
504 }
505
506 Socket::Socket (int timeout)
507         : _deadline (_io_service)
508         , _socket (_io_service)
509         , _acceptor (0)
510         , _timeout (timeout)
511 {
512         _deadline.expires_at (boost::posix_time::pos_infin);
513         check ();
514 }
515
516 Socket::~Socket ()
517 {
518         delete _acceptor;
519 }
520
521 void
522 Socket::check ()
523 {
524         if (_deadline.expires_at() <= boost::asio::deadline_timer::traits_type::now ()) {
525                 if (_acceptor) {
526                         _acceptor->cancel ();
527                 } else {
528                         _socket.close ();
529                 }
530                 _deadline.expires_at (boost::posix_time::pos_infin);
531         }
532
533         _deadline.async_wait (boost::bind (&Socket::check, this));
534 }
535
536 /** Blocking connect.
537  *  @param endpoint End-point to connect to.
538  */
539 void
540 Socket::connect (boost::asio::ip::tcp::endpoint endpoint)
541 {
542         _deadline.expires_from_now (boost::posix_time::seconds (_timeout));
543         boost::system::error_code ec = boost::asio::error::would_block;
544         _socket.async_connect (endpoint, boost::lambda::var(ec) = boost::lambda::_1);
545         do {
546                 _io_service.run_one();
547         } while (ec == boost::asio::error::would_block);
548
549         if (ec) {
550                 throw NetworkError (String::compose (_("error during async_connect (%1)"), ec.value ()));
551         }
552
553         if (!_socket.is_open ()) {
554                 throw NetworkError (_("connect timed out"));
555         }
556 }
557
558 void
559 Socket::accept (int port)
560 {
561         _acceptor = new boost::asio::ip::tcp::acceptor (_io_service, boost::asio::ip::tcp::endpoint (boost::asio::ip::tcp::v4(), port));
562         
563         _deadline.expires_from_now (boost::posix_time::seconds (_timeout));
564         boost::system::error_code ec = boost::asio::error::would_block;
565         _acceptor->async_accept (_socket, boost::lambda::var(ec) = boost::lambda::_1);
566         do {
567                 _io_service.run_one ();
568         } while (ec == boost::asio::error::would_block);
569
570         delete _acceptor;
571         _acceptor = 0;
572         
573         if (ec) {
574                 throw NetworkError (String::compose (_("error during async_accept (%1)"), ec.value ()));
575         }
576 }
577
578 /** Blocking write.
579  *  @param data Buffer to write.
580  *  @param size Number of bytes to write.
581  */
582 void
583 Socket::write (uint8_t const * data, int size)
584 {
585         _deadline.expires_from_now (boost::posix_time::seconds (_timeout));
586         boost::system::error_code ec = boost::asio::error::would_block;
587
588         boost::asio::async_write (_socket, boost::asio::buffer (data, size), boost::lambda::var(ec) = boost::lambda::_1);
589         
590         do {
591                 _io_service.run_one ();
592         } while (ec == boost::asio::error::would_block);
593
594         if (ec) {
595                 throw NetworkError (String::compose (_("error during async_write (%1)"), ec.value ()));
596         }
597 }
598
599 void
600 Socket::write (uint32_t v)
601 {
602         v = htonl (v);
603         write (reinterpret_cast<uint8_t*> (&v), 4);
604 }
605
606 /** Blocking read.
607  *  @param data Buffer to read to.
608  *  @param size Number of bytes to read.
609  */
610 void
611 Socket::read (uint8_t* data, int size)
612 {
613         _deadline.expires_from_now (boost::posix_time::seconds (_timeout));
614         boost::system::error_code ec = boost::asio::error::would_block;
615
616         boost::asio::async_read (_socket, boost::asio::buffer (data, size), boost::lambda::var(ec) = boost::lambda::_1);
617
618         do {
619                 _io_service.run_one ();
620         } while (ec == boost::asio::error::would_block);
621         
622         if (ec) {
623                 throw NetworkError (String::compose (_("error during async_read (%1)"), ec.value ()));
624         }
625 }
626
627 uint32_t
628 Socket::read_uint32 ()
629 {
630         uint32_t v;
631         read (reinterpret_cast<uint8_t *> (&v), 4);
632         return ntohl (v);
633 }
634
635 /** Round a number up to the nearest multiple of another number.
636  *  @param c Index.
637  *  @param s Array of numbers to round, indexed by c.
638  *  @param t Multiple to round to.
639  *  @return Rounded number.
640  */
641 int
642 stride_round_up (int c, int const * stride, int t)
643 {
644         int const a = stride[c] + (t - 1);
645         return a - (a % t);
646 }
647
648 /** @param n A number.
649  *  @param r Rounding `boundary' (must be a power of 2)
650  *  @return n rounded to the nearest r
651  */
652 int
653 round_to (float n, int r)
654 {
655         assert (r == 1 || r == 2 || r == 4);
656         return int (n + float(r) / 2) &~ (r - 1);
657 }
658
659 /** Read a sequence of key / value pairs from a text stream;
660  *  the keys are the first words on the line, and the values are
661  *  the remainder of the line following the key.  Lines beginning
662  *  with # are ignored.
663  *  @param s Stream to read.
664  *  @return key/value pairs.
665  */
666 multimap<string, string>
667 read_key_value (istream &s) 
668 {
669         multimap<string, string> kv;
670         
671         string line;
672         while (getline (s, line)) {
673                 if (line.empty ()) {
674                         continue;
675                 }
676
677                 if (line[0] == '#') {
678                         continue;
679                 }
680
681                 if (line[line.size() - 1] == '\r') {
682                         line = line.substr (0, line.size() - 1);
683                 }
684
685                 size_t const s = line.find (' ');
686                 if (s == string::npos) {
687                         continue;
688                 }
689
690                 kv.insert (make_pair (line.substr (0, s), line.substr (s + 1)));
691         }
692
693         return kv;
694 }
695
696 string
697 get_required_string (multimap<string, string> const & kv, string k)
698 {
699         if (kv.count (k) > 1) {
700                 throw StringError (N_("unexpected multiple keys in key-value set"));
701         }
702
703         multimap<string, string>::const_iterator i = kv.find (k);
704         
705         if (i == kv.end ()) {
706                 throw StringError (String::compose (_("missing key %1 in key-value set"), k));
707         }
708
709         return i->second;
710 }
711
712 int
713 get_required_int (multimap<string, string> const & kv, string k)
714 {
715         string const v = get_required_string (kv, k);
716         return raw_convert<int> (v);
717 }
718
719 float
720 get_required_float (multimap<string, string> const & kv, string k)
721 {
722         string const v = get_required_string (kv, k);
723         return raw_convert<float> (v);
724 }
725
726 string
727 get_optional_string (multimap<string, string> const & kv, string k)
728 {
729         if (kv.count (k) > 1) {
730                 throw StringError (N_("unexpected multiple keys in key-value set"));
731         }
732
733         multimap<string, string>::const_iterator i = kv.find (k);
734         if (i == kv.end ()) {
735                 return N_("");
736         }
737
738         return i->second;
739 }
740
741 int
742 get_optional_int (multimap<string, string> const & kv, string k)
743 {
744         if (kv.count (k) > 1) {
745                 throw StringError (N_("unexpected multiple keys in key-value set"));
746         }
747
748         multimap<string, string>::const_iterator i = kv.find (k);
749         if (i == kv.end ()) {
750                 return 0;
751         }
752
753         return raw_convert<int> (i->second);
754 }
755
756 /** Trip an assert if the caller is not in the UI thread */
757 void
758 ensure_ui_thread ()
759 {
760         assert (boost::this_thread::get_id() == ui_thread);
761 }
762
763 string
764 audio_channel_name (int c)
765 {
766         assert (MAX_DCP_AUDIO_CHANNELS == 12);
767
768         /* TRANSLATORS: these are the names of audio channels; Lfe (sub) is the low-frequency
769            enhancement channel (sub-woofer).  HI is the hearing-impaired audio track and
770            VI is the visually-impaired audio track (audio describe).
771         */
772         string const channels[] = {
773                 _("Left"),
774                 _("Right"),
775                 _("Centre"),
776                 _("Lfe (sub)"),
777                 _("Left surround"),
778                 _("Right surround"),
779                 _("Hearing impaired"),
780                 _("Visually impaired"),
781                 _("Left centre"),
782                 _("Right centre"),
783                 _("Left rear surround"),
784                 _("Right rear surround"),
785         };
786
787         return channels[c];
788 }
789
790 bool
791 valid_image_file (boost::filesystem::path f)
792 {
793         string ext = f.extension().string();
794         transform (ext.begin(), ext.end(), ext.begin(), ::tolower);
795         return (ext == ".tif" || ext == ".tiff" || ext == ".jpg" || ext == ".jpeg" || ext == ".png" || ext == ".bmp" || ext == ".tga" || ext == ".dpx");
796 }
797
798 string
799 tidy_for_filename (string f)
800 {
801         string t;
802         for (size_t i = 0; i < f.length(); ++i) {
803                 if (isalnum (f[i]) || f[i] == '_' || f[i] == '-') {
804                         t += f[i];
805                 } else {
806                         t += '_';
807                 }
808         }
809
810         return t;
811 }
812
813 map<string, string>
814 split_get_request (string url)
815 {
816         enum {
817                 AWAITING_QUESTION_MARK,
818                 KEY,
819                 VALUE
820         } state = AWAITING_QUESTION_MARK;
821         
822         map<string, string> r;
823         string k;
824         string v;
825         for (size_t i = 0; i < url.length(); ++i) {
826                 switch (state) {
827                 case AWAITING_QUESTION_MARK:
828                         if (url[i] == '?') {
829                                 state = KEY;
830                         }
831                         break;
832                 case KEY:
833                         if (url[i] == '=') {
834                                 v.clear ();
835                                 state = VALUE;
836                         } else {
837                                 k += url[i];
838                         }
839                         break;
840                 case VALUE:
841                         if (url[i] == '&') {
842                                 r.insert (make_pair (k, v));
843                                 k.clear ();
844                                 state = KEY;
845                         } else {
846                                 v += url[i];
847                         }
848                         break;
849                 }
850         }
851
852         if (state == VALUE) {
853                 r.insert (make_pair (k, v));
854         }
855
856         return r;
857 }
858
859 dcp::Size
860 fit_ratio_within (float ratio, dcp::Size full_frame, int round)
861 {
862         if (ratio < full_frame.ratio ()) {
863                 return dcp::Size (round_to (full_frame.height * ratio, round), full_frame.height);
864         }
865         
866         return dcp::Size (full_frame.width, round_to (full_frame.width / ratio, round));
867 }
868
869 void *
870 wrapped_av_malloc (size_t s)
871 {
872         void* p = av_malloc (s);
873         if (!p) {
874                 throw bad_alloc ();
875         }
876         return p;
877 }
878                 
879 string
880 entities_to_text (string e)
881 {
882         boost::algorithm::replace_all (e, "%3A", ":");
883         boost::algorithm::replace_all (e, "%2F", "/");
884         return e;
885 }
886
887 int64_t
888 divide_with_round (int64_t a, int64_t b)
889 {
890         if (a % b >= (b / 2)) {
891                 return (a + b - 1) / b;
892         } else {
893                 return a / b;
894         }
895 }
896
897 /** Return a user-readable string summarising the versions of our dependencies */
898 string
899 dependency_version_summary ()
900 {
901         SafeStringStream s;
902         s << N_("libopenjpeg ") << opj_version () << N_(", ")
903           << N_("libavcodec ") << ffmpeg_version_to_string (avcodec_version()) << N_(", ")
904           << N_("libavfilter ") << ffmpeg_version_to_string (avfilter_version()) << N_(", ")
905           << N_("libavformat ") << ffmpeg_version_to_string (avformat_version()) << N_(", ")
906           << N_("libavutil ") << ffmpeg_version_to_string (avutil_version()) << N_(", ")
907           << N_("libswscale ") << ffmpeg_version_to_string (swscale_version()) << N_(", ")
908           << MagickVersion << N_(", ")
909           << N_("libssh ") << ssh_version (0) << N_(", ")
910           << N_("libdcp ") << dcp::version << N_(" git ") << dcp::git_commit;
911
912         return s.str ();
913 }
914
915 /** Construct a ScopedTemporary.  A temporary filename is decided but the file is not opened
916  *  until ::open() is called.
917  */
918 ScopedTemporary::ScopedTemporary ()
919         : _open (0)
920 {
921         _file = boost::filesystem::temp_directory_path() / boost::filesystem::unique_path ();
922 }
923
924 /** Close and delete the temporary file */
925 ScopedTemporary::~ScopedTemporary ()
926 {
927         close ();       
928         boost::system::error_code ec;
929         boost::filesystem::remove (_file, ec);
930 }
931
932 /** @return temporary filename */
933 char const *
934 ScopedTemporary::c_str () const
935 {
936         return _file.string().c_str ();
937 }
938
939 /** Open the temporary file.
940  *  @return File's FILE pointer.
941  */
942 FILE*
943 ScopedTemporary::open (char const * params)
944 {
945         _open = fopen (c_str(), params);
946         return _open;
947 }
948
949 /** Close the file */
950 void
951 ScopedTemporary::close ()
952 {
953         if (_open) {
954                 fclose (_open);
955                 _open = 0;
956         }
957 }
958
959 ContentTimePeriod
960 subtitle_period (AVSubtitle const & sub)
961 {
962         ContentTime const packet_time = ContentTime::from_seconds (static_cast<double> (sub.pts) / AV_TIME_BASE);
963
964         ContentTimePeriod period (
965                 packet_time + ContentTime::from_seconds (sub.start_display_time / 1e3),
966                 packet_time + ContentTime::from_seconds (sub.end_display_time / 1e3)
967                 );
968
969         return period;
970 }