Fix build with newer FFmpeg.
[dcpomatic.git] / src / lib / util.cc
1 /*
2     Copyright (C) 2012-2021 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic is free software; you can redistribute it and/or modify
7     it under the terms of the GNU General Public License as published by
8     the Free Software Foundation; either version 2 of the License, or
9     (at your option) any later version.
10
11     DCP-o-matic is distributed in the hope that it will be useful,
12     but WITHOUT ANY WARRANTY; without even the implied warranty of
13     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14     GNU General Public License for more details.
15
16     You should have received a copy of the GNU General Public License
17     along with DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 /** @file src/lib/util.cc
22  *  @brief Some utility functions and classes.
23  */
24
25 #include "util.h"
26 #include "exceptions.h"
27 #include "dcp_content_type.h"
28 #include "filter.h"
29 #include "cinema_sound_processor.h"
30 #include "config.h"
31 #include "ratio.h"
32 #include "job.h"
33 #include "cross.h"
34 #include "video_content.h"
35 #include "rect.h"
36 #include "digester.h"
37 #include "audio_processor.h"
38 #include "crypto.h"
39 #include "compose.hpp"
40 #include "audio_buffers.h"
41 #include "string_text.h"
42 #include "font.h"
43 #include "render_text.h"
44 #include "ffmpeg_image_proxy.h"
45 #include "image.h"
46 #include "text_decoder.h"
47 #include "job_manager.h"
48 #include "warnings.h"
49 #include <dcp/decrypted_kdm.h>
50 #include <dcp/locale_convert.h>
51 #include <dcp/util.h>
52 #include <dcp/raw_convert.h>
53 #include <dcp/picture_asset.h>
54 #include <dcp/sound_asset.h>
55 #include <dcp/subtitle_asset.h>
56 #include <dcp/atmos_asset.h>
57 DCPOMATIC_DISABLE_WARNINGS
58 extern "C" {
59 #include <libavfilter/avfilter.h>
60 #include <libavformat/avformat.h>
61 #include <libavcodec/avcodec.h>
62 }
63 DCPOMATIC_ENABLE_WARNINGS
64 #include <curl/curl.h>
65 #include <glib.h>
66 #include <pangomm/init.h>
67 #include <unicode/utypes.h>
68 #include <unicode/unistr.h>
69 #include <unicode/translit.h>
70 #include <boost/algorithm/string.hpp>
71 #include <boost/range/algorithm/replace_if.hpp>
72 #include <boost/thread.hpp>
73 #include <boost/filesystem.hpp>
74 DCPOMATIC_DISABLE_WARNINGS
75 #include <boost/locale.hpp>
76 DCPOMATIC_ENABLE_WARNINGS
77 #ifdef DCPOMATIC_WINDOWS
78 #include <boost/locale.hpp>
79 #include <dbghelp.h>
80 #endif
81 #include <signal.h>
82 #include <iomanip>
83 #include <iostream>
84 #include <fstream>
85 #include <climits>
86 #include <stdexcept>
87 #ifdef DCPOMATIC_POSIX
88 #include <execinfo.h>
89 #include <cxxabi.h>
90 #endif
91
92 #include "i18n.h"
93
94 using std::string;
95 using std::wstring;
96 using std::setfill;
97 using std::ostream;
98 using std::endl;
99 using std::vector;
100 using std::min;
101 using std::max;
102 using std::map;
103 using std::list;
104 using std::multimap;
105 using std::istream;
106 using std::pair;
107 using std::cout;
108 using std::bad_alloc;
109 using std::set_terminate;
110 using std::make_pair;
111 using std::shared_ptr;
112 using std::make_shared;
113 using boost::thread;
114 using boost::optional;
115 using boost::lexical_cast;
116 using boost::bad_lexical_cast;
117 using boost::scoped_array;
118 using dcp::Size;
119 using dcp::raw_convert;
120 using dcp::locale_convert;
121 using namespace dcpomatic;
122
123 /** Path to our executable, required by the stacktrace stuff and filled
124  *  in during App::onInit().
125  */
126 string program_name;
127 bool is_batch_converter = false;
128 static boost::thread::id ui_thread;
129 static boost::filesystem::path backtrace_file;
130
131 /** Convert some number of seconds to a string representation
132  *  in hours, minutes and seconds.
133  *
134  *  @param s Seconds.
135  *  @return String of the form H:M:S (where H is hours, M
136  *  is minutes and S is seconds).
137  */
138 string
139 seconds_to_hms (int s)
140 {
141         int m = s / 60;
142         s -= (m * 60);
143         int h = m / 60;
144         m -= (h * 60);
145
146         char buffer[64];
147         snprintf (buffer, sizeof(buffer), "%d:%02d:%02d", h, m, s);
148         return buffer;
149 }
150
151 string
152 time_to_hmsf (DCPTime time, Frame rate)
153 {
154         Frame f = time.frames_round (rate);
155         int s = f / rate;
156         f -= (s * rate);
157         int m = s / 60;
158         s -= m * 60;
159         int h = m / 60;
160         m -= h * 60;
161
162         char buffer[64];
163         snprintf (buffer, sizeof(buffer), "%d:%02d:%02d.%d", h, m, s, static_cast<int>(f));
164         return buffer;
165 }
166
167 /** @param s Number of seconds.
168  *  @return String containing an approximate description of s (e.g. "about 2 hours")
169  */
170 string
171 seconds_to_approximate_hms (int s)
172 {
173         int m = s / 60;
174         s -= (m * 60);
175         int h = m / 60;
176         m -= (h * 60);
177
178         string ap;
179
180         bool hours = h > 0;
181         bool minutes = h < 6 && m > 0;
182         bool seconds = h == 0 && m < 10 && s > 0;
183
184         if (m > 30 && !minutes) {
185                 /* round up the hours */
186                 ++h;
187         }
188         if (s > 30 && !seconds) {
189                 /* round up the minutes */
190                 ++m;
191                 if (m == 60) {
192                         m = 0;
193                         minutes = false;
194                         ++h;
195                 }
196         }
197
198         if (hours) {
199                 /// TRANSLATORS: h here is an abbreviation for hours
200                 ap += locale_convert<string>(h) + _("h");
201
202                 if (minutes || seconds) {
203                         ap += N_(" ");
204                 }
205         }
206
207         if (minutes) {
208                 /// TRANSLATORS: m here is an abbreviation for minutes
209                 ap += locale_convert<string>(m) + _("m");
210
211                 if (seconds) {
212                         ap += N_(" ");
213                 }
214         }
215
216         if (seconds) {
217                 /* Seconds */
218                 /// TRANSLATORS: s here is an abbreviation for seconds
219                 ap += locale_convert<string>(s) + _("s");
220         }
221
222         return ap;
223 }
224
225 double
226 seconds (struct timeval t)
227 {
228         return t.tv_sec + (double (t.tv_usec) / 1e6);
229 }
230
231 #ifdef DCPOMATIC_WINDOWS
232
233 /** Resolve symbol name and source location given the path to the executable */
234 int
235 addr2line (void const * const addr)
236 {
237         char addr2line_cmd[512] = { 0 };
238         sprintf (addr2line_cmd, "addr2line -f -p -e %.256s %p > %s", program_name.c_str(), addr, backtrace_file.string().c_str());
239         return system(addr2line_cmd);
240 }
241
242 DCPOMATIC_DISABLE_WARNINGS
243 /** This is called when C signals occur on Windows (e.g. SIGSEGV)
244  *  (NOT C++ exceptions!).  We write a backtrace to backtrace_file by dark means.
245  *  Adapted from code here: http://spin.atomicobject.com/2013/01/13/exceptions-stack-traces-c/
246  */
247 LONG WINAPI
248 exception_handler(struct _EXCEPTION_POINTERS * info)
249 {
250         auto f = fopen_boost (backtrace_file, "w");
251         fprintf (f, "C-style exception %d\n", info->ExceptionRecord->ExceptionCode);
252         fclose(f);
253
254         if (info->ExceptionRecord->ExceptionCode != EXCEPTION_STACK_OVERFLOW) {
255                 CONTEXT* context = info->ContextRecord;
256                 SymInitialize (GetCurrentProcess (), 0, true);
257
258                 STACKFRAME frame = { 0 };
259
260                 /* setup initial stack frame */
261 #if _WIN64
262                 frame.AddrPC.Offset    = context->Rip;
263                 frame.AddrStack.Offset = context->Rsp;
264                 frame.AddrFrame.Offset = context->Rbp;
265 #else
266                 frame.AddrPC.Offset    = context->Eip;
267                 frame.AddrStack.Offset = context->Esp;
268                 frame.AddrFrame.Offset = context->Ebp;
269 #endif
270                 frame.AddrPC.Mode      = AddrModeFlat;
271                 frame.AddrStack.Mode   = AddrModeFlat;
272                 frame.AddrFrame.Mode   = AddrModeFlat;
273
274                 while (
275                         StackWalk (
276                                 IMAGE_FILE_MACHINE_I386,
277                                 GetCurrentProcess (),
278                                 GetCurrentThread (),
279                                 &frame,
280                                 context,
281                                 0,
282                                 SymFunctionTableAccess,
283                                 SymGetModuleBase,
284                                 0
285                                 )
286                         ) {
287                         addr2line((void *) frame.AddrPC.Offset);
288                 }
289         } else {
290 #ifdef _WIN64
291                 addr2line ((void *) info->ContextRecord->Rip);
292 #else
293                 addr2line ((void *) info->ContextRecord->Eip);
294 #endif
295         }
296
297         return EXCEPTION_CONTINUE_SEARCH;
298 }
299 DCPOMATIC_ENABLE_WARNINGS
300 #endif
301
302 void
303 set_backtrace_file (boost::filesystem::path p)
304 {
305         backtrace_file = p;
306 }
307
308 /** This is called when there is an unhandled exception.  Any
309  *  backtrace in this function is useless on Windows as the stack has
310  *  already been unwound from the throw; we have the gdb wrap hack to
311  *  cope with that.
312  */
313 void
314 terminate ()
315 {
316         try {
317                 static bool tried_throw = false;
318                 // try once to re-throw currently active exception
319                 if (!tried_throw) {
320                         tried_throw = true;
321                         throw;
322                 }
323         }
324         catch (const std::exception &e) {
325                 std::cerr << __FUNCTION__ << " caught unhandled exception. what(): "
326                           << e.what() << std::endl;
327         }
328         catch (...) {
329                 std::cerr << __FUNCTION__ << " caught unknown/unhandled exception."
330                           << std::endl;
331         }
332
333         abort();
334 }
335
336 void
337 dcpomatic_setup_path_encoding ()
338 {
339 #ifdef DCPOMATIC_WINDOWS
340         /* Dark voodoo which, I think, gets boost::filesystem::path to
341            correctly convert UTF-8 strings to paths, and also paths
342            back to UTF-8 strings (on path::string()).
343
344            After this, constructing boost::filesystem::paths from strings
345            converts from UTF-8 to UTF-16 inside the path.  Then
346            path::string().c_str() gives UTF-8 and
347            path::c_str()          gives UTF-16.
348
349            This is all Windows-only.  AFAICT Linux/OS X use UTF-8 everywhere,
350            so things are much simpler.
351         */
352         std::locale::global (boost::locale::generator().generate (""));
353         boost::filesystem::path::imbue (std::locale ());
354 #endif
355 }
356
357 /** Call the required functions to set up DCP-o-matic's static arrays, etc.
358  *  Must be called from the UI thread, if there is one.
359  */
360 void
361 dcpomatic_setup ()
362 {
363 #ifdef DCPOMATIC_WINDOWS
364         boost::filesystem::path p = g_get_user_config_dir ();
365         p /= "backtrace.txt";
366         set_backtrace_file (p);
367         SetUnhandledExceptionFilter(exception_handler);
368 #endif
369
370 #ifdef DCPOMATIC_HAVE_AVREGISTER
371 DCPOMATIC_DISABLE_WARNINGS
372         av_register_all ();
373         avfilter_register_all ();
374 DCPOMATIC_ENABLE_WARNINGS
375 #endif
376
377 #ifdef DCPOMATIC_OSX
378         /* Add our library directory to the libltdl search path so that
379            xmlsec can find xmlsec1-openssl.
380         */
381         auto lib = directory_containing_executable().parent_path();
382         lib /= "Frameworks";
383         setenv ("LTDL_LIBRARY_PATH", lib.c_str (), 1);
384 #endif
385
386         set_terminate (terminate);
387
388 #ifdef DCPOMATIC_WINDOWS
389         putenv ("PANGOCAIRO_BACKEND=fontconfig");
390         putenv (String::compose("FONTCONFIG_PATH=%1", resources_path().string()).c_str());
391 #endif
392
393 #ifdef DCPOMATIC_OSX
394         setenv ("PANGOCAIRO_BACKEND", "fontconfig", 1);
395         setenv ("FONTCONFIG_PATH", resources_path().string().c_str(), 1);
396 #endif
397
398         Pango::init ();
399         dcp::init (tags_path());
400
401 #if defined(DCPOMATIC_WINDOWS) || defined(DCPOMATIC_OSX)
402         /* Render something to fontconfig to create its cache */
403         list<StringText> subs;
404         dcp::SubtitleString ss(
405                 optional<string>(), false, false, false, dcp::Colour(), 42, 1, dcp::Time(), dcp::Time(), 0, dcp::HAlign::CENTER, 0, dcp::VAlign::CENTER, dcp::Direction::LTR,
406                 "Hello dolly", dcp::Effect::NONE, dcp::Colour(), dcp::Time(), dcp::Time()
407                 );
408         subs.push_back (StringText(ss, 0));
409         render_text (subs, list<shared_ptr<Font>>(), dcp::Size(640, 480), DCPTime(), 24);
410 #endif
411
412         Ratio::setup_ratios ();
413         PresetColourConversion::setup_colour_conversion_presets ();
414         DCPContentType::setup_dcp_content_types ();
415         Filter::setup_filters ();
416         CinemaSoundProcessor::setup_cinema_sound_processors ();
417         AudioProcessor::setup_audio_processors ();
418
419         curl_global_init (CURL_GLOBAL_ALL);
420
421         ui_thread = boost::this_thread::get_id ();
422 }
423
424 #ifdef DCPOMATIC_WINDOWS
425 boost::filesystem::path
426 mo_path ()
427 {
428         wchar_t buffer[512];
429         GetModuleFileName (0, buffer, 512 * sizeof(wchar_t));
430         boost::filesystem::path p (buffer);
431         p = p.parent_path ();
432         p = p.parent_path ();
433         p /= "locale";
434         return p;
435 }
436 #endif
437
438 #ifdef DCPOMATIC_OSX
439 boost::filesystem::path
440 mo_path ()
441 {
442         return "DCP-o-matic 2.app/Contents/Resources";
443 }
444 #endif
445
446 void
447 dcpomatic_setup_gettext_i18n (string lang)
448 {
449 #ifdef DCPOMATIC_LINUX
450         lang += ".UTF8";
451 #endif
452
453         if (!lang.empty ()) {
454                 /* Override our environment language.  Note that the caller must not
455                    free the string passed into putenv().
456                 */
457                 string s = String::compose ("LANGUAGE=%1", lang);
458                 putenv (strdup (s.c_str ()));
459                 s = String::compose ("LANG=%1", lang);
460                 putenv (strdup (s.c_str ()));
461                 s = String::compose ("LC_ALL=%1", lang);
462                 putenv (strdup (s.c_str ()));
463         }
464
465         setlocale (LC_ALL, "");
466         textdomain ("libdcpomatic2");
467
468 #if defined(DCPOMATIC_WINDOWS) || defined(DCPOMATIC_OSX)
469         bindtextdomain ("libdcpomatic2", mo_path().string().c_str());
470         bind_textdomain_codeset ("libdcpomatic2", "UTF8");
471 #endif
472
473 #ifdef DCPOMATIC_LINUX
474         bindtextdomain ("libdcpomatic2", LINUX_LOCALE_PREFIX);
475 #endif
476 }
477
478 /** Compute a digest of the first and last `size' bytes of a set of files. */
479 string
480 digest_head_tail (vector<boost::filesystem::path> files, boost::uintmax_t size)
481 {
482         boost::scoped_array<char> buffer (new char[size]);
483         Digester digester;
484
485         /* Head */
486         boost::uintmax_t to_do = size;
487         char* p = buffer.get ();
488         int i = 0;
489         while (i < int64_t (files.size()) && to_do > 0) {
490                 auto f = fopen_boost (files[i], "rb");
491                 if (!f) {
492                         throw OpenFileError (files[i].string(), errno, OpenFileError::READ);
493                 }
494
495                 boost::uintmax_t this_time = min (to_do, boost::filesystem::file_size (files[i]));
496                 checked_fread (p, this_time, f, files[i]);
497                 p += this_time;
498                 to_do -= this_time;
499                 fclose (f);
500
501                 ++i;
502         }
503         digester.add (buffer.get(), size - to_do);
504
505         /* Tail */
506         to_do = size;
507         p = buffer.get ();
508         i = files.size() - 1;
509         while (i >= 0 && to_do > 0) {
510                 auto f = fopen_boost (files[i], "rb");
511                 if (!f) {
512                         throw OpenFileError (files[i].string(), errno, OpenFileError::READ);
513                 }
514
515                 boost::uintmax_t this_time = min (to_do, boost::filesystem::file_size (files[i]));
516                 dcpomatic_fseek (f, -this_time, SEEK_END);
517                 checked_fread (p, this_time, f, files[i]);
518                 p += this_time;
519                 to_do -= this_time;
520                 fclose (f);
521
522                 --i;
523         }
524         digester.add (buffer.get(), size - to_do);
525
526         return digester.get ();
527 }
528
529 /** Round a number up to the nearest multiple of another number.
530  *  @param c Index.
531  *  @param stride Array of numbers to round, indexed by c.
532  *  @param t Multiple to round to.
533  *  @return Rounded number.
534  */
535 int
536 stride_round_up (int c, int const * stride, int t)
537 {
538         int const a = stride[c] + (t - 1);
539         return a - (a % t);
540 }
541
542 /** Trip an assert if the caller is not in the UI thread */
543 void
544 ensure_ui_thread ()
545 {
546         DCPOMATIC_ASSERT (boost::this_thread::get_id() == ui_thread);
547 }
548
549 string
550 audio_channel_name (int c)
551 {
552         DCPOMATIC_ASSERT (MAX_DCP_AUDIO_CHANNELS == 16);
553
554         /// TRANSLATORS: these are the names of audio channels; Lfe (sub) is the low-frequency
555         /// enhancement channel (sub-woofer).
556         string const channels[] = {
557                 _("Left"),
558                 _("Right"),
559                 _("Centre"),
560                 _("Lfe (sub)"),
561                 _("Left surround"),
562                 _("Right surround"),
563                 _("Hearing impaired"),
564                 _("Visually impaired"),
565                 _("Left centre"),
566                 _("Right centre"),
567                 _("Left rear surround"),
568                 _("Right rear surround"),
569                 _("D-BOX primary"),
570                 _("D-BOX secondary"),
571                 _("Unused"),
572                 _("Unused")
573         };
574
575         return channels[c];
576 }
577
578 string
579 short_audio_channel_name (int c)
580 {
581         DCPOMATIC_ASSERT (MAX_DCP_AUDIO_CHANNELS == 16);
582
583         /// TRANSLATORS: these are short names of audio channels; Lfe is the low-frequency
584         /// enhancement channel (sub-woofer).  HI is the hearing-impaired audio track and
585         /// VI is the visually-impaired audio track (audio describe).  DBP is the D-BOX
586         /// primary channel and DBS is the D-BOX secondary channel.
587         string const channels[] = {
588                 _("L"),
589                 _("R"),
590                 _("C"),
591                 _("Lfe"),
592                 _("Ls"),
593                 _("Rs"),
594                 _("HI"),
595                 _("VI"),
596                 _("Lc"),
597                 _("Rc"),
598                 _("BsL"),
599                 _("BsR"),
600                 _("DBP"),
601                 _("DBS"),
602                 _("Sign"),
603                 ""
604         };
605
606         return channels[c];
607 }
608
609
610 bool
611 valid_image_file (boost::filesystem::path f)
612 {
613         if (boost::starts_with (f.leaf().string(), "._")) {
614                 return false;
615         }
616
617         auto ext = f.extension().string();
618         transform (ext.begin(), ext.end(), ext.begin(), ::tolower);
619         return (
620                 ext == ".tif" || ext == ".tiff" || ext == ".jpg" || ext == ".jpeg" ||
621                 ext == ".png" || ext == ".bmp" || ext == ".tga" || ext == ".dpx" ||
622                 ext == ".j2c" || ext == ".j2k" || ext == ".jp2" || ext == ".exr" ||
623                 ext == ".jpf" || ext == ".psd"
624                 );
625 }
626
627 bool
628 valid_sound_file (boost::filesystem::path f)
629 {
630         if (boost::starts_with (f.leaf().string(), "._")) {
631                 return false;
632         }
633
634         auto ext = f.extension().string();
635         transform (ext.begin(), ext.end(), ext.begin(), ::tolower);
636         return (ext == ".wav" || ext == ".mp3" || ext == ".aif" || ext == ".aiff");
637 }
638
639 bool
640 valid_j2k_file (boost::filesystem::path f)
641 {
642         auto ext = f.extension().string();
643         transform (ext.begin(), ext.end(), ext.begin(), ::tolower);
644         return (ext == ".j2k" || ext == ".j2c" || ext == ".jp2");
645 }
646
647 string
648 tidy_for_filename (string f)
649 {
650         boost::replace_if (f, boost::is_any_of ("\\/:"), '_');
651         return f;
652 }
653
654 dcp::Size
655 fit_ratio_within (float ratio, dcp::Size full_frame)
656 {
657         if (ratio < full_frame.ratio ()) {
658                 return dcp::Size (lrintf (full_frame.height * ratio), full_frame.height);
659         }
660
661         return dcp::Size (full_frame.width, lrintf (full_frame.width / ratio));
662 }
663
664 void *
665 wrapped_av_malloc (size_t s)
666 {
667         auto p = av_malloc (s);
668         if (!p) {
669                 throw bad_alloc ();
670         }
671         return p;
672 }
673
674 map<string, string>
675 split_get_request (string url)
676 {
677         enum {
678                 AWAITING_QUESTION_MARK,
679                 KEY,
680                 VALUE
681         } state = AWAITING_QUESTION_MARK;
682
683         map<string, string> r;
684         string k;
685         string v;
686         for (size_t i = 0; i < url.length(); ++i) {
687                 switch (state) {
688                 case AWAITING_QUESTION_MARK:
689                         if (url[i] == '?') {
690                                 state = KEY;
691                         }
692                         break;
693                 case KEY:
694                         if (url[i] == '=') {
695                                 v.clear ();
696                                 state = VALUE;
697                         } else {
698                                 k += url[i];
699                         }
700                         break;
701                 case VALUE:
702                         if (url[i] == '&') {
703                                 r.insert (make_pair (k, v));
704                                 k.clear ();
705                                 state = KEY;
706                         } else {
707                                 v += url[i];
708                         }
709                         break;
710                 }
711         }
712
713         if (state == VALUE) {
714                 r.insert (make_pair (k, v));
715         }
716
717         return r;
718 }
719
720 string
721 video_asset_filename (shared_ptr<dcp::PictureAsset> asset, int reel_index, int reel_count, optional<string> summary)
722 {
723         dcp::NameFormat::Map values;
724         values['t'] = "j2c";
725         values['r'] = raw_convert<string> (reel_index + 1);
726         values['n'] = raw_convert<string> (reel_count);
727         if (summary) {
728                 values['c'] = careful_string_filter (summary.get());
729         }
730         return Config::instance()->dcp_asset_filename_format().get(values, "_" + asset->id() + ".mxf");
731 }
732
733 string
734 audio_asset_filename (shared_ptr<dcp::SoundAsset> asset, int reel_index, int reel_count, optional<string> summary)
735 {
736         dcp::NameFormat::Map values;
737         values['t'] = "pcm";
738         values['r'] = raw_convert<string> (reel_index + 1);
739         values['n'] = raw_convert<string> (reel_count);
740         if (summary) {
741                 values['c'] = careful_string_filter (summary.get());
742         }
743         return Config::instance()->dcp_asset_filename_format().get(values, "_" + asset->id() + ".mxf");
744 }
745
746
747 string
748 atmos_asset_filename (shared_ptr<dcp::AtmosAsset> asset, int reel_index, int reel_count, optional<string> summary)
749 {
750         dcp::NameFormat::Map values;
751         values['t'] = "atmos";
752         values['r'] = raw_convert<string> (reel_index + 1);
753         values['n'] = raw_convert<string> (reel_count);
754         if (summary) {
755                 values['c'] = careful_string_filter (summary.get());
756         }
757         return Config::instance()->dcp_asset_filename_format().get(values, "_" + asset->id() + ".mxf");
758 }
759
760
761 float
762 relaxed_string_to_float (string s)
763 {
764         try {
765                 boost::algorithm::replace_all (s, ",", ".");
766                 return lexical_cast<float> (s);
767         } catch (bad_lexical_cast &) {
768                 boost::algorithm::replace_all (s, ".", ",");
769                 return lexical_cast<float> (s);
770         }
771 }
772
773 string
774 careful_string_filter (string s)
775 {
776         /* Filter out `bad' characters which `may' cause problems with some systems (either for DCP name or filename).
777            There's no apparent list of what really is allowed, so this is a guess.
778            Safety first and all that.
779         */
780
781         /* First transliterate using libicu to try to remove accents in a "nice" way */
782         auto icu_utf16 = icu::UnicodeString::fromUTF8(icu::StringPiece(s));
783         auto status = U_ZERO_ERROR;
784         auto transliterator = icu::Transliterator::createInstance("NFD; [:M:] Remove; NFC", UTRANS_FORWARD, status);
785         transliterator->transliterate(icu_utf16);
786         s.clear ();
787         icu_utf16.toUTF8String(s);
788
789         /* Then remove anything that's not in a very limited character set */
790         wstring ws = boost::locale::conv::utf_to_utf<wchar_t>(s);
791         string out;
792         string const allowed = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz-_%.+";
793         for (size_t i = 0; i < ws.size(); ++i) {
794                 wchar_t c = ws[i];
795                 if (allowed.find(c) != string::npos) {
796                         out += c;
797                 }
798         }
799
800         return boost::locale::conv::utf_to_utf<char>(out);
801 }
802
803 /** @param mapped List of mapped audio channels from a Film.
804  *  @param channels Total number of channels in the Film.
805  *  @return First: number of non-LFE soundtrack channels (L/R/C/Ls/Rs/Lc/Rc/Bsl/Bsr), second: number of LFE channels.
806  */
807 pair<int, int>
808 audio_channel_types (list<int> mapped, int channels)
809 {
810         int non_lfe = 0;
811         int lfe = 0;
812
813         for (auto i: mapped) {
814                 if (i >= channels) {
815                         /* This channel is mapped but is not included in the DCP */
816                         continue;
817                 }
818
819                 switch (static_cast<dcp::Channel>(i)) {
820                 case dcp::Channel::LFE:
821                         ++lfe;
822                         break;
823                 case dcp::Channel::LEFT:
824                 case dcp::Channel::RIGHT:
825                 case dcp::Channel::CENTRE:
826                 case dcp::Channel::LS:
827                 case dcp::Channel::RS:
828                 case dcp::Channel::BSL:
829                 case dcp::Channel::BSR:
830                         ++non_lfe;
831                         break;
832                 case dcp::Channel::HI:
833                 case dcp::Channel::VI:
834                 case dcp::Channel::MOTION_DATA:
835                 case dcp::Channel::SYNC_SIGNAL:
836                 case dcp::Channel::SIGN_LANGUAGE:
837                 case dcp::Channel::CHANNEL_COUNT:
838                         break;
839                 }
840         }
841
842         return make_pair (non_lfe, lfe);
843 }
844
845 shared_ptr<AudioBuffers>
846 remap (shared_ptr<const AudioBuffers> input, int output_channels, AudioMapping map)
847 {
848         auto mapped = make_shared<AudioBuffers>(output_channels, input->frames());
849         mapped->make_silent ();
850
851         int to_do = min (map.input_channels(), input->channels());
852
853         for (int i = 0; i < to_do; ++i) {
854                 for (int j = 0; j < mapped->channels(); ++j) {
855                         if (map.get(i, j) > 0) {
856                                 mapped->accumulate_channel(
857                                         input.get(),
858                                         i,
859                                         j,
860                                         map.get(i, j)
861                                         );
862                         }
863                 }
864         }
865
866         return mapped;
867 }
868
869 Eyes
870 increment_eyes (Eyes e)
871 {
872         if (e == Eyes::LEFT) {
873                 return Eyes::RIGHT;
874         }
875
876         return Eyes::LEFT;
877 }
878
879 void
880 checked_fwrite (void const * ptr, size_t size, FILE* stream, boost::filesystem::path path)
881 {
882         size_t N = fwrite (ptr, 1, size, stream);
883         if (N != size) {
884                 if (ferror(stream)) {
885                         fclose (stream);
886                         throw FileError (String::compose("fwrite error %1", errno), path);
887                 } else {
888                         fclose (stream);
889                         throw FileError ("Unexpected short write", path);
890                 }
891         }
892 }
893
894 void
895 checked_fread (void* ptr, size_t size, FILE* stream, boost::filesystem::path path)
896 {
897         size_t N = fread (ptr, 1, size, stream);
898         if (N != size) {
899                 if (ferror(stream)) {
900                         fclose (stream);
901                         throw FileError (String::compose("fread error %1", errno), path);
902                 } else {
903                         fclose (stream);
904                         throw FileError ("Unexpected short read", path);
905                 }
906         }
907 }
908
909 size_t
910 utf8_strlen (string s)
911 {
912         size_t const len = s.length ();
913         int N = 0;
914         for (size_t i = 0; i < len; ++i) {
915                 unsigned char c = s[i];
916                 if ((c & 0xe0) == 0xc0) {
917                         ++i;
918                 } else if ((c & 0xf0) == 0xe0) {
919                         i += 2;
920                 } else if ((c & 0xf8) == 0xf0) {
921                         i += 3;
922                 }
923                 ++N;
924         }
925         return N;
926 }
927
928 string
929 day_of_week_to_string (boost::gregorian::greg_weekday d)
930 {
931         switch (d.as_enum()) {
932         case boost::date_time::Sunday:
933                 return _("Sunday");
934         case boost::date_time::Monday:
935                 return _("Monday");
936         case boost::date_time::Tuesday:
937                 return _("Tuesday");
938         case boost::date_time::Wednesday:
939                 return _("Wednesday");
940         case boost::date_time::Thursday:
941                 return _("Thursday");
942         case boost::date_time::Friday:
943                 return _("Friday");
944         case boost::date_time::Saturday:
945                 return _("Saturday");
946         }
947
948         return d.as_long_string ();
949 }
950
951 /** @param size Size of picture that the subtitle will be overlaid onto */
952 void
953 emit_subtitle_image (ContentTimePeriod period, dcp::SubtitleImage sub, dcp::Size size, shared_ptr<TextDecoder> decoder)
954 {
955         /* XXX: this is rather inefficient; decoding the image just to get its size */
956         FFmpegImageProxy proxy (sub.png_image());
957         auto image = proxy.image().image;
958         /* set up rect with height and width */
959         dcpomatic::Rect<double> rect(0, 0, image->size().width / double(size.width), image->size().height / double(size.height));
960
961         /* add in position */
962
963         switch (sub.h_align()) {
964         case dcp::HAlign::LEFT:
965                 rect.x += sub.h_position();
966                 break;
967         case dcp::HAlign::CENTER:
968                 rect.x += 0.5 + sub.h_position() - rect.width / 2;
969                 break;
970         case dcp::HAlign::RIGHT:
971                 rect.x += 1 - sub.h_position() - rect.width;
972                 break;
973         }
974
975         switch (sub.v_align()) {
976         case dcp::VAlign::TOP:
977                 rect.y += sub.v_position();
978                 break;
979         case dcp::VAlign::CENTER:
980                 rect.y += 0.5 + sub.v_position() - rect.height / 2;
981                 break;
982         case dcp::VAlign::BOTTOM:
983                 rect.y += 1 - sub.v_position() - rect.height;
984                 break;
985         }
986
987         decoder->emit_bitmap (period, image, rect);
988 }
989
990 bool
991 show_jobs_on_console (bool progress)
992 {
993         bool first = true;
994         bool error = false;
995         while (true) {
996
997                 dcpomatic_sleep_seconds (5);
998
999                 auto jobs = JobManager::instance()->get();
1000
1001                 if (!first && progress) {
1002                         for (size_t i = 0; i < jobs.size(); ++i) {
1003                                 cout << "\033[1A\033[2K";
1004                         }
1005                         cout.flush ();
1006                 }
1007
1008                 first = false;
1009
1010                 for (auto i: jobs) {
1011                         if (progress) {
1012                                 cout << i->name();
1013                                 if (!i->sub_name().empty()) {
1014                                         cout << "; " << i->sub_name();
1015                                 }
1016                                 cout << ": ";
1017
1018                                 if (i->progress ()) {
1019                                         cout << i->status() << "                            \n";
1020                                 } else {
1021                                         cout << ": Running           \n";
1022                                 }
1023                         }
1024
1025                         if (!progress && i->finished_in_error()) {
1026                                 /* We won't see this error if we haven't been showing progress,
1027                                    so show it now.
1028                                 */
1029                                 cout << i->status() << "\n";
1030                         }
1031
1032                         if (i->finished_in_error()) {
1033                                 error = true;
1034                         }
1035                 }
1036
1037                 if (!JobManager::instance()->work_to_do()) {
1038                         break;
1039                 }
1040         }
1041
1042         return error;
1043 }
1044
1045 /** XXX: could use mmap? */
1046 void
1047 copy_in_bits (boost::filesystem::path from, boost::filesystem::path to, std::function<void (float)> progress)
1048 {
1049         auto f = fopen_boost (from, "rb");
1050         if (!f) {
1051                 throw OpenFileError (from, errno, OpenFileError::READ);
1052         }
1053         auto t = fopen_boost (to, "wb");
1054         if (!t) {
1055                 fclose (f);
1056                 throw OpenFileError (to, errno, OpenFileError::WRITE);
1057         }
1058
1059         /* on the order of a second's worth of copying */
1060         boost::uintmax_t const chunk = 20 * 1024 * 1024;
1061
1062         auto buffer = static_cast<uint8_t*> (malloc(chunk));
1063         if (!buffer) {
1064                 throw std::bad_alloc ();
1065         }
1066
1067         boost::uintmax_t const total = boost::filesystem::file_size (from);
1068         boost::uintmax_t remaining = total;
1069
1070         while (remaining) {
1071                 boost::uintmax_t this_time = min (chunk, remaining);
1072                 size_t N = fread (buffer, 1, chunk, f);
1073                 if (N < this_time) {
1074                         fclose (f);
1075                         fclose (t);
1076                         free (buffer);
1077                         throw ReadFileError (from, errno);
1078                 }
1079
1080                 N = fwrite (buffer, 1, this_time, t);
1081                 if (N < this_time) {
1082                         fclose (f);
1083                         fclose (t);
1084                         free (buffer);
1085                         throw WriteFileError (to, errno);
1086                 }
1087
1088                 progress (1 - float(remaining) / total);
1089                 remaining -= this_time;
1090         }
1091
1092         fclose (f);
1093         fclose (t);
1094         free (buffer);
1095 }
1096
1097 double
1098 db_to_linear (double db)
1099 {
1100         return pow(10, db / 20);
1101 }
1102
1103 double
1104 linear_to_db (double linear)
1105 {
1106         return 20 * log10(linear);
1107 }
1108
1109
1110 dcp::Size
1111 scale_for_display (dcp::Size s, dcp::Size display_container, dcp::Size film_container)
1112 {
1113         /* Now scale it down if the display container is smaller than the film container */
1114         if (display_container != film_container) {
1115                 float const scale = min (
1116                         float (display_container.width) / film_container.width,
1117                         float (display_container.height) / film_container.height
1118                         );
1119
1120                 s.width = lrintf (s.width * scale);
1121                 s.height = lrintf (s.height * scale);
1122         }
1123
1124         return s;
1125 }
1126
1127
1128 dcp::DecryptedKDM
1129 decrypt_kdm_with_helpful_error (dcp::EncryptedKDM kdm)
1130 {
1131         try {
1132                 return dcp::DecryptedKDM (kdm, Config::instance()->decryption_chain()->key().get());
1133         } catch (dcp::KDMDecryptionError& e) {
1134                 /* Try to flesh out the error a bit */
1135                 auto const kdm_subject_name = kdm.recipient_x509_subject_name();
1136                 bool on_chain = false;
1137                 auto dc = Config::instance()->decryption_chain();
1138                 for (auto i: dc->root_to_leaf()) {
1139                         if (i.subject() == kdm_subject_name) {
1140                                 on_chain = true;
1141                         }
1142                 }
1143                 if (!on_chain) {
1144                         throw KDMError (_("This KDM was not made for DCP-o-matic's decryption certificate."), e.what());
1145                 } else if (kdm_subject_name != dc->leaf().subject()) {
1146                         throw KDMError (_("This KDM was made for DCP-o-matic but not for its leaf certificate."), e.what());
1147                 } else {
1148                         throw;
1149                 }
1150         }
1151 }
1152
1153
1154 boost::filesystem::path
1155 default_font_file ()
1156 {
1157         boost::filesystem::path liberation_normal;
1158         try {
1159                 liberation_normal = resources_path() / "LiberationSans-Regular.ttf";
1160                 if (!boost::filesystem::exists (liberation_normal)) {
1161                         /* Hack for unit tests */
1162                         liberation_normal = resources_path() / "fonts" / "LiberationSans-Regular.ttf";
1163                 }
1164         } catch (boost::filesystem::filesystem_error& e) {
1165
1166         }
1167
1168         if (!boost::filesystem::exists(liberation_normal)) {
1169                 liberation_normal = "/usr/share/fonts/truetype/liberation/LiberationSans-Regular.ttf";
1170         }
1171
1172         return liberation_normal;
1173 }
1174
1175
1176 string
1177 to_upper (string s)
1178 {
1179         transform (s.begin(), s.end(), s.begin(), ::toupper);
1180         return s;
1181 }
1182
1183
1184 /* Set to 1 to print the IDs of some of our threads to stdout on creation */
1185 #define DCPOMATIC_DEBUG_THREADS 0
1186
1187 #if DCPOMATIC_DEBUG_THREADS
1188 void
1189 start_of_thread (string name)
1190 {
1191         std::cout << "THREAD:" << name << ":" << std::hex << pthread_self() << "\n";
1192 }
1193 #else
1194 void
1195 start_of_thread (string)
1196 {
1197
1198 }
1199 #endif
1200