CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes | Friends
edmplugin::PluginCapabilities Class Reference

#include <PluginCapabilities.h>

Inheritance diagram for edmplugin::PluginCapabilities:
edmplugin::PluginFactoryBase

Public Member Functions

std::vector< PluginInfoavailable () const override
 return info about all plugins which are already available in the program More...
 
const std::string & category () const override
 returns the name of the category to which this plugin factory belongs More...
 
void load (const std::string &iName)
 
bool tryToFind (const SharedLibrary &iLoadable)
 Check to see if any capabilities are in the file, returns 'true' if found. More...
 
bool tryToLoad (const std::string &iName)
 
 ~PluginCapabilities () override
 
- Public Member Functions inherited from edmplugin::PluginFactoryBase
 PluginFactoryBase ()
 
virtual ~PluginFactoryBase ()
 

Static Public Member Functions

static PluginCapabilitiesget ()
 

Private Member Functions

const PluginCapabilitiesoperator= (const PluginCapabilities &)=delete
 
 PluginCapabilities ()
 
 PluginCapabilities (const PluginCapabilities &)=delete
 

Private Attributes

std::map< std::string, boost::filesystem::path > classToLoadable_
 

Friends

class DummyFriend
 

Additional Inherited Members

- Public Types inherited from edmplugin::PluginFactoryBase
typedef tbb::concurrent_unordered_map< std::string, PMakersPlugins
 
typedef tbb::concurrent_vector< PluginMakerInfoPMakers
 
- Public Attributes inherited from edmplugin::PluginFactoryBase
edm::signalslot::Signal< void(const std::string &, const PluginInfo &)> newPluginAdded_
 signal containing plugin category, and plugin info for newly added plugin More...
 
- Protected Member Functions inherited from edmplugin::PluginFactoryBase
void fillAvailable (std::vector< PluginInfo > &iReturn) const
 
void fillInfo (const PMakers &makers, PluginInfo &iInfo, std::vector< PluginInfo > &iReturn) const
 
void * findPMaker (const std::string &iName) const
 
void finishedConstruction ()
 
void newPlugin (const std::string &iName)
 
void registerPMaker (void *iPMaker, const std::string &iName)
 
void * tryToFindPMaker (const std::string &iName) const
 

Detailed Description

Definition at line 32 of file PluginCapabilities.h.

Constructor & Destructor Documentation

PluginCapabilities::~PluginCapabilities ( )
override

Definition at line 41 of file PluginCapabilities.cc.

41 {}
PluginCapabilities::PluginCapabilities ( )
private
edmplugin::PluginCapabilities::PluginCapabilities ( const PluginCapabilities )
privatedelete

Member Function Documentation

std::vector< PluginInfo > PluginCapabilities::available ( ) const
overridevirtual

return info about all plugins which are already available in the program

Reimplemented from edmplugin::PluginFactoryBase.

Definition at line 133 of file PluginCapabilities.cc.

References classToLoadable_, info(), benchmark_cfg::infos, edmplugin::PluginInfo::loadable_, and edmplugin::PluginInfo::name_.

133  {
135  std::vector<PluginInfo> infos;
136  infos.reserve(classToLoadable_.size());
137 
138  for (std::map<std::string, boost::filesystem::path>::const_iterator it = classToLoadable_.begin();
139  it != classToLoadable_.end();
140  ++it) {
141  info.name_ = it->first;
142  info.loadable_ = it->second;
143  infos.push_back(info);
144  }
145  return infos;
146  }
static const TGPicture * info(bool iBackgroundIsBlack)
std::map< std::string, boost::filesystem::path > classToLoadable_
const std::string & PluginCapabilities::category ( ) const
overridevirtual

returns the name of the category to which this plugin factory belongs

Implements edmplugin::PluginFactoryBase.

Definition at line 148 of file PluginCapabilities.cc.

References AlCaHLTBitMon_QueryRunRegistry::string.

Referenced by load(), tryToFind(), and tryToLoad().

148  {
149  static const std::string s_cat("Capability");
150  return s_cat;
151  }
PluginCapabilities * PluginCapabilities::get ( )
static
void PluginCapabilities::load ( const std::string &  iName)

Definition at line 83 of file PluginCapabilities.cc.

References category(), classToLoadable_, Exception, edmplugin::PluginManager::get(), mps_check::lib, edmplugin::PluginManager::load(), edmplugin::SharedLibrary::path(), and tryToFind().

Referenced by edm::service::LoadAllDictionaries::LoadAllDictionaries().

