forked from excid3/python-apt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgeneric.h
More file actions
148 lines (127 loc) · 4.18 KB
/
generic.h
File metadata and controls
148 lines (127 loc) · 4.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
// -*- mode: cpp; mode: fold -*-
// Description /*{{{*/
// $Id: generic.h,v 1.4 2002/03/10 05:45:34 mdz Exp $
/* ######################################################################
generic - Some handy functions to make integration a tad simpler
Python needs this little _HEAD tacked onto the front of the object..
This complicates the integration with C++. We use some templates to
make that quite transparent to us. It would have been nice if Python
internally used a page from the C++ ref counting book to hide its little
header from the world, but it doesn't.
The CppPyObject has the target object and the Python header, this is
needed to ensure proper alignment.
GetCpp returns the C++ object from a PyObject.
CppPyObject_NEW creates the Python object and then uses placement new
to init the C++ class.. This is good for simple situations and as an
example on how to do it in other more specific cases.
CppPyObject_Dealloc should be used in the Type as the destructor
function.
HandleErrors converts errors from the internal _error stack into Python
exceptions and makes sure the _error stack is empty.
##################################################################### */
/*}}}*/
#ifndef GENERIC_H
#define GENERIC_H
#include <Python.h>
#include <string>
#include <new>
#if PYTHON_API_VERSION < 1013
typedef int Py_ssize_t;
#endif
template <class T> struct CppPyObject : public PyObject
{
// We are only using CppPyObject and friends as dumb structs only, ie the
// c'tor is never called.
// However if T doesn't have a default c'tor C++ doesn't generate one for
// CppPyObject (since it can't know how it should initialize Object).
//
// This causes problems then in CppOwnedPyObject, for which C++ can't create
// a c'tor that calls the base class c'tor (which causes a compilation
// error).
// So basically having the c'tor here removes the need for T to have a
// default c'tor, which is not always desireable.
CppPyObject() { };
T Object;
};
template <class T> struct CppOwnedPyObject : public CppPyObject<T>
{
PyObject *Owner;
};
template <class T>
inline T &GetCpp(PyObject *Obj)
{
return ((CppPyObject<T> *)Obj)->Object;
}
template <class T>
inline PyObject *GetOwner(PyObject *Obj)
{
return ((CppOwnedPyObject<T> *)Obj)->Owner;
}
// Generic 'new' functions
template <class T>
inline CppPyObject<T> *CppPyObject_NEW(PyTypeObject *Type)
{
CppPyObject<T> *New = PyObject_NEW(CppPyObject<T>,Type);
new (&New->Object) T;
return New;
}
template <class T,class A>
inline CppPyObject<T> *CppPyObject_NEW(PyTypeObject *Type,A const &Arg)
{
CppPyObject<T> *New = PyObject_NEW(CppPyObject<T>,Type);
new (&New->Object) T(Arg);
return New;
}
template <class T>
inline CppOwnedPyObject<T> *CppOwnedPyObject_NEW(PyObject *Owner,
PyTypeObject *Type)
{
CppOwnedPyObject<T> *New = PyObject_NEW(CppOwnedPyObject<T>,Type);
new (&New->Object) T;
New->Owner = Owner;
Py_INCREF(Owner);
return New;
}
template <class T,class A>
inline CppOwnedPyObject<T> *CppOwnedPyObject_NEW(PyObject *Owner,
PyTypeObject *Type,A const &Arg)
{
CppOwnedPyObject<T> *New = PyObject_NEW(CppOwnedPyObject<T>,Type);
new (&New->Object) T(Arg);
New->Owner = Owner;
if (Owner != 0)
Py_INCREF(Owner);
return New;
}
// Generic Dealloc type functions
template <class T>
void CppDealloc(PyObject *Obj)
{
GetCpp<T>(Obj).~T();
PyObject_DEL(Obj);
}
template <class T>
void CppOwnedDealloc(PyObject *iObj)
{
CppOwnedPyObject<T> *Obj = (CppOwnedPyObject<T> *)iObj;
Obj->Object.~T();
if (Obj->Owner != 0)
Py_DECREF(Obj->Owner);
PyObject_DEL(Obj);
}
inline PyObject *CppPyString(std::string Str)
{
return PyString_FromStringAndSize(Str.c_str(),Str.length());
}
inline PyObject *Safe_FromString(const char *Str)
{
if (Str == 0)
return PyString_FromString("");
return PyString_FromString(Str);
}
// Convert _error into Python exceptions
PyObject *HandleErrors(PyObject *Res = 0);
// Convert a list of strings to a char **
const char **ListToCharChar(PyObject *List,bool NullTerm = false);
PyObject *CharCharToList(const char **List,unsigned long Size = 0);
#endif