Multiple simultaneous plots.
[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 < channels ());
84         _data[c].push_back (p);
85 }
86
87 AudioPoint
88 AudioAnalysis::get_point (int c, int p) const
89 {
90         assert (p < points (c));
91         return _data[c][p];
92 }
93
94 int
95 AudioAnalysis::channels () const
96 {
97         return _data.size ();
98 }
99
100 int
101 AudioAnalysis::points (int c) const
102 {
103         assert (c < channels ());
104         return _data[c].size ();
105 }
106
107 void
108 AudioAnalysis::write (string filename)
109 {
110         string tmp = filename + ".tmp";
111         
112         ofstream f (tmp.c_str ());
113         f << _data.size() << "\n";
114         for (vector<vector<AudioPoint> >::iterator i = _data.begin(); i != _data.end(); ++i) {
115                 f << i->size () << "\n";
116                 for (vector<AudioPoint>::iterator j = i->begin(); j != i->end(); ++j) {
117                         j->write (f);
118                 }
119         }
120
121         f.close ();
122         boost::filesystem::rename (tmp, filename);
123 }