The Gaudi Framework  v30r2 (9eca68f7)
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 
90  // VT. new method
93  StatusCode io_update_all( const std::string& work_dir ) override;
94 
98  StatusCode io_retrieve( IIoComponent* iocomponent, std::string& fname ) override;
99 
104  StatusCode io_reinitialize() override;
105 
110  StatusCode io_finalize() override;
111 
113  // Private data:
115 private:
118  std::string m_oldabspath; // VT. store absolute path
121 
123  : m_oldfname( "" )
124  , m_oldabspath( "" )
125  , m_newfname( "" )
126  , // VT. changes
127  m_iomode( IIoComponentMgr::IoMode::INVALID )
128  {
129  }
130  IoComponentEntry( const std::string& f, const std::string& p, // VT. changes
132  : m_oldfname( f ), m_oldabspath( p ), m_newfname( "" ), m_iomode( t )
133  {
134  } // VT. changes
136  : m_oldfname( rhs.m_oldfname )
137  , m_oldabspath( rhs.m_oldabspath )
138  , // VT. changes
139  m_newfname( rhs.m_newfname )
140  , m_iomode( rhs.m_iomode )
141  {
142  }
143  bool operator<( IoComponentEntry const& rhs ) const
144  {
145  if ( m_oldfname == rhs.m_oldfname ) {
146  return ( m_iomode < rhs.m_iomode );
147  } else {
148  return ( m_oldfname < rhs.m_oldfname );
149  }
150  }
151 
153  {
154  os << "old: \"" << c.m_oldfname << "\" absolute path: \"" << c.m_oldabspath << "\" new: \"" << c.m_newfname
155  << "\" m: " << ( ( c.m_iomode == IIoComponentMgr::IoMode::READ ) ? "R" : "W" );
156  return os;
157  }
158  };
159 
161  IoComponentMgr() = delete;
162 
165  IoRegistry_t m_ioregistry;
166 
169  IoStack_t m_iostack;
170 
171  // This is the registry
173  typedef IoDict_t::const_iterator iodITR;
174 
175  IoDict_t m_cdict;
176 
179 
180  bool findComp( IIoComponent*, const std::string&, iodITR& ) const;
182  bool findComp( const std::string&, std::pair<iodITR, iodITR>& ) const;
183 
184  std::string list() const;
185 };
186 
187 #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
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
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