Tweak naming.
[dcpomatic.git] / src / lib / examine_content_job.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/examine_content_job.cc
21  *  @brief A class to run through content at high speed to find its length.
22  */
23
24 #include <boost/filesystem.hpp>
25 #include "examine_content_job.h"
26 #include "options.h"
27 #include "decoder_factory.h"
28 #include "decoder.h"
29 #include "imagemagick_encoder.h"
30 #include "transcoder.h"
31 #include "log.h"
32 #include "film.h"
33
34 using std::string;
35 using std::vector;
36 using boost::shared_ptr;
37
38 ExamineContentJob::ExamineContentJob (shared_ptr<Film> f, shared_ptr<Job> req)
39         : Job (f, req)
40 {
41
42 }
43
44 ExamineContentJob::~ExamineContentJob ()
45 {
46 }
47
48 string
49 ExamineContentJob::name () const
50 {
51         if (_film->name().empty ()) {
52                 return "Examine content";
53         }
54         
55         return String::compose ("Examine content of %1", _film->name());
56 }
57
58 void
59 ExamineContentJob::run ()
60 {
61         /* Decode the content to get an accurate length */
62         
63         shared_ptr<Options> o (new Options ("", "", ""));
64         o->out_size = Size (512, 512);
65         o->apply_crop = false;
66
67         descend (0.5);
68
69         _decoder = decoder_factory (_film, o, this, true, true);
70         _decoder->go ();
71
72         _film->set_length (_decoder->video_frame ());
73
74         _film->log()->log (String::compose ("Video length is %1 frames", _decoder->video_frame()));
75
76         ascend ();
77
78         /* Now make thumbnails for it */
79
80         descend (0.5);
81
82         try {
83                 o.reset (new Options (_film->dir ("thumbs"), ".png", ""));
84                 o->out_size = _film->size ();
85                 o->apply_crop = false;
86                 o->decode_audio = false;
87                 o->decode_video_frequency = 128;
88                 o->decode_subtitles = true;
89                 shared_ptr<ImageMagickEncoder> e (new ImageMagickEncoder (_film, o));
90                 Transcoder w (_film, o, this, e);
91                 w.go ();
92                 
93         } catch (std::exception& e) {
94
95                 ascend ();
96                 set_progress (1);
97                 set_error (e.what ());
98                 set_state (FINISHED_ERROR);
99                 return;
100                 
101         }
102
103         string const tdir = _film->dir ("thumbs");
104         vector<int> thumbs;
105
106         for (boost::filesystem::directory_iterator i = boost::filesystem::directory_iterator (tdir); i != boost::filesystem::directory_iterator(); ++i) {
107
108                 /* Aah, the sweet smell of progress */
109 #if BOOST_FILESYSTEM_VERSION == 3               
110                 string const l = boost::filesystem::path(*i).leaf().generic_string();
111 #else
112                 string const l = i->leaf ();
113 #endif
114                 
115                 size_t const d = l.find (".png");
116                 size_t const t = l.find (".tmp");
117                 if (d != string::npos && t == string::npos) {
118                         thumbs.push_back (atoi (l.substr (0, d).c_str()));
119                 }
120         }
121
122         sort (thumbs.begin(), thumbs.end());
123         _film->set_thumbs (thumbs);     
124
125         ascend ();
126         set_progress (1);
127         set_state (FINISHED_OK);
128 }