mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
Fix some location xml handling to work with old session files.
Also refactor some code around it while I'm at it.
This commit is contained in:
parent
ea1a330f9a
commit
b16c8d5ff5
2 changed files with 73 additions and 12 deletions
|
|
@ -29,6 +29,7 @@
|
||||||
#include "pbd/stl_delete.h"
|
#include "pbd/stl_delete.h"
|
||||||
#include "pbd/xml++.h"
|
#include "pbd/xml++.h"
|
||||||
#include "pbd/enumwriter.h"
|
#include "pbd/enumwriter.h"
|
||||||
|
#include "pbd/statefulidpredicates.h"
|
||||||
|
|
||||||
#include "ardour/location.h"
|
#include "ardour/location.h"
|
||||||
#include "ardour/midi_scene_change.h"
|
#include "ardour/midi_scene_change.h"
|
||||||
|
|
@ -610,6 +611,8 @@ Location::set_state (const XMLNode& node, int version)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!set_id (node)) {
|
if (!set_id (node)) {
|
||||||
|
// Old versions did not write ids for locations: make a new one.
|
||||||
|
reset_id();
|
||||||
warning << _("XML node for Location has no ID information") << endmsg;
|
warning << _("XML node for Location has no ID information") << endmsg;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1056,21 +1059,20 @@ Locations::set_state (const XMLNode& node, int version)
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|
||||||
|
Location* loc = 0;
|
||||||
XMLProperty const * prop_id = (*niter)->property ("id");
|
XMLProperty const * prop_id = (*niter)->property ("id");
|
||||||
assert (prop_id);
|
if (prop_id) {
|
||||||
PBD::ID id (prop_id->value ());
|
LocationList::const_iterator i = std::find_if(
|
||||||
|
locations.begin(), locations.end(),
|
||||||
|
PBD::StatefulIdEquals(prop_id->value()));
|
||||||
|
|
||||||
LocationList::const_iterator i = locations.begin();
|
if (i != locations.end()) {
|
||||||
while (i != locations.end () && (*i)->id() != id) {
|
/* we can re-use an old Location object */
|
||||||
++i;
|
loc = *i;
|
||||||
|
loc->set_state (**niter, version);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
if (!loc) {
|
||||||
Location* loc;
|
|
||||||
if (i != locations.end()) {
|
|
||||||
/* we can re-use an old Location object */
|
|
||||||
loc = *i;
|
|
||||||
loc->set_state (**niter, version);
|
|
||||||
} else {
|
|
||||||
loc = new Location (_session, **niter);
|
loc = new Location (_session, **niter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
59
libs/pbd/pbd/statefulidpredicates.h
Normal file
59
libs/pbd/pbd/statefulidpredicates.h
Normal file
|
|
@ -0,0 +1,59 @@
|
||||||
|
/*
|
||||||
|
Copyright (C) 2015 Paul Davis
|
||||||
|
Author: Sakari Bergen
|
||||||
|
|
||||||
|
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 __pbd_statefulidpredicate_h__
|
||||||
|
#define __pbd_statefulidpredicate_h__
|
||||||
|
|
||||||
|
#include "pbd/libpbd_visibility.h"
|
||||||
|
#include "pbd/id.h"
|
||||||
|
#include "pbd/stateful.h"
|
||||||
|
|
||||||
|
namespace PBD {
|
||||||
|
|
||||||
|
struct LIBPBD_TEMPLATE_MEMBER_API StatefulIdEquals
|
||||||
|
{
|
||||||
|
StatefulIdEquals(ID const & id)
|
||||||
|
: id(id)
|
||||||
|
{}
|
||||||
|
|
||||||
|
template<typename StatefulPtr>
|
||||||
|
bool operator() (StatefulPtr p)
|
||||||
|
{
|
||||||
|
return p && compare(*p);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool operator() (Stateful const & s)
|
||||||
|
{
|
||||||
|
return compare(s);
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
|
||||||
|
bool compare(Stateful const & s)
|
||||||
|
{
|
||||||
|
return s.id() == id;
|
||||||
|
}
|
||||||
|
|
||||||
|
ID const & id;
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace PBD
|
||||||
|
|
||||||
|
#endif // __pbd_statefulidpredicate_h__
|
||||||
Loading…
Add table
Add a link
Reference in a new issue