Add missing include.
[dcpomatic.git] / src / lib / util.cc
1 /*
2     Copyright (C) 2012 Carl Hetherington <cth@carlh.net>
3     Copyright (C) 2000-2007 Paul Davis
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 */
20
21 /** @file src/lib/util.cc
22  *  @brief Some utility functions and classes.
23  */
24
25 #include <sstream>
26 #include <iomanip>
27 #include <iostream>
28 #include <fstream>
29 #include <climits>
30 #ifdef DCPOMATIC_POSIX
31 #include <execinfo.h>
32 #include <cxxabi.h>
33 #endif
34 #include <libssh/libssh.h>
35 #include <signal.h>
36 #include <boost/algorithm/string.hpp>
37 #include <boost/bind.hpp>
38 #include <boost/lambda/lambda.hpp>
39 #include <boost/lexical_cast.hpp>
40 #include <boost/thread.hpp>
41 #include <boost/filesystem.hpp>
42 #include <glib.h>
43 #include <openjpeg.h>
44 #include <openssl/md5.h>
45 #include <magick/MagickCore.h>
46 #include <magick/version.h>
47 #include <libdcp/version.h>
48 #include <libdcp/util.h>
49 #include <libdcp/signer_chain.h>
50 #include <libdcp/signer.h>
51 extern "C" {
52 #include <libavcodec/avcodec.h>
53 #include <libavformat/avformat.h>
54 #include <libswscale/swscale.h>
55 #include <libavfilter/avfiltergraph.h>
56 #include <libpostproc/postprocess.h>
57 #include <libavutil/pixfmt.h>
58 }
59 #include "util.h"
60 #include "exceptions.h"
61 #include "scaler.h"
62 #include "dcp_content_type.h"
63 #include "filter.h"
64 #include "sound_processor.h"
65 #include "config.h"
66 #include "ratio.h"
67 #include "job.h"
68 #include "cross.h"
69 #ifdef DCPOMATIC_WINDOWS
70 #include "stack.hpp"
71 #endif
72 #ifdef DCPOMATIC_OSX
73 #include <ltdl.h>
74 #endif
75
76 #include "i18n.h"
77
78 using std::string;
79 using std::stringstream;
80 using std::setfill;
81 using std::ostream;
82 using std::endl;
83 using std::vector;
84 using std::hex;
85 using std::setw;
86 using std::ifstream;
87 using std::ios;
88 using std::min;
89 using std::max;
90 using std::list;
91 using std::multimap;
92 using std::istream;
93 using std::numeric_limits;
94 using std::pair;
95 using std::ofstream;
96 using boost::shared_ptr;
97 using boost::thread;
98 using boost::lexical_cast;
99 using boost::optional;
100 using libdcp::Size;
101
102 static boost::thread::id ui_thread;
103 static boost::filesystem::path backtrace_file;
104
105 /** Convert some number of seconds to a string representation
106  *  in hours, minutes and seconds.
107  *
108  *  @param s Seconds.
109  *  @return String of the form H:M:S (where H is hours, M
110  *  is minutes and S is seconds).
111  */
112 string
113 seconds_to_hms (int s)
114 {
115         int m = s / 60;
116         s -= (m * 60);
117         int h = m / 60;
118         m -= (h * 60);
119
120         stringstream hms;
121         hms << h << N_(":");
122         hms.width (2);
123         hms << std::setfill ('0') << m << N_(":");
124         hms.width (2);
125         hms << std::setfill ('0') << s;
126
127         return hms.str ();
128 }
129
130 /** @param s Number of seconds.
131  *  @return String containing an approximate description of s (e.g. "about 2 hours")
132  */
133 string
134 seconds_to_approximate_hms (int s)
135 {
136         int m = s / 60;
137         s -= (m * 60);
138         int h = m / 60;
139         m -= (h * 60);
140
141         stringstream ap;
142         
143         if (h > 0) {
144                 if (m > 30) {
145                         ap << (h + 1) << N_(" ") << _("hours");
146                 } else {
147                         if (h == 1) {
148                                 ap << N_("1 ") << _("hour");
149                         } else {
150                                 ap << h << N_(" ") << _("hours");
151                         }
152                 }
153         } else if (m > 0) {
154                 if (m == 1) {
155                         ap << N_("1 ") << _("minute");
156                 } else {
157                         ap << m << N_(" ") << _("minutes");
158                 }
159         } else {
160                 ap << s << N_(" ") << _("seconds");
161         }
162
163         return ap.str ();
164 }
165
166 #ifdef DCPOMATIC_POSIX
167 /** @param l Mangled C++ identifier.
168  *  @return Demangled version.
169  */
170 static string
171 demangle (string l)
172 {
173         string::size_type const b = l.find_first_of (N_("("));
174         if (b == string::npos) {
175                 return l;
176         }
177
178         string::size_type const p = l.find_last_of (N_("+"));
179         if (p == string::npos) {
180                 return l;
181         }
182
183         if ((p - b) <= 1) {
184                 return l;
185         }
186         
187         string const fn = l.substr (b + 1, p - b - 1);
188
189         int status;
190         try {
191                 
192                 char* realname = abi::__cxa_demangle (fn.c_str(), 0, 0, &status);
193                 string d (realname);
194                 free (realname);
195                 return d;
196                 
197         } catch (std::exception) {
198                 
199         }
200         
201         return l;
202 }
203
204 /** Write a stacktrace to an ostream.
205  *  @param out Stream to write to.
206  *  @param levels Number of levels to go up the call stack.
207  */
208 void
209 stacktrace (ostream& out, int levels)
210 {
211         void *array[200];
212         size_t size = backtrace (array, 200);
213         char** strings = backtrace_symbols (array, size);
214      
215         if (strings) {
216                 for (size_t i = 0; i < size && (levels == 0 || i < size_t(levels)); i++) {
217                         out << N_("  ") << demangle (strings[i]) << "\n";
218                 }
219                 
220                 free (strings);
221         }
222 }
223 #endif
224
225 /** @param v Version as used by FFmpeg.
226  *  @return A string representation of v.
227  */
228 static string
229 ffmpeg_version_to_string (int v)
230 {
231         stringstream s;
232         s << ((v & 0xff0000) >> 16) << N_(".") << ((v & 0xff00) >> 8) << N_(".") << (v & 0xff);
233         return s.str ();
234 }
235
236 /** Return a user-readable string summarising the versions of our dependencies */
237 string
238 dependency_version_summary ()
239 {
240         stringstream s;
241         s << N_("libopenjpeg ") << opj_version () << N_(", ")
242           << N_("libavcodec ") << ffmpeg_version_to_string (avcodec_version()) << N_(", ")
243           << N_("libavfilter ") << ffmpeg_version_to_string (avfilter_version()) << N_(", ")
244           << N_("libavformat ") << ffmpeg_version_to_string (avformat_version()) << N_(", ")
245           << N_("libavutil ") << ffmpeg_version_to_string (avutil_version()) << N_(", ")
246           << N_("libpostproc ") << ffmpeg_version_to_string (postproc_version()) << N_(", ")
247           << N_("libswscale ") << ffmpeg_version_to_string (swscale_version()) << N_(", ")
248           << MagickVersion << N_(", ")
249           << N_("libssh ") << ssh_version (0) << N_(", ")
250           << N_("libdcp ") << libdcp::version << N_(" git ") << libdcp::git_commit;
251
252         return s.str ();
253 }
254
255 double
256 seconds (struct timeval t)
257 {
258         return t.tv_sec + (double (t.tv_usec) / 1e6);
259 }
260
261 #ifdef DCPOMATIC_WINDOWS
262 LONG WINAPI exception_handler(struct _EXCEPTION_POINTERS *)
263 {
264         dbg::stack s;
265         ofstream f (backtrace_file.string().c_str());
266         std::copy(s.begin(), s.end(), std::ostream_iterator<dbg::stack_frame>(f, "\n"));
267         return EXCEPTION_CONTINUE_SEARCH;
268 }
269 #endif
270
271 /** Call the required functions to set up DCP-o-matic's static arrays, etc.
272  *  Must be called from the UI thread, if there is one.
273  */
274 void
275 dcpomatic_setup ()
276 {
277 #ifdef DCPOMATIC_WINDOWS
278         backtrace_file /= g_get_user_config_dir ();
279         backtrace_file /= "backtrace.txt";
280         SetUnhandledExceptionFilter(exception_handler);
281 #endif  
282         
283         avfilter_register_all ();
284
285 #ifdef DCPOMATIC_OSX
286         /* Add our lib directory to the libltdl search path so that
287            xmlsec can find xmlsec1-openssl.
288         */
289         boost::filesystem::path lib = app_contents ();
290         lib /= "lib";
291         lt_dladdsearchdir (lib.c_str ());
292 #endif  
293
294         libdcp::init ();
295         
296         Ratio::setup_ratios ();
297         DCPContentType::setup_dcp_content_types ();
298         Scaler::setup_scalers ();
299         Filter::setup_filters ();
300         SoundProcessor::setup_sound_processors ();
301
302         ui_thread = boost::this_thread::get_id ();
303 }
304
305 #ifdef DCPOMATIC_WINDOWS
306 boost::filesystem::path
307 mo_path ()
308 {
309         wchar_t buffer[512];
310         GetModuleFileName (0, buffer, 512 * sizeof(wchar_t));
311         boost::filesystem::path p (buffer);
312         p = p.parent_path ();
313         p = p.parent_path ();
314         p /= "locale";
315         return p;
316 }
317 #endif
318
319 void
320 dcpomatic_setup_gettext_i18n (string lang)
321 {
322 #ifdef DCPOMATIC_POSIX
323         lang += ".UTF8";
324 #endif
325
326         if (!lang.empty ()) {
327                 /* Override our environment language; this is essential on
328                    Windows.
329                 */
330                 char cmd[64];
331                 snprintf (cmd, sizeof(cmd), "LANGUAGE=%s", lang.c_str ());
332                 putenv (cmd);
333                 snprintf (cmd, sizeof(cmd), "LANG=%s", lang.c_str ());
334                 putenv (cmd);
335         }
336
337         setlocale (LC_ALL, "");
338         textdomain ("libdcpomatic");
339
340 #ifdef DCPOMATIC_WINDOWS
341         bindtextdomain ("libdcpomatic", mo_path().string().c_str());
342         bind_textdomain_codeset ("libdcpomatic", "UTF8");
343 #endif  
344
345 #ifdef DCPOMATIC_POSIX
346         bindtextdomain ("libdcpomatic", POSIX_LOCALE_PREFIX);
347 #endif
348 }
349
350 /** @param s A string.
351  *  @return Parts of the string split at spaces, except when a space is within quotation marks.
352  */
353 vector<string>
354 split_at_spaces_considering_quotes (string s)
355 {
356         vector<string> out;
357         bool in_quotes = false;
358         string c;
359         for (string::size_type i = 0; i < s.length(); ++i) {
360                 if (s[i] == ' ' && !in_quotes) {
361                         out.push_back (c);
362                         c = N_("");
363                 } else if (s[i] == '"') {
364                         in_quotes = !in_quotes;
365                 } else {
366                         c += s[i];
367                 }
368         }
369
370         out.push_back (c);
371         return out;
372 }
373
374 string
375 md5_digest (void const * data, int size)
376 {
377         MD5_CTX md5_context;
378         MD5_Init (&md5_context);
379         MD5_Update (&md5_context, data, size);
380         unsigned char digest[MD5_DIGEST_LENGTH];
381         MD5_Final (digest, &md5_context);
382         
383         stringstream s;
384         for (int i = 0; i < MD5_DIGEST_LENGTH; ++i) {
385                 s << std::hex << std::setfill('0') << std::setw(2) << ((int) digest[i]);
386         }
387
388         return s.str ();
389 }
390
391 /** @param file File name.
392  *  @return MD5 digest of file's contents.
393  */
394 string
395 md5_digest (boost::filesystem::path file)
396 {
397         ifstream f (file.string().c_str(), std::ios::binary);
398         if (!f.good ()) {
399                 throw OpenFileError (file.string());
400         }
401         
402         f.seekg (0, std::ios::end);
403         int bytes = f.tellg ();
404         f.seekg (0, std::ios::beg);
405
406         int const buffer_size = 64 * 1024;
407         char buffer[buffer_size];
408
409         MD5_CTX md5_context;
410         MD5_Init (&md5_context);
411         while (bytes > 0) {
412                 int const t = min (bytes, buffer_size);
413                 f.read (buffer, t);
414                 MD5_Update (&md5_context, buffer, t);
415                 bytes -= t;
416         }
417
418         unsigned char digest[MD5_DIGEST_LENGTH];
419         MD5_Final (digest, &md5_context);
420
421         stringstream s;
422         for (int i = 0; i < MD5_DIGEST_LENGTH; ++i) {
423                 s << std::hex << std::setfill('0') << std::setw(2) << ((int) digest[i]);
424         }
425
426         return s.str ();
427 }
428
429 /** @param job Optional job for which to report progress */
430 string
431 md5_digest_directory (boost::filesystem::path directory, shared_ptr<Job> job)
432 {
433         int const buffer_size = 64 * 1024;
434         char buffer[buffer_size];
435
436         MD5_CTX md5_context;
437         MD5_Init (&md5_context);
438
439         int files = 0;
440         if (job) {
441                 for (boost::filesystem::directory_iterator i(directory); i != boost::filesystem::directory_iterator(); ++i) {
442                         ++files;
443                 }
444         }
445
446         int j = 0;
447         for (boost::filesystem::directory_iterator i(directory); i != boost::filesystem::directory_iterator(); ++i) {
448                 ifstream f (i->path().string().c_str(), std::ios::binary);
449                 if (!f.good ()) {
450                         throw OpenFileError (i->path().string());
451                 }
452         
453                 f.seekg (0, std::ios::end);
454                 int bytes = f.tellg ();
455                 f.seekg (0, std::ios::beg);
456
457                 while (bytes > 0) {
458                         int const t = min (bytes, buffer_size);
459                         f.read (buffer, t);
460                         MD5_Update (&md5_context, buffer, t);
461                         bytes -= t;
462                 }
463
464                 if (job) {
465                         job->set_progress (float (j) / files);
466                         ++j;
467                 }
468         }
469
470         unsigned char digest[MD5_DIGEST_LENGTH];
471         MD5_Final (digest, &md5_context);
472
473         stringstream s;
474         for (int i = 0; i < MD5_DIGEST_LENGTH; ++i) {
475                 s << std::hex << std::setfill('0') << std::setw(2) << ((int) digest[i]);
476         }
477
478         return s.str ();
479 }
480
481 static bool
482 about_equal (float a, float b)
483 {
484         /* A film of F seconds at f FPS will be Ff frames;
485            Consider some delta FPS d, so if we run the same
486            film at (f + d) FPS it will last F(f + d) seconds.
487
488            Hence the difference in length over the length of the film will
489            be F(f + d) - Ff frames
490             = Ff + Fd - Ff frames
491             = Fd frames
492             = Fd/f seconds
493  
494            So if we accept a difference of 1 frame, ie 1/f seconds, we can
495            say that
496
497            1/f = Fd/f
498         ie 1 = Fd
499         ie d = 1/F
500  
501            So for a 3hr film, ie F = 3 * 60 * 60 = 10800, the acceptable
502            FPS error is 1/F ~= 0.0001 ~= 10-e4
503         */
504
505         return (fabs (a - b) < 1e-4);
506 }
507
508 /** @param An arbitrary audio frame rate.
509  *  @return The appropriate DCP-approved frame rate (48kHz or 96kHz).
510  */
511 int
512 dcp_audio_frame_rate (int fs)
513 {
514         if (fs <= 48000) {
515                 return 48000;
516         }
517
518         return 96000;
519 }
520
521 Socket::Socket (int timeout)
522         : _deadline (_io_service)
523         , _socket (_io_service)
524         , _timeout (timeout)
525 {
526         _deadline.expires_at (boost::posix_time::pos_infin);
527         check ();
528 }
529
530 void
531 Socket::check ()
532 {
533         if (_deadline.expires_at() <= boost::asio::deadline_timer::traits_type::now ()) {
534                 _socket.close ();
535                 _deadline.expires_at (boost::posix_time::pos_infin);
536         }
537
538         _deadline.async_wait (boost::bind (&Socket::check, this));
539 }
540
541 /** Blocking connect.
542  *  @param endpoint End-point to connect to.
543  */
544 void
545 Socket::connect (boost::asio::ip::basic_resolver_entry<boost::asio::ip::tcp> const & endpoint)
546 {
547         _deadline.expires_from_now (boost::posix_time::seconds (_timeout));
548         boost::system::error_code ec = boost::asio::error::would_block;
549         _socket.async_connect (endpoint, boost::lambda::var(ec) = boost::lambda::_1);
550         do {
551                 _io_service.run_one();
552         } while (ec == boost::asio::error::would_block);
553
554         if (ec || !_socket.is_open ()) {
555                 throw NetworkError (_("connect timed out"));
556         }
557 }
558
559 /** Blocking write.
560  *  @param data Buffer to write.
561  *  @param size Number of bytes to write.
562  */
563 void
564 Socket::write (uint8_t const * data, int size)
565 {
566         _deadline.expires_from_now (boost::posix_time::seconds (_timeout));
567         boost::system::error_code ec = boost::asio::error::would_block;
568
569         boost::asio::async_write (_socket, boost::asio::buffer (data, size), boost::lambda::var(ec) = boost::lambda::_1);
570         
571         do {
572                 _io_service.run_one ();
573         } while (ec == boost::asio::error::would_block);
574
575         if (ec) {
576                 throw NetworkError (ec.message ());
577         }
578 }
579
580 void
581 Socket::write (uint32_t v)
582 {
583         v = htonl (v);
584         write (reinterpret_cast<uint8_t*> (&v), 4);
585 }
586
587 /** Blocking read.
588  *  @param data Buffer to read to.
589  *  @param size Number of bytes to read.
590  */
591 void
592 Socket::read (uint8_t* data, int size)
593 {
594         _deadline.expires_from_now (boost::posix_time::seconds (_timeout));
595         boost::system::error_code ec = boost::asio::error::would_block;
596
597         boost::asio::async_read (_socket, boost::asio::buffer (data, size), boost::lambda::var(ec) = boost::lambda::_1);
598
599         do {
600                 _io_service.run_one ();
601         } while (ec == boost::asio::error::would_block);
602         
603         if (ec) {
604                 throw NetworkError (ec.message ());
605         }
606 }
607
608 uint32_t
609 Socket::read_uint32 ()
610 {
611         uint32_t v;
612         read (reinterpret_cast<uint8_t *> (&v), 4);
613         return ntohl (v);
614 }
615
616 /** Round a number up to the nearest multiple of another number.
617  *  @param c Index.
618  *  @param s Array of numbers to round, indexed by c.
619  *  @param t Multiple to round to.
620  *  @return Rounded number.
621  */
622 int
623 stride_round_up (int c, int const * stride, int t)
624 {
625         int const a = stride[c] + (t - 1);
626         return a - (a % t);
627 }
628
629 /** Read a sequence of key / value pairs from a text stream;
630  *  the keys are the first words on the line, and the values are
631  *  the remainder of the line following the key.  Lines beginning
632  *  with # are ignored.
633  *  @param s Stream to read.
634  *  @return key/value pairs.
635  */
636 multimap<string, string>
637 read_key_value (istream &s) 
638 {
639         multimap<string, string> kv;
640         
641         string line;
642         while (getline (s, line)) {
643                 if (line.empty ()) {
644                         continue;
645                 }
646
647                 if (line[0] == '#') {
648                         continue;
649                 }
650
651                 if (line[line.size() - 1] == '\r') {
652                         line = line.substr (0, line.size() - 1);
653                 }
654
655                 size_t const s = line.find (' ');
656                 if (s == string::npos) {
657                         continue;
658                 }
659
660                 kv.insert (make_pair (line.substr (0, s), line.substr (s + 1)));
661         }
662
663         return kv;
664 }
665
666 string
667 get_required_string (multimap<string, string> const & kv, string k)
668 {
669         if (kv.count (k) > 1) {
670                 throw StringError (N_("unexpected multiple keys in key-value set"));
671         }
672
673         multimap<string, string>::const_iterator i = kv.find (k);
674         
675         if (i == kv.end ()) {
676                 throw StringError (String::compose (_("missing key %1 in key-value set"), k));
677         }
678
679         return i->second;
680 }
681
682 int
683 get_required_int (multimap<string, string> const & kv, string k)
684 {
685         string const v = get_required_string (kv, k);
686         return lexical_cast<int> (v);
687 }
688
689 float
690 get_required_float (multimap<string, string> const & kv, string k)
691 {
692         string const v = get_required_string (kv, k);
693         return lexical_cast<float> (v);
694 }
695
696 string
697 get_optional_string (multimap<string, string> const & kv, string k)
698 {
699         if (kv.count (k) > 1) {
700                 throw StringError (N_("unexpected multiple keys in key-value set"));
701         }
702
703         multimap<string, string>::const_iterator i = kv.find (k);
704         if (i == kv.end ()) {
705                 return N_("");
706         }
707
708         return i->second;
709 }
710
711 int
712 get_optional_int (multimap<string, string> const & kv, string k)
713 {
714         if (kv.count (k) > 1) {
715                 throw StringError (N_("unexpected multiple keys in key-value set"));
716         }
717
718         multimap<string, string>::const_iterator i = kv.find (k);
719         if (i == kv.end ()) {
720                 return 0;
721         }
722
723         return lexical_cast<int> (i->second);
724 }
725
726 /** Trip an assert if the caller is not in the UI thread */
727 void
728 ensure_ui_thread ()
729 {
730         assert (boost::this_thread::get_id() == ui_thread);
731 }
732
733 /** @param v Content video frame.
734  *  @param audio_sample_rate Source audio sample rate.
735  *  @param frames_per_second Number of video frames per second.
736  *  @return Equivalent number of audio frames for `v'.
737  */
738 int64_t
739 video_frames_to_audio_frames (VideoContent::Frame v, float audio_sample_rate, float frames_per_second)
740 {
741         return ((int64_t) v * audio_sample_rate / frames_per_second);
742 }
743
744 string
745 audio_channel_name (int c)
746 {
747         assert (MAX_AUDIO_CHANNELS == 6);
748
749         /* TRANSLATORS: these are the names of audio channels; Lfe (sub) is the low-frequency
750            enhancement channel (sub-woofer)./
751         */
752         string const channels[] = {
753                 _("Left"),
754                 _("Right"),
755                 _("Centre"),
756                 _("Lfe (sub)"),
757                 _("Left surround"),
758                 _("Right surround"),
759         };
760
761         return channels[c];
762 }
763
764 FrameRateConversion::FrameRateConversion (float source, int dcp)
765         : skip (false)
766         , repeat (false)
767         , change_speed (false)
768 {
769         if (fabs (source / 2.0 - dcp) < (fabs (source - dcp))) {
770                 skip = true;
771         } else if (fabs (source * 2 - dcp) < fabs (source - dcp)) {
772                 repeat = true;
773         }
774
775         change_speed = !about_equal (source * factor(), dcp);
776
777         if (!skip && !repeat && !change_speed) {
778                 description = _("Content and DCP have the same rate.\n");
779         } else {
780                 if (skip) {
781                         description = _("DCP will use every other frame of the content.\n");
782                 } else if (repeat) {
783                         description = _("Each content frame will be doubled in the DCP.\n");
784                 }
785
786                 if (change_speed) {
787                         float const pc = dcp * 100 / (source * factor());
788                         description += String::compose (_("DCP will run at %1%% of the content speed.\n"), pc);
789                 }
790         }
791 }
792
793 LocaleGuard::LocaleGuard ()
794         : _old (0)
795 {
796         char const * old = setlocale (LC_NUMERIC, 0);
797
798         if (old) {
799                 _old = strdup (old);
800                 if (strcmp (_old, "C")) {
801                         setlocale (LC_NUMERIC, "C");
802                 }
803         }
804 }
805
806 LocaleGuard::~LocaleGuard ()
807 {
808         setlocale (LC_NUMERIC, _old);
809         free (_old);
810 }
811
812 bool
813 valid_image_file (boost::filesystem::path f)
814 {
815         string ext = f.extension().string();
816         transform (ext.begin(), ext.end(), ext.begin(), ::tolower);
817         return (ext == ".tif" || ext == ".tiff" || ext == ".jpg" || ext == ".jpeg" || ext == ".png" || ext == ".bmp" || ext == ".tga");
818 }
819
820 string
821 tidy_for_filename (string f)
822 {
823         string t;
824         for (size_t i = 0; i < f.length(); ++i) {
825                 if (isalnum (f[i]) || f[i] == '_' || f[i] == '-') {
826                         t += f[i];
827                 } else {
828                         t += '_';
829                 }
830         }
831
832         return t;
833 }
834
835 shared_ptr<const libdcp::Signer>
836 make_signer ()
837 {
838         boost::filesystem::path const sd = Config::instance()->signer_chain_directory ();
839
840         /* Remake the chain if any of it is missing */
841         
842         list<boost::filesystem::path> files;
843         files.push_back ("ca.self-signed.pem");
844         files.push_back ("intermediate.signed.pem");
845         files.push_back ("leaf.signed.pem");
846         files.push_back ("leaf.key");
847
848         list<boost::filesystem::path>::const_iterator i = files.begin();
849         while (i != files.end()) {
850                 boost::filesystem::path p (sd);
851                 p /= *i;
852                 if (!boost::filesystem::exists (p)) {
853                         boost::filesystem::remove_all (sd);
854                         boost::filesystem::create_directories (sd);
855                         libdcp::make_signer_chain (sd, openssl_path ());
856                         break;
857                 }
858
859                 ++i;
860         }
861         
862         libdcp::CertificateChain chain;
863
864         {
865                 boost::filesystem::path p (sd);
866                 p /= "ca.self-signed.pem";
867                 chain.add (shared_ptr<libdcp::Certificate> (new libdcp::Certificate (p)));
868         }
869
870         {
871                 boost::filesystem::path p (sd);
872                 p /= "intermediate.signed.pem";
873                 chain.add (shared_ptr<libdcp::Certificate> (new libdcp::Certificate (p)));
874         }
875
876         {
877                 boost::filesystem::path p (sd);
878                 p /= "leaf.signed.pem";
879                 chain.add (shared_ptr<libdcp::Certificate> (new libdcp::Certificate (p)));
880         }
881
882         boost::filesystem::path signer_key (sd);
883         signer_key /= "leaf.key";
884
885         return shared_ptr<const libdcp::Signer> (new libdcp::Signer (chain, signer_key));
886 }
887