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