Remove over 500 unnecessary includes (including 54 of session.h).
[ardour.git] / libs / ardour / filter.cc
1 /*
2     Copyright (C) 2004-2007 Paul Davis
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 <time.h>
21 #include <cerrno>
22
23 #include "pbd/basename.h"
24
25 #include "ardour/analyser.h"
26 #include "ardour/audiofilesource.h"
27 #include "ardour/audioregion.h"
28 #include "ardour/filter.h"
29 #include "ardour/region.h"
30 #include "ardour/region_factory.h"
31 #include "ardour/session.h"
32 #include "ardour/smf_source.h"
33 #include "ardour/source_factory.h"
34
35 #include "i18n.h"
36
37 using namespace std;
38 using namespace ARDOUR;
39 using namespace PBD;
40
41 int
42 Filter::make_new_sources (boost::shared_ptr<Region> region, SourceList& nsrcs, string suffix)
43 {
44         vector<string> names = region->master_source_names();
45         assert (region->n_channels() <= names.size());
46
47         for (uint32_t i = 0; i < region->n_channels(); ++i) {
48
49                 string name = PBD::basename_nosuffix (names[i]);
50
51                 /* remove any existing version of suffix by assuming it starts
52                    with some kind of "special" character.
53                 */
54
55                 if (!suffix.empty()) {
56                         string::size_type pos = name.find (suffix[0]);
57                         if (pos != string::npos && pos > 2) {
58                                 name = name.substr (0, pos - 1);
59                         }
60                 }
61
62                 string path = session.path_from_region_name (region->data_type(),
63                                 PBD::basename_nosuffix (names[i]), string (""));
64
65                 if (path.length() == 0) {
66                         error << string_compose (_("filter: error creating name for new file based on %1"), region->name())
67                               << endmsg;
68                         return -1;
69                 }
70
71                 try {
72                         nsrcs.push_back (boost::dynamic_pointer_cast<Source> (
73                                 SourceFactory::createWritable (region->data_type(), session,
74                                                                path, string(), false, session.frame_rate())));
75                 }
76
77                 catch (failed_constructor& err) {
78                         error << string_compose (_("filter: error creating new file %1 (%2)"), path, strerror (errno)) << endmsg;
79                         return -1;
80                 }
81         }
82
83         return 0;
84 }
85
86 int
87 Filter::finish (boost::shared_ptr<Region> region, SourceList& nsrcs, string region_name)
88 {
89         /* update headers on new sources */
90
91         time_t xnow;
92         struct tm* now;
93
94         time (&xnow);
95         now = localtime (&xnow);
96
97         /* this is ugly. */
98         for (SourceList::iterator si = nsrcs.begin(); si != nsrcs.end(); ++si) {
99                 boost::shared_ptr<AudioFileSource> afs = boost::dynamic_pointer_cast<AudioFileSource>(*si);
100                 if (afs) {
101                         afs->done_with_peakfile_writes ();
102                         afs->update_header (region->position(), *now, xnow);
103                         afs->mark_immutable ();
104                 }
105
106                 boost::shared_ptr<SMFSource> smfs = boost::dynamic_pointer_cast<SMFSource>(*si);
107                 if (smfs) {
108                         smfs->set_timeline_position (region->position());
109                         smfs->flush ();
110                 }
111
112                 /* now that there is data there, requeue the file for analysis */
113
114                 Analyser::queue_source_for_analysis (*si, false);
115         }
116
117         /* create a new region */
118
119         if (region_name.empty()) {
120                 region_name = RegionFactory::new_region_name (region->name());
121         }
122         results.clear ();
123
124         PropertyList plist;
125
126         plist.add (Properties::start, 0);
127         plist.add (Properties::length, region->length());
128         plist.add (Properties::name, region_name);
129         plist.add (Properties::whole_file, true);
130         plist.add (Properties::position, region->position());
131
132         boost::shared_ptr<Region> r = RegionFactory::create (nsrcs, plist);
133
134         boost::shared_ptr<AudioRegion> audio_region = boost::dynamic_pointer_cast<AudioRegion> (region);
135         boost::shared_ptr<AudioRegion> audio_r = boost::dynamic_pointer_cast<AudioRegion> (r);
136         if (audio_region && audio_r) {
137                 audio_r->set_scale_amplitude (audio_region->scale_amplitude());
138                 audio_r->set_fade_in_active (audio_region->fade_in_active ());
139                 audio_r->set_fade_in (audio_region->fade_in ());
140                 audio_r->set_fade_out_active (audio_region->fade_out_active ());
141                 audio_r->set_fade_out (audio_region->fade_out ());
142                 *(audio_r->envelope()) = *(audio_region->envelope ());
143         }
144         results.push_back (r);
145
146         return 0;
147 }
148
149