Try to give basic progress indication on dcpdiff.
[libdcp.git] / src / picture_asset.cc
1 /*
2     Copyright (C) 2012 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 /** @file  src/picture_asset.cc
21  *  @brief An asset made up of JPEG2000 files
22  */
23
24 #include <list>
25 #include <stdexcept>
26 #include <iostream>
27 #include <sstream>
28 #include <fstream>
29 #include <boost/filesystem.hpp>
30 #include <boost/lexical_cast.hpp>
31 #include <openjpeg.h>
32 #include "AS_DCP.h"
33 #include "KM_fileio.h"
34 #include "picture_asset.h"
35 #include "util.h"
36 #include "exceptions.h"
37 #include "picture_frame.h"
38
39 using std::string;
40 using std::ostream;
41 using std::list;
42 using std::vector;
43 using std::max;
44 using std::pair;
45 using std::make_pair;
46 using std::istream;
47 using std::cout;
48 using boost::shared_ptr;
49 using boost::dynamic_pointer_cast;
50 using boost::lexical_cast;
51 using namespace libdcp;
52
53 PictureAsset::PictureAsset (string directory, string mxf_name, boost::signals2::signal<void (float)>* progress, int fps, int intrinsic_duration, Size size)
54         : MXFAsset (directory, mxf_name, progress, fps, intrinsic_duration)
55         , _size (size)
56 {
57
58 }
59
60 PictureAsset::PictureAsset (string directory, string mxf_name)
61         : MXFAsset (directory, mxf_name)
62 {
63
64 }
65
66 void
67 PictureAsset::write_to_cpl (ostream& s) const
68 {
69         s << "        <MainPicture>\n"
70           << "          <Id>urn:uuid:" << _uuid << "</Id>\n"
71           << "          <AnnotationText>" << _file_name << "</AnnotationText>\n"
72           << "          <EditRate>" << _edit_rate << " 1</EditRate>\n"
73           << "          <IntrinsicDuration>" << _intrinsic_duration << "</IntrinsicDuration>\n"
74           << "          <EntryPoint>" << _entry_point << "</EntryPoint>\n"
75           << "          <Duration>" << _duration << "</Duration>\n"
76           << "          <FrameRate>" << _edit_rate << " 1</FrameRate>\n"
77           << "          <ScreenAspectRatio>" << _size.width << " " << _size.height << "</ScreenAspectRatio>\n"
78           << "        </MainPicture>\n";
79 }
80
81 bool
82 PictureAsset::equals (shared_ptr<const Asset> other, EqualityOptions opt, boost::function<void (NoteType, string)> note) const
83 {
84         if (!MXFAsset::equals (other, opt, note)) {
85                 return false;
86         }
87                      
88         ASDCP::JP2K::MXFReader reader_A;
89         if (ASDCP_FAILURE (reader_A.OpenRead (path().string().c_str()))) {
90                 boost::throw_exception (MXFFileError ("could not open MXF file for reading", path().string()));
91         }
92         
93         ASDCP::JP2K::MXFReader reader_B;
94         if (ASDCP_FAILURE (reader_B.OpenRead (other->path().string().c_str()))) {
95                 boost::throw_exception (MXFFileError ("could not open MXF file for reading", path().string()));
96         }
97         
98         ASDCP::JP2K::PictureDescriptor desc_A;
99         if (ASDCP_FAILURE (reader_A.FillPictureDescriptor (desc_A))) {
100                 boost::throw_exception (DCPReadError ("could not read video MXF information"));
101         }
102         ASDCP::JP2K::PictureDescriptor desc_B;
103         if (ASDCP_FAILURE (reader_B.FillPictureDescriptor (desc_B))) {
104                 boost::throw_exception (DCPReadError ("could not read video MXF information"));
105         }
106         
107         if (
108                 desc_A.EditRate != desc_B.EditRate ||
109                 desc_A.ContainerDuration != desc_B.ContainerDuration ||
110                 desc_A.SampleRate != desc_B.SampleRate ||
111                 desc_A.StoredWidth != desc_B.StoredWidth ||
112                 desc_A.StoredHeight != desc_B.StoredHeight ||
113                 desc_A.AspectRatio != desc_B.AspectRatio ||
114                 desc_A.Rsize != desc_B.Rsize ||
115                 desc_A.Xsize != desc_B.Xsize ||
116                 desc_A.Ysize != desc_B.Ysize ||
117                 desc_A.XOsize != desc_B.XOsize ||
118                 desc_A.YOsize != desc_B.YOsize ||
119                 desc_A.XTsize != desc_B.XTsize ||
120                 desc_A.YTsize != desc_B.YTsize ||
121                 desc_A.XTOsize != desc_B.XTOsize ||
122                 desc_A.YTOsize != desc_B.YTOsize ||
123                 desc_A.Csize != desc_B.Csize
124 //              desc_A.CodingStyleDefault != desc_B.CodingStyleDefault ||
125 //              desc_A.QuantizationDefault != desc_B.QuantizationDefault
126                 ) {
127                 
128                 note (ERROR, "video MXF picture descriptors differ");
129                 return false;
130         }
131
132 //              for (unsigned int j = 0; j < ASDCP::JP2K::MaxComponents; ++j) {
133 //                      if (desc_A.ImageComponents[j] != desc_B.ImageComponents[j]) {
134 //                              notes.pack_start ("video MXF picture descriptors differ");
135 //                      }
136 //              }
137
138         return true;
139 }
140
141
142 MonoPictureAsset::MonoPictureAsset (
143         boost::function<string (int)> get_path,
144         string directory,
145         string mxf_name,
146         boost::signals2::signal<void (float)>* progress,
147         int fps,
148         int intrinsic_duration,
149         Size size)
150         : PictureAsset (directory, mxf_name, progress, fps, intrinsic_duration, size)
151 {
152         construct (get_path);
153 }
154
155 MonoPictureAsset::MonoPictureAsset (
156         vector<string> const & files,
157         string directory,
158         string mxf_name,
159         boost::signals2::signal<void (float)>* progress,
160         int fps,
161         int intrinsic_duration,
162         Size size)
163         : PictureAsset (directory, mxf_name, progress, fps, intrinsic_duration, size)
164 {
165         construct (boost::bind (&MonoPictureAsset::path_from_list, this, _1, files));
166 }
167
168 MonoPictureAsset::MonoPictureAsset (string directory, string mxf_name, int fps, Size size)
169         : PictureAsset (directory, mxf_name, 0, fps, 0, size)
170 {
171
172 }
173
174 MonoPictureAsset::MonoPictureAsset (string directory, string mxf_name)
175         : PictureAsset (directory, mxf_name)
176 {
177         ASDCP::JP2K::MXFReader reader;
178         if (ASDCP_FAILURE (reader.OpenRead (path().string().c_str()))) {
179                 boost::throw_exception (MXFFileError ("could not open MXF file for reading", path().string()));
180         }
181         
182         ASDCP::JP2K::PictureDescriptor desc;
183         if (ASDCP_FAILURE (reader.FillPictureDescriptor (desc))) {
184                 boost::throw_exception (DCPReadError ("could not read video MXF information"));
185         }
186
187         _size.width = desc.StoredWidth;
188         _size.height = desc.StoredHeight;
189         _edit_rate = desc.EditRate.Numerator;
190         assert (desc.EditRate.Denominator == 1);
191         _intrinsic_duration = desc.ContainerDuration;
192 }
193
194 void
195 MonoPictureAsset::construct (boost::function<string (int)> get_path)
196 {
197         ASDCP::JP2K::CodestreamParser j2k_parser;
198         ASDCP::JP2K::FrameBuffer frame_buffer (4 * Kumu::Megabyte);
199         if (ASDCP_FAILURE (j2k_parser.OpenReadFrame (get_path(0).c_str(), frame_buffer))) {
200                 boost::throw_exception (FileError ("could not open JPEG2000 file for reading", get_path (0)));
201         }
202         
203         ASDCP::JP2K::PictureDescriptor picture_desc;
204         j2k_parser.FillPictureDescriptor (picture_desc);
205         picture_desc.EditRate = ASDCP::Rational (_edit_rate, 1);
206         
207         ASDCP::WriterInfo writer_info;
208         fill_writer_info (&writer_info, _uuid);
209         
210         ASDCP::JP2K::MXFWriter mxf_writer;
211         if (ASDCP_FAILURE (mxf_writer.OpenWrite (path().string().c_str(), writer_info, picture_desc, 16384, false))) {
212                 boost::throw_exception (MXFFileError ("could not open MXF file for writing", path().string()));
213         }
214
215         for (int i = 0; i < _intrinsic_duration; ++i) {
216
217                 string const path = get_path (i);
218
219                 if (ASDCP_FAILURE (j2k_parser.OpenReadFrame (path.c_str(), frame_buffer))) {
220                         boost::throw_exception (FileError ("could not open JPEG2000 file for reading", path));
221                 }
222
223                 if (ASDCP_FAILURE (mxf_writer.WriteFrame (frame_buffer, 0, 0))) {
224                         boost::throw_exception (MXFFileError ("error in writing video MXF", this->path().string()));
225                 }
226
227                 if (_progress) {
228                         (*_progress) (0.5 * float (i) / _intrinsic_duration);
229                 }
230         }
231         
232         if (ASDCP_FAILURE (mxf_writer.Finalize())) {
233                 boost::throw_exception (MXFFileError ("error in finalising video MXF", path().string()));
234         }
235 }
236
237 string
238 MonoPictureAsset::path_from_list (int f, vector<string> const & files) const
239 {
240         return files[f];
241 }
242
243 shared_ptr<const MonoPictureFrame>
244 MonoPictureAsset::get_frame (int n) const
245 {
246         return shared_ptr<const MonoPictureFrame> (new MonoPictureFrame (path().string(), n));
247 }
248
249
250 bool
251 MonoPictureAsset::equals (shared_ptr<const Asset> other, EqualityOptions opt, boost::function<void (NoteType, string)> note) const
252 {
253         if (!PictureAsset::equals (other, opt, note)) {
254                 return false;
255         }
256
257         shared_ptr<const MonoPictureAsset> other_picture = dynamic_pointer_cast<const MonoPictureAsset> (other);
258         assert (other_picture);
259
260         for (int i = 0; i < _intrinsic_duration; ++i) {
261                 note (PROGRESS, "Comparing video frame " + lexical_cast<string> (i) + " of " + lexical_cast<string> (_intrinsic_duration));
262                 shared_ptr<const MonoPictureFrame> frame_A = get_frame (i);
263                 shared_ptr<const MonoPictureFrame> frame_B = other_picture->get_frame (i);
264                 
265                 if (!frame_buffer_equals (
266                             i, opt, note,
267                             frame_A->j2k_data(), frame_A->j2k_size(),
268                             frame_B->j2k_data(), frame_B->j2k_size()
269                             )) {
270                         return false;
271                 }
272         }
273
274         return true;
275 }
276
277 bool
278 StereoPictureAsset::equals (shared_ptr<const Asset> other, EqualityOptions opt, boost::function<void (NoteType, string)> note) const
279 {
280         if (!PictureAsset::equals (other, opt, note)) {
281                 return false;
282         }
283         
284         shared_ptr<const StereoPictureAsset> other_picture = dynamic_pointer_cast<const StereoPictureAsset> (other);
285         assert (other_picture);
286
287         for (int i = 0; i < _intrinsic_duration; ++i) {
288                 shared_ptr<const StereoPictureFrame> frame_A = get_frame (i);
289                 shared_ptr<const StereoPictureFrame> frame_B = other_picture->get_frame (i);
290                 
291                 if (!frame_buffer_equals (
292                             i, opt, note,
293                             frame_A->left_j2k_data(), frame_A->left_j2k_size(),
294                             frame_B->left_j2k_data(), frame_B->left_j2k_size()
295                             )) {
296                         return false;
297                 }
298                 
299                 if (!frame_buffer_equals (
300                             i, opt, note,
301                             frame_A->right_j2k_data(), frame_A->right_j2k_size(),
302                             frame_B->right_j2k_data(), frame_B->right_j2k_size()
303                             )) {
304                         return false;
305                 }
306         }
307
308         return true;
309 }
310
311 bool
312 PictureAsset::frame_buffer_equals (
313         int frame, EqualityOptions opt, boost::function<void (NoteType, string)> note,
314         uint8_t const * data_A, unsigned int size_A, uint8_t const * data_B, unsigned int size_B
315         ) const
316 {
317         if (size_A == size_B && memcmp (data_A, data_B, size_A) == 0) {
318                 /* Easy result; the J2K data is identical */
319                 return true;
320         }
321                 
322         /* Decompress the images to bitmaps */
323         opj_image_t* image_A = decompress_j2k (const_cast<uint8_t*> (data_A), size_A, 0);
324         opj_image_t* image_B = decompress_j2k (const_cast<uint8_t*> (data_B), size_B, 0);
325         
326         /* Compare them */
327         
328         if (image_A->numcomps != image_B->numcomps) {
329                 note (ERROR, "image component counts for frame " + lexical_cast<string>(frame) + " differ");
330                 return false;
331         }
332         
333         vector<int> abs_diffs (image_A->comps[0].w * image_A->comps[0].h * image_A->numcomps);
334         int d = 0;
335         int max_diff = 0;
336         
337         for (int c = 0; c < image_A->numcomps; ++c) {
338                 
339                 if (image_A->comps[c].w != image_B->comps[c].w || image_A->comps[c].h != image_B->comps[c].h) {
340                         note (ERROR, "image sizes for frame " + lexical_cast<string>(frame) + " differ");
341                         return false;
342                 }
343                 
344                 int const pixels = image_A->comps[c].w * image_A->comps[c].h;
345                 for (int j = 0; j < pixels; ++j) {
346                         int const t = abs (image_A->comps[c].data[j] - image_B->comps[c].data[j]);
347                         abs_diffs[d++] = t;
348                         max_diff = max (max_diff, t);
349                 }
350         }
351                 
352         uint64_t total = 0;
353         for (vector<int>::iterator j = abs_diffs.begin(); j != abs_diffs.end(); ++j) {
354                 total += *j;
355         }
356         
357         double const mean = double (total) / abs_diffs.size ();
358         
359         uint64_t total_squared_deviation = 0;
360         for (vector<int>::iterator j = abs_diffs.begin(); j != abs_diffs.end(); ++j) {
361                 total_squared_deviation += pow (*j - mean, 2);
362         }
363         
364         double const std_dev = sqrt (double (total_squared_deviation) / abs_diffs.size());
365         
366         if (mean > opt.max_mean_pixel_error || std_dev > opt.max_std_dev_pixel_error) {
367                 note (ERROR, "mean or standard deviation out of range for " + lexical_cast<string>(frame));
368                 return false;
369         }
370         
371         opj_image_destroy (image_A);
372         opj_image_destroy (image_B);
373
374         return true;
375 }
376
377
378 StereoPictureAsset::StereoPictureAsset (string directory, string mxf_name, int fps, int intrinsic_duration)
379         : PictureAsset (directory, mxf_name, 0, fps, intrinsic_duration, Size (0, 0))
380 {
381         ASDCP::JP2K::MXFSReader reader;
382         if (ASDCP_FAILURE (reader.OpenRead (path().string().c_str()))) {
383                 boost::throw_exception (MXFFileError ("could not open MXF file for reading", path().string()));
384         }
385         
386         ASDCP::JP2K::PictureDescriptor desc;
387         if (ASDCP_FAILURE (reader.FillPictureDescriptor (desc))) {
388                 boost::throw_exception (DCPReadError ("could not read video MXF information"));
389         }
390
391         _size.width = desc.StoredWidth;
392         _size.height = desc.StoredHeight;
393 }
394
395 shared_ptr<const StereoPictureFrame>
396 StereoPictureAsset::get_frame (int n) const
397 {
398         return shared_ptr<const StereoPictureFrame> (new StereoPictureFrame (path().string(), n));
399 }
400
401 shared_ptr<MonoPictureAssetWriter>
402 MonoPictureAsset::start_write (bool overwrite)
403 {
404         /* XXX: can't we use a shared_ptr here? */
405         return shared_ptr<MonoPictureAssetWriter> (new MonoPictureAssetWriter (this, overwrite));
406 }
407
408 FrameInfo::FrameInfo (istream& s)
409 {
410         s >> offset >> size >> hash;
411 }
412
413 void
414 FrameInfo::write (ostream& s)
415 {
416         s << offset << " " << size << " " << hash;
417 }
418
419 struct MonoPictureAssetWriter::ASDCPState
420 {
421         ASDCPState()
422                 : frame_buffer (4 * Kumu::Megabyte)
423         {}
424         
425         ASDCP::JP2K::CodestreamParser j2k_parser;
426         ASDCP::JP2K::FrameBuffer frame_buffer;
427         ASDCP::JP2K::MXFWriter mxf_writer;
428         ASDCP::WriterInfo writer_info;
429         ASDCP::JP2K::PictureDescriptor picture_descriptor;
430 };
431
432
433 /** @param a Asset to write to.  `a' must not be deleted while
434  *  this writer class still exists, or bad things will happen.
435  */
436 MonoPictureAssetWriter::MonoPictureAssetWriter (MonoPictureAsset* a, bool overwrite)
437         : _state (new MonoPictureAssetWriter::ASDCPState)
438         , _asset (a)
439         , _frames_written (0)
440         , _started (false)
441         , _finalized (false)
442         , _overwrite (overwrite)
443 {
444
445 }
446
447
448 void
449 MonoPictureAssetWriter::start (uint8_t* data, int size)
450 {
451         if (ASDCP_FAILURE (_state->j2k_parser.OpenReadFrame (data, size, _state->frame_buffer))) {
452                 boost::throw_exception (MiscError ("could not parse J2K frame"));
453         }
454
455         _state->j2k_parser.FillPictureDescriptor (_state->picture_descriptor);
456         _state->picture_descriptor.EditRate = ASDCP::Rational (_asset->edit_rate(), 1);
457         
458         MXFAsset::fill_writer_info (&_state->writer_info, _asset->uuid());
459         
460         if (ASDCP_FAILURE (_state->mxf_writer.OpenWrite (
461                                    _asset->path().string().c_str(),
462                                    _state->writer_info,
463                                    _state->picture_descriptor,
464                                    16384,
465                                    _overwrite)
466                     )) {
467                 
468                 boost::throw_exception (MXFFileError ("could not open MXF file for writing", _asset->path().string()));
469         }
470
471         _started = true;
472 }
473
474 FrameInfo
475 MonoPictureAssetWriter::write (uint8_t* data, int size)
476 {
477         assert (!_finalized);
478
479         if (!_started) {
480                 start (data, size);
481         }
482
483         if (ASDCP_FAILURE (_state->j2k_parser.OpenReadFrame (data, size, _state->frame_buffer))) {
484                 boost::throw_exception (MiscError ("could not parse J2K frame"));
485         }
486
487         uint64_t const before_offset = _state->mxf_writer.Tell ();
488
489         string hash;
490         if (ASDCP_FAILURE (_state->mxf_writer.WriteFrame (_state->frame_buffer, 0, 0, &hash))) {
491                 boost::throw_exception (MXFFileError ("error in writing video MXF", _asset->path().string()));
492         }
493
494         ++_frames_written;
495         return FrameInfo (before_offset, _state->mxf_writer.Tell() - before_offset, hash);
496 }
497
498 void
499 MonoPictureAssetWriter::fake_write (int size)
500 {
501         assert (_started);
502         assert (!_finalized);
503
504         if (ASDCP_FAILURE (_state->mxf_writer.FakeWriteFrame (size))) {
505                 boost::throw_exception (MXFFileError ("error in writing video MXF", _asset->path().string()));
506         }
507
508         ++_frames_written;
509 }
510
511 void
512 MonoPictureAssetWriter::finalize ()
513 {
514         assert (!_finalized);
515         
516         if (ASDCP_FAILURE (_state->mxf_writer.Finalize())) {
517                 boost::throw_exception (MXFFileError ("error in finalizing video MXF", _asset->path().string()));
518         }
519
520         _finalized = true;
521         _asset->set_intrinsic_duration (_frames_written);
522         _asset->set_duration (_frames_written);
523 }
524
525 MonoPictureAssetWriter::~MonoPictureAssetWriter ()
526 {
527         assert (_finalized);
528 }