continue with MTC debugging
[ardour.git] / libs / ardour / session_command.cc
index 8c64f9764a1e109385e8677da4ad504bcb5c0932..d5de62b14260fc11e535468f964ea9e8728f3cb6 100644 (file)
@@ -1,17 +1,41 @@
-#include <ardour/session.h>
-#include <ardour/route.h>
-#include <pbd/memento_command.h>
-#include <ardour/diskstream.h>
-#include <ardour/playlist.h>
-#include <ardour/audioplaylist.h>
-#include <ardour/audio_track.h>
-#include <ardour/tempo.h>
-#include <ardour/audiosource.h>
-#include <ardour/audioregion.h>
-#include <pbd/error.h>
-#include <pbd/id.h>
-#include <pbd/statefuldestructible.h>
-#include <pbd/failed_constructor.h>
+/*
+    Copyright (C) 2000-2007 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.
+
+*/
+
+#include "ardour/session.h"
+#include "ardour/route.h"
+#include "pbd/memento_command.h"
+#include "ardour/diskstream.h"
+#include "ardour/playlist.h"
+#include "ardour/audioplaylist.h"
+#include "ardour/audio_track.h"
+#include "ardour/midi_playlist.h"
+#include "ardour/midi_track.h"
+#include "ardour/tempo.h"
+#include "ardour/audiosource.h"
+#include "ardour/audioregion.h"
+#include "ardour/midi_source.h"
+#include "ardour/midi_region.h"
+#include "pbd/error.h"
+#include "pbd/id.h"
+#include "pbd/statefuldestructible.h"
+#include "pbd/failed_constructor.h"
+#include "evoral/Curve.hpp"
 
 using namespace PBD;
 using namespace ARDOUR;
