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