FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonnet/src/runtime/methodobject.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
/
methodobject.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
207 lines (186 loc) · 6.94 KB
Breadcrumbs
pythonnet
/
src
/
runtime
/
methodobject.cs
Copy path
File metadata and controls
207 lines (186 loc) · 6.94 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
using
System
;
using
System
.
Reflection
;
namespace
Python
.
Runtime
{
/// <summary>
/// Implements a Python type that represents a CLR method. Method objects
/// support a subscript syntax [] to allow explicit overload selection.
/// </summary>
/// <remarks>
/// TODO: ForbidPythonThreadsAttribute per method info
/// </remarks>
internal
class
MethodObject
:
ExtensionType
{
internal
MethodInfo
[
]
info
;
internal
string
name
;
internal
MethodBinding
unbound
;
internal
MethodBinder
binder
;
internal
bool
is_static
=
false
;
internal
IntPtr
doc
;
internal
Type
type
;
public
MethodObject
(
Type
type
,
string
name
,
MethodInfo
[
]
info
)
{
_MethodObject
(
type
,
name
,
info
)
;
}
public
MethodObject
(
Type
type
,
string
name
,
MethodInfo
[
]
info
,
bool
allow_threads
)
{
_MethodObject
(
type
,
name
,
info
)
;
binder
.
allow_threads
=
allow_threads
;
}
private
void
_MethodObject
(
Type
type
,
string
name
,
MethodInfo
[
]
info
)
{
this
.
type
=
type
;
this
.
name
=
name
;
this
.
info
=
info
;
binder
=
new
MethodBinder
(
)
;
foreach
(
MethodInfo
item
in
info
)
{
binder
.
AddMethod
(
item
)
;
if
(
item
.
IsStatic
)
{
this
.
is_static
=
true
;
}
}
}
public
virtual
IntPtr
Invoke
(
IntPtr
inst
,
IntPtr
args
,
IntPtr
kw
)
{
return
Invoke
(
inst
,
args
,
kw
,
null
)
;
}
public
virtual
IntPtr
Invoke
(
IntPtr
target
,
IntPtr
args
,
IntPtr
kw
,
MethodBase
info
)
{
return
binder
.
Invoke
(
target
,
args
,
kw
,
info
,
this
.
info
)
;
}
/// <summary>
/// Helper to get docstrings from reflected method / param info.
/// </summary>
internal
IntPtr
GetDocString
(
)
{
if
(
doc
!=
IntPtr
.
Zero
)
{
return
doc
;
}
var
str
=
""
;
Type
marker
=
typeof
(
DocStringAttribute
)
;
MethodBase
[
]
methods
=
binder
.
GetMethods
(
)
;
foreach
(
MethodBase
method
in
methods
)
{
if
(
str
.
Length
>
0
)
{
str
+=
Environment
.
NewLine
;
}
var
attrs
=
(
Attribute
[
]
)
method
.
GetCustomAttributes
(
marker
,
false
)
;
if
(
attrs
.
Length
==
0
)
{
str
+=
method
.
ToString
(
)
;
}
else
{
var
attr
=
(
DocStringAttribute
)
attrs
[
0
]
;
str
+=
attr
.
DocString
;
}
}
doc
=
Runtime
.
PyString_FromString
(
str
)
;
return
doc
;
}
/// <summary>
/// This is a little tricky: a class can actually have a static method
/// and instance methods all with the same name. That makes it tough
/// to support calling a method 'unbound' (passing the instance as the
/// first argument), because in this case we can't know whether to call
/// the instance method unbound or call the static method.
/// </summary>
/// <remarks>
/// The rule we is that if there are both instance and static methods
/// with the same name, then we always call the static method. So this
/// method returns true if any of the methods that are represented by
/// the descriptor are static methods (called by MethodBinding).
/// </remarks>
internal
bool
IsStatic
(
)
{
return
is_static
;
}
/// <summary>
/// Descriptor __getattribute__ implementation.
/// </summary>
public
static
IntPtr
tp_getattro
(
IntPtr
ob
,
IntPtr
key
)
{
var
self
=
(
MethodObject
)
GetManagedObject
(
ob
)
;
if
(
!
Runtime
.
PyString_Check
(
key
)
)
{
return
Exceptions
.
RaiseTypeError
(
"string expected"
)
;
}
string
name
=
Runtime
.
GetManagedString
(
key
)
;
if
(
name
==
"__doc__"
)
{
IntPtr
doc
=
self
.
GetDocString
(
)
;
Runtime
.
XIncref
(
doc
)
;
return
doc
;
}
return
Runtime
.
PyObject_GenericGetAttr
(
ob
,
key
)
;
}
/// <summary>
/// Descriptor __get__ implementation. Accessing a CLR method returns
/// a "bound" method similar to a Python bound method.
/// </summary>
public
static
IntPtr
tp_descr_get
(
IntPtr
ds
,
IntPtr
ob
,
IntPtr
tp
)
{
var
self
=
(
MethodObject
)
GetManagedObject
(
ds
)
;
MethodBinding
binding
;
// If the method is accessed through its type (rather than via
// an instance) we return an 'unbound' MethodBinding that will
// cached for future accesses through the type.
if
(
ob
==
IntPtr
.
Zero
)
{
if
(
self
.
unbound
==
null
)
{
self
.
unbound
=
new
MethodBinding
(
self
,
IntPtr
.
Zero
,
tp
)
;
}
binding
=
self
.
unbound
;
Runtime
.
XIncref
(
binding
.
pyHandle
)
;
;
return
binding
.
pyHandle
;
}
if
(
Runtime
.
PyObject_IsInstance
(
ob
,
tp
)
<
1
)
{
return
Exceptions
.
RaiseTypeError
(
"invalid argument"
)
;
}
// If the object this descriptor is being called with is a subclass of the type
// this descriptor was defined on then it will be because the base class method
// is being called via super(Derived, self).method(...).
// In which case create a MethodBinding bound to the base class.
var
obj
=
GetManagedObject
(
ob
)
as
CLRObject
;
if
(
obj
!=
null
&&
obj
.
inst
.
GetType
(
)
!=
self
.
type
&&
obj
.
inst
is
IPythonDerivedType
&&
self
.
type
.
IsInstanceOfType
(
obj
.
inst
)
)
{
ClassBase
basecls
=
ClassManager
.
GetClass
(
self
.
type
)
;
binding
=
new
MethodBinding
(
self
,
ob
,
basecls
.
pyHandle
)
;
return
binding
.
pyHandle
;
}
binding
=
new
MethodBinding
(
self
,
ob
,
tp
)
;
return
binding
.
pyHandle
;
}
/// <summary>
/// Descriptor __repr__ implementation.
/// </summary>
public
static
IntPtr
tp_repr
(
IntPtr
ob
)
{
var
self
=
(
MethodObject
)
GetManagedObject
(
ob
)
;
return
Runtime
.
PyString_FromString
(
$
"<method '
{
self
.
name
}
'>"
)
;
}
/// <summary>
/// Descriptor dealloc implementation.
/// </summary>
public
new
static
void
tp_dealloc
(
IntPtr
ob
)
{
var
self
=
(
MethodObject
)
GetManagedObject
(
ob
)
;
Runtime
.
XDecref
(
self
.
doc
)
;
if
(
self
.
unbound
!=
null
)
{
Runtime
.
XDecref
(
self
.
unbound
.
pyHandle
)
;
}
ExtensionType
.
FinalizeObject
(
self
)
;
}
}
}
Back
|
FazBrowse Home
|
New Git URL