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