Logging improvements to allow prettier displays in the server GUI.
[dcpomatic.git] / src / lib / image_examiner.cc
1 /*
2     Copyright (C) 2013-2015 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 #include "image_content.h"
21 #include "image_examiner.h"
22 #include "film.h"
23 #include "job.h"
24 #include "exceptions.h"
25 #include "config.h"
26 #include "cross.h"
27 #include "compose.hpp"
28 #include <dcp/openjpeg_image.h>
29 #include <dcp/exceptions.h>
30 #include <Magick++.h>
31 #include <iostream>
32
33 #include "i18n.h"
34
35 using std::cout;
36 using std::list;
37 using std::sort;
38 using boost::shared_ptr;
39 using boost::optional;
40
41 ImageExaminer::ImageExaminer (shared_ptr<const Film> film, shared_ptr<const ImageContent> content, shared_ptr<Job>)
42         : _film (film)
43         , _image_content (content)
44 {
45 #ifdef DCPOMATIC_IMAGE_MAGICK
46         using namespace MagickCore;
47 #endif
48         boost::filesystem::path path = content->path(0).string ();
49         if (valid_j2k_file (path)) {
50                 boost::uintmax_t size = boost::filesystem::file_size (path);
51                 FILE* f = fopen_boost (path, "rb");
52                 if (!f) {
53                         throw FileError ("Could not open file for reading", path);
54                 }
55                 uint8_t* buffer = new uint8_t[size];
56                 fread (buffer, 1, size, f);
57                 fclose (f);
58                 try {
59                         _video_size = dcp::decompress_j2k (buffer, size, 0)->size ();
60                 } catch (dcp::DCPReadError& e) {
61                         delete[] buffer;
62                         throw DecodeError (String::compose (_("Could not decode JPEG2000 file %1 (%2)"), path, e.what ()));
63                 }
64                 delete[] buffer;
65         } else {
66                 Magick::Image* image = new Magick::Image (content->path(0).string());
67                 _video_size = dcp::Size (image->columns(), image->rows());
68                 delete image;
69         }
70
71         if (content->still ()) {
72                 _video_length = Config::instance()->default_still_length() * video_frame_rate().get_value_or (24);
73         } else {
74                 _video_length = _image_content->number_of_paths ();
75         }
76 }
77
78 dcp::Size
79 ImageExaminer::video_size () const
80 {
81         return _video_size.get ();
82 }
83
84 optional<double>
85 ImageExaminer::video_frame_rate () const
86 {
87         if (_image_content->video_frame_rate() != 0) {
88                 /* The content already knows what frame rate it should be */
89                 return _image_content->video_frame_rate();
90         }
91
92         /* Don't know */
93         return optional<double> ();
94 }