Basics of content dialogs.
[dcpomatic.git] / src / lib / sndfile_content.cc
1 /*
2     Copyright (C) 2013 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 <libcxml/cxml.h>
21 #include "sndfile_content.h"
22 #include "sndfile_decoder.h"
23 #include "compose.hpp"
24 #include "job.h"
25
26 #include "i18n.h"
27
28 using std::string;
29 using std::stringstream;
30 using boost::shared_ptr;
31 using boost::lexical_cast;
32
33 SndfileContent::SndfileContent (boost::filesystem::path f)
34         : Content (f)
35         , AudioContent (f)
36 {
37
38 }
39
40 SndfileContent::SndfileContent (shared_ptr<const cxml::Node> node)
41         : Content (node)
42         , AudioContent (node)
43 {
44         _audio_channels = node->number_child<int> ("AudioChannels");
45         _audio_length = node->number_child<ContentAudioFrame> ("AudioLength");
46         _audio_frame_rate = node->number_child<int> ("AudioFrameRate");
47 }
48
49 string
50 SndfileContent::summary () const
51 {
52         return String::compose (_("Sound file: %1"), file().filename ());
53 }
54
55 string
56 SndfileContent::information () const
57 {
58         if (_audio_frame_rate == 0) {
59                 return "";
60         }
61         
62         stringstream s;
63
64         s << String::compose (
65                 _("%1 channels, %2kHz, %3 samples"),
66                 audio_channels(),
67                 audio_frame_rate() / 1000.0,
68                 audio_length()
69                 );
70         
71         return s.str ();
72 }
73
74 bool
75 SndfileContent::valid_file (boost::filesystem::path f)
76 {
77         /* XXX: more extensions */
78         string ext = f.extension().string();
79         transform (ext.begin(), ext.end(), ext.begin(), ::tolower);
80         return (ext == ".wav" || ext == ".aif" || ext == ".aiff");
81 }
82
83 shared_ptr<Content>
84 SndfileContent::clone () const
85 {
86         return shared_ptr<Content> (new SndfileContent (*this));
87 }
88
89 void
90 SndfileContent::examine (shared_ptr<Film> film, shared_ptr<Job> job, bool quick)
91 {
92         job->set_progress_unknown ();
93         Content::examine (film, job, quick);
94
95         SndfileDecoder dec (film, shared_from_this());
96
97         {
98                 boost::mutex::scoped_lock lm (_mutex);
99                 _audio_channels = dec.audio_channels ();
100                 _audio_length = dec.audio_length ();
101                 _audio_frame_rate = dec.audio_frame_rate ();
102         }
103
104         signal_changed (AudioContentProperty::AUDIO_CHANNELS);
105         signal_changed (AudioContentProperty::AUDIO_LENGTH);
106         signal_changed (AudioContentProperty::AUDIO_FRAME_RATE);
107 }
108
109 void
110 SndfileContent::as_xml (xmlpp::Node* node) const
111 {
112         node->add_child("Type")->add_child_text ("Sndfile");
113         Content::as_xml (node);
114         node->add_child("AudioChannels")->add_child_text (lexical_cast<string> (_audio_channels));
115         node->add_child("AudioLength")->add_child_text (lexical_cast<string> (_audio_length));
116         node->add_child("AudioFrameRate")->add_child_text (lexical_cast<string> (_audio_frame_rate));
117 }