Skip to content
Snippets Groups Projects
Commit 80c9dde7 authored by Christoph Hasse's avatar Christoph Hasse :cartwheel_tone1:
Browse files

feat: add erase method to PluginSvc Registry class

parent 03db1510
No related branches found
No related tags found
1 merge request!1338feat: add erase method to PluginSvc Registry class
......@@ -136,6 +136,9 @@ namespace Gaudi {
/// Add factory info to the registry (used internally by DeclareFactory).
FactoryInfo& add( const KeyType& id, FactoryInfo info );
/// delete a factory info from the registry.
FactoryMap::size_type erase( const KeyType& id );
/// Retrieve the FactoryInfo object for an `id`.
const FactoryInfo& getInfo( const KeyType& id, const bool load = false ) const;
......
......@@ -247,6 +247,12 @@ namespace Gaudi {
return entry->second;
}
Registry::FactoryMap::size_type Registry::erase( const KeyType& id ) {
auto _guard = std::scoped_lock{ m_mutex };
FactoryMap& facts = factories();
return facts.erase( id );
}
const Registry::FactoryInfo& Registry::getInfo( const KeyType& id, const bool load ) const {
auto _guard = std::scoped_lock{ m_mutex };
static const FactoryInfo unknown = { "unknown" };
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment