missing part of lincoln's patch
[ardour.git] / libs / ardour / ardour / playlist.h
1 /*
2     Copyright (C) 2000 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 #ifndef __ardour_playlist_h__
21 #define __ardour_playlist_h__
22
23 #include <string>
24 #include <set>
25 #include <map>
26 #include <list>
27 #include <boost/shared_ptr.hpp>
28 #include <boost/enable_shared_from_this.hpp>
29 #include <boost/utility.hpp>
30
31 #include <sys/stat.h>
32
33 #include <glib.h>
34
35
36 #include "pbd/undo.h"
37 #include "pbd/stateful.h"
38 #include "pbd/statefuldestructible.h"
39 #include "pbd/sequence_property.h"
40
41 #include "evoral/types.hpp"
42
43 #include "ardour/ardour.h"
44 #include "ardour/session_object.h"
45 #include "ardour/crossfade_compare.h"
46 #include "ardour/data_type.h"
47
48 namespace ARDOUR  {
49
50 class Session;
51 class Region;
52 class Playlist;
53 class Crossfade;        
54
55 namespace Properties {
56         /* fake the type, since regions are handled by SequenceProperty which doesn't
57            care about such things.
58         */
59         extern PBD::PropertyDescriptor<bool> regions;
60 }
61
62 class RegionListProperty : public PBD::SequenceProperty<std::list<boost::shared_ptr<Region> > >
63 {
64   public:
65         RegionListProperty (Playlist&);
66
67         RegionListProperty* clone () const;
68         void get_content_as_xml (boost::shared_ptr<Region>, XMLNode &) const;
69         boost::shared_ptr<Region> get_content_from_xml (XMLNode const &) const;
70
71   private:
72         RegionListProperty* create () const;
73
74         /* copy construction only by ourselves */
75         RegionListProperty (RegionListProperty const & p);
76
77         friend class Playlist;
78         /* we live and die with our playlist, no lifetime management needed */
79         Playlist& _playlist;
80 };
81
82 class Playlist : public SessionObject , public boost::enable_shared_from_this<Playlist>
83 {
84 public:
85         typedef std::list<boost::shared_ptr<Region> > RegionList;
86         static void make_property_quarks ();
87
88         Playlist (Session&, const XMLNode&, DataType type, bool hidden = false);
89         Playlist (Session&, std::string name, DataType type, bool hidden = false);
90         Playlist (boost::shared_ptr<const Playlist>, std::string name, bool hidden = false);
91         Playlist (boost::shared_ptr<const Playlist>, framepos_t start, framecnt_t cnt, std::string name, bool hidden = false);
92
93         virtual ~Playlist ();
94
95         void update (const RegionListProperty::ChangeRecord&);
96         void clear_owned_changes ();
97         void rdiff (std::vector<Command*>&) const;
98
99         boost::shared_ptr<Region> region_by_id (const PBD::ID&) const;
100
101         void set_region_ownership ();
102
103         virtual void clear (bool with_signals=true);
104         virtual void dump () const;
105
106         void use();
107         void release();
108         bool used () const { return _refcnt != 0; }
109
110         bool set_name (const std::string& str);
111         int sort_id() { return _sort_id; }
112
113         const DataType& data_type() const { return _type; }
114
115         bool frozen() const { return _frozen; }
116         void set_frozen (bool yn);
117
118         bool hidden() const { return _hidden; }
119         bool empty() const;
120         uint32_t n_regions() const;
121         std::pair<framecnt_t, framecnt_t> get_extent () const;
122         layer_t top_layer() const;
123
124         EditMode get_edit_mode() const { return _edit_mode; }
125         void set_edit_mode (EditMode);
126
127         /* Editing operations */
128
129         void add_region (boost::shared_ptr<Region>, framepos_t position, float times = 1, bool auto_partition = false);
130         void remove_region (boost::shared_ptr<Region>);
131         void remove_region_by_source (boost::shared_ptr<Source>);
132         void get_equivalent_regions (boost::shared_ptr<Region>, std::vector<boost::shared_ptr<Region> >&);
133         void get_region_list_equivalent_regions (boost::shared_ptr<Region>, std::vector<boost::shared_ptr<Region> >&);
134         void replace_region (boost::shared_ptr<Region> old, boost::shared_ptr<Region> newr, framepos_t pos);
135         void split_region (boost::shared_ptr<Region>, framepos_t position);
136         void split (framepos_t at);
137         void shift (framepos_t at, frameoffset_t distance, bool move_intersected, bool ignore_music_glue);
138         void partition (framepos_t start, framepos_t end, bool cut = false);
139         void duplicate (boost::shared_ptr<Region>, framepos_t position, float times);
140         void nudge_after (framepos_t start, framecnt_t distance, bool forwards);
141         void shuffle (boost::shared_ptr<Region>, int dir);
142         void update_after_tempo_map_change ();
143
144         boost::shared_ptr<Playlist> cut  (std::list<AudioRange>&, bool result_is_hidden = true);
145         boost::shared_ptr<Playlist> copy (std::list<AudioRange>&, bool result_is_hidden = true);
146         int                         paste (boost::shared_ptr<Playlist>, framepos_t position, float times);
147
148         const RegionListProperty& region_list () const { return regions; }
149
150         RegionList*                regions_at (framepos_t frame);
151         uint32_t                   count_regions_at (framepos_t);
152         RegionList*                regions_touched (framepos_t start, framepos_t end);
153         RegionList*                regions_to_read (framepos_t start, framepos_t end);
154         uint32_t                   region_use_count (boost::shared_ptr<Region>) const;
155         boost::shared_ptr<Region>  find_region (const PBD::ID&) const;
156         boost::shared_ptr<Region>  top_region_at (framepos_t frame);
157         boost::shared_ptr<Region>  top_unmuted_region_at (framepos_t frame);
158         boost::shared_ptr<Region>  find_next_region (framepos_t frame, RegionPoint point, int dir);
159         framepos_t                 find_next_region_boundary (framepos_t frame, int dir);
160         bool                       region_is_shuffle_constrained (boost::shared_ptr<Region>);
161         bool                       has_region_at (framepos_t const) const;
162
163
164         framepos_t find_next_transient (framepos_t position, int dir);
165
166         void foreach_region (boost::function<void (boost::shared_ptr<Region>)>);
167
168         XMLNode& get_state ();
169         int set_state (const XMLNode&, int version);
170         XMLNode& get_template ();
171
172         PBD::Signal1<void,bool> InUse;
173         PBD::Signal0<void>      ContentsChanged;
174         PBD::Signal1<void,boost::weak_ptr<Region> > RegionAdded;
175         PBD::Signal1<void,boost::weak_ptr<Region> > RegionRemoved;
176         PBD::Signal0<void>      NameChanged;
177         PBD::Signal0<void>      LengthChanged;
178         PBD::Signal0<void>      LayeringChanged;
179
180         /** Emitted when regions have moved (not when regions have only been trimmed) */
181         PBD::Signal2<void,std::list< Evoral::RangeMove<framepos_t> > const &, bool> RangesMoved;
182
183         static std::string bump_name (std::string old_name, Session&);
184
185         void freeze ();
186         void thaw (bool from_undo = false);
187
188         void raise_region (boost::shared_ptr<Region>);
189         void lower_region (boost::shared_ptr<Region>);
190         void raise_region_to_top (boost::shared_ptr<Region>);
191         void lower_region_to_bottom (boost::shared_ptr<Region>);
192
193         uint32_t read_data_count() const { return _read_data_count; }
194
195         /* XXX: use of diskstream here is a little unfortunate */
196         const PBD::ID& get_orig_diskstream_id () const { return _orig_diskstream_id; }
197         void set_orig_diskstream_id (const PBD::ID& did) { _orig_diskstream_id = did; }
198
199         /* destructive editing */
200
201         virtual bool destroy_region (boost::shared_ptr<Region>) = 0;
202
203         /* special case function used by UI selection objects, which have playlists that actually own the regions
204            within them.
205         */
206
207         void drop_regions ();
208
209         bool explicit_relayering () const {
210                 return _explicit_relayering;
211         }
212
213         void set_explicit_relayering (bool e);
214
215         virtual boost::shared_ptr<Crossfade> find_crossfade (const PBD::ID &) const {
216                 return boost::shared_ptr<Crossfade> ();
217         }
218
219   protected:
220         friend class Session;
221
222   protected:
223         struct RegionLock {
224                 RegionLock (Playlist *pl, bool do_block_notify = true) : playlist (pl), block_notify (do_block_notify) {
225                         playlist->region_lock.lock();
226                         if (block_notify) {
227                                 playlist->delay_notifications();
228                         }
229                 }
230                 ~RegionLock() {
231                         playlist->region_lock.unlock();
232                         if (block_notify) {
233                                 playlist->release_notifications ();
234                         }
235                 }
236                 Playlist *playlist;
237                 bool block_notify;
238         };
239
240         friend class RegionLock;
241
242         RegionListProperty   regions;  /* the current list of regions in the playlist */
243         std::set<boost::shared_ptr<Region> > all_regions; /* all regions ever added to this playlist */
244         PBD::ScopedConnectionList region_state_changed_connections;
245         DataType        _type;
246         int             _sort_id;
247         mutable gint    block_notifications;
248         mutable gint    ignore_state_changes;
249         mutable Glib::RecMutex region_lock;
250         std::set<boost::shared_ptr<Region> > pending_adds;
251         std::set<boost::shared_ptr<Region> > pending_removes;
252         RegionList       pending_bounds;
253         bool             pending_contents_change;
254         bool             pending_layering;
255         bool             pending_length;
256
257         /** Movements of time ranges caused by region moves; note that
258          *  region trims are not included in this list; it is used to
259          *  do automation-follows-regions.
260          */
261         std::list< Evoral::RangeMove<framepos_t> > pending_range_moves;
262         bool             save_on_thaw;
263         std::string      last_save_reason;
264         uint32_t         in_set_state;
265         bool             in_update;
266         bool             first_set_state;
267         bool            _hidden;
268         bool            _splicing;
269         bool            _shuffling;
270         bool            _nudging;
271         uint32_t        _refcnt;
272         EditMode        _edit_mode;
273         bool             in_flush;
274         bool             in_partition;
275         bool            _frozen;
276         uint32_t         subcnt;
277         uint32_t        _read_data_count;
278         PBD::ID         _orig_diskstream_id;
279         uint64_t         layer_op_counter;
280         framecnt_t       freeze_length;
281         bool             auto_partition;
282
283         /** true if relayering should be done using region's current layers and their `pending explicit relayer'
284          *  flags; otherwise false if relayering should be done using the layer-model (most recently moved etc.)
285          *  Explicit relayering is used by tracks in stacked regionview mode.
286          */
287         bool            _explicit_relayering;
288
289         void init (bool hide);
290
291         bool holding_state () const {
292                 return g_atomic_int_get (&block_notifications) != 0 ||
293                         g_atomic_int_get (&ignore_state_changes) != 0;
294         }
295
296         void delay_notifications ();
297         void release_notifications (bool from_undo = false);
298         virtual void flush_notifications (bool from_undo = false);
299         void clear_pending ();
300
301         void _set_sort_id ();
302
303         void notify_region_removed (boost::shared_ptr<Region>);
304         void notify_region_added (boost::shared_ptr<Region>);
305         void notify_length_changed ();
306         void notify_layering_changed ();
307         void notify_contents_changed ();
308         void notify_state_changed (const PBD::PropertyChange&);
309         void notify_region_moved (boost::shared_ptr<Region>);
310
311         void mark_session_dirty();
312
313         void region_changed_proxy (const PBD::PropertyChange&, boost::weak_ptr<Region>);
314         virtual bool region_changed (const PBD::PropertyChange&, boost::shared_ptr<Region>);
315
316         void region_bounds_changed (const PBD::PropertyChange&, boost::shared_ptr<Region>);
317         void region_deleted (boost::shared_ptr<Region>);
318
319         void sort_regions ();
320
321         void possibly_splice (framepos_t at, framecnt_t distance, boost::shared_ptr<Region> exclude = boost::shared_ptr<Region>());
322         void possibly_splice_unlocked(framepos_t at, framecnt_t distance, boost::shared_ptr<Region> exclude = boost::shared_ptr<Region>());
323
324         void core_splice (framepos_t at, framecnt_t distance, boost::shared_ptr<Region> exclude);
325         void splice_locked (framepos_t at, framecnt_t distance, boost::shared_ptr<Region> exclude);
326         void splice_unlocked (framepos_t at, framecnt_t distance, boost::shared_ptr<Region> exclude);
327
328         virtual void finalize_split_region (boost::shared_ptr<Region> /*original*/, boost::shared_ptr<Region> /*left*/, boost::shared_ptr<Region> /*right*/) {}
329
330         virtual void check_dependents (boost::shared_ptr<Region> /*region*/, bool /*norefresh*/) {}
331         virtual void refresh_dependents (boost::shared_ptr<Region> /*region*/) {}
332         virtual void remove_dependents (boost::shared_ptr<Region> /*region*/) {}
333
334         virtual XMLNode& state (bool);
335
336         bool add_region_internal (boost::shared_ptr<Region>, framepos_t position);
337
338         int remove_region_internal (boost::shared_ptr<Region>);
339         RegionList *find_regions_at (framepos_t);
340         void copy_regions (RegionList&) const;
341         void partition_internal (framepos_t start, framepos_t end, bool cutting, RegionList& thawlist);
342
343         std::pair<framecnt_t, framecnt_t> _get_extent() const;
344
345         boost::shared_ptr<Playlist> cut_copy (boost::shared_ptr<Playlist> (Playlist::*pmf)(framepos_t, framecnt_t, bool),
346                                               std::list<AudioRange>& ranges, bool result_is_hidden);
347         boost::shared_ptr<Playlist> cut (framepos_t start, framecnt_t cnt, bool result_is_hidden);
348         boost::shared_ptr<Playlist> copy (framepos_t start, framecnt_t cnt, bool result_is_hidden);
349
350         int move_region_to_layer (layer_t, boost::shared_ptr<Region> r, int dir);
351         void relayer ();
352
353         void begin_undo ();
354         void end_undo ();
355         void unset_freeze_parent (Playlist*);
356         void unset_freeze_child (Playlist*);
357
358         void timestamp_layer_op (boost::shared_ptr<Region>);
359
360         void _split_region (boost::shared_ptr<Region>, framepos_t position);
361 };
362
363 } /* namespace ARDOUR */
364
365 #endif  /* __ardour_playlist_h__ */
366
367