Fix crash on relayering.
[ardour.git] / libs / ardour / midi_playlist.cc
index 051203e55efe84dcbccb9b1e6afa443683981067..8f8b882d1e99de56a4b964c47d9be3a8f898b008 100644 (file)
 
 #include <sigc++/bind.h>
 
-#include <ardour/types.h>
-#include <ardour/configuration.h>
-#include <ardour/midi_playlist.h>
-#include <ardour/midi_region.h>
-#include <ardour/session.h>
-#include <ardour/midi_ring_buffer.h>
+#include "ardour/types.h"
+#include "ardour/configuration.h"
+#include "ardour/midi_playlist.h"
+#include "ardour/midi_region.h"
+#include "ardour/session.h"
+#include "ardour/midi_ring_buffer.h"
 
-#include <pbd/error.h>
+#include "pbd/error.h"
 
 #include "i18n.h"
 
@@ -40,42 +40,27 @@ using namespace ARDOUR;
 using namespace sigc;
 using namespace std;
 
-MidiPlaylist::State::~State ()
-{}
-
 MidiPlaylist::MidiPlaylist (Session& session, const XMLNode& node, bool hidden)
                : Playlist (session, node, DataType::MIDI, hidden)
+               , _note_mode(Sustained)
 {
        const XMLProperty* prop = node.property("type");
        assert(prop && DataType(prop->value()) == DataType::MIDI);
 
-       in_set_state = true;
+       in_set_state++;
        set_state (node);
-       in_set_state = false;
-
-       save_state (_("initial state"));
-
-       if (!hidden) {
-               PlaylistCreated (this); /* EMIT SIGNAL */
-       }
+       in_set_state--;
 }
 
 MidiPlaylist::MidiPlaylist (Session& session, string name, bool hidden)
                : Playlist (session, name, DataType::MIDI, hidden)
 {
-       save_state (_("initial state"));
-
-       if (!hidden) {
-               PlaylistCreated (this); /* EMIT SIGNAL */
-       }
-
 }
 
-MidiPlaylist::MidiPlaylist (const MidiPlaylist& other, string name, bool hidden)
+MidiPlaylist::MidiPlaylist (boost::shared_ptr<const MidiPlaylist> other, string name, bool hidden)
                : Playlist (other, name, hidden)
 {
        throw; // nope
-       save_state (_("initial state"));
 
        /*
        list<Region*>::const_iterator in_o  = other.regions.begin();
@@ -114,349 +99,111 @@ MidiPlaylist::MidiPlaylist (const MidiPlaylist& other, string name, bool hidden)
                in_n++;
        }
 */
-       if (!hidden) {
-               PlaylistCreated (this); /* EMIT SIGNAL */
-       }
 }
 
-MidiPlaylist::MidiPlaylist (const MidiPlaylist& other, jack_nframes_t start, jack_nframes_t dur, string name, bool hidden)
+MidiPlaylist::MidiPlaylist (boost::shared_ptr<const MidiPlaylist> other, nframes_t start, nframes_t dur, string name, bool hidden)
                : Playlist (other, start, dur, name, hidden)
 {
-       save_state (_("initial state"));
-
        /* this constructor does NOT notify others (session) */
 }
 
 MidiPlaylist::~MidiPlaylist ()
 {
-       set <Region*> all_regions;
-
-       GoingAway (this);
-
-       /* find every region we've ever used, and add it to the set of
-          all regions.
-       */
-
-       for (RegionList::iterator x = regions.begin(); x != regions.end(); ++x) {
-               all_regions.insert (*x);
-       }
-
-       for (StateMap::iterator i = states.begin(); i != states.end(); ++i) {
-
-               MidiPlaylist::State* apstate = dynamic_cast<MidiPlaylist::State*> (*i);
-
-               for (RegionList::iterator r = apstate->regions.begin(); r != apstate->regions.end(); ++r) {
-                       all_regions.insert (*r);
-               }
-
-               delete apstate;
-       }
-
-       /* delete every region */
-
-       for (set<Region *>::iterator ar = all_regions.begin(); ar != all_regions.end(); ++ar) {
-               (*ar)->unlock_sources ();
-               delete *ar;
-       }
-
+       GoingAway (); /* EMIT SIGNAL */
+       
+       /* drop connections to signals */
+       
+       notify_callbacks ();
 }
 
