IInspector.h
Go to the documentation of this file.
1 #ifndef GAUDIKERNEL_IINSPECTOR_H
2 #define GAUDIKERNEL_IINSPECTOR_H
3 
4 // STL Include files
5 #include <typeinfo>
6 #include <string>
7 
8 // Framework Include files
10 
15 class GAUDI_API IInspector: virtual public IInterface {
16 public:
19 
20  enum { Mutable = 1<<1, Const = 1<<2 };
21 
22 protected:
23 
24  class IValue {
25  protected:
26  void* m_P;
27  IValue() = default;
28  public:
29  virtual ~IValue() = default;
30  virtual void release() { delete this; }
31  void* ptr() { return m_P; }
32  const void* ptr() const { return m_P; }
33  virtual long size() const = 0;
34  virtual void construct(void* buffer) const = 0;
35  };
36 
37  struct Tag {
38  long first;
40  Tag(long f, const std::type_info& s) : first(f), second(s) { }
41  };
42 
43 private:
44  template <class T> class _V : public IValue {
45  T m_O;
46  public:
47  _V(const T& v) : m_O(v) { m_P = &m_O; }
48  virtual ~_V() = default;
49  virtual long size() const { return sizeof(T); }
50  virtual void construct(void* b) const { ::new(b) T(); }
51  };
52 
53  template <class T> class _TT : public Tag {
54  public: _TT() : Tag(sizeof(T), typeid(T)) { }
55  };
56 
57 protected:
58  // Referenced implementation of the IInspector interface:
60  virtual StatusCode inspectByRef(const void* pObj, const Tag& typ, void* pOwner, const Tag& otag, const std::string& comment, long flag) = 0;
62  virtual StatusCode inspectByValue(IValue* pObj, const Tag& typ, void* pOwner, const Tag& oTag, const std::string& comment) = 0;
64  virtual StatusCode inspectContByRef(const void* pObj, const Tag& tag, const Tag& rtag, const Tag& vtag, const void* pOwner, const Tag& otag, const std::string& comment, long flags) = 0;
66  virtual StatusCode inspectContByValue(IValue* pObj, const Tag& tag, const Tag& rtag, const Tag& vtag, const void* pOwner, const Tag& otag, const std::string& comment) = 0;
67 
68 public:
69  // User interface of the IInspector interface
71  template < class T, class O >
72  StatusCode inspectByRef(const T* pObj, const O* pOwner, const std::string& comment, long flag=Mutable) {
73  return inspectByRef(pObj, _TT<T>(), (void*)pOwner, _TT<O>(), comment, flag);
74  }
76  template < class T, class O >
77  StatusCode inspectByValue(const T& obj, const O* pOwner, const std::string& comment) {
78  return inspectByValue(new _V<T>(obj), _TT<T>(), (void*)pOwner, _TT<O>(), comment);
79  }
81  template < class T, class O >
82  StatusCode inspectContByRef( const T* pObj, const O* pOwner, const std::string& comment, long flag=Mutable) {
83  typedef typename T::value_type _VVV;
84  typedef typename T::value_type _TTT;
85  // Unfortunately this is not implemented on G++:
86  // typedef typename T::allocator_type::value_type _TTT;
87  return inspectContByRef((void*)pObj, _TT<T>(), _TT<_VVV>(), _TT<_TTT>(), (void*)pOwner, _TT<O>(), comment, flag);
88  }
90  template < class T, class O >
91  StatusCode inspectContByValue( const T& obj, const O* pOwner, const std::string& comment) {
92  typedef typename T::value_type _VVV;
93  typedef typename T::value_type _TTT;
94  // Unfortunately this is not implemented on G++:
95  // typedef typename T::allocator_type::value_type _TTT;
96  return inspectContByValue(new _V<T>(obj), _TT<T>(), _TT<_VVV>(), _TT<_TTT>(), (void*)pOwner, _TT<O>(), comment);
97  }
98 };
99 #endif // GAUDIKERNEL_IINSPECTOR_H
StatusCode inspectByValue(const T &obj, const O *pOwner, const std::string &comment)
Inspect single item by its value (const)
Definition: IInspector.h:77
StatusCode inspectContByRef(const T *pObj, const O *pOwner, const std::string &comment, long flag=Mutable)
Inspect container of object items by its reference (mutable and const)
Definition: IInspector.h:82
virtual void release()
Definition: IInspector.h:30
StatusCode inspectByRef(const T *pObj, const O *pOwner, const std::string &comment, long flag=Mutable)
Inspect single item by its reference (mutable and const)
Definition: IInspector.h:72
STL class.
_V(const T &v)
Definition: IInspector.h:47
StatusCode inspectContByValue(const T &obj, const O *pOwner, const std::string &comment)
Inspect container of object items by its value (const)
Definition: IInspector.h:91
Inspector base class.
Definition: IInspector.h:15
This class is used for returning status codes from appropriate routines.
Definition: StatusCode.h:26
Definition of the basic interface.
Definition: IInterface.h:234
virtual void construct(void *b) const
Definition: IInspector.h:50
#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
const std::type_info & second
Definition: IInspector.h:39
const void * ptr() const
Definition: IInspector.h:32
string s
Definition: gaudirun.py:245
virtual long size() const
Definition: IInspector.h:49
#define GAUDI_API
Definition: Kernel.h:107
Tag(long f, const std::type_info &s)
Definition: IInspector.h:40