CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CacheParser.h
Go to the documentation of this file.
1 #ifndef FWCore_PluginManager_CacheParser_h
2 #define FWCore_PluginManager_CacheParser_h
3 // -*- C++ -*-
4 //
5 // Package: PluginManager
6 // Class : CacheParser
7 //
21 //
22 // Original Author: Chris Jones
23 // Created: Wed Apr 4 14:30:51 EDT 2007
24 //
25 
26 // system include files
27 #include <iosfwd>
28 #include <string>
29 #include <map>
30 #include <vector>
31 #include <boost/filesystem/path.hpp>
32 
33 // user include files
35 
36 // forward declarations
37 namespace edmplugin {
39 {
40 
41  public:
42  typedef std::map<std::string, std::vector<PluginInfo> > CategoryToInfos;
43  typedef std::pair< std::string, std::string> NameAndType;
44  typedef std::vector< NameAndType > NameAndTypes;
45  typedef std::map<boost::filesystem::path, NameAndTypes > LoadableToPlugins;
46 
47  // ---------- const member functions ---------------------
48 
49  // ---------- static member functions --------------------
50 
51  // ---------- member functions ---------------------------
56  static void read(std::istream&, const boost::filesystem::path& iDirectory, CategoryToInfos& oOut);
57  static void write(const CategoryToInfos&, std::ostream&);
58 
59  static void read(std::istream&, LoadableToPlugins& oOut);
60  static void write(LoadableToPlugins& iIn, std::ostream&);
61  private:
62  CacheParser(const CacheParser&); // stop default
63 
64  const CacheParser& operator=(const CacheParser&); // stop default
65 
66  static bool readline(std::istream& iIn, const boost::filesystem::path& iDirectory,
67  unsigned long iRecordNumber, PluginInfo &oInfo, std::string& oPluginType);
70 
71  // ---------- member data --------------------------------
72 
73 };
74 
75 }
76 #endif
static std::string & restoreSpaces(std::string &io)
Definition: CacheParser.cc:225
std::pair< std::string, std::string > NameAndType
Definition: CacheParser.h:43
std::map< std::string, std::vector< PluginInfo > > CategoryToInfos
Definition: CacheParser.h:42
static bool readline(std::istream &iIn, const boost::filesystem::path &iDirectory, unsigned long iRecordNumber, PluginInfo &oInfo, std::string &oPluginType)
Definition: CacheParser.cc:85
std::map< boost::filesystem::path, NameAndTypes > LoadableToPlugins
Definition: CacheParser.h:45
std::vector< NameAndType > NameAndTypes
Definition: CacheParser.h:44
static void write(const CategoryToInfos &, std::ostream &)
Definition: CacheParser.cc:151
const CacheParser & operator=(const CacheParser &)
CacheParser(const CacheParser &)
static std::string & replaceSpaces(std::string &io)
Definition: CacheParser.cc:216
static void read(std::istream &, const boost::filesystem::path &iDirectory, CategoryToInfos &oOut)
Definition: CacheParser.cc:125