X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fsession_command.cc;h=1492136b887486e7ce3cf4ee11dcbf6ddc12751a;hb=1bd4c5b3a212460eed1773f6b049d18c89625565;hp=556c6ea9a37f6df2e50a2b0c8ddbf93928d726fe;hpb=1a03f9440d11d74d291737d5b98e5624023860ac;p=ardour.git diff --git a/libs/ardour/session_command.cc b/libs/ardour/session_command.cc index 556c6ea9a3..1492136b88 100644 --- a/libs/ardour/session_command.cc +++ b/libs/ardour/session_command.cc @@ -2,24 +2,90 @@ #include #include #include +#include +#include +#include +#include +#include +#include + +using namespace PBD; + +#include "i18n.h" namespace ARDOUR { +void Session::register_with_memento_command_factory(PBD::ID id, PBD::StatefulThingWithGoingAway *ptr) +{ + registry[id] = ptr; +} + Command *Session::memento_command_factory(XMLNode *n) { PBD::ID id; - XMLNode *before, *after; + XMLNode *before = 0, *after = 0; + XMLNode *child; + + /* get id */ + id = PBD::ID(n->property("obj_id")->value()); + + /* get before/after */ + + if (n->name() == "MementoCommand") { + before = new XMLNode(*n->children().front()); + after = new XMLNode(*n->children().back()); + child = before; + } else if (n->name() == "MementoUndoCommand") { + before = new XMLNode(*n->children().front()); + child = before; + } else if (n->name() == "MementoRedoCommand") { + after = new XMLNode(*n->children().front()); + child = after; + } else if (n->name() == "PlaylistCommand") { + before = new XMLNode(*n->children().front()); + after = new XMLNode(*n->children().back()); + child = before; + } + + if (!child) + { + error << _("Tried to reconstitute a MementoCommand with no contents, failing. id=") << id.to_s() << endmsg; + return 0; + } - /* get obj_id */ - /* get before and/or after */ + /* create command */ + string obj_T = n->children().front()->name(); + if (obj_T == "AudioRegion" || obj_T == "Region") { + if (audio_regions.count(id)) + return new MementoCommand(*audio_regions[id], before, after); + } else if (obj_T == "AudioSource") { + if (audio_sources.count(id)) + return new MementoCommand(*audio_sources[id], before, after); + } else if (obj_T == "Location") { + return new MementoCommand(*_locations.get_location_by_id(id), before, after); + } else if (obj_T == "Locations") { + return new MementoCommand(_locations, before, after); + } else if (obj_T == "TempoMap") { + return new MementoCommand(*_tempo_map, before, after); + } else if (obj_T == "Playlist" || obj_T == "AudioPlaylist") { + if (Playlist *pl = playlist_by_name(child->property("name")->value())) + return new MementoCommand(*pl, before, after); + } else if (obj_T == "Route") { // includes AudioTrack + return new MementoCommand(*route_by_id(id), before, after); + } else if (obj_T == "Curve") { + if (curves.count(id)) + return new MementoCommand(*curves[id], before, after); + } else if (obj_T == "AutomationList") { + if (automation_lists.count(id)) + return new MementoCommand(*automation_lists[id], before, after); + } else if (registry.count(id)) { // For Editor and AutomationLine which are off-limits here + return new MementoCommand(*registry[id], before, after); + } - /* get an object by id by trial and error, and use it to construct an - * appropriate memento command */ - // e.g. - if (Diskstream *obj = diskstream_by_id(id)) - return new MementoCommand(*obj, *before, *after); - // etc. + /* we failed */ + error << _("could not reconstitute MementoCommand from XMLNode. id=") << id.to_s() << endmsg; + return 0; } // solo