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