Merged with trunk R861
[ardour.git] / libs / ardour / ardour / region.h
1 /*
2     Copyright (C) 2000-2001 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     $Id$
19 */
20
21 #ifndef __ardour_region_h__
22 #define __ardour_region_h__
23
24 #include <vector>
25 #include <boost/shared_ptr.hpp>
26
27 #include <pbd/undo.h>
28 #include <pbd/statefuldestructible.h> 
29
30 #include <ardour/ardour.h>
31 #include <ardour/state_manager.h>
32 #include <ardour/data_type.h>
33
34 class XMLNode;
35
36 namespace ARDOUR {
37
38 class Playlist;
39 class Source;
40
41 enum RegionEditState {
42         EditChangesNothing = 0,
43         EditChangesName    = 1,
44         EditChangesID      = 2
45 };
46
47 struct RegionState : public StateManager::State
48 {
49         RegionState (std::string why) : StateManager::State (why) {}
50
51         jack_nframes_t          _start;
52         jack_nframes_t          _length;
53         jack_nframes_t          _position;
54         uint32_t                _flags;
55         jack_nframes_t          _sync_position;
56         layer_t                 _layer;
57         string                  _name;        
58         mutable RegionEditState _first_edit;
59 };
60
61 class Region : public PBD::StatefulDestructible, public StateManager
62 {
63   public:
64         typedef std::vector<boost::shared_ptr<Source> > SourceList;
65
66         enum Flag {
67                 Muted = 0x1,
68                 Opaque = 0x2,
69                 EnvelopeActive = 0x4,
70                 DefaultFadeIn = 0x8,
71                 DefaultFadeOut = 0x10,
72                 Locked = 0x20,
73                 Automatic = 0x40,
74                 WholeFile = 0x80,
75                 FadeIn = 0x100,
76                 FadeOut = 0x200,
77                 Copied = 0x400,
78                 Import = 0x800,
79                 External = 0x1000,
80                 SyncMarked = 0x2000,
81                 LeftOfSplit = 0x4000,
82                 RightOfSplit = 0x8000,
83                 Hidden = 0x10000,
84                 DoNotSaveState = 0x20000,
85                 //
86                 range_guarantoor = USHRT_MAX
87         };
88
89         static const Flag DefaultFlags = Flag (Opaque|DefaultFadeIn|DefaultFadeOut|FadeIn|FadeOut);
90
91         static Change FadeChanged;
92         static Change SyncOffsetChanged;
93         static Change MuteChanged;
94         static Change OpacityChanged;
95         static Change LockChanged;
96         static Change LayerChanged;
97         static Change HiddenChanged;
98
99         virtual ~Region();
100
101         const PBD::ID& id() const { return _id; }
102
103         /* Note: changing the name of a Region does not constitute an edit */
104
105         string name() const { return _name; }
106         void set_name (string str);
107
108         const DataType& data_type() const { return _type; }
109
110         jack_nframes_t position () const { return _position; }
111         jack_nframes_t start ()    const { return _start; }
112         jack_nframes_t length()    const { return _length; }
113         layer_t        layer ()    const { return _layer; }
114         
115         jack_nframes_t sync_offset(int& dir) const;
116         jack_nframes_t sync_position() const;
117
118         jack_nframes_t adjust_to_sync (jack_nframes_t);
119         
120         /* first_frame() is an alias; last_frame() just hides some math */
121
122         jack_nframes_t first_frame() const { return _position; }
123         jack_nframes_t last_frame() const { return _position + _length - 1; }
124
125         Flag flags()      const { return _flags; }
126         bool hidden()     const { return _flags & Hidden; }
127         bool muted()      const { return _flags & Muted; }
128         bool opaque ()    const { return _flags & Opaque; }
129         bool locked()     const { return _flags & Locked; }
130         bool automatic()  const { return _flags & Automatic; }
131         bool whole_file() const { return _flags & WholeFile ; }
132         bool captured()   const { return !(_flags & (Region::Flag (Region::Import|Region::External))); }
133
134         virtual bool should_save_state () const { return !(_flags & DoNotSaveState); };
135
136         void freeze ();
137         void thaw (const string& why);
138
139         bool covers (jack_nframes_t frame) const {
140                 return _position <= frame && frame < _position + _length;
141         }
142
143         OverlapType coverage (jack_nframes_t start, jack_nframes_t end) const {
144                 return ARDOUR::coverage (_position, _position + _length - 1, start, end);
145         }
146         
147         bool equivalent (boost::shared_ptr<const Region>) const;
148         bool size_equivalent (boost::shared_ptr<const Region>) const;
149         bool overlap_equivalent (boost::shared_ptr<const Region>) const;
150         bool region_list_equivalent (boost::shared_ptr<const Region>) const;
151         bool source_equivalent (boost::shared_ptr<const Region>) const;
152         
153         /* EDITING OPERATIONS */
154
155         void set_length (jack_nframes_t, void *src);
156         void set_start (jack_nframes_t, void *src);
157         void set_position (jack_nframes_t, void *src);
158         void set_position_on_top (jack_nframes_t, void *src);
159         void special_set_position (jack_nframes_t);
160         void nudge_position (long, void *src);
161
162         void move_to_natural_position (void *src);
163
164         void trim_start (jack_nframes_t new_position, void *src);
165         void trim_front (jack_nframes_t new_position, void *src);
166         void trim_end (jack_nframes_t new_position, void *src);
167         void trim_to (jack_nframes_t position, jack_nframes_t length, void *src);
168         
169         void set_layer (layer_t l); /* ONLY Playlist can call this */
170         void raise ();
171         void lower ();
172         void raise_to_top ();
173         void lower_to_bottom ();
174
175         void set_sync_position (jack_nframes_t n);
176         void clear_sync_position ();
177         void set_hidden (bool yn);
178         void set_muted (bool yn);
179         void set_opaque (bool yn);
180         void set_locked (bool yn);
181
182         virtual uint32_t read_data_count() const { return _read_data_count; }
183
184         ARDOUR::Playlist* playlist() const { return _playlist; }
185
186         virtual UndoAction get_memento() const = 0;
187
188         void set_playlist (ARDOUR::Playlist*);
189
190         void source_deleted (boost::shared_ptr<Source>);
191
192         boost::shared_ptr<Source> source (uint32_t n=0) const { return _sources[ (n < _sources.size()) ? n : 0 ]; }
193         uint32_t                  n_channels()          const { return _sources.size(); }
194
195         std::vector<string> master_source_names();
196
197
198         /* serialization */
199         
200         XMLNode&         get_state ();
201         virtual XMLNode& state (bool);
202         virtual int      set_state (const XMLNode&);
203
204         boost::shared_ptr<Region> get_parent();
205         
206         uint64_t last_layer_op() const { return _last_layer_op; }
207         void set_last_layer_op (uint64_t when);
208
209   protected:
210         friend class RegionFactory;
211
212         Region (boost::shared_ptr<Source> src, jack_nframes_t start, jack_nframes_t length, 
213                 const string& name, DataType type, layer_t = 0, Flag flags = DefaultFlags);
214         Region (SourceList& srcs, jack_nframes_t start, jack_nframes_t length, 
215                 const string& name, DataType type, layer_t = 0, Flag flags = DefaultFlags);
216         Region (boost::shared_ptr<const Region>, jack_nframes_t start, jack_nframes_t length, const string& name, layer_t = 0, Flag flags = DefaultFlags);
217         Region (boost::shared_ptr<const Region>);
218         Region (boost::shared_ptr<Source> src, const XMLNode&);
219         Region (SourceList& srcs, const XMLNode&);
220
221   protected:
222         XMLNode& get_short_state (); /* used only by Session */
223
224         /* state management */
225
226         void send_change (Change);
227
228         /* derived classes need these during their own state management calls */
229
230         void   store_state (RegionState&) const;
231         Change restore_and_return_flags (RegionState&);
232         
233         void trim_to_internal (jack_nframes_t position, jack_nframes_t length, void *src);
234
235         bool copied() const { return _flags & Copied; }
236         void maybe_uncopy ();
237         void first_edit ();
238         
239         bool verify_start (jack_nframes_t);
240         bool verify_start_and_length (jack_nframes_t, jack_nframes_t);
241         bool verify_start_mutable (jack_nframes_t&_start);
242         bool verify_length (jack_nframes_t);
243         virtual void recompute_at_start () = 0;
244         virtual void recompute_at_end () = 0;
245         
246
247         PBD::ID                 _id;
248         string                  _name;
249         DataType                _type;
250         Flag                    _flags;
251         jack_nframes_t          _start;
252         jack_nframes_t          _length;
253         jack_nframes_t          _position;
254         jack_nframes_t          _sync_position;
255         layer_t                 _layer;
256         mutable RegionEditState _first_edit;
257         int                     _frozen;
258         mutable uint32_t        _read_data_count;  ///< modified in read()
259         Change                  _pending_changed;
260         uint64_t                _last_layer_op;  ///< timestamp
261         Glib::Mutex             _lock;
262         ARDOUR::Playlist*       _playlist;
263         SourceList              _sources;
264         /** Used when timefx are applied, so we can always use the original source */
265         SourceList              _master_sources;
266 };
267
268 } /* namespace ARDOUR */
269
270 #endif /* __ardour_region_h__ */