Loading [MathJax]/extensions/tex2jax.js
The Gaudi Framework  v31r0 (aeb156f0)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
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 #include <vector>
17 
18 // FrameWork includes
19 #include "GaudiKernel/Service.h"
20 
21 // GaudiKernel
25 
26 // Forward declaration
27 class ISvcLocator;
28 
29 class IoComponentMgr : public extends<Service, IIoComponentMgr, IIncidentListener> {
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 
96  std::vector<std::string> io_retrieve( IIoComponent* iocomponent ) override;
97 
101  StatusCode io_retrieve( IIoComponent* iocomponent, std::string& fname ) override;
102 
107  StatusCode io_reinitialize() override;
108 
113  StatusCode io_finalize() override;
114 
116  // Private data:
118 private:
124 
126  : m_oldfname( "" ), m_oldabspath( "" ), m_newfname( "" ), m_iomode( IIoComponentMgr::IoMode::INVALID ) {}
128  : m_oldfname( f ), m_oldabspath( p ), m_newfname( "" ), m_iomode( t ) {}
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  bool operator<( IoComponentEntry const& rhs ) const {
135  if ( m_oldfname == rhs.m_oldfname ) {
136  return ( m_iomode < rhs.m_iomode );
137  } else {
138  return ( m_oldfname < rhs.m_oldfname );
139  }
140  }
141 
143  os << "old: \"" << c.m_oldfname << "\" absolute path: \"" << c.m_oldabspath << "\" new: \"" << c.m_newfname
144  << "\" m: " << ( ( c.m_iomode == IIoComponentMgr::IoMode::READ ) ? "R" : "W" );
145  return os;
146  }
147  };
148 
150  IoComponentMgr() = delete;
151 
154  IoRegistry_t m_ioregistry;
155 
158  IoStack_t m_iostack;
159 
160  // This is the registry
162  typedef IoDict_t::const_iterator iodITR;
163 
164  IoDict_t m_cdict;
165 
168 
171  "DirectIOPatterns",
172  {
173  "://",
174  },
175  "Search patterns for direct I/O input names"};
176 
177  bool findComp( IIoComponent*, const std::string&, iodITR& ) const;
179  bool findComp( const std::string&, std::pair<iodITR, iodITR>& ) const;
180 
181  std::string list() const;
182 };
183 
184 #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:352
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
std::vector< std::string > io_retrieve(IIoComponent *iocomponent) override
: retrieve all registered filenames for a given IIoComponent
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:50
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_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