IIODataManager.h
Go to the documentation of this file.
1 #ifndef GAUDIUTILS_IIODATAMANAGER_H
2 #define GAUDIUTILS_IIODATAMANAGER_H
3 
4 // Framework include files
6 
7 // C++ include files
8 #include <string>
9 #include <vector>
10 
11 /*
12  * LHCb namespace declaration
13  */
14 namespace Gaudi {
15 
25  protected:
33  int m_age = 0;
35  const IInterface* m_owner = nullptr;
36  public:
38  enum IoType { READ=1<<1,UPDATE=1<<2,CREATE=1<<3,RECREATE=(1<<4)+(1<<3) };
40  enum IoStatus { BAD_DATA_CONNECTION=4 };
41  public:
44  : m_name(std::move(nam)), m_owner(own) {}
46  virtual ~IDataConnection() = default;
48  const std::string& name() const { return m_name; }
50  void setFID(std::string fid) { m_fid = std::move(fid); }
52  const std::string& fid() const { return m_fid; }
54  const std::string& pfn() const { return m_pfn; }
56  void setPFN(std::string fn) { m_pfn = std::move(fn); }
58  int ageFile() { return ++m_age; }
60  void resetAge() { m_age = 0; }
62  int age() const { return m_age; }
64  const IInterface* owner() const { return m_owner; }
66  virtual StatusCode connectRead() = 0;
68  virtual StatusCode connectWrite(IoType type) = 0;
70  virtual StatusCode disconnect() = 0;
72  virtual bool isConnected() const = 0;
74  virtual StatusCode read(void* const data, size_t len) = 0;
76  virtual StatusCode write(const void* data, int len) = 0;
78  virtual long long int seek(long long int where, int origin) = 0;
79  };
80 
87  class GAUDI_API IIODataManager : virtual public IInterface {
88  public:
91 
96  enum FileType { UNKNOWN=1, PFN, LFN, FID };
97 
99  virtual StatusCode connectRead(bool keep_open, IDataConnection* con) = 0;
101  virtual StatusCode connectWrite(IDataConnection* con,IoType mode=Connection::CREATE,const std::string& doctype="UNKNOWN") = 0;
103  virtual StatusCode disconnect(IDataConnection* con) = 0;
105  virtual Connection* connection(const std::string& dsn) const = 0;
107  virtual Connections connections(const IInterface* owner) const = 0;
109  virtual StatusCode read(IDataConnection* con, void* const data, size_t len) = 0;
111  virtual StatusCode write(IDataConnection* con, const void* data, int len) = 0;
113  virtual long long int seek(IDataConnection* con, long long int where, int origin) = 0;
114  };
115 } // End namespace Gaudi
116 #endif // GAUDIUTILS_IIODATAMANAGER_H
int age() const
Access age counter.
const std::string & fid() const
Access file id.
std::string m_name
Connection name/identifier.
IoType
I/O Connection types.
IoStatus
Status Code on bad file connection.
IDataConnection(const IInterface *own, std::string nam)
Standard constructor.
std::string m_fid
File ID of the connection.
std::vector< Connection * > Connections
#define DeclareInterfaceID(iface, major, minor)
Macro to declare the interface ID when using the new mechanism of extending and implementing interfac...
Definition: IInterface.h:14
STL namespace.
Connection::IoType IoType
const std::string & pfn() const
Access physical file name.
STL class.
std::string m_pfn
Physical file name of the connection.
void setPFN(std::string fn)
Set physical file name.
int ageFile()
Increase age of I/O source.
const std::string & name() const
Connection name.
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
Definition of the basic interface.
Definition: IInterface.h:234
IDataConnection Connection
Connection type definition.
T move(T...args)
const IInterface * owner() const
Owner instance.
void setFID(std::string fid)
Set file ID.
STL class.
ABC describing basic data connection.
void resetAge()
Reset age.
#define GAUDI_API
Definition: Kernel.h:107
Helper functions to set/get the application return code.
Definition: __init__.py:1