Merge 1.0 in.
[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 using std::max;
35 using std::list;
36
37 AudioPoint::AudioPoint ()
38 {
39         for (int i = 0; i < COUNT; ++i) {
40                 _data[i] = 0;
41         }
42 }
43
44 AudioPoint::AudioPoint (istream& s)
45 {
46         for (int i = 0; i < COUNT; ++i) {
47                 s >> _data[i];
48         }
49 }
50
51 AudioPoint::AudioPoint (AudioPoint const & other)
52 {
53         for (int i = 0; i < COUNT; ++i) {
54                 _data[i] = other._data[i];
55         }
56 }
57
58 AudioPoint &
59 AudioPoint::operator= (AudioPoint const & other)
60 {
61         if (this == &other) {
62                 return *this;
63         }
64         
65         for (int i = 0; i < COUNT; ++i) {
66                 _data[i] = other._data[i];
67         }
68
69         return *this;
70 }
71
72 void
73 AudioPoint::write (ostream& s) const
74 {
75         for (int i = 0; i < COUNT; ++i) {
76                 s << _data[i] << "\n";
77         }
78 }
79         
80
81 AudioAnalysis::AudioAnalysis (int channels)
82 {
83         _data.resize (channels);
84 }
85
86 AudioAnalysis::AudioAnalysis (boost::filesystem::path filename)
87 {
88         ifstream f (filename.string().c_str ());
89
90         int channels;
91         f >> channels;
92         _data.resize (channels);
93
94         for (int i = 0; i < channels; ++i) {
95                 int points;
96                 f >> points;
97                 for (int j = 0; j < points; ++j) {
98                         _data[i].push_back (AudioPoint (f));
99                 }
100         }
101 }
102
103 void
104 AudioAnalysis::add_point (int c, AudioPoint const & p)
105 {
106         assert (c < channels ());
107         _data[c].push_back (p);
108 }
109
110 AudioPoint
111 AudioAnalysis::get_point (int c, int p) const
112 {
113         assert (p < points (c));
114         return _data[c][p];
115 }
116
117 int
118 AudioAnalysis::channels () const
119 {
120         return _data.size ();
121 }
122
123 int
124 AudioAnalysis::points (int c) const
125 {
126         assert (c < channels ());
127         return _data[c].size ();
128 }
129
130 void
131 AudioAnalysis::write (boost::filesystem::path filename)
132 {
133         string tmp = filename.string() + ".tmp";
134
135         ofstream f (tmp.c_str ());
136         f << _data.size() << "\n";
137         for (vector<vector<AudioPoint> >::iterator i = _data.begin(); i != _data.end(); ++i) {
138                 f << i->size () << "\n";
139                 for (vector<AudioPoint>::iterator j = i->begin(); j != i->end(); ++j) {
140                         j->write (f);
141                 }
142         }
143
144         f.close ();
145         boost::filesystem::rename (tmp, filename);
146 }