@@ -22,7 +46,7 @@ void Session::register_with_memento_command_factory(PBD::ID id, PBD::StatefulThi
 {
     registry[id] = ptr;
 }
-    
+
 Command *
 Session::memento_command_factory(XMLNode *n)
 {
@@ -31,7 +55,7 @@ Session::memento_command_factory(XMLNode *n)
     XMLNode *child = 0;
 
     /* get id */
-    id = PBD::ID(n->property("obj_id")->value());
+    id = PBD::ID(n->property("obj-id")->value());
 
     /* get before/after */
 
@@ -50,42 +74,52 @@ Session::memento_command_factory(XMLNode *n)
            after = new XMLNode(*n->children().back());
            child = before;
     }
-                   
-    if (!child)
-    {
+
+    if (!child) {
        error << _("Tried to reconstitute a MementoCommand with no contents, failing. id=") << id.to_s() << endmsg;
        return 0;
     }
 
     /* create command */
-    string obj_T = n->property ("type_name")->value();
-    if (obj_T == typeid (AudioRegion).name() || obj_T == typeid (Region).name()) {
-           if (audio_regions.count(id))
-                   return new MementoCommand<AudioRegion>(*audio_regions[id], before, after);
-    } else if (obj_T == typeid (AudioSource).name()) {
-           if (audio_sources.count(id))
-                   return new MementoCommand<AudioSource>(*audio_sources[id], before, after);
+    string obj_T = n->property ("type-name")->value();
+    if (obj_T == typeid (AudioRegion).name() || obj_T == typeid (MidiRegion).name() || obj_T == typeid (Region).name()) {
+           if (regions.count(id)) {
+                   return new MementoCommand<Region>(*regions[id], before, after);
+           }
+    } else if (obj_T == typeid (AudioSource).name() || obj_T == typeid (MidiSource).name()) {
+           if (sources.count(id))
+                   return new MementoCommand<Source>(*sources[id], before, after);
     } else if (obj_T == typeid (Location).name()) {
-           return new MementoCommand<Location>(*_locations.get_location_by_id(id), before, after);
+           Location* loc = _locations.get_location_by_id(id);
+           if (loc) {
+                   return new MementoCommand<Location>(*loc, before, after);
+           }
     } else if (obj_T == typeid (Locations).name()) {
            return new MementoCommand<Locations>(_locations, before, after);
     } else if (obj_T == typeid (TempoMap).name()) {
            return new MementoCommand<TempoMap>(*_tempo_map, before, after);
-    } else if (obj_T == typeid (Playlist).name() || obj_T == typeid (AudioPlaylist).name()) {
+    } else if (obj_T == typeid (Playlist).name() || obj_T == typeid (AudioPlaylist).name() || obj_T == typeid (MidiPlaylist).name()) {
            if (boost::shared_ptr<Playlist> pl = playlist_by_name(child->property("name")->value())) {
                    return new MementoCommand<Playlist>(*(pl.get()), before, after);
            }
-    } else if (obj_T == typeid (Route).name() || obj_T == typeid (AudioTrack).name()) { 
-           return new MementoCommand<Route>(*route_by_id(id), before, after);
-    } else if (obj_T == typeid (Curve).name() || obj_T == typeid (AutomationList).name()) {
-           if (automation_lists.count(id))
-                   return new MementoCommand<AutomationList>(*automation_lists[id], before, after);
+    } else if (obj_T == typeid (Route).name() || obj_T == typeid (AudioTrack).name() || obj_T == typeid(MidiTrack).name()) {
+               if (boost::shared_ptr<Route> r = route_by_id(id)) {
+                       return new MementoCommand<Route>(*r, before, after);
+               } else {
+                       error << string_compose (X_("Route %1 not found in session"), id) << endmsg;
+               }
+    } else if (obj_T == typeid (Evoral::Curve).name() || obj_T == typeid (AutomationList).name()) {
+               std::map<PBD::ID, AutomationList*>::iterator i = automation_lists.find(id);
+               if (i != automation_lists.end()) {
+                   return new MementoCommand<AutomationList>(*i->second, before, after);
+               }
     } else if (registry.count(id)) { // For Editor and AutomationLine which are off-limits here
            return new MementoCommand<PBD::StatefulThingWithGoingAway>(*registry[id], before, after);
     }
 
     /* we failed */
     error << string_compose (_("could not reconstitute MementoCommand from XMLNode. object type = %1 id = %2"), obj_T, id.to_s()) << endmsg;
+
     return 0 ;
 }
 
@@ -99,7 +133,7 @@ Session::global_state_command_factory (const XMLNode& node)
                error << _("GlobalRouteStateCommand has no \"type\" node, ignoring") << endmsg;
                return 0;
        }
-       
+
        try {
 
                if (prop->value() == "solo") {
@@ -130,13 +164,13 @@ Session::GlobalRouteStateCommand::GlobalRouteStateCommand (Session& s, void* p)
 Session::GlobalRouteStateCommand::GlobalRouteStateCommand (Session& s, const XMLNode& node)
        : sess (s), src (this)
 {
-       if (set_state (node)) {
+       if (set_state (node, Stateful::loading_state_version)) {
                throw failed_constructor ();
        }
 }
 
 int
-Session::GlobalRouteStateCommand::set_state (const XMLNode& node)
+Session::GlobalRouteStateCommand::set_state (const XMLNode& node, int /*version*/)
 {
        GlobalRouteBooleanState states;
        XMLNodeList nlist;
@@ -147,7 +181,7 @@ Session::GlobalRouteStateCommand::set_state (const XMLNode& node)
 
        before.clear ();
        after.clear ();
-       
+
        for (loop = 0; loop < 2; ++loop) {
 
                const char *str;
@@ -157,7 +191,7 @@ Session::GlobalRouteStateCommand::set_state (const XMLNode& node)
                } else {
                        str = "before";
                }
-               
+
                if ((child = node.child (str)) == 0) {
                        warning << string_compose (_("global route state command has no \"%1\" node, ignoring entire command"), str) << endmsg;
                        return -1;
@@ -166,24 +200,24 @@ Session::GlobalRouteStateCommand::set_state (const XMLNode& node)
                nlist = child->children();
 
                for (niter = nlist.begin(); niter != nlist.end(); ++niter) {
-                       
+
                        RouteBooleanState rbs;
                        boost::shared_ptr<Route> route;
                        ID id;
-                       
+
                        prop = (*niter)->property ("id");
                        id = prop->value ();
-                       
+
                        if ((route = sess.route_by_id (id)) == 0) {
                                warning << string_compose (_("cannot find track/bus \"%1\" while rebuilding a global route state command, ignored"), id.to_s()) << endmsg;
                                continue;
                        }
-                       
+
                        rbs.first = boost::weak_ptr<Route> (route);
-                       
+
                        prop = (*niter)->property ("yn");
                        rbs.second = (prop->value() == "1");
-                       
+
                        if (loop) {
                                after.push_back (rbs);
                        } else {
@@ -243,19 +277,19 @@ Session::GlobalSoloStateCommand::GlobalSoloStateCommand (Session& sess, const XM
 {
 }
 
-void 
+void
 Session::GlobalSoloStateCommand::mark()
 {
     after = sess.get_global_route_boolean(&Route::soloed);
 }
 
-void 
+void
 Session::GlobalSoloStateCommand::operator()()
 {
     sess.set_global_solo(after, src);
 }
 
-void 
+void
 Session::GlobalSoloStateCommand::undo()
 {
     sess.set_global_solo(before, src);
@@ -281,19 +315,19 @@ Session::GlobalMuteStateCommand::GlobalMuteStateCommand (Session& sess, const XM
 {
 }
 
-void 
+void
 Session::GlobalMuteStateCommand::mark()
 {
        after = sess.get_global_route_boolean(&Route::muted);
 }
 
-void 
+void
 Session::GlobalMuteStateCommand::operator()()
 {
        sess.set_global_mute(after, src);
 }
 
-void 
+void
 Session::GlobalMuteStateCommand::undo()
 {
        sess.set_global_mute(before, src);
@@ -308,7 +342,7 @@ Session::GlobalMuteStateCommand::get_state()
 }
 
 // record enable
-Session::GlobalRecordEnableStateCommand::GlobalRecordEnableStateCommand(Session &sess, void *src) 
+Session::GlobalRecordEnableStateCommand::GlobalRecordEnableStateCommand(Session &sess, void *src)
        : GlobalRouteStateCommand (sess, src)
 {
        after = before = sess.get_global_route_boolean(&Route::record_enabled);
@@ -319,25 +353,25 @@ Session::GlobalRecordEnableStateCommand::GlobalRecordEnableStateCommand (Session
 {
 }
 
-void 
+void
 Session::GlobalRecordEnableStateCommand::mark()
 {
        after = sess.get_global_route_boolean(&Route::record_enabled);
 }
 
-void 
+void
 Session::GlobalRecordEnableStateCommand::operator()()
 {
        sess.set_global_record_enable(after, src);
 }
 
-void 
+void
 Session::GlobalRecordEnableStateCommand::undo()
 {
        sess.set_global_record_enable(before, src);
 }
 
-XMLNode& 
+XMLNode&
 Session::GlobalRecordEnableStateCommand::get_state()
 {
        XMLNode& node = GlobalRouteStateCommand::get_state();
@@ -346,7 +380,7 @@ Session::GlobalRecordEnableStateCommand::get_state()
 }
 
 // metering
-Session::GlobalMeteringStateCommand::GlobalMeteringStateCommand(Session &s, void *p) 
+Session::GlobalMeteringStateCommand::GlobalMeteringStateCommand(Session &s, void *p)
        : sess (s), src (p)
 {
        after = before = sess.get_global_route_metering();
@@ -355,24 +389,24 @@ Session::GlobalMeteringStateCommand::GlobalMeteringStateCommand(Session &s, void
 Session::GlobalMeteringStateCommand::GlobalMeteringStateCommand (Session& s, const XMLNode& node)
        : sess (s), src (this)
 {
-       if (set_state (node)) {
+       if (set_state (node, Stateful::loading_state_version)) {
                throw failed_constructor();
        }
 }
 
-void 
+void
 Session::GlobalMeteringStateCommand::mark()
 {
        after = sess.get_global_route_metering();
 }
 
-void 
+void
 Session::GlobalMeteringStateCommand::operator()()
 {
        sess.set_global_route_metering(after, src);
 }
 
-void 
+void
 Session::GlobalMeteringStateCommand::undo()
 {
        sess.set_global_route_metering(before, src);
@@ -392,8 +426,8 @@ Session::GlobalMeteringStateCommand::get_state()
                if (r) {
                        child->add_property (X_("id"), r->id().to_s());
 
-                       const char* meterstr;
-                       
+                       const char* meterstr = 0;
+
                        switch (x->second) {
                        case MeterInput:
                                meterstr = X_("input");
@@ -421,7 +455,7 @@ Session::GlobalMeteringStateCommand::get_state()
                        child->add_property (X_("id"), r->id().to_s());
 
                        const char* meterstr;
-                       
+
                        switch (x->second) {
                        case MeterInput:
                                meterstr = X_("input");
@@ -449,7 +483,7 @@ Session::GlobalMeteringStateCommand::get_state()
 }
 
 int
-Session::GlobalMeteringStateCommand::set_state (const XMLNode& node)
+Session::GlobalMeteringStateCommand::set_state (const XMLNode& node, int /*version*/)
 {
        GlobalRouteBooleanState states;
        XMLNodeList nlist;
@@ -460,7 +494,7 @@ Session::GlobalMeteringStateCommand::set_state (const XMLNode& node)
 
        before.clear ();
        after.clear ();
-       
+
        for (loop = 0; loop < 2; ++loop) {
 
                const char *str;
@@ -470,7 +504,7 @@ Session::GlobalMeteringStateCommand::set_state (const XMLNode& node)
                } else {
                        str = "before";
                }
-               
+
                if ((child = node.child (str)) == 0) {
                        warning << string_compose (_("global route meter state command has no \"%1\" node, ignoring entire command"), str) << endmsg;
                        return -1;
@@ -479,21 +513,21 @@ Session::GlobalMeteringStateCommand::set_state (const XMLNode& node)
                nlist = child->children();
 
                for (niter = nlist.begin(); niter != nlist.end(); ++niter) {
-                       
+
                        RouteMeterState rms;
                        boost::shared_ptr<Route> route;
                        ID id;
-                       
+
                        prop = (*niter)->property ("id");
                        id = prop->value ();
-                       
+
                        if ((route = sess.route_by_id (id)) == 0) {
                                warning << string_compose (_("cannot find track/bus \"%1\" while rebuilding a global route state command, ignored"), id.to_s()) << endmsg;
                                continue;
                        }
-                       
+
                        rms.first = boost::weak_ptr<Route> (route);
-                       
+
                        prop = (*niter)->property ("meter");
 
                        if (prop->value() == X_("pre")) {
@@ -503,7 +537,7 @@ Session::GlobalMeteringStateCommand::set_state (const XMLNode& node)
                        } else {
                                rms.second = MeterInput;
                        }
-                       
+
                        if (loop) {
                                after.push_back (rms);
                        } else {