Merge master.
[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 #ifdef DVDOMATIC_POSIX
30 #include <execinfo.h>
31 #include <cxxabi.h>
32 #endif
33 #include <libssh/libssh.h>
34 #include <signal.h>
35 #include <boost/algorithm/string.hpp>
36 #include <boost/bind.hpp>
37 #include <boost/lambda/lambda.hpp>
38 #include <boost/lexical_cast.hpp>
39 #include <boost/thread.hpp>
40 #include <boost/filesystem.hpp>
41 #include <openjpeg.h>
42 #include <openssl/md5.h>
43 #include <magick/MagickCore.h>
44 #include <magick/version.h>
45 #include <libdcp/version.h>
46 #include <libdcp/util.h>
47 extern "C" {
48 #include <libavcodec/avcodec.h>
49 #include <libavformat/avformat.h>
50 #include <libswscale/swscale.h>
51 #include <libavfilter/avfiltergraph.h>
52 #include <libpostproc/postprocess.h>
53 #include <libavutil/pixfmt.h>
54 }
55 #include "util.h"
56 #include "exceptions.h"
57 #include "scaler.h"
58 #include "format.h"
59 #include "dcp_content_type.h"
60 #include "filter.h"
61 #include "sound_processor.h"
62
63 using namespace std;
64 using namespace boost;
65
66 thread::id ui_thread;
67
68 /** Convert some number of seconds to a string representation
69  *  in hours, minutes and seconds.
70  *
71  *  @param s Seconds.
72  *  @return String of the form H:M:S (where H is hours, M
73  *  is minutes and S is seconds).
74  */
75 string
76 seconds_to_hms (int s)
77 {
78         int m = s / 60;
79         s -= (m * 60);
80         int h = m / 60;
81         m -= (h * 60);
82
83         stringstream hms;
84         hms << h << ":";
85         hms.width (2);
86         hms << setfill ('0') << m << ":";
87         hms.width (2);
88         hms << setfill ('0') << s;
89
90         return hms.str ();
91 }
92
93 /** @param s Number of seconds.
94  *  @return String containing an approximate description of s (e.g. "about 2 hours")
95  */
96 string
97 seconds_to_approximate_hms (int s)
98 {
99         int m = s / 60;
100         s -= (m * 60);
101         int h = m / 60;
102         m -= (h * 60);
103
104         stringstream ap;
105         
106         if (h > 0) {
107                 if (m > 30) {
108                         ap << (h + 1) << " hours";
109                 } else {
110                         if (h == 1) {
111                                 ap << "1 hour";
112                         } else {
113                                 ap << h << " hours";
114                         }
115                 }
116         } else if (m > 0) {
117                 if (m == 1) {
118                         ap << "1 minute";
119                 } else {
120                         ap << m << " minutes";
121                 }
122         } else {
123                 ap << s << " seconds";
124         }
125
126         return ap.str ();
127 }
128
129 #ifdef DVDOMATIC_POSIX
130 /** @param l Mangled C++ identifier.
131  *  @return Demangled version.
132  */
133 static string
134 demangle (string l)
135 {
136         string::size_type const b = l.find_first_of ("(");
137         if (b == string::npos) {
138                 return l;
139         }
140
141         string::size_type const p = l.find_last_of ("+");
142         if (p == string::npos) {
143                 return l;
144         }
145
146         if ((p - b) <= 1) {
147                 return l;
148         }
149         
150         string const fn = l.substr (b + 1, p - b - 1);
151
152         int status;
153         try {
154                 
155                 char* realname = abi::__cxa_demangle (fn.c_str(), 0, 0, &status);
156                 string d (realname);
157                 free (realname);
158                 return d;
159                 
160         } catch (std::exception) {
161                 
162         }
163         
164         return l;
165 }
166
167 /** Write a stacktrace to an ostream.
168  *  @param out Stream to write to.
169  *  @param levels Number of levels to go up the call stack.
170  */
171 void
172 stacktrace (ostream& out, int levels)
173 {
174         void *array[200];
175         size_t size;
176         char **strings;
177         size_t i;
178      
179         size = backtrace (array, 200);
180         strings = backtrace_symbols (array, size);
181      
182         if (strings) {
183                 for (i = 0; i < size && (levels == 0 || i < size_t(levels)); i++) {
184                         out << "  " << demangle (strings[i]) << endl;
185                 }
186                 
187                 free (strings);
188         }
189 }
190 #endif
191
192 /** @param v Version as used by FFmpeg.
193  *  @return A string representation of v.
194  */
195 static string
196 ffmpeg_version_to_string (int v)
197 {
198         stringstream s;
199         s << ((v & 0xff0000) >> 16) << "." << ((v & 0xff00) >> 8) << "." << (v & 0xff);
200         return s.str ();
201 }
202
203 /** Return a user-readable string summarising the versions of our dependencies */
204 string
205 dependency_version_summary ()
206 {
207         stringstream s;
208         s << "libopenjpeg " << opj_version () << ", "
209           << "libavcodec " << ffmpeg_version_to_string (avcodec_version()) << ", "
210           << "libavfilter " << ffmpeg_version_to_string (avfilter_version()) << ", "
211           << "libavformat " << ffmpeg_version_to_string (avformat_version()) << ", "
212           << "libavutil " << ffmpeg_version_to_string (avutil_version()) << ", "
213           << "libpostproc " << ffmpeg_version_to_string (postproc_version()) << ", "
214           << "libswscale " << ffmpeg_version_to_string (swscale_version()) << ", "
215           << MagickVersion << ", "
216           << "libssh " << ssh_version (0) << ", "
217           << "libdcp " << libdcp::version << " git " << libdcp::git_commit;
218
219         return s.str ();
220 }
221
222 double
223 seconds (struct timeval t)
224 {
225         return t.tv_sec + (double (t.tv_usec) / 1e6);
226 }
227
228 /** Call the required functions to set up DVD-o-matic's static arrays, etc.
229  *  Must be called from the UI thread, if there is one.
230  */
231 void
232 dvdomatic_setup ()
233 {
234         libdcp::init ();
235         
236         Format::setup_formats ();
237         DCPContentType::setup_dcp_content_types ();
238         Scaler::setup_scalers ();
239         Filter::setup_filters ();
240         SoundProcessor::setup_sound_processors ();
241
242         ui_thread = this_thread::get_id ();
243 }
244
245 /** @param start Start position for the crop within the image.
246  *  @param size Size of the cropped area.
247  *  @return FFmpeg crop filter string.
248  */
249 string
250 crop_string (Position start, Size size)
251 {
252         stringstream s;
253         s << "crop=" << size.width << ":" << size.height << ":" << start.x << ":" << start.y;
254         return s.str ();
255 }
256
257 /** @param s A string.
258  *  @return Parts of the string split at spaces, except when a space is within quotation marks.
259  */
260 vector<string>
261 split_at_spaces_considering_quotes (string s)
262 {
263         vector<string> out;
264         bool in_quotes = false;
265         string c;
266         for (string::size_type i = 0; i < s.length(); ++i) {
267                 if (s[i] == ' ' && !in_quotes) {
268                         out.push_back (c);
269                         c = "";
270                 } else if (s[i] == '"') {
271                         in_quotes = !in_quotes;
272                 } else {
273                         c += s[i];
274                 }
275         }
276
277         out.push_back (c);
278         return out;
279 }
280
281 string
282 md5_digest (void const * data, int size)
283 {
284         MD5_CTX md5_context;
285         MD5_Init (&md5_context);
286         MD5_Update (&md5_context, data, size);
287         unsigned char digest[MD5_DIGEST_LENGTH];
288         MD5_Final (digest, &md5_context);
289         
290         stringstream s;
291         for (int i = 0; i < MD5_DIGEST_LENGTH; ++i) {
292                 s << hex << setfill('0') << setw(2) << ((int) digest[i]);
293         }
294
295         return s.str ();
296 }
297
298 /** @param file File name.
299  *  @return MD5 digest of file's contents.
300  */
301 string
302 md5_digest (string file)
303 {
304         ifstream f (file.c_str(), ios::binary);
305         if (!f.good ()) {
306                 throw OpenFileError (file);
307         }
308         
309         f.seekg (0, ios::end);
310         int bytes = f.tellg ();
311         f.seekg (0, ios::beg);
312
313         int const buffer_size = 64 * 1024;
314         char buffer[buffer_size];
315
316         MD5_CTX md5_context;
317         MD5_Init (&md5_context);
318         while (bytes > 0) {
319                 int const t = min (bytes, buffer_size);
320                 f.read (buffer, t);
321                 MD5_Update (&md5_context, buffer, t);
322                 bytes -= t;
323         }
324
325         unsigned char digest[MD5_DIGEST_LENGTH];
326         MD5_Final (digest, &md5_context);
327
328         stringstream s;
329         for (int i = 0; i < MD5_DIGEST_LENGTH; ++i) {
330                 s << hex << setfill('0') << setw(2) << ((int) digest[i]);
331         }
332
333         return s.str ();
334 }
335
336 /** @param fps Arbitrary frames-per-second value.
337  *  @return DCPFrameRate for this frames-per-second.
338  */
339 DCPFrameRate
340 dcp_frame_rate (float fps)
341 {
342         DCPFrameRate dfr;
343
344         dfr.run_fast = (fps != rint (fps));
345         dfr.frames_per_second = rint (fps);
346         dfr.skip = 1;
347
348         /* XXX: somewhat arbitrary */
349         if (fps == 50) {
350                 dfr.frames_per_second = 25;
351                 dfr.skip = 2;
352         }
353
354         return dfr;
355 }
356
357 /** @param An arbitrary sampling rate.
358  *  @return The appropriate DCP-approved sampling rate (48kHz or 96kHz).
359  */
360 int
361 dcp_audio_sample_rate (int fs)
362 {
363         if (fs <= 48000) {
364                 return 48000;
365         }
366
367         return 96000;
368 }
369
370 int
371 dcp_audio_channels (int f)
372 {
373         if (f == 1) {
374                 /* The source is mono, so to put the mono channel into
375                    the centre we need to generate a 5.1 soundtrack.
376                 */
377                 return 6;
378         }
379
380         return f;
381 }
382
383
384 bool operator== (Size const & a, Size const & b)
385 {
386         return (a.width == b.width && a.height == b.height);
387 }
388
389 bool operator!= (Size const & a, Size const & b)
390 {
391         return !(a == b);
392 }
393
394 bool operator== (Crop const & a, Crop const & b)
395 {
396         return (a.left == b.left && a.right == b.right && a.top == b.top && a.bottom == b.bottom);
397 }
398
399 bool operator!= (Crop const & a, Crop const & b)
400 {
401         return !(a == b);
402 }
403
404 /** @param index Colour LUT index.
405  *  @return Human-readable name.
406  */
407 string
408 colour_lut_index_to_name (int index)
409 {
410         switch (index) {
411         case 0:
412                 return "sRGB";
413         case 1:
414                 return "Rec 709";
415         }
416
417         assert (false);
418         return "";
419 }
420
421 Socket::Socket ()
422         : _deadline (_io_service)
423         , _socket (_io_service)
424         , _buffer_data (0)
425 {
426         _deadline.expires_at (posix_time::pos_infin);
427         check ();
428 }
429
430 void
431 Socket::check ()
432 {
433         if (_deadline.expires_at() <= asio::deadline_timer::traits_type::now ()) {
434                 _socket.close ();
435                 _deadline.expires_at (posix_time::pos_infin);
436         }
437
438         _deadline.async_wait (boost::bind (&Socket::check, this));
439 }
440
441 /** Blocking connect with timeout.
442  *  @param endpoint End-point to connect to.
443  *  @param timeout Time-out in seconds.
444  */
445 void
446 Socket::connect (asio::ip::basic_resolver_entry<asio::ip::tcp> const & endpoint, int timeout)
447 {
448         _deadline.expires_from_now (posix_time::seconds (timeout));
449         system::error_code ec = asio::error::would_block;
450         _socket.async_connect (endpoint, lambda::var(ec) = lambda::_1);
451         do {
452                 _io_service.run_one();
453         } while (ec == asio::error::would_block);
454
455         if (ec || !_socket.is_open ()) {
456                 throw NetworkError ("connect timed out");
457         }
458 }
459
460 /** Blocking write with timeout.
461  *  @param data Buffer to write.
462  *  @param size Number of bytes to write.
463  *  @param timeout Time-out, in seconds.
464  */
465 void
466 Socket::write (uint8_t const * data, int size, int timeout)
467 {
468         _deadline.expires_from_now (posix_time::seconds (timeout));
469         system::error_code ec = asio::error::would_block;
470
471         asio::async_write (_socket, asio::buffer (data, size), lambda::var(ec) = lambda::_1);
472         do {
473                 _io_service.run_one ();
474         } while (ec == asio::error::would_block);
475
476         if (ec) {
477                 throw NetworkError ("write timed out");
478         }
479 }
480
481 /** Blocking read with timeout.
482  *  @param data Buffer to read to.
483  *  @param size Number of bytes to read.
484  *  @param timeout Time-out, in seconds.
485  */
486 int
487 Socket::read (uint8_t* data, int size, int timeout)
488 {
489         _deadline.expires_from_now (posix_time::seconds (timeout));
490         system::error_code ec = asio::error::would_block;
491
492         int amount_read = 0;
493
494         _socket.async_read_some (
495                 asio::buffer (data, size),
496                 (lambda::var(ec) = lambda::_1, lambda::var(amount_read) = lambda::_2)
497                 );
498
499         do {
500                 _io_service.run_one ();
501         } while (ec == asio::error::would_block);
502         
503         if (ec) {
504                 amount_read = 0;
505         }
506
507         return amount_read;
508 }
509
510 /** Mark some data as being `consumed', so that it will not be returned
511  *  as data again.
512  *  @param size Amount of data to consume, in bytes.
513  */
514 void
515 Socket::consume (int size)
516 {
517         assert (_buffer_data >= size);
518         
519         _buffer_data -= size;
520         if (_buffer_data > 0) {
521                 /* Shift still-valid data to the start of the buffer */
522                 memmove (_buffer, _buffer + size, _buffer_data);
523         }
524 }
525
526 /** Read a definite amount of data from our socket, and mark
527  *  it as consumed.
528  *  @param data Where to put the data.
529  *  @param size Number of bytes to read.
530  */
531 void
532 Socket::read_definite_and_consume (uint8_t* data, int size, int timeout)
533 {
534         int const from_buffer = min (_buffer_data, size);
535         if (from_buffer > 0) {
536                 /* Get data from our buffer */
537                 memcpy (data, _buffer, from_buffer);
538                 consume (from_buffer);
539                 /* Update our output state */
540                 data += from_buffer;
541                 size -= from_buffer;
542         }
543
544         /* read() the rest */
545         while (size > 0) {
546                 int const n = read (data, size, timeout);
547                 if (n <= 0) {
548                         throw NetworkError ("could not read");
549                 }
550
551                 data += n;
552                 size -= n;
553         }
554 }
555
556 /** Read as much data as is available, up to some limit.
557  *  @param data Where to put the data.
558  *  @param size Maximum amount of data to read.
559  */
560 void
561 Socket::read_indefinite (uint8_t* data, int size, int timeout)
562 {
563         assert (size < int (sizeof (_buffer)));
564
565         /* Amount of extra data we need to read () */
566         int to_read = size - _buffer_data;
567         while (to_read > 0) {
568                 /* read as much of it as we can (into our buffer) */
569                 int const n = read (_buffer + _buffer_data, to_read, timeout);
570                 if (n <= 0) {
571                         throw NetworkError ("could not read");
572                 }
573
574                 to_read -= n;
575                 _buffer_data += n;
576         }
577
578         assert (_buffer_data >= size);
579
580         /* copy data into the output buffer */
581         assert (size >= _buffer_data);
582         memcpy (data, _buffer, size);
583 }
584
585 /** @param other A Rect.
586  *  @return The intersection of this with `other'.
587  */
588 Rect
589 Rect::intersection (Rect const & other) const
590 {
591         int const tx = max (x, other.x);
592         int const ty = max (y, other.y);
593         
594         return Rect (
595                 tx, ty,
596                 min (x + width, other.x + other.width) - tx,
597                 min (y + height, other.y + other.height) - ty
598                 );
599 }
600
601 /** Round a number up to the nearest multiple of another number.
602  *  @param c Index.
603  *  @param s Array of numbers to round, indexed by c.
604  *  @param t Multiple to round to.
605  *  @return Rounded number.
606  */
607 int
608 stride_round_up (int c, int const * stride, int t)
609 {
610         int const a = stride[c] + (t - 1);
611         return a - (a % t);
612 }
613
614 int
615 stride_lookup (int c, int const * stride)
616 {
617         return stride[c];
618 }
619
620 /** Read a sequence of key / value pairs from a text stream;
621  *  the keys are the first words on the line, and the values are
622  *  the remainder of the line following the key.  Lines beginning
623  *  with # are ignored.
624  *  @param s Stream to read.
625  *  @return key/value pairs.
626  */
627 multimap<string, string>
628 read_key_value (istream &s) 
629 {
630         multimap<string, string> kv;
631         
632         string line;
633         while (getline (s, line)) {
634                 if (line.empty ()) {
635                         continue;
636                 }
637
638                 if (line[0] == '#') {
639                         continue;
640                 }
641
642                 if (line[line.size() - 1] == '\r') {
643                         line = line.substr (0, line.size() - 1);
644                 }
645
646                 size_t const s = line.find (' ');
647                 if (s == string::npos) {
648                         continue;
649                 }
650
651                 kv.insert (make_pair (line.substr (0, s), line.substr (s + 1)));
652         }
653
654         return kv;
655 }
656
657 string
658 get_required_string (multimap<string, string> const & kv, string k)
659 {
660         if (kv.count (k) > 1) {
661                 throw StringError ("unexpected multiple keys in key-value set");
662         }
663
664         multimap<string, string>::const_iterator i = kv.find (k);
665         
666         if (i == kv.end ()) {
667                 throw StringError (String::compose ("missing key %1 in key-value set", k));
668         }
669
670         return i->second;
671 }
672
673 int
674 get_required_int (multimap<string, string> const & kv, string k)
675 {
676         string const v = get_required_string (kv, k);
677         return lexical_cast<int> (v);
678 }
679
680 float
681 get_required_float (multimap<string, string> const & kv, string k)
682 {
683         string const v = get_required_string (kv, k);
684         return lexical_cast<float> (v);
685 }
686
687 string
688 get_optional_string (multimap<string, string> const & kv, string k)
689 {
690         if (kv.count (k) > 1) {
691                 throw StringError ("unexpected multiple keys in key-value set");
692         }
693
694         multimap<string, string>::const_iterator i = kv.find (k);
695         if (i == kv.end ()) {
696                 return "";
697         }
698
699         return i->second;
700 }
701
702 int
703 get_optional_int (multimap<string, string> const & kv, string k)
704 {
705         if (kv.count (k) > 1) {
706                 throw StringError ("unexpected multiple keys in key-value set");
707         }
708
709         multimap<string, string>::const_iterator i = kv.find (k);
710         if (i == kv.end ()) {
711                 return 0;
712         }
713
714         return lexical_cast<int> (i->second);
715 }
716
717 /** Construct an AudioBuffers.  Audio data is undefined after this constructor.
718  *  @param channels Number of channels.
719  *  @param frames Number of frames to reserve space for.
720  */
721 AudioBuffers::AudioBuffers (int channels, int frames)
722         : _channels (channels)
723         , _frames (frames)
724         , _allocated_frames (frames)
725 {
726         _data = new float*[_channels];
727         for (int i = 0; i < _channels; ++i) {
728                 _data[i] = new float[frames];
729         }
730 }
731
732 /** Copy constructor.
733  *  @param other Other AudioBuffers; data is copied.
734  */
735 AudioBuffers::AudioBuffers (AudioBuffers const & other)
736         : _channels (other._channels)
737         , _frames (other._frames)
738         , _allocated_frames (other._frames)
739 {
740         _data = new float*[_channels];
741         for (int i = 0; i < _channels; ++i) {
742                 _data[i] = new float[_frames];
743                 memcpy (_data[i], other._data[i], _frames * sizeof (float));
744         }
745 }
746
747 /** AudioBuffers destructor */
748 AudioBuffers::~AudioBuffers ()
749 {
750         for (int i = 0; i < _channels; ++i) {
751                 delete[] _data[i];
752         }
753
754         delete[] _data;
755 }
756
757 /** @param c Channel index.
758  *  @return Buffer for this channel.
759  */
760 float*
761 AudioBuffers::data (int c) const
762 {
763         assert (c >= 0 && c < _channels);
764         return _data[c];
765 }
766
767 /** Set the number of frames that these AudioBuffers will report themselves
768  *  as having.
769  *  @param f Frames; must be less than or equal to the number of allocated frames.
770  */
771 void
772 AudioBuffers::set_frames (int f)
773 {
774         assert (f <= _allocated_frames);
775         _frames = f;
776 }
777
778 /** Make all samples on all channels silent */
779 void
780 AudioBuffers::make_silent ()
781 {
782         for (int i = 0; i < _channels; ++i) {
783                 make_silent (i);
784         }
785 }
786
787 /** Make all samples on a given channel silent.
788  *  @param c Channel.
789  */
790 void
791 AudioBuffers::make_silent (int c)
792 {
793         assert (c >= 0 && c < _channels);
794         
795         for (int i = 0; i < _frames; ++i) {
796                 _data[c][i] = 0;
797         }
798 }
799
800 /** Copy data from another AudioBuffers to this one.  All channels are copied.
801  *  @param from AudioBuffers to copy from; must have the same number of channels as this.
802  *  @param frames_to_copy Number of frames to copy.
803  *  @param read_offset Offset to read from in `from'.
804  *  @param write_offset Offset to write to in `to'.
805  */
806 void
807 AudioBuffers::copy_from (AudioBuffers* from, int frames_to_copy, int read_offset, int write_offset)
808 {
809         assert (from->channels() == channels());
810
811         assert (from);
812         assert (read_offset >= 0 && (read_offset + frames_to_copy) <= from->_allocated_frames);
813         assert (write_offset >= 0 && (write_offset + frames_to_copy) <= _allocated_frames);
814
815         for (int i = 0; i < _channels; ++i) {
816                 memcpy (_data[i] + write_offset, from->_data[i] + read_offset, frames_to_copy * sizeof(float));
817         }
818 }
819
820 /** Move audio data around.
821  *  @param from Offset to move from.
822  *  @param to Offset to move to.
823  *  @param frames Number of frames to move.
824  */
825     
826 void
827 AudioBuffers::move (int from, int to, int frames)
828 {
829         if (frames == 0) {
830                 return;
831         }
832         
833         assert (from >= 0);
834         assert (from < _frames);
835         assert (to >= 0);
836         assert (to < _frames);
837         assert (frames > 0);
838         assert (frames <= _frames);
839         assert ((from + frames) <= _frames);
840         assert ((to + frames) <= _frames);
841         
842         for (int i = 0; i < _channels; ++i) {
843                 memmove (_data[i] + to, _data[i] + from, frames * sizeof(float));
844         }
845 }
846
847 /** Trip an assert if the caller is not in the UI thread */
848 void
849 ensure_ui_thread ()
850 {
851         assert (this_thread::get_id() == ui_thread);
852 }
853
854 /** @param v Source video frame.
855  *  @param audio_sample_rate Source audio sample rate.
856  *  @param frames_per_second Number of video frames per second.
857  *  @return Equivalent number of audio frames for `v'.
858  */
859 int64_t
860 video_frames_to_audio_frames (SourceFrame v, float audio_sample_rate, float frames_per_second)
861 {
862         return ((int64_t) v * audio_sample_rate / frames_per_second);
863 }
864
865 /** @param f Filename.
866  *  @return true if this file is a still image, false if it is something else.
867  */
868 bool
869 still_image_file (string f)
870 {
871 #if BOOST_FILESYSTEM_VERSION == 3
872         string ext = boost::filesystem::path(f).extension().string();
873 #else
874         string ext = boost::filesystem::path(f).extension();
875 #endif
876
877         transform (ext.begin(), ext.end(), ext.begin(), ::tolower);
878         
879         return (ext == ".tif" || ext == ".tiff" || ext == ".jpg" || ext == ".jpeg" || ext == ".png");
880 }
881
882 /** @return A pair containing CPU model name and the number of processors */
883 pair<string, int>
884 cpu_info ()
885 {
886         pair<string, int> info;
887         info.second = 0;
888         
889 #ifdef DVDOMATIC_POSIX
890         ifstream f ("/proc/cpuinfo");
891         while (f.good ()) {
892                 string l;
893                 getline (f, l);
894                 if (boost::algorithm::starts_with (l, "model name")) {
895                         string::size_type const c = l.find (':');
896                         if (c != string::npos) {
897                                 info.first = l.substr (c + 2);
898                         }
899                 } else if (boost::algorithm::starts_with (l, "processor")) {
900                         ++info.second;
901                 }
902         }
903 #endif  
904
905         return info;
906 }