FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonnet/src/runtime/classbase.cs at v2.5.1 · pythonnet/pythonnet · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
pythonnet
/
pythonnet
Public
Notifications
You must be signed in to change notification settings
Fork
780
Star
5.5k
Code
Issues
153
Pull requests
12
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
pythonnet
/
src
/
runtime
/
classbase.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
306 lines (277 loc) · 10.1 KB
Breadcrumbs
pythonnet
/
src
/
runtime
/
classbase.cs
Copy path
File metadata and controls
306 lines (277 loc) · 10.1 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
using
System
;
using
System
.
Collections
;
using
System
.
Runtime
.
InteropServices
;
namespace
Python
.
Runtime
{
/// <summary>
/// Base class for Python types that reflect managed types / classes.
/// Concrete subclasses include ClassObject and DelegateObject. This
/// class provides common attributes and common machinery for doing
/// class initialization (initialization of the class __dict__). The
/// concrete subclasses provide slot implementations appropriate for
/// each variety of reflected type.
/// </summary>
internal
class
ClassBase
:
ManagedType
{
internal
Indexer
indexer
;
internal
Type
type
;
internal
ClassBase
(
Type
tp
)
{
indexer
=
null
;
type
=
tp
;
}
internal
virtual
bool
CanSubclass
(
)
{
return
!
type
.
IsEnum
;
}
/// <summary>
/// Implements __init__ for reflected classes and value types.
/// </summary>
public
static
int
tp_init
(
IntPtr
ob
,
IntPtr
args
,
IntPtr
kw
)
{
return
0
;
}
/// <summary>
/// Default implementation of [] semantics for reflected types.
/// </summary>
public
virtual
IntPtr
type_subscript
(
IntPtr
idx
)
{
Type
[
]
types
=
Runtime
.
PythonArgsToTypeArray
(
idx
)
;
if
(
types
==
null
)
{
return
Exceptions
.
RaiseTypeError
(
"type(s) expected"
)
;
}
Type
target
=
GenericUtil
.
GenericForType
(
type
,
types
.
Length
)
;
if
(
target
!=
null
)
{
Type
t
=
target
.
MakeGenericType
(
types
)
;
ManagedType
c
=
ClassManager
.
GetClass
(
t
)
;
Runtime
.
XIncref
(
c
.
pyHandle
)
;
return
c
.
pyHandle
;
}
return
Exceptions
.
RaiseTypeError
(
"no type matches params"
)
;
}
/// <summary>
/// Standard comparison implementation for instances of reflected types.
/// </summary>
public
static
IntPtr
tp_richcompare
(
IntPtr
ob
,
IntPtr
other
,
int
op
)
{
CLRObject
co1
;
CLRObject
co2
;
switch
(
op
)
{
case
Runtime
.
Py_EQ
:
case
Runtime
.
Py_NE
:
IntPtr
pytrue
=
Runtime
.
PyTrue
;
IntPtr
pyfalse
=
Runtime
.
PyFalse
;
// swap true and false for NE
if
(
op
!=
Runtime
.
Py_EQ
)
{
pytrue
=
Runtime
.
PyFalse
;
pyfalse
=
Runtime
.
PyTrue
;
}
if
(
ob
==
other
)
{
Runtime
.
XIncref
(
pytrue
)
;
return
pytrue
;
}
co1
=
GetManagedObject
(
ob
)
as
CLRObject
;
co2
=
GetManagedObject
(
other
)
as
CLRObject
;
if
(
null
==
co2
)
{
Runtime
.
XIncref
(
pyfalse
)
;
return
pyfalse
;
}
object
o1
=
co1
.
inst
;
object
o2
=
co2
.
inst
;
if
(
Equals
(
o1
,
o2
)
)
{
Runtime
.
XIncref
(
pytrue
)
;
return
pytrue
;
}
Runtime
.
XIncref
(
pyfalse
)
;
return
pyfalse
;
case
Runtime
.
Py_LT
:
case
Runtime
.
Py_LE
:
case
Runtime
.
Py_GT
:
case
Runtime
.
Py_GE
:
co1
=
GetManagedObject
(
ob
)
as
CLRObject
;
co2
=
GetManagedObject
(
other
)
as
CLRObject
;
if
(
co1
==
null
||
co2
==
null
)
{
return
Exceptions
.
RaiseTypeError
(
"Cannot get managed object"
)
;
}
var
co1Comp
=
co1
.
inst
as
IComparable
;
if
(
co1Comp
==
null
)
{
Type
co1Type
=
co1
.
GetType
(
)
;
return
Exceptions
.
RaiseTypeError
(
$
"Cannot convert object of type
{
co1Type
}
to IComparable"
)
;
}
try
{
int
cmp
=
co1Comp
.
CompareTo
(
co2
.
inst
)
;
IntPtr
pyCmp
;
if
(
cmp
<
0
)
{
if
(
op
==
Runtime
.
Py_LT
||
op
==
Runtime
.
Py_LE
)
{
pyCmp
=
Runtime
.
PyTrue
;
}
else
{
pyCmp
=
Runtime
.
PyFalse
;
}
}
else
if
(
cmp
==
0
)
{
if
(
op
==
Runtime
.
Py_LE
||
op
==
Runtime
.
Py_GE
)
{
pyCmp
=
Runtime
.
PyTrue
;
}
else
{
pyCmp
=
Runtime
.
PyFalse
;
}
}
else
{
if
(
op
==
Runtime
.
Py_GE
||
op
==
Runtime
.
Py_GT
)
{
pyCmp
=
Runtime
.
PyTrue
;
}
else
{
pyCmp
=
Runtime
.
PyFalse
;
}
}
Runtime
.
XIncref
(
pyCmp
)
;
return
pyCmp
;
}
catch
(
ArgumentException
e
)
{
return
Exceptions
.
RaiseTypeError
(
e
.
Message
)
;
}
default
:
Runtime
.
XIncref
(
Runtime
.
PyNotImplemented
)
;
return
Runtime
.
PyNotImplemented
;
}
}
/// <summary>
/// Standard iteration support for instances of reflected types. This
/// allows natural iteration over objects that either are IEnumerable
/// or themselves support IEnumerator directly.
/// </summary>
public
static
IntPtr
tp_iter
(
IntPtr
ob
)
{
var
co
=
GetManagedObject
(
ob
)
as
CLRObject
;
if
(
co
==
null
)
{
return
Exceptions
.
RaiseTypeError
(
"invalid object"
)
;
}
var
e
=
co
.
inst
as
IEnumerable
;
IEnumerator
o
;
if
(
e
!=
null
)
{
o
=
e
.
GetEnumerator
(
)
;
}
else
{
o
=
co
.
inst
as
IEnumerator
;
if
(
o
==
null
)
{
return
Exceptions
.
RaiseTypeError
(
"iteration over non-sequence"
)
;
}
}
return
new
Iterator
(
o
)
.
pyHandle
;
}
/// <summary>
/// Standard __hash__ implementation for instances of reflected types.
/// </summary>
public
static
IntPtr
tp_hash
(
IntPtr
ob
)
{
var
co
=
GetManagedObject
(
ob
)
as
CLRObject
;
if
(
co
==
null
)
{
return
Exceptions
.
RaiseTypeError
(
"unhashable type"
)
;
}
return
new
IntPtr
(
co
.
inst
.
GetHashCode
(
)
)
;
}
/// <summary>
/// Standard __str__ implementation for instances of reflected types.
/// </summary>
public
static
IntPtr
tp_str
(
IntPtr
ob
)
{
var
co
=
GetManagedObject
(
ob
)
as
CLRObject
;
if
(
co
==
null
)
{
return
Exceptions
.
RaiseTypeError
(
"invalid object"
)
;
}
try
{
return
Runtime
.
PyString_FromString
(
co
.
inst
.
ToString
(
)
)
;
}
catch
(
Exception
e
)
{
if
(
e
.
InnerException
!=
null
)
{
e
=
e
.
InnerException
;
}
Exceptions
.
SetError
(
e
)
;
return
IntPtr
.
Zero
;
}
}
public
static
IntPtr
tp_repr
(
IntPtr
ob
)
{
var
co
=
GetManagedObject
(
ob
)
as
CLRObject
;
if
(
co
==
null
)
{
return
Exceptions
.
RaiseTypeError
(
"invalid object"
)
;
}
try
{
//if __repr__ is defined, use it
var
instType
=
co
.
inst
.
GetType
(
)
;
System
.
Reflection
.
MethodInfo
methodInfo
=
instType
.
GetMethod
(
"__repr__"
)
;
if
(
methodInfo
!=
null
&&
methodInfo
.
IsPublic
)
{
var
reprString
=
methodInfo
.
Invoke
(
co
.
inst
,
null
)
as
string
;
return
Runtime
.
PyString_FromString
(
reprString
)
;
}
//otherwise use the standard object.__repr__(inst)
IntPtr
args
=
Runtime
.
PyTuple_New
(
1
)
;
Runtime
.
XIncref
(
ob
)
;
Runtime
.
PyTuple_SetItem
(
args
,
0
,
ob
)
;
IntPtr
reprFunc
=
Runtime
.
PyObject_GetAttrString
(
Runtime
.
PyBaseObjectType
,
"__repr__"
)
;
var
output
=
Runtime
.
PyObject_Call
(
reprFunc
,
args
,
IntPtr
.
Zero
)
;
Runtime
.
XDecref
(
args
)
;
Runtime
.
XDecref
(
reprFunc
)
;
return
output
;
}
catch
(
Exception
e
)
{
if
(
e
.
InnerException
!=
null
)
{
e
=
e
.
InnerException
;
}
Exceptions
.
SetError
(
e
)
;
return
IntPtr
.
Zero
;
}
}
/// <summary>
/// Standard dealloc implementation for instances of reflected types.
/// </summary>
public
static
void
tp_dealloc
(
IntPtr
ob
)
{
ManagedType
self
=
GetManagedObject
(
ob
)
;
IntPtr
dict
=
Marshal
.
ReadIntPtr
(
ob
,
ObjectOffset
.
TypeDictOffset
(
self
.
tpHandle
)
)
;
if
(
dict
!=
IntPtr
.
Zero
)
{
Runtime
.
XDecref
(
dict
)
;
}
Runtime
.
PyObject_GC_UnTrack
(
self
.
pyHandle
)
;
Runtime
.
PyObject_GC_Del
(
self
.
pyHandle
)
;
Runtime
.
XDecref
(
self
.
tpHandle
)
;
self
.
gcHandle
.
Free
(
)
;
}
}
}
Back
|
FazBrowse Home
|
New Git URL