-struct RegionSortByLayer
-{
-       bool operator() (Region *a, Region *b)
-       {
-               return a->layer() < b->layer();
-       }
+struct RegionSortByLayer {
+    bool operator() (boost::shared_ptr<Region> a, boost::shared_ptr<Region> b) {
+           return a->layer() < b->layer();
+    }
 };
 
 /** Returns the number of frames in time duration read (eg could be large when 0 events are read) */
-jack_nframes_t
-MidiPlaylist::read (MidiRingBuffer& dst, jack_nframes_t start,
-                     jack_nframes_t dur, unsigned chan_n)
+nframes_t
+MidiPlaylist::read (MidiRingBuffer<nframes_t>& dst, nframes_t start, nframes_t dur, unsigned chan_n)
 {
        /* this function is never called from a realtime thread, so
           its OK to block (for short intervals).
        */
 
-       Glib::Mutex::Lock rm (region_lock);
+       Glib::RecMutex::Lock rm (region_lock);
 
-       jack_nframes_t ret         = 0;
-       jack_nframes_t end         = start + dur - 1;
-       //jack_nframes_t read_frames = 0;
-       //jack_nframes_t skip_frames = 0;
+       nframes_t end = start + dur - 1;
 
-       //_read_data_count = 0;
+       _read_data_count = 0;
 
-       vector<MidiRegion*> regs; // relevent regions overlapping start <--> end
+       // relevent regions overlapping start <--> end
+       vector<boost::shared_ptr<Region> > regs;
 
        for (RegionList::iterator i = regions.begin(); i != regions.end(); ++i) {
-               MidiRegion* const mr = dynamic_cast<MidiRegion*>(*i);
-               if (mr && mr->coverage (start, end) != OverlapNone) {
-                       regs.push_back(mr);
+               if ((*i)->coverage (start, end) != OverlapNone) {
+                       regs.push_back(*i);
                }
        }
 
        RegionSortByLayer layer_cmp;
        sort(regs.begin(), regs.end(), layer_cmp);
 
-       for (vector<MidiRegion*>::iterator i = regs.begin(); i != regs.end(); ++i) {
-               // FIXME: ensure time is monotonic here
-               (*i)->read_at (dst, start, dur, chan_n, 0, 0);// FIXME read_frames, skip_frames);
-               ret += (*i)->read_data_count();
+       for (vector<boost::shared_ptr<Region> >::iterator i = regs.begin(); i != regs.end(); ++i) {
+               boost::shared_ptr<MidiRegion> mr = boost::dynamic_pointer_cast<MidiRegion>(*i);
+               if (mr) {
+                       mr->read_at (dst, start, dur, chan_n, _note_mode);
+                       _read_data_count += mr->read_data_count();
+               }
        }
 
-       _read_data_count += ret;
-       
-       //return ret; FIXME?
        return dur;
 }
 
 
 void
-MidiPlaylist::remove_dependents (Region& region)
+MidiPlaylist::remove_dependents (boost::shared_ptr<Region> /*region*/)
 {
-       MidiRegion* r = dynamic_cast<MidiRegion*> (&region);
-
-       if (r == 0) {
-               PBD::fatal << _("programming error: non-midi Region passed to remove_overlap in midi playlist")
-               << endmsg;
-               return;
-       }
-
+       /* MIDI regions have no dependents (crossfades) */
 }
 
 
 void
-MidiPlaylist::flush_notifications ()
+MidiPlaylist::refresh_dependents (boost::shared_ptr<Region> /*r*/)
 {
-       Playlist::flush_notifications();
-
-       if (in_flush) {
-               return;
-       }
-
-       in_flush = true;
-
-       in_flush = false;
+       /* MIDI regions have no dependents (crossfades) */
 }
 
 void
-MidiPlaylist::refresh_dependents (Region& r)
+MidiPlaylist::finalize_split_region (boost::shared_ptr<Region> /*original*/, boost::shared_ptr<Region> /*left*/, boost::shared_ptr<Region> /*right*/)
 {
-       MidiRegion* ar = dynamic_cast<MidiRegion*>(&r);
-
-       if (ar == 0) {
-               return;
-       }
+       /* No MIDI crossfading (yet?), so nothing to do here */
 }
 
 void
-MidiPlaylist::finalize_split_region (Region *o, Region *l, Region *r)
+MidiPlaylist::check_dependents (boost::shared_ptr<Region> /*r*/, bool /*norefresh*/)
 {
-       throw; // I don't wanna
-       /*
-       MidiRegion *orig  = dynamic_cast<MidiRegion*>(o);
-       MidiRegion *left  = dynamic_cast<MidiRegion*>(l);
-       MidiRegion *right = dynamic_cast<MidiRegion*>(r);
-
-       for (Crossfades::iterator x = _crossfades.begin(); x != _crossfades.end();) {
-               Crossfades::iterator tmp;
-               tmp = x;
-               ++tmp;
-
-               Crossfade *fade = 0;
-
-               if ((*x)->_in == orig) {
-                       if (! (*x)->covers(right->position())) {
-                               fade = new Crossfade( *(*x), left, (*x)->_out);
-                       } else {
-                               // Overlap, the crossfade is copied on the left side of the right region instead
-                               fade = new Crossfade( *(*x), right, (*x)->_out);
-                       }
-               }
-
-               if ((*x)->_out == orig) {
-                       if (! (*x)->covers(right->position())) {
-                               fade = new Crossfade( *(*x), (*x)->_in, right);
-                       } else {
-                               // Overlap, the crossfade is copied on the right side of the left region instead
-                               fade = new Crossfade( *(*x), (*x)->_in, left);
-                       }
-               }
-
-               if (fade) {
-                       _crossfades.remove( (*x) );
-                       add_crossfade (*fade);
-               }
-               x = tmp;
-       }*/
-}
-
-void
-MidiPlaylist::check_dependents (Region& r, bool norefresh)
-{
-       MidiRegion* other;
-       MidiRegion* region;
-       MidiRegion* top;
-       MidiRegion* bottom;
-
-       if (in_set_state || in_partition) {
-               return;
-       }
-
-       if ((region = dynamic_cast<MidiRegion*> (&r)) == 0) {
-               PBD::fatal << _("programming error: non-midi Region tested for overlap in midi playlist")
-               << endmsg;
-               return;
-       }
-
-       if (!norefresh) {
-               refresh_dependents (r);
-       }
-
-       for (RegionList::iterator i = regions.begin(); i != regions.end(); ++i) {
-
-               other = dynamic_cast<MidiRegion*> (*i);
-
-               if (other == region) {
-                       continue;
-               }
-
-               if (other->muted() || region->muted()) {
-                       continue;
-               }
-
-               if (other->layer() < region->layer()) {
-                       top = region;
-                       bottom = other;
-               } else {
-                       top = other;
-                       bottom = region;
-               }
-
-       }
+       /* MIDI regions have no dependents (crossfades) */
 }
 
 
 int
 MidiPlaylist::set_state (const XMLNode& node)
 {
-       if (!in_set_state) {
-               Playlist::set_state (node);
-       }
+       in_set_state++;
+       freeze ();
 
-       // Actually Charles, I don't much care for children
-       
-       /*
-       XMLNodeList nlist = node.children();
-
-       for (XMLNodeConstIterator niter = nlist.begin(); niter != nlist.end(); ++niter) {
+       Playlist::set_state (node);
 
-               XMLNode* const child = *niter;
-
-       }*/
+       thaw();
+       in_set_state--;
 
        return 0;
 }
 
-void
-MidiPlaylist::drop_all_states ()
-{
-       set<Region*> all_regions;
-
-       /* find every region we've ever used, and add it to the set of
-          all regions. same for xfades;
-       */
-
-       for (StateMap::iterator i = states.begin(); i != states.end(); ++i) {
-
-               MidiPlaylist::State* apstate = dynamic_cast<MidiPlaylist::State*> (*i);
-
-               for (RegionList::iterator r = apstate->regions.begin(); r != apstate->regions.end(); ++r) {
-                       all_regions.insert (*r);
-               }
-       }
-
-       /* now remove from the "all" lists every region that is in the current list. */
-
-       for (list<Region*>::iterator i = regions.begin(); i != regions.end(); ++i) {
-               set
-                       <Region*>::iterator x = all_regions.find (*i);
-               if (x != all_regions.end()) {
-                       all_regions.erase (x);
-               }
-       }
-
-       /* delete every region that is left - these are all things that are part of our "history" */
-
-       for (set<Region *>::iterator ar = all_regions.begin(); ar != all_regions.end(); ++ar) {
-               (*ar)->unlock_sources ();
-               delete *ar;
-       }
-
-       /* Now do the generic thing ... */
-
-       StateManager::drop_all_states ();
-}
-
-StateManager::State*
-MidiPlaylist::state_factory (std::string why) const
-{
-       State* state = new State (why);
-
-       state->regions = regions;
-       state->region_states.clear ();
-       for (RegionList::const_iterator i = regions.begin(); i != regions.end(); ++i) {
-               state->region_states.push_back ((*i)->get_memento());
-       }
-
-       return state;
-}
-
-Change
-MidiPlaylist::restore_state (StateManager::State& state)
-{
-       {
-               RegionLock rlock (this);
-               State* apstate = dynamic_cast<State*> (&state);
-
-               in_set_state = true;
-
-               regions = apstate->regions;
-
-               for (list<UndoAction>::iterator s = apstate->
-                                                   region_states.begin();
-                       s != apstate->region_states.end();
-                       ++s) {
-                       (*s) ();
-               }
-
-               in_set_state = false;
-       }
-
-       notify_length_changed ();
-       return Change (~0);
-}
-
-UndoAction
-MidiPlaylist::get_memento () const
-{
-       return sigc::bind (mem_fun (*(const_cast<MidiPlaylist*> (this)), &StateManager::use_state), _current_state_id);
-}
-
-
-XMLNode&
-MidiPlaylist::state (bool full_state)
-{
-       XMLNode& node = Playlist::state (full_state);
-
-       return node;
-}
-
 void
 MidiPlaylist::dump () const
 {
-       Region *r;
+       boost::shared_ptr<Region> r;
 
        cerr << "Playlist \"" << _name << "\" " << endl
        << regions.size() << " regions "
@@ -475,9 +222,9 @@ MidiPlaylist::dump () const
 }
 
 bool
-MidiPlaylist::destroy_region (Region* region)
+MidiPlaylist::destroy_region (boost::shared_ptr<Region> region)
 {
-       MidiRegion* r = dynamic_cast<MidiRegion*> (region);
+       boost::shared_ptr<MidiRegion> r = boost::dynamic_pointer_cast<MidiRegion> (region);
        bool changed = false;
 
        if (r == 0) {
@@ -498,7 +245,6 @@ MidiPlaylist::destroy_region (Region* region)
                        ++tmp;
 
                        if ((*i) == region) {
-                               (*i)->unlock_sources ();
                                regions.erase (i);
                                changed = true;
                        }
@@ -507,39 +253,6 @@ MidiPlaylist::destroy_region (Region* region)
                }
        }
 
-       for (StateMap::iterator s = states.begin(); s != states.end(); ) {
-               StateMap::iterator tmp;
-
-               tmp = s;
-               ++tmp;
-
-               State* astate = dynamic_cast<State*> (*s);
-
-               list<UndoAction>::iterator rsi, rsitmp;
-               RegionList::iterator ri, ritmp;
-
-               for (ri = astate->regions.begin(), rsi = astate->region_states.begin();
-                       ri != astate->regions.end() && rsi != astate->region_states.end();) {
-
-
-                       ritmp = ri;
-                       ++ritmp;
-
-                       rsitmp = rsi;
-                       ++rsitmp;
-
-                       if (region == (*ri)) {
-                               astate->regions.erase (ri);
-                               astate->region_states.erase (rsi);
-                       }
-
-                       ri = ritmp;
-                       rsi = rsitmp;
-               }
-
-               s = tmp;
-       }
-
 
        if (changed) {
                /* overload this, it normally means "removed", not destroyed */
@@ -549,41 +262,32 @@ MidiPlaylist::destroy_region (Region* region)
        return changed;
 }
 
-
-void
-MidiPlaylist::get_equivalent_regions (const MidiRegion& other, vector<MidiRegion*>& results)
+set<Evoral::Parameter>
+MidiPlaylist::contained_automation()
 {
-       for (RegionList::iterator i = regions.begin(); i != regions.end(); ++i) {
+       /* this function is never called from a realtime thread, so
+          its OK to block (for short intervals).
+       */
 
-               MidiRegion* ar = dynamic_cast<MidiRegion*> (*i);
+       Glib::RecMutex::Lock rm (region_lock);
 
-               if (ar) {
-                       if (Config->get_use_overlap_equivalency()) {
-                               if (ar->overlap_equivalent (other)) {
-                                       results.push_back (ar);
-                               } else if (ar->equivalent (other)) {
-                                       results.push_back (ar);
-                               }
-                       }
-               }
-       }
-}
+       set<Evoral::Parameter> ret;
 
-void
-MidiPlaylist::get_region_list_equivalent_regions (const MidiRegion& other, vector<MidiRegion*>& results)
-{
-       for (RegionList::iterator i = regions.begin(); i != regions.end(); ++i) {
+       for (RegionList::const_iterator r = regions.begin(); r != regions.end(); ++r) {
+               boost::shared_ptr<MidiRegion> mr = boost::dynamic_pointer_cast<MidiRegion>(*r);
 
-               MidiRegion* ar = dynamic_cast<MidiRegion*> (*i);
-
-               if (ar && ar->region_list_equivalent (other)) {
-                       results.push_back (ar);
+               for (Automatable::Controls::iterator c = mr->model()->controls().begin();
+                               c != mr->model()->controls().end(); ++c) {
+                       ret.insert(c->first);
                }
        }
+
+       return ret;
 }
 
+
 bool
-MidiPlaylist::region_changed (Change what_changed, Region* region)
+MidiPlaylist::region_changed (Change what_changed, boost::shared_ptr<Region> region)
 {
        if (in_flush || in_set_state) {
                return false;
@@ -602,8 +306,6 @@ MidiPlaylist::region_changed (Change what_changed, Region* region)
 
        parent_wants_notify = Playlist::region_changed (what_changed, region);
 
-       maybe_save_state (_("region modified"));
-
        if ((parent_wants_notify || (what_changed & our_interests))) {
                notify_modified ();
        }