Logging improvements to allow prettier displays in the server GUI.
[dcpomatic.git] / src / lib / sndfile_content.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 "sndfile_content.h"
21 #include "sndfile_decoder.h"
22 #include "sndfile_examiner.h"
23 #include "film.h"
24 #include "compose.hpp"
25 #include "job.h"
26 #include "util.h"
27 #include "safe_stringstream.h"
28 #include "raw_convert.h"
29 #include <libcxml/cxml.h>
30 #include <libxml++/libxml++.h>
31 #include <iostream>
32
33 #include "i18n.h"
34
35 using std::string;
36 using std::cout;
37 using boost::shared_ptr;
38
39 SndfileContent::SndfileContent (shared_ptr<const Film> film, boost::filesystem::path p)
40         : Content (film, p)
41         , SingleStreamAudioContent (film, p)
42 {
43
44 }
45
46 SndfileContent::SndfileContent (shared_ptr<const Film> film, cxml::ConstNodePtr node, int version)
47         : Content (film, node)
48         , SingleStreamAudioContent (film, node, version)
49         , _audio_length (node->number_child<Frame> ("AudioLength"))
50 {
51
52 }
53
54 void
55 SndfileContent::as_xml (xmlpp::Node* node) const
56 {
57         node->add_child("Type")->add_child_text ("Sndfile");
58         Content::as_xml (node);
59         SingleStreamAudioContent::as_xml (node);
60         node->add_child("AudioLength")->add_child_text (raw_convert<string> (audio_length ()));
61 }
62
63
64 string
65 SndfileContent::summary () const
66 {
67         /* Get the string() here so that the name does not have quotes around it */
68         return String::compose (_("%1 [audio]"), path_summary ());
69 }
70
71 string
72 SndfileContent::technical_summary () const
73 {
74         return Content::technical_summary() + " - "
75                 + AudioContent::technical_summary ()
76                 + " - sndfile";
77 }
78
79 bool
80 SndfileContent::valid_file (boost::filesystem::path f)
81 {
82         /* XXX: more extensions */
83         string ext = f.extension().string();
84         transform (ext.begin(), ext.end(), ext.begin(), ::tolower);
85         return (ext == ".wav" || ext == ".w64" || ext == ".flac" || ext == ".aif" || ext == ".aiff");
86 }
87
88 void
89 SndfileContent::examine (shared_ptr<Job> job)
90 {
91         job->set_progress_unknown ();
92         Content::examine (job);
93         shared_ptr<AudioExaminer> dec (new SndfileExaminer (shared_from_this ()));
94         take_from_audio_examiner (dec);
95 }
96
97 void
98 SndfileContent::take_from_audio_examiner (shared_ptr<AudioExaminer> examiner)
99 {
100         SingleStreamAudioContent::take_from_audio_examiner (examiner);
101
102         boost::mutex::scoped_lock lm (_mutex);
103         _audio_length = examiner->audio_length ();
104 }
105
106 DCPTime
107 SndfileContent::full_length () const
108 {
109         shared_ptr<const Film> film = _film.lock ();
110         DCPOMATIC_ASSERT (film);
111         FrameRateChange const frc = film->active_frame_rate_change (position ());
112         return DCPTime::from_frames (audio_length() / frc.speed_up, audio_stream()->frame_rate ());
113 }