Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
CPPInstance.h
Go to the documentation of this file.
1#ifndef CPYCPPYY_CPPINSTANCE_H
2#define CPYCPPYY_CPPINSTANCE_H
3
4//////////////////////////////////////////////////////////////////////////////
5// //
6// CpyCppyy::CPPInstance //
7// //
8// Python-side proxy, encapsulaties a C++ object. //
9// //
10//////////////////////////////////////////////////////////////////////////////
11
12// Bindings
13#include "CPPScope.h"
14#include "Cppyy.h"
15#include "CallContext.h" // for Parameter
16
17// Standard
18#include <utility>
19#include <vector>
20
21
22namespace CPyCppyy {
23
24typedef std::vector<std::pair<ptrdiff_t, PyObject*>> CI_DatamemberCache_t;
25
27public:
28 enum EFlags {
29 kDefault = 0x0000,
30 kNoWrapConv = 0x0001,
31 kIsOwner = 0x0002,
32 kIsExtended = 0x0004,
33 kIsReference = 0x0008,
34 kIsRValue = 0x0010,
35 kIsValue = 0x0020,
36 kIsPtrPtr = 0x0040,
37 kIsSmartPtr = 0x0080,
38 kNoMemReg = 0x0100,
39 kHasLifeline = 0x0200,
40 kIsRegulated = 0x0400 };
41
42public: // public, as the python C-API works with C structs
43 PyObject_HEAD
44 void* fObject;
45 int fFlags;
46
47public:
48// construction (never done directly)
49 CPPInstance() = delete;
50
51 void Set(void* address, EFlags flags = kDefault);
52 CPPInstance* Copy(void* cppinst);
53
54// state checking
55 bool IsExtended() const { return fFlags & kIsExtended; }
56 bool IsSmart() const { return fFlags & kIsSmartPtr; }
57
58// access to C++ pointer and type
59 void* GetObject();
60 void*& GetObjectRaw() { return IsExtended() ? *(void**) fObject : fObject; }
61 Cppyy::TCppType_t ObjectIsA(bool check_smart = true) const;
62
63// memory management: ownership of the underlying C++ object
64 void PythonOwns();
65 void CppOwns();
66
67// smart pointer management
68 void SetSmart(PyObject* smart_type);
69 void* GetSmartObject() { return GetObjectRaw(); }
71
72// data member cache
74
75// cross-inheritence dispatch
76 void SetDispatchPtr(void*);
77
78private:
79 void CreateExtension();
80 void* GetExtendedObject();
81};
82
83
84//- public methods -----------------------------------------------------------
85inline void CPPInstance::Set(void* address, EFlags flags)
86{
87// Initialize the proxy with the pointer value 'address.'
88 if (flags != kDefault) fFlags = flags;
89 GetObjectRaw() = address;
90}
91
92//----------------------------------------------------------------------------
94{
95// Retrieve a pointer to the held C++ object.
96 if (!IsExtended()) {
97 if (fObject && (fFlags & kIsReference))
98 return *(reinterpret_cast<void**>(fObject));
99 else
100 return fObject; // may be null
101 } else
102 return GetExtendedObject();
103}
104
105//----------------------------------------------------------------------------
106inline Cppyy::TCppType_t CPPInstance::ObjectIsA(bool check_smart) const
107{
108// Retrieve the C++ type identifier (or raw type if smart).
109 if (check_smart || !IsSmart()) return ((CPPClass*)Py_TYPE(this))->fCppType;
110 return GetSmartIsA();
111}
112
113
114//- object proxy type and type verification ----------------------------------
116
117template<typename T>
118inline bool CPPInstance_Check(T* object)
119{
120// Short-circuit the type check by checking tp_new which all generated subclasses
121// of CPPInstance inherit.
122 return object && \
123 (Py_TYPE(object)->tp_new == CPPInstance_Type.tp_new || \
124 PyObject_TypeCheck(object, &CPPInstance_Type));
125}
126
127template<typename T>
128inline bool CPPInstance_CheckExact(T* object)
129{
130 return object && Py_TYPE(object) == &CPPInstance_Type;
131}
132
133
134//- helper for memory regulation (no PyTypeObject equiv. member in p2.2) -----
135void op_dealloc_nofree(CPPInstance*);
136
137} // namespace CPyCppyy
138
139#endif // !CPYCPPYY_CPPINSTANCE_H
#define Py_TYPE(ob)
Definition CPyCppyy.h:217
_object PyObject
#define CPYCPPYY_IMPORT
Definition CommonDefs.h:26
Cppyy::TCppType_t GetSmartIsA() const
bool IsSmart() const
Definition CPPInstance.h:56
void Set(void *address, EFlags flags=kDefault)
Definition CPPInstance.h:85
CPPInstance * Copy(void *cppinst)
CI_DatamemberCache_t & GetDatamemberCache()
void SetSmart(PyObject *smart_type)
PyObject_HEAD void * fObject
Definition CPPInstance.h:44
Cppyy::TCppType_t ObjectIsA(bool check_smart=true) const
bool IsExtended() const
Definition CPPInstance.h:55
void SetDispatchPtr(void *)
Set of helper functions that are invoked from the pythonizors, on the Python side.
PyTypeObject CPPInstance_Type
std::vector< std::pair< ptrdiff_t, PyObject * > > CI_DatamemberCache_t
Definition CPPInstance.h:24
void op_dealloc_nofree(CPPInstance *)
bool CPPInstance_Check(T *object)
bool CPPInstance_CheckExact(T *object)
TCppScope_t TCppType_t
Definition cpp_cppyy.h:19