Merge branch 'export-dialog' into cairocanvas
[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 #include "pbd/undo.h"
36 #include "pbd/stateful.h"
37 #include "pbd/statefuldestructible.h"
38 #include "pbd/sequence_property.h"
39 #include "pbd/stacktrace.h"
40
41 #include "evoral/types.hpp"
42
43 #include "ardour/ardour.h"
44 #include "ardour/region.h"
45 #include "ardour/session_object.h"
46 #include "ardour/data_type.h"
47
48 namespace ARDOUR  {
49
50 class Session;
51 class Playlist;
52 class Crossfade;
53
54 namespace Properties {
55         /* fake the type, since regions are handled by SequenceProperty which doesn't
56            care about such things.
57         */
58         LIBARDOUR_API extern PBD::PropertyDescriptor<bool> regions;
59 }
60
61 class LIBARDOUR_API RegionListProperty : public PBD::SequenceProperty<std::list<boost::shared_ptr<Region> > >
62 {
63   public:
64         RegionListProperty (Playlist&);
65
66         RegionListProperty* clone () const;
67         void get_content_as_xml (boost::shared_ptr<Region>, XMLNode &) const;
68         boost::shared_ptr<Region> get_content_from_xml (XMLNode const &) const;
69
70   private:
71         RegionListProperty* create () const;
72
73         /* copy construction only by ourselves */
74         RegionListProperty (RegionListProperty const & p);
75
76         friend class Playlist;
77         /* we live and die with our playlist, no lifetime management needed */
78         Playlist& _playlist;
79 };
80
81 class LIBARDOUR_API Playlist : public SessionObject , public boost::enable_shared_from_this<Playlist>
82 {
83 public:
84         static void make_property_quarks ();
85
86         Playlist (Session&, const XMLNode&, DataType type, bool hidden = false);
87         Playlist (Session&, std::string name, DataType type, bool hidden = false);
88         Playlist (boost::shared_ptr<const Playlist>, std::string name, bool hidden = false);
89         Playlist (boost::shared_ptr<const Playlist>, framepos_t start, framecnt_t cnt, std::string name, bool hidden = false);
90
91         virtual ~Playlist ();
92
93         void update (const RegionListProperty::ChangeRecord&);
94         void clear_owned_changes ();
95         void rdiff (std::vector<Command*>&) const;
96
97         boost::shared_ptr<Region> region_by_id (const PBD::ID&) const;
98
99         uint32_t max_source_level () 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         bool all_regions_empty() const;
122         std::pair<framepos_t, framepos_t> get_extent () const;
123         layer_t top_layer() const;
124
125         EditMode get_edit_mode() const { return _edit_mode; }
126         void set_edit_mode (EditMode);
127
128         /* Editing operations */
129
130         void add_region (boost::shared_ptr<Region>, framepos_t position, float times = 1, bool auto_partition = false);
131         void remove_region (boost::shared_ptr<Region>);
132         void remove_region_by_source (boost::shared_ptr<Source>);
133         void get_equivalent_regions (boost::shared_ptr<Region>, std::vector<boost::shared_ptr<Region> >&);
134         void get_region_list_equivalent_regions (boost::shared_ptr<Region>, std::vector<boost::shared_ptr<Region> >&);
135         void get_source_equivalent_regions (boost::shared_ptr<Region>, std::vector<boost::shared_ptr<Region> >&);
136         void replace_region (boost::shared_ptr<Region> old, boost::shared_ptr<Region> newr, framepos_t pos);
137         void split_region (boost::shared_ptr<Region>, framepos_t position);
138         void split (framepos_t at);
139         void shift (framepos_t at, frameoffset_t distance, bool move_intersected, bool ignore_music_glue);
140         void partition (framepos_t start, framepos_t end, bool cut = false);
141         void duplicate (boost::shared_ptr<Region>, framepos_t position, float times);
142         void nudge_after (framepos_t start, framecnt_t distance, bool forwards);
143         boost::shared_ptr<Region> combine (const RegionList&);
144         void uncombine (boost::shared_ptr<Region>);
145
146         void shuffle (boost::shared_ptr<Region>, int dir);
147         void update_after_tempo_map_change ();
148
149         boost::shared_ptr<Playlist> cut  (std::list<AudioRange>&, bool result_is_hidden = true);
150         boost::shared_ptr<Playlist> copy (std::list<AudioRange>&, bool result_is_hidden = true);
151         int                         paste (boost::shared_ptr<Playlist>, framepos_t position, float times);
152
153         const RegionListProperty& region_list () const { return regions; }
154
155         boost::shared_ptr<RegionList> regions_at (framepos_t frame);
156         uint32_t                   count_regions_at (framepos_t) const;
157         boost::shared_ptr<RegionList> regions_touched (framepos_t start, framepos_t end);
158         boost::shared_ptr<RegionList> regions_with_start_within (Evoral::Range<framepos_t>);
159         boost::shared_ptr<RegionList> regions_with_end_within (Evoral::Range<framepos_t>);
160         uint32_t                   region_use_count (boost::shared_ptr<Region>) const;
161         boost::shared_ptr<Region>  find_region (const PBD::ID&) const;
162         boost::shared_ptr<Region>  top_region_at (framepos_t frame);
163         boost::shared_ptr<Region>  top_unmuted_region_at (framepos_t frame);
164         boost::shared_ptr<Region>  find_next_region (framepos_t frame, RegionPoint point, int dir);
165         framepos_t                 find_next_region_boundary (framepos_t frame, int dir);
166         bool                       region_is_shuffle_constrained (boost::shared_ptr<Region>);
167         bool                       has_region_at (framepos_t const) const;
168
169         bool uses_source (boost::shared_ptr<const Source> src) const;
170
171         framepos_t find_next_transient (framepos_t position, int dir);
172
173         void foreach_region (boost::function<void (boost::shared_ptr<Region>)>);
174
175         XMLNode& get_state ();
176         virtual int set_state (const XMLNode&, int version);
177         XMLNode& get_template ();
178
179         PBD::Signal1<void,bool> InUse;
180         PBD::Signal0<void>      ContentsChanged;
181         PBD::Signal1<void,boost::weak_ptr<Region> > RegionAdded;
182         PBD::Signal1<void,boost::weak_ptr<Region> > RegionRemoved;
183         PBD::Signal0<void>      NameChanged;
184         PBD::Signal0<void>      LayeringChanged;
185
186         /** Emitted when regions have moved (not when regions have only been trimmed) */
187         PBD::Signal2<void,std::list< Evoral::RangeMove<framepos_t> > const &, bool> RangesMoved;
188
189         /** Emitted when regions are extended; the ranges passed are the new extra time ranges
190             that these regions now occupy.
191         */
192         PBD::Signal1<void,std::list< Evoral::Range<framepos_t> > const &> RegionsExtended;
193
194         static std::string bump_name (std::string old_name, Session&);
195
196         void freeze ();
197         void thaw (bool from_undo = false);
198
199         void raise_region (boost::shared_ptr<Region>);
200         void lower_region (boost::shared_ptr<Region>);
201         void raise_region_to_top (boost::shared_ptr<Region>);
202         void lower_region_to_bottom (boost::shared_ptr<Region>);
203
204         const PBD::ID& get_orig_track_id () const { return _orig_track_id; }
205         void set_orig_track_id (const PBD::ID& did);
206
207         /* destructive editing */
208
209         virtual bool destroy_region (boost::shared_ptr<Region>) = 0;
210
211         void sync_all_regions_with_regions ();
212
213         /* special case function used by UI selection objects, which have playlists that actually own the regions
214            within them.
215         */
216
217         void drop_regions ();
218
219         virtual boost::shared_ptr<Crossfade> find_crossfade (const PBD::ID &) const {
220                 return boost::shared_ptr<Crossfade> ();
221         }
222
223         framepos_t find_next_top_layer_position (framepos_t) const;
224         uint32_t combine_ops() const { return _combine_ops; }
225
226         void set_layer (boost::shared_ptr<Region>, double);
227
228         void set_capture_insertion_in_progress (bool yn);
229         
230   protected:
231         friend class Session;
232
233   protected:
234     class RegionReadLock : public Glib::Threads::RWLock::ReaderLock {
235     public:
236         RegionReadLock (Playlist *pl) : Glib::Threads::RWLock::ReaderLock (pl->region_lock) {}
237         ~RegionReadLock() {}
238     };
239
240     class RegionWriteLock : public Glib::Threads::RWLock::WriterLock {
241     public:
242             RegionWriteLock (Playlist *pl, bool do_block_notify = true) 
243                     : Glib::Threads::RWLock::WriterLock (pl->region_lock)
244                     , playlist (pl)
245                     , block_notify (do_block_notify) {
246                     if (block_notify) {
247                             playlist->delay_notifications();
248                     }
249             }
250
251         ~RegionWriteLock() {
252                 Glib::Threads::RWLock::WriterLock::release ();
253                 if (block_notify) {
254                         playlist->release_notifications ();
255                 }
256         }
257         Playlist *playlist;
258         bool block_notify;
259     };
260
261         RegionListProperty   regions;  /* the current list of regions in the playlist */
262         std::set<boost::shared_ptr<Region> > all_regions; /* all regions ever added to this playlist */
263         PBD::ScopedConnectionList region_state_changed_connections;
264         DataType        _type;
265         int             _sort_id;
266         mutable gint    block_notifications;
267         mutable gint    ignore_state_changes;
268         std::set<boost::shared_ptr<Region> > pending_adds;
269         std::set<boost::shared_ptr<Region> > pending_removes;
270         RegionList       pending_bounds;
271         bool             pending_contents_change;
272         bool             pending_layering;
273
274         /** Movements of time ranges caused by region moves; note that
275          *  region trims are not included in this list; it is used to
276          *  do automation-follows-regions.
277          */
278         std::list< Evoral::RangeMove<framepos_t> > pending_range_moves;
279         /** Extra sections added to regions during trims */
280         std::list< Evoral::Range<framepos_t> >     pending_region_extensions;
281         uint32_t         in_set_state;
282         bool             in_undo;
283         bool             first_set_state;
284         bool            _hidden;
285         bool            _splicing;
286         bool            _shuffling;
287         bool            _nudging;
288         uint32_t        _refcnt;
289         EditMode        _edit_mode;
290         bool             in_flush;
291         bool             in_partition;
292         bool            _frozen;
293         bool            _capture_insertion_underway;
294         uint32_t         subcnt;
295         PBD::ID         _orig_track_id;
296         uint32_t        _combine_ops;
297
298         void init (bool hide);
299
300         bool holding_state () const {
301                 return g_atomic_int_get (&block_notifications) != 0 ||
302                         g_atomic_int_get (&ignore_state_changes) != 0;
303         }
304
305         void delay_notifications ();
306         void release_notifications (bool from_undo = false);
307         virtual void flush_notifications (bool from_undo = false);
308         void clear_pending ();
309
310         void _set_sort_id ();
311
312         boost::shared_ptr<RegionList> regions_touched_locked (framepos_t start, framepos_t end);
313
314         void notify_region_removed (boost::shared_ptr<Region>);
315         void notify_region_added (boost::shared_ptr<Region>);
316         void notify_layering_changed ();
317         void notify_contents_changed ();
318         void notify_state_changed (const PBD::PropertyChange&);
319         void notify_region_moved (boost::shared_ptr<Region>);
320         void notify_region_start_trimmed (boost::shared_ptr<Region>);
321         void notify_region_end_trimmed (boost::shared_ptr<Region>);
322
323         void mark_session_dirty();
324
325         void region_changed_proxy (const PBD::PropertyChange&, boost::weak_ptr<Region>);
326         virtual bool region_changed (const PBD::PropertyChange&, boost::shared_ptr<Region>);
327
328         void region_bounds_changed (const PBD::PropertyChange&, boost::shared_ptr<Region>);
329         void region_deleted (boost::shared_ptr<Region>);
330
331         void sort_regions ();
332
333         void possibly_splice (framepos_t at, framecnt_t distance, boost::shared_ptr<Region> exclude = boost::shared_ptr<Region>());
334         void possibly_splice_unlocked(framepos_t at, framecnt_t distance, boost::shared_ptr<Region> exclude = boost::shared_ptr<Region>());
335
336         void core_splice (framepos_t at, framecnt_t distance, boost::shared_ptr<Region> exclude);
337         void splice_locked (framepos_t at, framecnt_t distance, boost::shared_ptr<Region> exclude);
338         void splice_unlocked (framepos_t at, framecnt_t distance, boost::shared_ptr<Region> exclude);
339
340         virtual void remove_dependents (boost::shared_ptr<Region> /*region*/) {}
341
342         virtual XMLNode& state (bool);
343
344         bool add_region_internal (boost::shared_ptr<Region>, framepos_t position);
345
346         int remove_region_internal (boost::shared_ptr<Region>);
347         void copy_regions (RegionList&) const;
348         void partition_internal (framepos_t start, framepos_t end, bool cutting, RegionList& thawlist);
349
350         std::pair<framepos_t, framepos_t> _get_extent() const;
351
352         boost::shared_ptr<Playlist> cut_copy (boost::shared_ptr<Playlist> (Playlist::*pmf)(framepos_t, framecnt_t, bool),
353                                               std::list<AudioRange>& ranges, bool result_is_hidden);
354         boost::shared_ptr<Playlist> cut (framepos_t start, framecnt_t cnt, bool result_is_hidden);
355         boost::shared_ptr<Playlist> copy (framepos_t start, framecnt_t cnt, bool result_is_hidden);
356
357         void relayer ();
358
359         void begin_undo ();
360         void end_undo ();
361
362         void _split_region (boost::shared_ptr<Region>, framepos_t position);
363
364         typedef std::pair<boost::shared_ptr<Region>, boost::shared_ptr<Region> > TwoRegions;
365
366         /* this is called before we create a new compound region */
367         virtual void pre_combine (std::vector<boost::shared_ptr<Region> >&) {}
368         /* this is called before we create a new compound region */
369         virtual void post_combine (std::vector<boost::shared_ptr<Region> >&, boost::shared_ptr<Region>) {}
370         /* this is called before we remove a compound region and replace it
371            with its constituent regions
372         */
373         virtual void pre_uncombine (std::vector<boost::shared_ptr<Region> >&, boost::shared_ptr<Region>) {}
374
375   private:
376         friend class RegionReadLock;
377         friend class RegionWriteLock;
378         mutable Glib::Threads::RWLock region_lock;
379
380   private:
381         void setup_layering_indices (RegionList const &);
382         void coalesce_and_check_crossfades (std::list<Evoral::Range<framepos_t> >);
383         boost::shared_ptr<RegionList> find_regions_at (framepos_t);
384 };
385
386 } /* namespace ARDOUR */
387
388 #endif  /* __ardour_playlist_h__ */
389
390