83  {
84  if (classToLoadable_.end() == classToLoadable_.find(iName)) {
85  const SharedLibrary& lib = PluginManager::get()->load(category(), iName);
86  //read the items from the 'capabilities' symbol
87  if (not tryToFind(lib)) {
88  throw cms::Exception("PluginNotFound")
89  << "The dictionary for class '" << iName << "' is supposed to be in file\n '" << lib.path().string()
90  << "'\n but no dictionaries are in that file.\n"
91  "It appears like the cache is wrong. Please do 'EdmPluginRefresh "
92  << lib.path().string() << "'.";
93  }
94 
95  if (classToLoadable_.end() == classToLoadable_.find(iName)) {
96  throw cms::Exception("PluginNotFound")
97  << "The dictionary for class '" << iName << "' is supposed to be in file\n '" << lib.path().string()
98  << "'\n but was not found.\n"
99  "It appears like the cache is wrong. Please do 'EdmPluginRefresh "
100  << lib.path().string() << "'.";
101  }
102  }
103  }
bool tryToFind(const SharedLibrary &iLoadable)
Check to see if any capabilities are in the file, returns &#39;true&#39; if found.
std::map< std::string, boost::filesystem::path > classToLoadable_
const std::string & category() const override
returns the name of the category to which this plugin factory belongs
const SharedLibrary & load(const std::string &iCategory, const std::string &iPlugin)
static PluginManager * get()
const PluginCapabilities& edmplugin::PluginCapabilities::operator= ( const PluginCapabilities )
privatedelete
bool PluginCapabilities::tryToFind ( const SharedLibrary iLoadable)

Check to see if any capabilities are in the file, returns 'true' if found.

Definition at line 58 of file PluginCapabilities.cc.

References category(), classToLoadable_, mps_fire::i, info(), edmplugin::PluginInfo::loadable_, dataset::name, edmplugin::PluginInfo::name_, names, edmplugin::PluginFactoryBase::newPluginAdded_, edmplugin::SharedLibrary::path(), findQualityFiles::size, AlCaHLTBitMon_QueryRunRegistry::string, and edmplugin::SharedLibrary::symbol().

Referenced by load(), main(), and tryToLoad().

58  {
59  void* sym;
60  if (not iLoadable.symbol("SEAL_CAPABILITIES", sym)) {
61  return false;
62  }
63 
64  const char** names;
65  int size;
66  //reinterpret_cast<void (*)(const char**&,int&)>(sym)(names,size);
67  reinterpret_cast<void (*)(const char**&, int&)>(reinterpret_cast<unsigned long>(sym))(names, size);
68 
70  for (int i = 0; i < size; ++i) {
71  std::string name(names[i]);
72  classToLoadable_[name] = iLoadable.path();
73 
74  //NOTE: can't use newPlugin(name) to do the work since it assumes
75  // we haven't yet returned from PluginManager::load method
76  info.name_ = name;
77  info.loadable_ = iLoadable.path();
78  this->newPluginAdded_(category(), info);
79  }
80  return true;
81  }
size
Write out results.
static const TGPicture * info(bool iBackgroundIsBlack)
const std::string names[nVars_]
edm::signalslot::Signal< void(const std::string &, const PluginInfo &)> newPluginAdded_
signal containing plugin category, and plugin info for newly added plugin
std::map< std::string, boost::filesystem::path > classToLoadable_
const std::string & category() const override
returns the name of the category to which this plugin factory belongs
bool PluginCapabilities::tryToLoad ( const std::string &  iName)

Definition at line 105 of file PluginCapabilities.cc.

References category(), classToLoadable_, Exception, edmplugin::PluginManager::get(), mps_check::lib, edmplugin::SharedLibrary::path(), tryToFind(), and edmplugin::PluginManager::tryToLoad().

105  {
106  if (classToLoadable_.end() == classToLoadable_.find(iName)) {
107  const SharedLibrary* lib = PluginManager::get()->tryToLoad(category(), iName);
108  if (nullptr == lib) {
109  return false;
110  }
111  //read the items from the 'capabilities' symbol
112  if (not tryToFind(*lib)) {
113  throw cms::Exception("PluginNotFound")
114  << "The dictionary for class '" << iName << "' is supposed to be in file\n '" << lib->path().string()
115  << "'\n but no dictionaries are in that file.\n"
116  "It appears like the cache is wrong. Please do 'EdmPluginRefresh "
117  << lib->path().string() << "'.";
118  }
119 
120  if (classToLoadable_.end() == classToLoadable_.find(iName)) {
121  throw cms::Exception("PluginNotFound")
122  << "The dictionary for class '" << iName << "' is supposed to be in file\n '" << lib->path().string()
123  << "'\n but was not found.\n"
124  "It appears like the cache is wrong. Please do 'EdmPluginRefresh "
125  << lib->path().string() << "'.";
126  }
127  }
128  return true;
129  }
const SharedLibrary * tryToLoad(const std::string &iCategory, const std::string &iPlugin)
bool tryToFind(const SharedLibrary &iLoadable)
Check to see if any capabilities are in the file, returns &#39;true&#39; if found.
std::map< std::string, boost::filesystem::path > classToLoadable_
const std::string & category() const override
returns the name of the category to which this plugin factory belongs
static PluginManager * get()

Friends And Related Function Documentation

friend class DummyFriend
friend

Definition at line 33 of file PluginCapabilities.h.

Member Data Documentation

std::map<std::string, boost::filesystem::path> edmplugin::PluginCapabilities::classToLoadable_
private

Definition at line 61 of file PluginCapabilities.h.

Referenced by available(), load(), tryToFind(), and tryToLoad().