13
0

Decouple Session from MidiPatchManager and reduce parsing of midnam xml files

The MidiPatchManager only requires a reference to the session to get the path
to the Session midnam directory so change it so that the path is passed to
MidiPatchManager::add_search_path on Session construction and removed on
Session Destruction. This will also make it easier to test and reduce compile
times etc.

For the common case where the Session doesn't have a Session specific midnam
patch files directory(for instance a new session) it won't cause a refresh and
reparsing of all the midnam files. This saves about 2 seconds to load a Session
on my machine(fast machine with SSD), or about half the time spent in the
Session constructor for a new session.

There is still going to be that initial cost of parsing the midnam files when
the first session is created after starting Ardour. Options to remove that
would be to parse the files asynchronously and or use a faster xml
parser(eventually), neither of which seem worth doing at this stage.

This change will cause a performance regression for the uncommon case where a
Session with Session specific midnam files is unloaded and then another Session
with Session specific midnam files is loaded as it will cause the common midnam
files in midi_patch_path to be parsed twice(unload and load).
This commit is contained in:
Tim Mayberry 2015-10-19 14:52:48 +10:00 committed by Paul Davis
parent 3bd928591b
commit 689862cafb
4 changed files with 64 additions and 58 deletions

View File

@ -22,12 +22,11 @@
#define MIDI_PATCH_MANAGER_H_
#include "midi++/midnam_patch.h"
#include "pbd/signals.h"
#include "ardour/session_handle.h"
namespace ARDOUR {
class Session;
}
#include "pbd/signals.h"
#include "pbd/search_path.h"
#include "ardour/libardour_visibility.h"
namespace MIDI
{
@ -35,7 +34,7 @@ namespace MIDI
namespace Name
{
class LIBARDOUR_API MidiPatchManager : public PBD::ScopedConnectionList, public ARDOUR::SessionHandlePtr
class LIBARDOUR_API MidiPatchManager
{
/// Singleton
private:
@ -58,7 +57,9 @@ public:
return *_manager;
}
void set_session (ARDOUR::Session*);
void add_search_path (const PBD::Searchpath& search_path);
void remove_search_path (const PBD::Searchpath& search_path);
boost::shared_ptr<MIDINameDocument> document_by_model(std::string model_name)
{ return _documents[model_name]; }
@ -138,12 +139,13 @@ public:
const DeviceNamesByMaker& devices_by_manufacturer() const { return _devices_by_manufacturer; }
private:
void session_going_away();
void refresh();
void add_session_patches();
bool add_midi_name_document(const std::string& file_path);
private:
PBD::Searchpath _search_path;
MidiNameDocuments _documents;
MIDINameDocument::MasterDeviceNamesList _master_devices_by_model;
DeviceNamesByMaker _devices_by_manufacturer;

View File

@ -25,8 +25,6 @@
#include "pbd/file_utils.h"
#include "pbd/error.h"
#include "ardour/session.h"
#include "ardour/session_directory.h"
#include "ardour/midi_patch_manager.h"
#include "ardour/search_paths.h"
@ -43,13 +41,56 @@ MidiPatchManager* MidiPatchManager::_manager = 0;
MidiPatchManager::MidiPatchManager ()
{
add_search_path(midi_patch_search_path ());
}
void
MidiPatchManager::set_session (Session* s)
MidiPatchManager::add_search_path (const Searchpath& search_path)
{
SessionHandlePtr::set_session (s);
refresh ();
bool do_refresh = false;
for (Searchpath::const_iterator i = search_path.begin(); i != search_path.end(); ++i) {
if (_search_path.contains(*i)) {
// already processed files from this path
continue;
}
if (!Glib::file_test (*i, Glib::FILE_TEST_EXISTS)) {
continue;
}
if (!Glib::file_test (*i, Glib::FILE_TEST_IS_DIR)) {
continue;
}
_search_path.add_directory (*i);
do_refresh = true;
}
if (do_refresh) {
refresh();
}
}
void
MidiPatchManager::remove_search_path (const Searchpath& search_path)
{
bool do_refresh = false;
for (Searchpath::const_iterator i = search_path.begin(); i != search_path.end(); ++i) {
if (!_search_path.contains(*i)) {
continue;
}
_search_path.remove_directory (*i);
do_refresh = true;
}
if (do_refresh) {
refresh();
}
}
bool
@ -94,32 +135,6 @@ MidiPatchManager::add_midi_name_document (const std::string& file_path)
return true;
}
void
MidiPatchManager::add_session_patches ()
{
if (!_session) {
return;
}
std::string path_to_patches = _session->session_directory().midi_patch_path();
if (!Glib::file_test (path_to_patches, Glib::FILE_TEST_EXISTS)) {
return;
}
assert (Glib::file_test (path_to_patches, Glib::FILE_TEST_IS_DIR));
vector<std::string> result;
find_files_matching_pattern (result, path_to_patches, "*.midnam");
info << "Loading " << result.size() << " MIDI patches from " << path_to_patches << endmsg;
for (vector<std::string>::iterator i = result.begin(); i != result.end(); ++i) {
add_midi_name_document(*i);
}
}
void
MidiPatchManager::refresh()
{
@ -128,28 +143,14 @@ MidiPatchManager::refresh()
_all_models.clear();
_devices_by_manufacturer.clear();
Searchpath search_path = midi_patch_search_path ();
vector<std::string> result;
find_files_matching_pattern (result, search_path, "*.midnam");
find_files_matching_pattern (result, _search_path, "*.midnam");
info << "Loading " << result.size() << " MIDI patches from " << search_path.to_string() << endmsg;
info << "Loading " << result.size() << " MIDI patches from "
<< _search_path.to_string() << endmsg;
for (vector<std::string>::iterator i = result.begin(); i != result.end(); ++i) {
add_midi_name_document (*i);
}
if (_session) {
add_session_patches ();
}
}
void
MidiPatchManager::session_going_away ()
{
SessionHandlePtr::session_going_away ();
_documents.clear();
_master_devices_by_model.clear();
_all_models.clear();
_devices_by_manufacturer.clear();
}

View File

@ -74,6 +74,7 @@
#include "ardour/graph.h"
#include "ardour/midiport_manager.h"
#include "ardour/scene_changer.h"
#include "ardour/midi_patch_manager.h"
#include "ardour/midi_track.h"
#include "ardour/midi_ui.h"
#include "ardour/operations.h"
@ -555,6 +556,8 @@ Session::destroy ()
ControlProtocolManager::instance().drop_protocols ();
MIDI::Name::MidiPatchManager::instance().remove_search_path(session_directory().midi_patch_path());
_engine.remove_session ();
#ifdef USE_TRACKS_CODE_FEATURES

View File

@ -343,7 +343,7 @@ Session::post_engine_init ()
send_immediate_mmc (MIDI::MachineControlCommand (MIDI::MachineControl::cmdMmcReset));
send_immediate_mmc (MIDI::MachineControlCommand (Timecode::Time ()));
MIDI::Name::MidiPatchManager::instance().set_session (this);
MIDI::Name::MidiPatchManager::instance().add_search_path (session_directory().midi_patch_path() );
ltc_tx_initialize();
/* initial program change will be delivered later; see ::config_changed() */