-
Notifications
You must be signed in to change notification settings - Fork 9
/
class_standard.go
271 lines (207 loc) · 5.93 KB
/
class_standard.go
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
// Copyright 2011 Julian Phillips. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package py
// #include "utils.h"
import "C"
import "unsafe"
//export goClassCall
func goClassCall(obj, args, kwds unsafe.Pointer) unsafe.Pointer {
// Get the class context
ctxt := getClassContext(obj)
// Turn the function into something we can call
f := (*func(unsafe.Pointer, *Tuple, *Dict) (Object, error))(unsafe.Pointer(&ctxt.call))
// Get args and kwds ready to use, by turning them into pointers of the
// appropriate type
a := newTuple((*C.PyObject)(args))
k := newDict((*C.PyObject)(kwds))
ret, err := (*f)(obj, a, k)
if err != nil {
raise(err)
return nil
}
return unsafe.Pointer(c(ret))
}
//export goClassCompare
func goClassCompare(obj1, obj2 unsafe.Pointer) int {
// Get the class context
ctxt := getClassContext(obj1)
// Turn the function into something we can call
f := (*func(unsafe.Pointer, Object) (int, error))(unsafe.Pointer(&ctxt.compare))
o := newObject((*C.PyObject)(obj2))
ret, err := (*f)(obj1, o)
if err != nil {
raise(err)
return -1
}
return ret
}
//export goClassGetAttr
func goClassGetAttr(obj unsafe.Pointer, name *C.char) unsafe.Pointer {
// Get the class context
ctxt := getClassContext(obj)
// Turn the function into something we can call
f := (*func(unsafe.Pointer, string) (Object, error))(unsafe.Pointer(&ctxt.getattr))
s := C.GoString(name)
ret, err := (*f)(obj, s)
if err != nil {
raise(err)
return nil
}
return unsafe.Pointer(c(ret))
}
//export goClassGetAttrObj
func goClassGetAttrObj(obj1, obj2 unsafe.Pointer) unsafe.Pointer {
// Get the class context
ctxt := getClassContext(obj1)
// Turn the function into something we can call
f := (*func(unsafe.Pointer, Object) (Object, error))(unsafe.Pointer(&ctxt.getattro))
o := newObject((*C.PyObject)(obj2))
ret, err := (*f)(obj1, o)
if err != nil {
raise(err)
return nil
}
return unsafe.Pointer(c(ret))
}
//export goClassDealloc
func goClassDealloc(obj unsafe.Pointer) {
// Get the class context
ctxt := getClassContext(obj)
if ctxt.dealloc != nil {
// Turn the function into something we can call
f := (*func(unsafe.Pointer))(unsafe.Pointer(&ctxt.dealloc))
(*f)(obj)
} else {
(*AbstractObject)(obj).Free()
}
}
//export goClassHash
func goClassHash(obj unsafe.Pointer) C.long {
// Get the class context
ctxt := getClassContext(obj)
// Turn the function into something we can call
f := (*func(unsafe.Pointer) (uint32, error))(unsafe.Pointer(&ctxt.hash))
ret, err := (*f)(obj)
if err != nil {
raise(err)
return -1
} else if C.long(ret) == -1 {
return -2
}
return C.long(ret)
}
//export goClassInit
func goClassInit(obj, args, kwds unsafe.Pointer) int {
// Get the class context
ctxt := getClassContext(obj)
// Turn the function into something we can call
f := (*func(unsafe.Pointer, *Tuple, *Dict) error)(unsafe.Pointer(&ctxt.init))
// Get args and kwds ready to use, by turning them into pointers of the
// appropriate type
a := newTuple((*C.PyObject)(args))
k := newDict((*C.PyObject)(kwds))
err := (*f)(obj, a, k)
if err != nil {
raise(err)
return -1
}
return 0
}
//export goClassIter
func goClassIter(obj unsafe.Pointer) unsafe.Pointer {
// Get the class context
ctxt := getClassContext(obj)
// Turn the function into something we can call
f := (*func(unsafe.Pointer) (Object, error))(unsafe.Pointer(&ctxt.iter))
ret, err := (*f)(obj)
if err != nil {
raise(err)
return nil
}
return unsafe.Pointer(c(ret))
}
//export goClassIterNext
func goClassIterNext(obj unsafe.Pointer) unsafe.Pointer {
// Get the class context
ctxt := getClassContext(obj)
// Turn the function into something we can call
f := (*func(unsafe.Pointer) (Object, error))(unsafe.Pointer(&ctxt.iternext))
ret, err := (*f)(obj)
if err != nil {
raise(err)
return nil
} else if ret == nil {
return nil
}
return unsafe.Pointer(c(ret))
}
//export goClassRepr
func goClassRepr(obj unsafe.Pointer) unsafe.Pointer {
// Get the class context
ctxt := getClassContext(obj)
// Turn the function into something we can call
f := (*func(unsafe.Pointer) string)(unsafe.Pointer(&ctxt.repr))
if u, err := NewUnicode((*f)(obj)); err != nil {
return nil
} else {
return unsafe.Pointer(u)
}
}
//export goClassRichCmp
func goClassRichCmp(obj1, obj2 unsafe.Pointer, op int) unsafe.Pointer {
// Get the class context
ctxt := getClassContext(obj1)
// Turn the function into something we can call
f := (*func(unsafe.Pointer, Object, Op) (Object, error))(unsafe.Pointer(&ctxt.richcmp))
// Get obj2 ready for use
arg := newObject((*C.PyObject)(obj2))
ret, err := (*f)(obj1, arg, Op(op))
if err != nil {
raise(err)
return nil
}
return unsafe.Pointer(c(ret))
}
//export goClassSetAttr
func goClassSetAttr(obj unsafe.Pointer, name *C.char, obj2 unsafe.Pointer) int {
// Get the class context
ctxt := getClassContext(obj)
// Turn the function into something we can call
f := (*func(unsafe.Pointer, string, Object) error)(unsafe.Pointer(&ctxt.setattr))
s := C.GoString(name)
o := newObject((*C.PyObject)(obj2))
err := (*f)(obj, s, o)
if err != nil {
raise(err)
return -1
}
return 0
}
//export goClassSetAttrObj
func goClassSetAttrObj(obj1, obj2, obj3 unsafe.Pointer) int {
// Get the class context
ctxt := getClassContext(obj1)
// Turn the function into something we can call
f := (*func(unsafe.Pointer, Object, Object) error)(unsafe.Pointer(&ctxt.setattro))
o := newObject((*C.PyObject)(obj2))
o2 := newObject((*C.PyObject)(obj3))
err := (*f)(obj1, o, o2)
if err != nil {
raise(err)
return -1
}
return 0
}
//export goClassStr
func goClassStr(obj unsafe.Pointer) unsafe.Pointer {
// Get the class context
ctxt := getClassContext(obj)
// Turn the function into something we can call
f := (*func(unsafe.Pointer) string)(unsafe.Pointer(&ctxt.str))
if u, err := NewUnicode((*f)(obj)); err != nil {
return nil
} else {
return unsafe.Pointer(u)
}
}