No-op: remove all trailing whitespace.
[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 <dcp/openjpeg_image.h>
28 #include <dcp/exceptions.h>
29 #include <Magick++.h>
30 #include <iostream>
31
32 #include "i18n.h"
33
34 using std::cout;
35 using std::list;
36 using std::sort;
37 using boost::shared_ptr;
38 using boost::optional;
39
40 ImageExaminer::ImageExaminer (shared_ptr<const Film> film, shared_ptr<const ImageContent> content, shared_ptr<Job>)
41         : _film (film)
42         , _image_content (content)
43 {
44 #ifdef DCPOMATIC_IMAGE_MAGICK
45         using namespace MagickCore;
46 #endif
47         boost::filesystem::path path = content->path(0).string ();
48         if (valid_j2k_file (path)) {
49                 boost::uintmax_t size = boost::filesystem::file_size (path);
50                 FILE* f = fopen_boost (path, "rb");
51                 if (!f) {
52                         throw FileError ("Could not open file for reading", path);
53                 }
54                 uint8_t* buffer = new uint8_t[size];
55                 fread (buffer, 1, size, f);
56                 fclose (f);
57                 try {
58                         _video_size = dcp::decompress_j2k (buffer, size, 0)->size ();
59                 } catch (dcp::DCPReadError& e) {
60                         delete[] buffer;
61                         throw DecodeError (String::compose (_("Could not decode JPEG2000 file %1 (%2)"), path, e.what ()));
62                 }
63                 delete[] buffer;
64         } else {
65                 Magick::Image* image = new Magick::Image (content->path(0).string());
66                 _video_size = dcp::Size (image->columns(), image->rows());
67                 delete image;
68         }
69
70         if (content->still ()) {
71                 _video_length = Config::instance()->default_still_length() * video_frame_rate().get_value_or (24);
72         } else {
73                 _video_length = _image_content->number_of_paths ();
74         }
75 }
76
77 dcp::Size
78 ImageExaminer::video_size () const
79 {
80         return _video_size.get ();
81 }
82
83 optional<float>
84 ImageExaminer::video_frame_rate () const
85 {
86         /* Don't know */
87         return optional<float> ();
88 }