/* Copyright (C) 2000 Paul Davis This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __ardour_playlist_h__ #define __ardour_playlist_h__ #include #include #include #include #include #include #include #include #include #include "pbd/undo.h" #include "pbd/stateful.h" #include "pbd/statefuldestructible.h" #include "evoral/types.hpp" #include "ardour/ardour.h" #include "ardour/session_object.h" #include "ardour/crossfade_compare.h" #include "ardour/location.h" #include "ardour/data_type.h" namespace ARDOUR { class Session; class Region; class Playlist : public SessionObject , public boost::enable_shared_from_this { public: typedef std::list > RegionList; Playlist (Session&, const XMLNode&, DataType type, bool hidden = false); Playlist (Session&, std::string name, DataType type, bool hidden = false); Playlist (boost::shared_ptr, std::string name, bool hidden = false); Playlist (boost::shared_ptr, nframes_t start, nframes_t cnt, std::string name, bool hidden = false); virtual ~Playlist (); void set_region_ownership (); virtual void clear (bool with_signals=true); virtual void dump () const; void use(); void release(); bool used () const { return _refcnt != 0; } bool set_name (const std::string& str); const DataType& data_type() const { return _type; } bool frozen() const { return _frozen; } void set_frozen (bool yn); bool hidden() const { return _hidden; } bool empty() const; uint32_t n_regions() const; nframes_t get_maximum_extent () const; layer_t top_layer() const; EditMode get_edit_mode() const { return _edit_mode; } void set_edit_mode (EditMode); /* Editing operations */ void add_region (boost::shared_ptr, nframes_t position, float times = 1, bool auto_partition = false); void remove_region (boost::shared_ptr); void get_equivalent_regions (boost::shared_ptr, std::vector >&); void get_region_list_equivalent_regions (boost::shared_ptr, std::vector >&); void replace_region (boost::shared_ptr old, boost::shared_ptr newr, nframes_t pos); void split_region (boost::shared_ptr, nframes_t position); void split (nframes64_t at); void shift (nframes64_t at, nframes64_t distance, bool move_intersected, bool ignore_music_glue); void partition (nframes_t start, nframes_t end, bool cut = false); void duplicate (boost::shared_ptr, nframes_t position, float times); void nudge_after (nframes_t start, nframes_t distance, bool forwards); void shuffle (boost::shared_ptr, int dir); void update_after_tempo_map_change (); boost::shared_ptr cut (std::list&, bool result_is_hidden = true); boost::shared_ptr copy (std::list&, bool result_is_hidden = true); int paste (boost::shared_ptr, nframes_t position, float times); const RegionList& region_list () const { return regions; } RegionList* regions_at (nframes_t frame); RegionList* regions_touched (nframes_t start, nframes_t end); RegionList* regions_to_read (nframes_t start, nframes_t end); boost::shared_ptr find_region (const PBD::ID&) const; boost::shared_ptr top_region_at (nframes_t frame); boost::shared_ptr top_unmuted_region_at (nframes_t frame); boost::shared_ptr find_next_region (nframes_t frame, RegionPoint point, int dir); nframes64_t find_next_region_boundary (nframes64_t frame, int dir); bool region_is_shuffle_constrained (boost::shared_ptr); bool has_region_at (nframes64_t const) const; nframes64_t find_next_transient (nframes64_t position, int dir); void foreach_region (boost::function)>); XMLNode& get_state (); int set_state (const XMLNode&, int version); XMLNode& get_template (); PBD::Signal1 InUse; PBD::Signal0 ContentsChanged; PBD::Signal1 > RegionAdded; PBD::Signal1 > RegionRemoved; PBD::Signal0 NameChanged; PBD::Signal0 LengthChanged; PBD::Signal0 LayeringChanged; PBD::Signal1 > const &> RangesMoved; static std::string bump_name (std::string old_name, Session&); void freeze (); void thaw (); void raise_region (boost::shared_ptr); void lower_region (boost::shared_ptr); void raise_region_to_top (boost::shared_ptr); void lower_region_to_bottom (boost::shared_ptr); uint32_t read_data_count() const { return _read_data_count; } const PBD::ID& get_orig_diskstream_id () const { return _orig_diskstream_id; } void set_orig_diskstream_id (const PBD::ID& did) { _orig_diskstream_id = did; } /* destructive editing */ virtual bool destroy_region (boost::shared_ptr) = 0; /* special case function used by UI selection objects, which have playlists that actually own the regions within them. */ void drop_regions (); bool explicit_relayering () const { return _explicit_relayering; } void set_explicit_relayering (bool e); protected: friend class Session; protected: struct RegionLock { RegionLock (Playlist *pl, bool do_block_notify = true) : playlist (pl), block_notify (do_block_notify) { playlist->region_lock.lock(); if (block_notify) { playlist->delay_notifications(); } } ~RegionLock() { playlist->region_lock.unlock(); if (block_notify) { playlist->release_notifications (); } } Playlist *playlist; bool block_notify; }; friend class RegionLock; RegionList regions; /* the current list of regions in the playlist */ std::set > all_regions; /* all regions ever added to this playlist */ PBD::ScopedConnectionList region_state_changed_connections; DataType _type; mutable gint block_notifications; mutable gint ignore_state_changes; mutable Glib::RecMutex region_lock; std::set > pending_adds; std::set > pending_removes; RegionList pending_bounds; bool pending_contents_change; bool pending_layering; bool pending_length; std::list< Evoral::RangeMove > pending_range_moves; bool save_on_thaw; std::string last_save_reason; uint32_t in_set_state; bool first_set_state; bool _hidden; bool _splicing; bool _shuffling; bool _nudging; uint32_t _refcnt; EditMode _edit_mode; bool in_flush; bool in_partition; bool _frozen; uint32_t subcnt; uint32_t _read_data_count; PBD::ID _orig_diskstream_id; uint64_t layer_op_counter; nframes_t freeze_length; bool auto_partition; /** true if relayering should be done using region's current layers and their `pending explicit relayer' * flags; otherwise false if relayering should be done using the layer-model (most recently moved etc.) * Explicit relayering is used by tracks in stacked regionview mode. */ bool _explicit_relayering; void init (bool hide); bool holding_state () const { return g_atomic_int_get (&block_notifications) != 0 || g_atomic_int_get (&ignore_state_changes) != 0; } void delay_notifications (); void release_notifications (); virtual void flush_notifications (); void clear_pending (); void notify_region_removed (boost::shared_ptr); void notify_region_added (boost::shared_ptr); void notify_length_changed (); void notify_layering_changed (); void notify_contents_changed (); void notify_state_changed (PBD::Change); void notify_region_moved (boost::shared_ptr); void mark_session_dirty(); void region_changed_proxy (PBD::Change, boost::weak_ptr); virtual bool region_changed (PBD::Change, boost::shared_ptr); void region_bounds_changed (PBD::Change, boost::shared_ptr); void region_deleted (boost::shared_ptr); void sort_regions (); void possibly_splice (nframes_t at, nframes64_t distance, boost::shared_ptr exclude = boost::shared_ptr()); void possibly_splice_unlocked(nframes_t at, nframes64_t distance, boost::shared_ptr exclude = boost::shared_ptr()); void core_splice (nframes_t at, nframes64_t distance, boost::shared_ptr exclude); void splice_locked (nframes_t at, nframes64_t distance, boost::shared_ptr exclude); void splice_unlocked (nframes_t at, nframes64_t distance, boost::shared_ptr exclude); virtual void finalize_split_region (boost::shared_ptr /*original*/, boost::shared_ptr /*left*/, boost::shared_ptr /*right*/) {} virtual void check_dependents (boost::shared_ptr /*region*/, bool /*norefresh*/) {} virtual void refresh_dependents (boost::shared_ptr /*region*/) {} virtual void remove_dependents (boost::shared_ptr /*region*/) {} virtual XMLNode& state (bool); boost::shared_ptr region_by_id (PBD::ID); bool add_region_internal (boost::shared_ptr, nframes_t position); int remove_region_internal (boost::shared_ptr); RegionList *find_regions_at (nframes_t frame); void copy_regions (RegionList&) const; void partition_internal (nframes_t start, nframes_t end, bool cutting, RegionList& thawlist); nframes_t _get_maximum_extent() const; boost::shared_ptr cut_copy (boost::shared_ptr (Playlist::*pmf)(nframes_t, nframes_t, bool), std::list& ranges, bool result_is_hidden); boost::shared_ptr cut (nframes_t start, nframes_t cnt, bool result_is_hidden); boost::shared_ptr copy (nframes_t start, nframes_t cnt, bool result_is_hidden); int move_region_to_layer (layer_t, boost::shared_ptr r, int dir); void relayer (); void unset_freeze_parent (Playlist*); void unset_freeze_child (Playlist*); void timestamp_layer_op (boost::shared_ptr); void _split_region (boost::shared_ptr, nframes_t position); }; } /* namespace ARDOUR */ #endif /* __ardour_playlist_h__ */