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