FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonnet/src/runtime/extensiontype.cs at drop-python2 · filmor/pythonnet · GitHub
filmor
/
pythonnet
Public
forked from
pythonnet/pythonnet
Notifications
You must be signed in to change notification settings
Fork
1
Star
1
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
pythonnet
/
src
/
runtime
/
extensiontype.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
96 lines (80 loc) · 3.22 KB
Breadcrumbs
pythonnet
/
src
/
runtime
/
extensiontype.cs
Copy path
File metadata and controls
96 lines (80 loc) · 3.22 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
using
System
;
using
System
.
Runtime
.
InteropServices
;
namespace
Python
.
Runtime
{
/// <summary>
/// Base class for extensions whose instances *share* a single Python
/// type object, such as the types that represent CLR methods, fields,
/// etc. Instances implemented by this class do not support sub-typing.
/// </summary>
internal
abstract
class
ExtensionType
:
ManagedType
{
public
ExtensionType
(
)
{
// Create a new PyObject whose type is a generated type that is
// implemented by the particular concrete ExtensionType subclass.
// The Python instance object is related to an instance of a
// particular concrete subclass with a hidden CLR gchandle.
IntPtr
tp
=
TypeManager
.
GetTypeHandle
(
GetType
(
)
)
;
//int rc = (int)Marshal.ReadIntPtr(tp, TypeOffset.ob_refcnt);
//if (rc > 1050)
//{
// DebugUtil.Print("tp is: ", tp);
// DebugUtil.DumpType(tp);
//}
IntPtr
py
=
Runtime
.
PyType_GenericAlloc
(
tp
,
0
)
;
GCHandle
gc
=
GCHandle
.
Alloc
(
this
)
;
Marshal
.
WriteIntPtr
(
py
,
ObjectOffset
.
magic
(
tp
)
,
(
IntPtr
)
gc
)
;
// We have to support gc because the type machinery makes it very
// hard not to - but we really don't have a need for it in most
// concrete extension types, so untrack the object to save calls
// from Python into the managed runtime that are pure overhead.
Runtime
.
PyObject_GC_UnTrack
(
py
)
;
// Steals a ref to tpHandle.
tpHandle
=
tp
;
pyHandle
=
py
;
gcHandle
=
gc
;
}
/// <summary>
/// Common finalization code to support custom tp_deallocs.
/// </summary>
public
static
void
FinalizeObject
(
ManagedType
self
)
{
Runtime
.
PyObject_GC_Del
(
self
.
pyHandle
)
;
// Not necessary for decref of `tpHandle`.
self
.
gcHandle
.
Free
(
)
;
}
/// <summary>
/// Type __setattr__ implementation.
/// </summary>
public
static
int
tp_setattro
(
IntPtr
ob
,
IntPtr
key
,
IntPtr
val
)
{
var
message
=
"type does not support setting attributes"
;
if
(
val
==
IntPtr
.
Zero
)
{
message
=
"readonly attribute"
;
}
Exceptions
.
SetError
(
Exceptions
.
TypeError
,
message
)
;
return
-
1
;
}
/// <summary>
/// Default __set__ implementation - this prevents descriptor instances
/// being silently replaced in a type __dict__ by default __setattr__.
/// </summary>
public
static
int
tp_descr_set
(
IntPtr
ds
,
IntPtr
ob
,
IntPtr
val
)
{
Exceptions
.
SetError
(
Exceptions
.
AttributeError
,
"attribute is read-only"
)
;
return
-
1
;
}
/// <summary>
/// Default dealloc implementation.
/// </summary>
public
static
void
tp_dealloc
(
IntPtr
ob
)
{
// Clean up a Python instance of this extension type. This
// frees the allocated Python object and decrefs the type.
ManagedType
self
=
GetManagedObject
(
ob
)
;
FinalizeObject
(
self
)
;
}
}
}
Back
|
FazBrowse Home
|
New Git URL