Merged with trunk R1612.
[ardour.git] / libs / ardour / region_factory.cc
1 /*
2     Copyright (C) 2000-2006 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 <pbd/error.h>
21
22 #include <ardour/session.h>
23
24 #include <ardour/region_factory.h>
25 #include <ardour/region.h>
26 #include <ardour/audioregion.h>
27 #include <ardour/audiosource.h>
28 #include <ardour/midi_source.h>
29 #include <ardour/midi_region.h>
30
31 #include "i18n.h"
32
33 using namespace ARDOUR;
34 using namespace PBD;
35
36 sigc::signal<void,boost::shared_ptr<Region> > RegionFactory::CheckNewRegion;
37
38 boost::shared_ptr<Region>
39 RegionFactory::create (boost::shared_ptr<Region> region, nframes_t start, 
40                              nframes_t length, std::string name, 
41                              layer_t layer, Region::Flag flags, bool announce)
42 {
43         boost::shared_ptr<const AudioRegion> other_a;
44         boost::shared_ptr<const MidiRegion> other_m;
45
46         if ((other_a = boost::dynamic_pointer_cast<AudioRegion>(region)) != 0) {
47                 AudioRegion* ar = new AudioRegion (other_a, start, length, name, layer, flags);
48                 boost::shared_ptr<AudioRegion> arp (ar);
49                 boost::shared_ptr<Region> ret (boost::static_pointer_cast<Region> (arp));
50                 if (announce) {
51                         CheckNewRegion (ret);
52                 }
53                 return ret;
54         } else if ((other_m = boost::dynamic_pointer_cast<MidiRegion>(region)) != 0) {
55                 MidiRegion* ar = new MidiRegion (other_m, start, length, name, layer, flags);
56                 boost::shared_ptr<MidiRegion> arp (ar);
57                 boost::shared_ptr<Region> ret (boost::static_pointer_cast<Region> (arp));
58                 if (announce) {
59                         CheckNewRegion (ret);
60                 }
61                 return ret;
62         } else {
63                 fatal << _("programming error: RegionFactory::create() called with unknown Region type")
64                       << endmsg;
65                 /*NOTREACHED*/
66                 return boost::shared_ptr<Region>();
67         }
68 }
69
70 boost::shared_ptr<Region>
71 RegionFactory::create (boost::shared_ptr<Region> region)
72 {
73         boost::shared_ptr<AudioRegion> ar;
74         boost::shared_ptr<MidiRegion> mr;
75         
76         if ((ar = boost::dynamic_pointer_cast<AudioRegion>(region)) != 0) {
77                 boost::shared_ptr<Region> ret (new AudioRegion (ar));
78                 /* pure copy constructor - no CheckNewRegion emitted */
79                 return ret;
80         } else if ((mr = boost::dynamic_pointer_cast<MidiRegion>(region)) != 0) {
81                 boost::shared_ptr<Region> ret (new MidiRegion (mr));
82                 /* pure copy constructor - no CheckNewRegion emitted */
83                 return ret;
84         } else {
85                 fatal << _("programming error: RegionFactory::create() called with unknown Region type")
86                       << endmsg;
87                 /*NOTREACHED*/
88                 return boost::shared_ptr<Region>();
89         }
90 }
91
92 boost::shared_ptr<Region>
93 RegionFactory::create (boost::shared_ptr<AudioRegion> region, nframes_t start, 
94                              nframes_t length, std::string name, 
95                              layer_t layer, Region::Flag flags, bool announce)
96 {
97         return create (boost::static_pointer_cast<Region> (region), start, length, name, layer, flags, announce);
98 }
99
100 boost::shared_ptr<Region>
101 RegionFactory::create (Session& session, XMLNode& node, bool yn)
102 {
103         boost::shared_ptr<Region> r = session.XMLRegionFactory (node, yn);
104         CheckNewRegion (r);
105         return r;
106 }
107         
108 boost::shared_ptr<Region> 
109 RegionFactory::create (SourceList& srcs, nframes_t start, nframes_t length, const string& name, layer_t layer, Region::Flag flags, bool announce)
110 {
111         if (srcs.empty()) {
112                 return boost::shared_ptr<Region>();
113         }
114
115         if (srcs[0]->type() == DataType::AUDIO) {
116                 
117                 AudioRegion* ar = new AudioRegion (srcs, start, length, name, layer, flags);
118                 boost::shared_ptr<AudioRegion> arp (ar);
119                 boost::shared_ptr<Region> ret (boost::static_pointer_cast<Region> (arp));
120                 if (announce) {
121                         CheckNewRegion (ret);
122                 }
123                 return ret;
124
125         } else if (srcs[0]->type() == DataType::MIDI) {
126                 
127                 MidiRegion* ar = new MidiRegion (srcs, start, length, name, layer, flags);
128                 boost::shared_ptr<MidiRegion> mrp (ar);
129                 boost::shared_ptr<Region> ret (boost::static_pointer_cast<Region> (mrp));
130                 if (announce) {
131                         CheckNewRegion (ret);
132                 }
133                 return ret;
134
135         }
136
137         return boost::shared_ptr<Region> ();
138 }       
139
140 boost::shared_ptr<Region> 
141 RegionFactory::create (SourceList& srcs, const XMLNode& node)
142 {
143         if (srcs.empty()) {
144                 return boost::shared_ptr<Region>();
145         }
146
147         if (srcs[0]->type() == DataType::AUDIO) {
148                 boost::shared_ptr<Region> ret (new AudioRegion (srcs, node));
149                 CheckNewRegion (ret);
150                 return ret;
151         } else if (srcs[0]->type() == DataType::MIDI) {
152                 boost::shared_ptr<Region> ret (new MidiRegion (srcs, node));
153                 CheckNewRegion (ret);
154                 return ret;
155         }
156
157         return boost::shared_ptr<Region> ();
158 }
159
160 boost::shared_ptr<Region> 
161 RegionFactory::create (boost::shared_ptr<Source> src, nframes_t start, nframes_t length, const string& name, layer_t layer, Region::Flag flags, bool announce)
162 {
163         boost::shared_ptr<AudioSource> as;
164         boost::shared_ptr<MidiSource> ms;
165
166         if ((as = boost::dynamic_pointer_cast<AudioSource>(src)) != 0) {
167                 boost::shared_ptr<Region> ret (new AudioRegion (as, start, length, name, layer, flags));
168                 if (announce) {
169                         CheckNewRegion (ret);
170                 }
171                 return ret;
172         } else if ((ms = boost::dynamic_pointer_cast<MidiSource>(src)) != 0) {
173                 boost::shared_ptr<Region> ret (new MidiRegion (ms, start, length, name, layer, flags));
174                 if (announce) {
175                         CheckNewRegion (ret);
176                 }
177                 return ret;
178         }
179
180         return boost::shared_ptr<Region>();
181 }