FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonnet/src/runtime/methodbinder.cs at refactor-qc-pythonnet5 · QuantConnect/pythonnet · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
QuantConnect
/
pythonnet
Public
forked from
pythonnet/pythonnet
Notifications
You must be signed in to change notification settings
Fork
31
Star
29
Code
Issues
5
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
pythonnet
/
src
/
runtime
/
methodbinder.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
774 lines (695 loc) · 27.7 KB
Breadcrumbs
pythonnet
/
src
/
runtime
/
methodbinder.cs
Copy path
File metadata and controls
774 lines (695 loc) · 27.7 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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
using
System
;
using
System
.
Collections
;
using
System
.
Collections
.
Generic
;
using
System
.
Reflection
;
using
System
.
Text
;
namespace
Python
.
Runtime
{
/// <summary>
/// A MethodBinder encapsulates information about a (possibly overloaded)
/// managed method, and is responsible for selecting the right method given
/// a set of Python arguments. This is also used as a base class for the
/// ConstructorBinder, a minor variation used to invoke constructors.
/// </summary>
internal
class
MethodBinder
{
private
List
<
MethodInformation
>
list
;
public
const
bool
DefaultAllowThreads
=
true
;
public
bool
allow_threads
=
DefaultAllowThreads
;
public
bool
init
=
false
;
internal
MethodBinder
(
)
{
list
=
new
List
<
MethodInformation
>
(
)
;
}
internal
MethodBinder
(
MethodInfo
mi
)
{
list
=
new
List
<
MethodInformation
>
{
new
MethodInformation
(
mi
,
mi
.
GetParameters
(
)
)
}
;
}
public
int
Count
{
get
{
return
list
.
Count
;
}
}
internal
void
AddMethod
(
MethodBase
m
)
{
// we added a new method so we have to re sort the method list
init
=
false
;
list
.
Add
(
new
MethodInformation
(
m
,
m
.
GetParameters
(
)
)
)
;
}
/// <summary>
/// Given a sequence of MethodInfo and a sequence of types, return the
/// MethodInfo that matches the signature represented by those types.
/// </summary>
internal
static
MethodInfo
MatchSignature
(
MethodInfo
[
]
mi
,
Type
[
]
tp
)
{
if
(
tp
==
null
)
{
return
null
;
}
int
count
=
tp
.
Length
;
foreach
(
MethodInfo
t
in
mi
)
{
ParameterInfo
[
]
pi
=
t
.
GetParameters
(
)
;
if
(
pi
.
Length
!=
count
)
{
continue
;
}
for
(
var
n
=
0
;
n
<
pi
.
Length
;
n
++
)
{
if
(
tp
[
n
]
!=
pi
[
n
]
.
ParameterType
)
{
break
;
}
if
(
n
==
pi
.
Length
-
1
)
{
return
t
;
}
}
}
return
null
;
}
/// <summary>
/// Given a sequence of MethodInfo and a sequence of type parameters,
/// return the MethodInfo that represents the matching closed generic.
/// </summary>
internal
static
MethodInfo
MatchParameters
(
MethodInfo
[
]
mi
,
Type
[
]
tp
)
{
if
(
tp
==
null
)
{
return
null
;
}
int
count
=
tp
.
Length
;
foreach
(
MethodInfo
t
in
mi
)
{
if
(
!
t
.
IsGenericMethodDefinition
)
{
continue
;
}
Type
[
]
args
=
t
.
GetGenericArguments
(
)
;
if
(
args
.
Length
!=
count
)
{
continue
;
}
try
{
// MakeGenericMethod can throw ArgumentException if the type parameters do not obey the constraints.
MethodInfo
method
=
t
.
MakeGenericMethod
(
tp
)
;
Exceptions
.
Clear
(
)
;
return
method
;
}
catch
(
ArgumentException
e
)
{
Exceptions
.
SetError
(
e
)
;
// The error will remain set until cleared by a successful match.
}
}
return
null
;
}
/// <summary>
/// Given a sequence of MethodInfo and two sequences of type parameters,
/// return the MethodInfo that matches the signature and the closed generic.
/// </summary>
internal
static
MethodInfo
MatchSignatureAndParameters
(
MethodInfo
[
]
mi
,
Type
[
]
genericTp
,
Type
[
]
sigTp
)
{
if
(
genericTp
==
null
||
sigTp
==
null
)
{
return
null
;
}
int
genericCount
=
genericTp
.
Length
;
int
signatureCount
=
sigTp
.
Length
;
foreach
(
MethodInfo
t
in
mi
)
{
if
(
!
t
.
IsGenericMethodDefinition
)
{
continue
;
}
Type
[
]
genericArgs
=
t
.
GetGenericArguments
(
)
;
if
(
genericArgs
.
Length
!=
genericCount
)
{
continue
;
}
ParameterInfo
[
]
pi
=
t
.
GetParameters
(
)
;
if
(
pi
.
Length
!=
signatureCount
)
{
continue
;
}
for
(
var
n
=
0
;
n
<
pi
.
Length
;
n
++
)
{
if
(
sigTp
[
n
]
!=
pi
[
n
]
.
ParameterType
)
{
break
;
}
if
(
n
==
pi
.
Length
-
1
)
{
MethodInfo
match
=
t
;
if
(
match
.
IsGenericMethodDefinition
)
{
// FIXME: typeArgs not used
Type
[
]
typeArgs
=
match
.
GetGenericArguments
(
)
;
return
match
.
MakeGenericMethod
(
genericTp
)
;
}
return
match
;
}
}
}
return
null
;
}
/// <summary>
/// Return the array of MethodInfo for this method. The result array
/// is arranged in order of precedence (done lazily to avoid doing it
/// at all for methods that are never called).
/// </summary>
internal
List
<
MethodInformation
>
GetMethods
(
)
{
if
(
!
init
)
{
// I'm sure this could be made more efficient.
list
.
Sort
(
new
MethodSorter
(
)
)
;
init
=
true
;
}
return
list
;
}
/// <summary>
/// Precedence algorithm largely lifted from Jython - the concerns are
/// generally the same so we'll start with this and tweak as necessary.
/// </summary>
/// <remarks>
/// Based from Jython `org.python.core.ReflectedArgs.precedence`
/// See: https://github.com/jythontools/jython/blob/master/src/org/python/core/ReflectedArgs.java#L192
/// </remarks>
private
static
int
GetPrecedence
(
MethodInformation
methodInformation
)
{
ParameterInfo
[
]
pi
=
methodInformation
.
ParameterInfo
;
var
mi
=
methodInformation
.
MethodBase
;
int
val
=
mi
.
IsStatic
?
3000
:
0
;
int
num
=
pi
.
Length
;
val
+=
mi
.
IsGenericMethod
?
1
:
0
;
for
(
var
i
=
0
;
i
<
num
;
i
++
)
{
val
+=
ArgPrecedence
(
pi
[
i
]
.
ParameterType
)
;
}
var
info
=
mi
as
MethodInfo
;
if
(
info
!=
null
)
{
val
+=
ArgPrecedence
(
info
.
ReturnType
)
;
val
+=
mi
.
DeclaringType
==
mi
.
ReflectedType
?
0
:
3000
;
}
return
val
;
}
/// <summary>
/// Return a precedence value for a particular Type object.
/// </summary>
internal
static
int
ArgPrecedence
(
Type
t
)
{
Type
objectType
=
typeof
(
object
)
;
if
(
t
==
objectType
)
{
return
3000
;
}
if
(
t
.
IsAssignableFrom
(
typeof
(
PyObject
)
)
)
{
return
-
1
;
}
TypeCode
tc
=
Type
.
GetTypeCode
(
t
)
;
// TODO: Clean up
switch
(
tc
)
{
case
TypeCode
.
Object
:
return
1
;
case
TypeCode
.
UInt64
:
return
10
;
case
TypeCode
.
UInt32
:
return
11
;
case
TypeCode
.
UInt16
:
return
12
;
case
TypeCode
.
Int64
:
return
13
;
case
TypeCode
.
Int32
:
return
14
;
case
TypeCode
.
Int16
:
return
15
;
case
TypeCode
.
Char
:
return
16
;
case
TypeCode
.
SByte
:
return
17
;
case
TypeCode
.
Byte
:
return
18
;
case
TypeCode
.
Single
:
return
20
;
case
TypeCode
.
Double
:
return
21
;
case
TypeCode
.
String
:
return
30
;
case
TypeCode
.
Boolean
:
return
40
;
}
if
(
t
.
IsArray
)
{
Type
e
=
t
.
GetElementType
(
)
;
if
(
e
==
objectType
)
{
return
2500
;
}
return
100
+
ArgPrecedence
(
e
)
;
}
return
2000
;
}
/// <summary>
/// Bind the given Python instance and arguments to a particular method
/// overload and return a structure that contains the converted Python
/// instance, converted arguments and the correct method to call.
/// </summary>
internal
Binding
Bind
(
IntPtr
inst
,
IntPtr
args
,
IntPtr
kw
)
{
return
Bind
(
inst
,
args
,
kw
,
null
,
null
)
;
}
internal
Binding
Bind
(
IntPtr
inst
,
IntPtr
args
,
IntPtr
kw
,
MethodBase
info
)
{
return
Bind
(
inst
,
args
,
kw
,
info
,
null
)
;
}
internal
Binding
Bind
(
IntPtr
inst
,
IntPtr
args
,
IntPtr
kw
,
MethodBase
info
,
MethodInfo
[
]
methodinfo
)
{
// loop to find match, return invoker w/ or /wo error
var
pynargs
=
(
int
)
Runtime
.
PyTuple_Size
(
args
)
;
object
arg
;
var
isGeneric
=
false
;
ArrayList
defaultArgList
;
Type
clrtype
;
Binding
bindingUsingImplicitConversion
=
null
;
var
methods
=
info
==
null
?
GetMethods
(
)
:
new
List
<
MethodInformation
>
(
1
)
{
new
MethodInformation
(
info
,
info
.
GetParameters
(
)
)
}
;
// TODO: Clean up
foreach
(
var
methodInformation
in
methods
)
{
var
mi
=
methodInformation
.
MethodBase
;
var
pi
=
methodInformation
.
ParameterInfo
;
if
(
mi
.
IsGenericMethod
)
{
isGeneric
=
true
;
}
int
clrnargs
=
pi
.
Length
;
int
arrayStart
;
if
(
CheckMethodArgumentsMatch
(
clrnargs
,
pynargs
,
pi
,
out
arrayStart
,
out
defaultArgList
)
)
{
var
outs
=
0
;
var
margs
=
new
object
[
clrnargs
]
;
var
usedImplicitConversion
=
false
;
for
(
int
n
=
0
;
n
<
clrnargs
;
n
++
)
{
IntPtr
op
;
if
(
n
<
pynargs
)
{
if
(
arrayStart
==
n
)
{
// map remaining Python arguments to a tuple since
// the managed function accepts it - hopefully :]
op
=
Runtime
.
PyTuple_GetSlice
(
args
,
arrayStart
,
pynargs
)
;
}
else
{
op
=
Runtime
.
PyTuple_GetItem
(
args
,
n
)
;
}
// this logic below handles cases when multiple overloading methods
// are ambiguous, hence comparison between Python and CLR types
// is necessary
clrtype
=
null
;
IntPtr
pyoptype
;
if
(
methods
.
Count
>
1
)
{
pyoptype
=
IntPtr
.
Zero
;
pyoptype
=
Runtime
.
PyObject_Type
(
op
)
;
Exceptions
.
Clear
(
)
;
if
(
pyoptype
!=
IntPtr
.
Zero
)
{
clrtype
=
Converter
.
GetTypeByAlias
(
pyoptype
)
;
}
Runtime
.
XDecref
(
pyoptype
)
;
}
if
(
clrtype
!=
null
)
{
var
typematch
=
false
;
if
(
(
pi
[
n
]
.
ParameterType
!=
typeof
(
object
)
)
&&
(
pi
[
n
]
.
ParameterType
!=
clrtype
)
)
{
IntPtr
pytype
=
Converter
.
GetPythonTypeByAlias
(
pi
[
n
]
.
ParameterType
)
;
pyoptype
=
Runtime
.
PyObject_Type
(
op
)
;
Exceptions
.
Clear
(
)
;
if
(
pyoptype
!=
IntPtr
.
Zero
)
{
if
(
pytype
!=
pyoptype
)
{
typematch
=
false
;
}
else
{
typematch
=
true
;
clrtype
=
pi
[
n
]
.
ParameterType
;
}
}
if
(
!
typematch
)
{
// this takes care of nullables
var
underlyingType
=
Nullable
.
GetUnderlyingType
(
pi
[
n
]
.
ParameterType
)
;
if
(
underlyingType
==
null
)
{
underlyingType
=
pi
[
n
]
.
ParameterType
;
}
// this takes care of enum values
TypeCode
argtypecode
=
Type
.
GetTypeCode
(
underlyingType
)
;
TypeCode
paramtypecode
=
Type
.
GetTypeCode
(
clrtype
)
;
if
(
argtypecode
==
paramtypecode
)
{
typematch
=
true
;
clrtype
=
pi
[
n
]
.
ParameterType
;
}
// accepts non-decimal numbers in decimal parameters
if
(
underlyingType
==
typeof
(
decimal
)
)
{
clrtype
=
pi
[
n
]
.
ParameterType
;
typematch
=
Converter
.
ToManaged
(
op
,
clrtype
,
out
arg
,
false
)
;
}
// this takes care of implicit conversions
var
opImplicit
=
pi
[
n
]
.
ParameterType
.
GetMethod
(
"op_Implicit"
,
new
[
]
{
clrtype
}
)
;
if
(
opImplicit
!=
null
)
{
usedImplicitConversion
=
typematch
=
opImplicit
.
ReturnType
==
pi
[
n
]
.
ParameterType
;
clrtype
=
pi
[
n
]
.
ParameterType
;
}
}
Runtime
.
XDecref
(
pyoptype
)
;
if
(
!
typematch
)
{
margs
=
null
;
break
;
}
}
else
{
typematch
=
true
;
clrtype
=
pi
[
n
]
.
ParameterType
;
}
}
else
{
clrtype
=
pi
[
n
]
.
ParameterType
;
}
if
(
pi
[
n
]
.
IsOut
||
clrtype
.
IsByRef
)
{
outs
++
;
}
if
(
!
Converter
.
ToManaged
(
op
,
clrtype
,
out
arg
,
false
)
)
{
Exceptions
.
Clear
(
)
;
margs
=
null
;
break
;
}
if
(
arrayStart
==
n
)
{
// GetSlice() creates a new reference but GetItem()
// returns only a borrow reference.
Runtime
.
XDecref
(
op
)
;
}
margs
[
n
]
=
arg
;
}
else
{
if
(
defaultArgList
!=
null
)
{
margs
[
n
]
=
defaultArgList
[
n
-
pynargs
]
;
}
}
}
if
(
margs
==
null
)
{
continue
;
}
object
target
=
null
;
if
(
!
mi
.
IsStatic
&&
inst
!=
IntPtr
.
Zero
)
{
//CLRObject co = (CLRObject)ManagedType.GetManagedObject(inst);
// InvalidCastException: Unable to cast object of type
// 'Python.Runtime.ClassObject' to type 'Python.Runtime.CLRObject'
var
co
=
ManagedType
.
GetManagedObject
(
inst
)
as
CLRObject
;
// Sanity check: this ensures a graceful exit if someone does
// something intentionally wrong like call a non-static method
// on the class rather than on an instance of the class.
// XXX maybe better to do this before all the other rigmarole.
if
(
co
==
null
)
{
return
null
;
}
target
=
co
.
inst
;
}
var
binding
=
new
Binding
(
mi
,
target
,
margs
,
outs
)
;
if
(
usedImplicitConversion
)
{
// lets just keep the first binding using implicit conversion
// this is to respect method order/precedence
if
(
bindingUsingImplicitConversion
==
null
)
{
// in this case we will not return the binding yet in case there is a match
// which does not use implicit conversions, which will return directly
bindingUsingImplicitConversion
=
binding
;
}
}
else
{
return
binding
;
}
}
}
// if we generated a binding using implicit conversion return it
if
(
bindingUsingImplicitConversion
!=
null
)
{
return
bindingUsingImplicitConversion
;
}
// We weren't able to find a matching method but at least one
// is a generic method and info is null. That happens when a generic
// method was not called using the [] syntax. Let's introspect the
// type of the arguments and use it to construct the correct method.
if
(
isGeneric
&&
info
==
null
&&
methodinfo
!=
null
)
{
Type
[
]
types
=
Runtime
.
PythonArgsToTypeArray
(
args
,
true
)
;
MethodInfo
mi
=
MatchParameters
(
methodinfo
,
types
)
;
return
Bind
(
inst
,
args
,
kw
,
mi
,
null
)
;
}
return
null
;
}
/// <summary>
/// This helper method will perform an initial check to determine if we found a matching
/// method based on its parameters count and type <see cref="Bind(IntPtr,IntPtr,IntPtr,MethodBase,MethodInfo[])"/>
/// </summary>
private
bool
CheckMethodArgumentsMatch
(
int
clrnargs
,
nint
pynargs
,
ParameterInfo
[
]
parameterInfo
,
out
int
arrayStart
,
out
ArrayList
defaultArgList
)
{
arrayStart
=
-
1
;
defaultArgList
=
null
;
var
match
=
false
;
if
(
pynargs
==
clrnargs
)
{
match
=
true
;
}
else
if
(
pynargs
<
clrnargs
)
{
match
=
true
;
defaultArgList
=
new
ArrayList
(
)
;
for
(
var
v
=
pynargs
;
v
<
clrnargs
&&
match
;
v
++
)
{
if
(
parameterInfo
[
v
]
.
DefaultValue
==
DBNull
.
Value
)
{
match
=
false
;
}
else
{
defaultArgList
.
Add
(
parameterInfo
[
v
]
.
DefaultValue
)
;
}
}
}
else
if
(
pynargs
>
clrnargs
&&
clrnargs
>
0
&&
Attribute
.
IsDefined
(
parameterInfo
[
clrnargs
-
1
]
,
typeof
(
ParamArrayAttribute
)
)
)
{
// This is a `foo(params object[] bar)` style method
match
=
true
;
arrayStart
=
clrnargs
-
1
;
}
return
match
;
}
internal
virtual
IntPtr
Invoke
(
IntPtr
inst
,
IntPtr
args
,
IntPtr
kw
)
{
return
Invoke
(
inst
,
args
,
kw
,
null
,
null
)
;
}
internal
virtual
IntPtr
Invoke
(
IntPtr
inst
,
IntPtr
args
,
IntPtr
kw
,
MethodBase
info
)
{
return
Invoke
(
inst
,
args
,
kw
,
info
,
null
)
;
}
internal
virtual
IntPtr
Invoke
(
IntPtr
inst
,
IntPtr
args
,
IntPtr
kw
,
MethodBase
info
,
MethodInfo
[
]
methodinfo
)
{
Binding
binding
=
Bind
(
inst
,
args
,
kw
,
info
,
methodinfo
)
;
object
result
;
IntPtr
ts
=
IntPtr
.
Zero
;
if
(
binding
==
null
)
{
var
value
=
"No method matches given arguments"
;
if
(
methodinfo
!=
null
&&
methodinfo
.
Length
>
0
)
{
value
+=
$
" for
{
methodinfo
[
0
]
.
Name
}
"
;
}
Exceptions
.
SetError
(
Exceptions
.
TypeError
,
value
)
;
return
IntPtr
.
Zero
;
}
if
(
allow_threads
)
{
ts
=
PythonEngine
.
BeginAllowThreads
(
)
;
}
try
{
result
=
binding
.
info
.
Invoke
(
binding
.
inst
,
BindingFlags
.
Default
,
null
,
binding
.
args
,
null
)
;
}
catch
(
Exception
e
)
{
if
(
e
.
InnerException
!=
null
)
{
e
=
e
.
InnerException
;
}
if
(
allow_threads
)
{
PythonEngine
.
EndAllowThreads
(
ts
)
;
}
Exceptions
.
SetError
(
e
)
;
return
IntPtr
.
Zero
;
}
if
(
allow_threads
)
{
PythonEngine
.
EndAllowThreads
(
ts
)
;
}
// If there are out parameters, we return a tuple containing
// the result followed by the out parameters. If there is only
// one out parameter and the return type of the method is void,
// we return the out parameter as the result to Python (for
// code compatibility with ironpython).
var
mi
=
(
MethodInfo
)
binding
.
info
;
if
(
binding
.
outs
>
0
)
{
ParameterInfo
[
]
pi
=
mi
.
GetParameters
(
)
;
int
c
=
pi
.
Length
;
var
n
=
0
;
IntPtr
t
=
Runtime
.
PyTuple_New
(
binding
.
outs
+
1
)
;
IntPtr
v
=
Converter
.
ToPython
(
result
,
mi
.
ReturnType
)
;
Runtime
.
PyTuple_SetItem
(
t
,
n
,
v
)
;
n
++
;
for
(
var
i
=
0
;
i
<
c
;
i
++
)
{
Type
pt
=
pi
[
i
]
.
ParameterType
;
if
(
pi
[
i
]
.
IsOut
||
pt
.
IsByRef
)
{
v
=
Converter
.
ToPython
(
binding
.
args
[
i
]
,
pt
)
;
Runtime
.
PyTuple_SetItem
(
t
,
n
,
v
)
;
n
++
;
}
}
if
(
binding
.
outs
==
1
&&
mi
.
ReturnType
==
typeof
(
void
)
)
{
v
=
Runtime
.
PyTuple_GetItem
(
t
,
1
)
;
Runtime
.
XIncref
(
v
)
;
Runtime
.
XDecref
(
t
)
;
return
v
;
}
return
t
;
}
return
Converter
.
ToPython
(
result
,
mi
.
ReturnType
)
;
}
/// <summary>
/// Utility class to store the information about a <see cref="MethodBase"/>
/// </summary>
internal
class
MethodInformation
{
public
MethodBase
MethodBase
{
get
;
}
public
ParameterInfo
[
]
ParameterInfo
{
get
;
}
public
MethodInformation
(
MethodBase
methodBase
,
ParameterInfo
[
]
parameterInfo
)
{
MethodBase
=
methodBase
;
ParameterInfo
=
parameterInfo
;
}
public
override
string
ToString
(
)
{
return
MethodBase
.
ToString
(
)
;
}
}
/// <summary>
/// Utility class to sort method info by parameter type precedence.
/// </summary>
private
class
MethodSorter
:
IComparer
<
MethodInformation
>
{
public
int
Compare
(
MethodInformation
x
,
MethodInformation
y
)
{
int
p1
=
GetPrecedence
(
x
)
;
int
p2
=
GetPrecedence
(
y
)
;
if
(
p1
<
p2
)
{
return
-
1
;
}
if
(
p1
>
p2
)
{
return
1
;
}
return
0
;
}
}
protected
static
void
AppendArgumentTypes
(
StringBuilder
to
,
IntPtr
args
)
{
long
argCount
=
Runtime
.
PyTuple_Size
(
args
)
;
to
.
Append
(
"("
)
;
for
(
long
argIndex
=
0
;
argIndex
<
argCount
;
argIndex
++
)
{
var
arg
=
Runtime
.
PyTuple_GetItem
(
args
,
argIndex
)
;
if
(
arg
!=
IntPtr
.
Zero
)
{
var
type
=
Runtime
.
PyObject_Type
(
arg
)
;
if
(
type
!=
IntPtr
.
Zero
)
{
try
{
var
description
=
Runtime
.
PyObject_Unicode
(
type
)
;
if
(
description
!=
IntPtr
.
Zero
)
{
to
.
Append
(
Runtime
.
GetManagedString
(
description
)
)
;
Runtime
.
XDecref
(
description
)
;
}
}
finally
{
Runtime
.
XDecref
(
type
)
;
}
}
}
if
(
argIndex
+
1
<
argCount
)
to
.
Append
(
", "
)
;
}
to
.
Append
(
')'
)
;
}
}
/// <summary>
/// A Binding is a utility instance that bundles together a MethodInfo
/// representing a method to call, a (possibly null) target instance for
/// the call, and the arguments for the call (all as managed values).
/// </summary>
internal
class
Binding
{
public
MethodBase
info
;
public
object
[
]
args
;
public
object
inst
;
public
int
outs
;
internal
Binding
(
MethodBase
info
,
object
inst
,
object
[
]
args
,
int
outs
)
{
this
.
info
=
info
;
this
.
inst
=
inst
;
this
.
args
=
args
;
this
.
outs
=
outs
;
}
}
}
Back
|
FazBrowse Home
|
New Git URL