X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fardour%2Fmidi_patch_manager.cc;h=ab93b173066d46a71cb70c6921a3c5ddf7d1b077;hb=7ba9223f9f43e1624f6d9b86534519a5f30f976c;hp=e3bf899bf5de0c5e87ec9cb63051a80cd1f15993;hpb=0332c127cd54b9386bb59eb0ec18c49917c0cf57;p=ardour.git diff --git a/libs/ardour/midi_patch_manager.cc b/libs/ardour/midi_patch_manager.cc index e3bf899bf5..ab93b17306 100644 --- a/libs/ardour/midi_patch_manager.cc +++ b/libs/ardour/midi_patch_manager.cc @@ -90,6 +90,13 @@ MidiPatchManager::remove_custom_midnam (const std::string& id) return remove_midi_name_document ("custom:" + id); } +bool +MidiPatchManager::update_custom_midnam (const std::string& id, const std::string& midnam) +{ + remove_midi_name_document ("custom:" + id, false); + return add_custom_midnam (id, midnam); +} + void MidiPatchManager::add_midnam_files_from_directory(const std::string& directory_path) { @@ -165,6 +172,7 @@ MidiPatchManager::document_by_model(std::string model_name) const bool MidiPatchManager::add_midi_name_document (boost::shared_ptr document) { + bool added = false; for (MIDINameDocument::MasterDeviceNamesList::const_iterator device = document->master_device_names_by_model().begin(); device != document->master_device_names_by_model().end(); @@ -189,17 +197,20 @@ MidiPatchManager::add_midi_name_document (boost::shared_ptr do _devices_by_manufacturer[manufacturer].insert( std::make_pair(device->first, device->second)); + added = true; // TODO: handle this gracefully. assert(_documents.count(device->first) == 1); assert(_master_devices_by_model.count(device->first) == 1); } - PatchesChanged(); /* EMIT SIGNAL */ - return true; + if (added) { + PatchesChanged(); /* EMIT SIGNAL */ + } + return added; } bool -MidiPatchManager::remove_midi_name_document (const std::string& file_path) +MidiPatchManager::remove_midi_name_document (const std::string& file_path, bool emit_signal) { bool removed = false; for (MidiNameDocuments::iterator i = _documents.begin(); i != _documents.end();) { @@ -207,10 +218,9 @@ MidiPatchManager::remove_midi_name_document (const std::string& file_path) boost::shared_ptr document = i->second; - cout << string_compose(_("Removing MIDI patch file %1"), file_path) << "\n"; info << string_compose(_("Removing MIDI patch file %1"), file_path) << endmsg; - i = _documents.erase(i); + _documents.erase(i++); for (MIDINameDocument::MasterDeviceNamesList::const_iterator device = document->master_device_names_by_model().begin(); @@ -230,7 +240,7 @@ MidiPatchManager::remove_midi_name_document (const std::string& file_path) ++i; } } - if (removed) { + if (removed && emit_signal) { PatchesChanged(); /* EMIT SIGNAL */ } return removed;