More noncopyable.
[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 std::cout;
31 using boost::shared_ptr;
32 using boost::lexical_cast;
33
34 SndfileContent::SndfileContent (shared_ptr<const Film> f, boost::filesystem::path p)
35         : Content (f, p)
36         , AudioContent (f, p)
37         , _audio_channels (0)
38         , _audio_length (0)
39         , _audio_frame_rate (0)
40 {
41
42 }
43
44 SndfileContent::SndfileContent (shared_ptr<const Film> f, shared_ptr<const cxml::Node> node)
45         : Content (f, node)
46         , AudioContent (f, node)
47 {
48         _audio_channels = node->number_child<int> ("AudioChannels");
49         _audio_length = node->number_child<AudioContent::Frame> ("AudioLength");
50         _audio_frame_rate = node->number_child<int> ("AudioFrameRate");
51         _audio_mapping = AudioMapping (node->node_child ("AudioMapping"));
52 }
53
54 string
55 SndfileContent::summary () const
56 {
57         return String::compose (_("Sound file: %1"), file().filename().string());
58 }
59
60 string
61 SndfileContent::information () const
62 {
63         if (_audio_frame_rate == 0) {
64                 return "";
65         }
66         
67         stringstream s;
68
69         s << String::compose (
70                 _("%1 channels, %2kHz, %3 samples"),
71                 audio_channels(),
72                 content_audio_frame_rate() / 1000.0,
73                 audio_length()
74                 );
75         
76         return s.str ();
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 == ".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
94         shared_ptr<const Film> film = _film.lock ();
95         assert (film);
96
97         SndfileDecoder dec (film, shared_from_this());
98
99         {
100                 boost::mutex::scoped_lock lm (_mutex);
101                 _audio_channels = dec.audio_channels ();
102                 _audio_length = dec.audio_length ();
103                 _audio_frame_rate = dec.audio_frame_rate ();
104         }
105
106         signal_changed (AudioContentProperty::AUDIO_CHANNELS);
107         signal_changed (AudioContentProperty::AUDIO_LENGTH);
108         signal_changed (AudioContentProperty::AUDIO_FRAME_RATE);
109
110         /* XXX: do this in signal_changed...? */
111         _audio_mapping = AudioMapping (_audio_channels);
112         signal_changed (AudioContentProperty::AUDIO_MAPPING);
113 }
114
115 void
116 SndfileContent::as_xml (xmlpp::Node* node) const
117 {
118         node->add_child("Type")->add_child_text ("Sndfile");
119         Content::as_xml (node);
120         AudioContent::as_xml (node);
121         node->add_child("AudioChannels")->add_child_text (lexical_cast<string> (_audio_channels));
122         node->add_child("AudioLength")->add_child_text (lexical_cast<string> (_audio_length));
123         node->add_child("AudioFrameRate")->add_child_text (lexical_cast<string> (_audio_frame_rate));
124         _audio_mapping.as_xml (node->add_child("AudioMapping"));
125 }
126
127 Time
128 SndfileContent::length () const
129 {
130         shared_ptr<const Film> film = _film.lock ();
131         assert (film);
132         
133         return film->audio_frames_to_time (audio_length ());
134 }
135
136 int
137 SndfileContent::output_audio_frame_rate () const
138 {
139         shared_ptr<const Film> film = _film.lock ();
140         assert (film);
141         
142         return film->dcp_audio_frame_rate ();
143 }
144
145 void
146 SndfileContent::set_audio_mapping (AudioMapping m)
147 {
148         {
149                 boost::mutex::scoped_lock lm (_mutex);
150                 _audio_mapping = m;
151         }
152
153         signal_changed (AudioContentProperty::AUDIO_MAPPING);
154 }