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