Tidy up creation of analysis a bit.
[dcpomatic.git] / src / lib / audio_analysis.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 #include <stdint.h>
21 #include <cmath>
22 #include <cassert>
23 #include <fstream>
24 #include <boost/filesystem.hpp>
25 #include "audio_analysis.h"
26
27 using std::ostream;
28 using std::istream;
29 using std::string;
30 using std::ofstream;
31 using std::ifstream;
32 using std::vector;
33 using std::cout;
34
35 AudioPoint::AudioPoint ()
36 {
37         for (int i = 0; i < COUNT; ++i) {
38                 _data[i] = 0;
39         }
40 }
41
42 AudioPoint::AudioPoint (istream& s)
43 {
44         for (int i = 0; i < COUNT; ++i) {
45                 s >> _data[i];
46         }
47 }
48
49 void
50 AudioPoint::write (ostream& s) const
51 {
52         for (int i = 0; i < COUNT; ++i) {
53                 s << _data[i] << "\n";
54         }
55 }
56         
57
58 AudioAnalysis::AudioAnalysis (int channels)
59 {
60         _data.resize (channels);
61 }
62
63 AudioAnalysis::AudioAnalysis (string filename)
64 {
65         ifstream f (filename.c_str ());
66
67         int channels;
68         f >> channels;
69         _data.resize (channels);
70
71         for (int i = 0; i < channels; ++i) {
72                 int points;
73                 f >> points;
74                 for (int j = 0; j < points; ++j) {
75                         _data[i].push_back (AudioPoint (f));
76                 }
77         }
78 }
79
80 void
81 AudioAnalysis::add_point (int c, AudioPoint const & p)
82 {
83         assert (c < int (_data.size ()));
84         _data[c].push_back (p);
85 }
86
87 AudioPoint
88 AudioAnalysis::get_point (int c, int p) const
89 {
90         assert (c < int (_data.size ()));
91         assert (p < int (_data[c].size ()));
92         return _data[c][p];
93 }
94
95 int
96 AudioAnalysis::points (int c) const
97 {
98         assert (c < int (_data.size ()));
99         return _data[c].size ();
100 }
101
102 void
103 AudioAnalysis::write (string filename)
104 {
105         string tmp = filename + ".tmp";
106         
107         ofstream f (tmp.c_str ());
108         f << _data.size() << "\n";
109         for (vector<vector<AudioPoint> >::iterator i = _data.begin(); i != _data.end(); ++i) {
110                 f << i->size () << "\n";
111                 for (vector<AudioPoint>::iterator j = i->begin(); j != i->end(); ++j) {
112                         j->write (f);
113                 }
114         }
115
116         f.close ();
117         boost::filesystem::rename (tmp, filename);
118 }