The Gaudi Framework  v30r3 (a5ef0a68)
IoComponentMgr.h
Go to the documentation of this file.
1 // IoComponentMgr.h
3 // Header file for class IoComponentMgr
4 // Author: S.Binet<binet@cern.ch>
6 #ifndef GAUDIMP_IOCOMPONENTMGR_H
7 #define GAUDIMP_IOCOMPONENTMGR_H 1
8 
9 // Python includes
10 #include <Python.h>
11 
12 // STL includes
13 #include <list>
14 #include <map>
15 #include <string>
16 
17 // FrameWork includes
18 #include "GaudiKernel/Service.h"
19 
20 // GaudiKernel
24 
25 // Forward declaration
26 class ISvcLocator;
27 
28 class IoComponentMgr : public extends<Service, IIoComponentMgr, IIncidentListener>
29 {
31  // Public methods:
33 public:
35  using extends::extends;
36 
38 
39  StatusCode initialize() override;
40  StatusCode finalize() override;
42 
43  void handle( const Incident& ) override;
44 
46  // Const methods:
48 
51  bool io_hasitem( IIoComponent* iocomponent ) const override;
52 
56  bool io_contains( IIoComponent* iocomponent, const std::string& fname ) const override;
57 
59  // Non-const methods:
61 
68  StatusCode io_register( IIoComponent* iocomponent ) override;
69 
77  const std::string& pfn ) override;
78 
82  StatusCode io_update( IIoComponent* iocomponent, const std::string& old_fname,
83  const std::string& new_fname ) override;
84 
88  StatusCode io_update( IIoComponent* iocomponent, const std::string& work_dir ) override;
89 
92  StatusCode io_update_all( const std::string& work_dir ) override;
93 
97  StatusCode io_retrieve( IIoComponent* iocomponent, std::string& fname ) override;
98 
103  StatusCode io_reinitialize() override;
104 
109  StatusCode io_finalize() override;
110 
112  // Private data:
114 private:
120 
122  : m_oldfname( "" ), m_oldabspath( "" ), m_newfname( "" ), m_iomode( IIoComponentMgr::IoMode::INVALID )
123  {
124  }
126  : m_oldfname( f ), m_oldabspath( p ), m_newfname( "" ), m_iomode( t )
127  {
128  }
130  : m_oldfname( rhs.m_oldfname )
131  , m_oldabspath( rhs.m_oldabspath )
132  , m_newfname( rhs.m_newfname )
133  , m_iomode( rhs.m_iomode )
134  {
135  }
136  bool operator<( IoComponentEntry const& rhs ) const
137  {
138  if ( m_oldfname == rhs.m_oldfname ) {
139  return ( m_iomode < rhs.m_iomode );
140  } else {
141  return ( m_oldfname < rhs.m_oldfname );
142  }
143  }
144 
146  {
147  os << "old: \"" << c.m_oldfname << "\" absolute path: \"" << c.m_oldabspath << "\" new: \"" << c.m_newfname
148  << "\" m: " << ( ( c.m_iomode == IIoComponentMgr::IoMode::READ ) ? "R" : "W" );
149  return os;
150  }
151  };
152 
154  IoComponentMgr() = delete;
155 
158  IoRegistry_t m_ioregistry;
159 
162  IoStack_t m_iostack;
163 
164  // This is the registry
166  typedef IoDict_t::const_iterator iodITR;
167 
168  IoDict_t m_cdict;
169 
172 
175  "DirectIOPatterns",
176  {
177  "://",
178  },
179  "Search patterns for direct I/O input names"};
180 
181  bool findComp( IIoComponent*, const std::string&, iodITR& ) const;
183  bool findComp( const std::string&, std::pair<iodITR, iodITR>& ) const;
184 
185  std::string list() const;
186 };
187 
188 #endif //> !GAUDIMP_IOCOMPONENTMGR_H
StatusCode finalize() override
The ISvcLocator is the interface implemented by the Service Factory in the Application Manager to loc...
Definition: ISvcLocator.h:25
Implementation of property with value of concrete type.
Definition: Property.h:381
bool io_contains(IIoComponent *iocomponent, const std::string &fname) const override
: check if the registry contains a given IIoComponent and that component had
std::string m_oldabspath
IoDict_t::const_iterator iodITR
std::map< std::string, IIoComponent * > IoRegistry_t
IoRegistry_t m_ioregistry
Registry of IIoComponents.
bool operator<(IoComponentEntry const &rhs) const
std::list< IIoComponent * > IoStack_t
void handle(const Incident &) override
STL class.
IoComponentMgr()=delete
Default constructor:
std::string list() const
StatusCode initialize() override
Gaudi Service Implementation.
bool findComp(IIoComponent *, const std::string &, iodITR &) const
std::multimap< IIoComponent *, IoComponentEntry > IoDict_t
IoComponentEntry(const std::string &f, const std::string &p, const IIoComponentMgr::IoMode::Type &t)
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:51
IoComponentEntry()
StatusCode io_register(IIoComponent *iocomponent) override
: allow a IIoComponent to register itself with this manager so appropriate actions can be taken when ...
StatusCode io_update(IIoComponent *iocomponent, const std::string &old_fname, const std::string &new_fname) override
: allow a IIoComponent to update the contents of the registry with a new file name ...
std::string m_oldfname
std::string m_dict_location
location of the python dictionary
IIoComponentMgr::IoMode::Type m_iomode
Base class used to extend a class implementing other interfaces.
Definition: extends.h:10
StatusCode io_update_all(const std::string &work_dir) override
: Update all IIoComponents with a new work directory
Base class for all Incidents (computing events).
Definition: Incident.h:17
Gaudi::Property< std::vector< std::string > > m_directio_patterns
search patterns for special file names (direct I/O protocols)
IoComponentEntry(const IoComponentEntry &rhs)
StatusCode io_retrieve(IIoComponent *iocomponent, std::string &fname) override
: retrieve the new filename for a given IIoComponent and
StatusCode io_finalize() override
: finalize the I/O subsystem.
StatusCode io_reinitialize() override
: reinitialize the I/O subsystem.
IoStack_t m_iostack
Stack of IIoComponents to properly handle order of registration.
std::string m_newfname
STL class.
friend std::ostream & operator<<(std::ostream &os, const IoComponentEntry &c)
bool io_hasitem(IIoComponent *iocomponent) const override
: check if the registry contains a given IIoComponent