FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonnet/src/runtime/ImportHook.cs at python3.14 · guywithface/pythonnet · GitHub
guywithface
/
pythonnet
Public
forked from
pythonnet/pythonnet
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
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
/
ImportHook.cs
Copy path
More file actions
More file actions
Latest commit
History
History
History
311 lines (275 loc) · 12.1 KB
Breadcrumbs
pythonnet
/
src
/
runtime
/
ImportHook.cs
Copy path
File metadata and controls
311 lines (275 loc) · 12.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
307
308
309
310
311
using
System
;
using
System
.
Collections
.
Concurrent
;
using
System
.
Collections
.
Generic
;
using
System
.
Diagnostics
;
using
Python
.
Runtime
.
StateSerialization
;
namespace
Python
.
Runtime
{
/// <summary>
/// Implements the "import hook" used to integrate Python with the CLR.
/// </summary>
internal
static
class
ImportHook
{
#pragma warning disable
CS8618
// Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
// set in Initialize
private
static
PyObject
root
;
private
static
CLRModule
clrModule
;
private
static
PyModule
py_clr_module
;
#pragma warning restore
CS8618
// Non-nullable field must contain a non-null value when exiting constructor. Consider declaring as nullable.
internal
static
BorrowedReference
ClrModuleReference
=>
py_clr_module
.
Reference
;
private
const
string
LoaderCode
=
@"
import importlib.abc
import sys
class DotNetLoader(importlib.abc.Loader):
@classmethod
def exec_module(klass, mod):
# This method needs to exist.
pass
@classmethod
def create_module(klass, spec):
import clr
return clr._load_clr_module(spec)
class DotNetFinder(importlib.abc.MetaPathFinder):
@classmethod
def find_spec(klass, fullname, paths=None, target=None):
# Don't import, we might call ourselves recursively!
if 'clr' not in sys.modules:
return None
clr = sys.modules['clr']
clr._add_pending_namespaces()
if clr._available_namespaces and fullname in clr._available_namespaces:
return importlib.machinery.ModuleSpec(fullname, DotNetLoader(), is_package=True)
return None
"
;
const
string
_available_namespaces
=
"_available_namespaces"
;
/// <summary>
/// Initialization performed on startup of the Python runtime.
/// </summary>
internal
static
unsafe
void
Initialize
(
)
{
// Initialize the clr module and tell Python about it.
root
=
CLRModule
.
Create
(
out
clrModule
)
.
MoveToPyObject
(
)
;
// create a python module with the same methods as the clr module-like object
py_clr_module
=
new
PyModule
(
Runtime
.
PyModule_New
(
"clr"
)
.
StealOrThrow
(
)
)
;
// both dicts are borrowed references
BorrowedReference
mod_dict
=
Runtime
.
PyModule_GetDict
(
ClrModuleReference
)
;
using
var
clr_dict
=
Runtime
.
PyObject_GenericGetDict
(
root
)
;
Runtime
.
PyDict_Update
(
mod_dict
,
clr_dict
.
BorrowOrThrow
(
)
)
;
BorrowedReference
dict
=
Runtime
.
PyImport_GetModuleDict
(
)
;
Runtime
.
PyDict_SetItemString
(
dict
,
"CLR"
,
ClrModuleReference
)
;
Runtime
.
PyDict_SetItemString
(
dict
,
"clr"
,
ClrModuleReference
)
;
SetupNamespaceTracking
(
)
;
SetupImportHook
(
)
;
}
/// <summary>
/// Cleanup resources upon shutdown of the Python runtime.
/// </summary>
internal
static
void
Shutdown
(
)
{
if
(
Runtime
.
Py_IsInitialized
(
)
==
0
)
{
return
;
}
TeardownNameSpaceTracking
(
)
;
clrModule
.
ResetModuleMembers
(
)
;
Runtime
.
Py_CLEAR
(
ref
py_clr_module
!
)
;
root
.
Dispose
(
)
;
root
=
null
!
;
}
private
static
Dictionary
<
PyString
,
PyObject
>
GetDotNetModules
(
)
{
BorrowedReference
pyModules
=
Runtime
.
PyImport_GetModuleDict
(
)
;
using
var
items
=
Runtime
.
PyDict_Items
(
pyModules
)
;
nint
length
=
Runtime
.
PyList_Size
(
items
.
BorrowOrThrow
(
)
)
;
Debug
.
Assert
(
length
>=
0
)
;
var
modules
=
new
Dictionary
<
PyString
,
PyObject
>
(
)
;
for
(
nint
i
=
0
;
i
<
length
;
i
++
)
{
BorrowedReference
item
=
Runtime
.
PyList_GetItem
(
items
.
Borrow
(
)
,
i
)
;
BorrowedReference
name
=
Runtime
.
PyTuple_GetItem
(
item
,
0
)
;
BorrowedReference
module
=
Runtime
.
PyTuple_GetItem
(
item
,
1
)
;
if
(
ManagedType
.
IsInstanceOfManagedType
(
module
)
)
{
modules
.
Add
(
new
PyString
(
name
)
,
new
PyObject
(
module
)
)
;
}
}
return
modules
;
}
internal
static
ImportHookState
SaveRuntimeData
(
)
{
return
new
(
)
{
PyCLRModule
=
py_clr_module
,
Root
=
new
PyObject
(
root
)
,
Modules
=
GetDotNetModules
(
)
,
}
;
}
private
static
void
RestoreDotNetModules
(
Dictionary
<
PyString
,
PyObject
>
modules
)
{
var
pyMoudles
=
Runtime
.
PyImport_GetModuleDict
(
)
;
foreach
(
var
item
in
modules
)
{
var
moduleName
=
item
.
Key
;
var
module
=
item
.
Value
;
int
res
=
Runtime
.
PyDict_SetItem
(
pyMoudles
,
moduleName
,
module
)
;
PythonException
.
ThrowIfIsNotZero
(
res
)
;
item
.
Key
.
Dispose
(
)
;
item
.
Value
.
Dispose
(
)
;
}
modules
.
Clear
(
)
;
}
internal
static
void
RestoreRuntimeData
(
ImportHookState
storage
)
{
py_clr_module
=
storage
.
PyCLRModule
;
var
rootHandle
=
storage
.
Root
;
root
=
new
PyObject
(
rootHandle
)
;
clrModule
=
(
CLRModule
)
ManagedType
.
GetManagedObject
(
rootHandle
)
!
;
BorrowedReference
dict
=
Runtime
.
PyImport_GetModuleDict
(
)
;
Runtime
.
PyDict_SetItemString
(
dict
,
"clr"
,
ClrModuleReference
)
;
SetupNamespaceTracking
(
)
;
RestoreDotNetModules
(
storage
.
Modules
)
;
}
static
void
SetupImportHook
(
)
{
// Create the import hook module
using
var
import_hook_module
=
Runtime
.
PyModule_New
(
"clr.loader"
)
;
BorrowedReference
mod_dict
=
Runtime
.
PyModule_GetDict
(
import_hook_module
.
BorrowOrThrow
(
)
)
;
Debug
.
Assert
(
mod_dict
!=
null
)
;
// Run the python code to create the module's classes.
var
builtins
=
Runtime
.
PyEval_GetBuiltins
(
)
;
var
exec
=
Runtime
.
PyDict_GetItemString
(
builtins
,
"exec"
)
;
using
var
args
=
Runtime
.
PyTuple_New
(
2
)
;
PythonException
.
ThrowIfIsNull
(
args
)
;
using
var
codeStr
=
Runtime
.
PyString_FromString
(
LoaderCode
)
;
Runtime
.
PyTuple_SetItem
(
args
.
Borrow
(
)
,
0
,
codeStr
.
StealOrThrow
(
)
)
;
// reference not stolen due to overload incref'ing for us.
Runtime
.
PyTuple_SetItem
(
args
.
Borrow
(
)
,
1
,
mod_dict
)
;
Runtime
.
PyObject_Call
(
exec
,
args
.
Borrow
(
)
,
default
)
.
Dispose
(
)
;
// Set as a sub-module of clr.
if
(
Runtime
.
PyModule_AddObject
(
ClrModuleReference
,
"loader"
,
import_hook_module
.
Steal
(
)
)
!=
0
)
{
throw
PythonException
.
ThrowLastAsClrException
(
)
;
}
// Finally, add the hook to the meta path
var
findercls
=
Runtime
.
PyDict_GetItemString
(
mod_dict
,
"DotNetFinder"
)
;
using
var
finderCtorArgs
=
Runtime
.
PyTuple_New
(
0
)
;
using
var
finder_inst
=
Runtime
.
PyObject_CallObject
(
findercls
,
finderCtorArgs
.
Borrow
(
)
)
;
var
metapath
=
Runtime
.
PySys_GetObject
(
"meta_path"
)
;
PythonException
.
ThrowIfIsNotZero
(
Runtime
.
PyList_Append
(
metapath
,
finder_inst
.
BorrowOrThrow
(
)
)
)
;
}
/// <summary>
/// Sets up the tracking of loaded namespaces. This makes available to
/// Python, as a Python object, the loaded namespaces. The set of loaded
/// namespaces is used during the import to verify if we can import a
/// CLR assembly as a module or not. The set is stored on the clr module.
/// </summary>
static
void
SetupNamespaceTracking
(
)
{
using
var
newset
=
Runtime
.
PySet_New
(
default
)
;
foreach
(
var
ns
in
AssemblyManager
.
GetNamespaces
(
)
)
{
using
var
pyNs
=
Runtime
.
PyString_FromString
(
ns
)
;
if
(
Runtime
.
PySet_Add
(
newset
.
Borrow
(
)
,
pyNs
.
BorrowOrThrow
(
)
)
!=
0
)
{
throw
PythonException
.
ThrowLastAsClrException
(
)
;
}
}
if
(
Runtime
.
PyDict_SetItemString
(
clrModule
.
dict
,
_available_namespaces
,
newset
.
Borrow
(
)
)
!=
0
)
{
throw
PythonException
.
ThrowLastAsClrException
(
)
;
}
}
/// <summary>
/// Removes the set of available namespaces from the clr module.
/// </summary>
static
void
TeardownNameSpaceTracking
(
)
{
// If the C# runtime isn't loaded, then there are no namespaces available
Runtime
.
PyDict_SetItemString
(
clrModule
.
dict
,
_available_namespaces
,
Runtime
.
PyNone
)
;
}
static
readonly
ConcurrentQueue
<
string
>
addPending
=
new
(
)
;
public
static
void
AddNamespace
(
string
name
)
=>
addPending
.
Enqueue
(
name
)
;
internal
static
int
AddPendingNamespaces
(
)
{
int
added
=
0
;
while
(
addPending
.
TryDequeue
(
out
string
ns
)
)
{
AddNamespaceWithGIL
(
ns
)
;
added
++
;
}
return
added
;
}
internal
static
void
AddNamespaceWithGIL
(
string
name
)
{
using
var
pyNs
=
Runtime
.
PyString_FromString
(
name
)
;
var
nsSet
=
Runtime
.
PyDict_GetItemString
(
clrModule
.
dict
,
_available_namespaces
)
;
if
(
!
(
nsSet
.
IsNull
||
nsSet
==
Runtime
.
PyNone
)
)
{
if
(
Runtime
.
PySet_Add
(
nsSet
,
pyNs
.
BorrowOrThrow
(
)
)
!=
0
)
{
throw
PythonException
.
ThrowLastAsClrException
(
)
;
}
}
}
/// <summary>
/// Because we use a proxy module for the clr module, we somtimes need
/// to force the py_clr_module to sync with the actual clr module's dict.
/// </summary>
internal
static
void
UpdateCLRModuleDict
(
)
{
clrModule
.
InitializePreload
(
)
;
// update the module dictionary with the contents of the root dictionary
clrModule
.
LoadNames
(
)
;
BorrowedReference
py_mod_dict
=
Runtime
.
PyModule_GetDict
(
ClrModuleReference
)
;
using
var
clr_dict
=
Runtime
.
PyObject_GenericGetDict
(
root
)
;
Runtime
.
PyDict_Update
(
py_mod_dict
,
clr_dict
.
BorrowOrThrow
(
)
)
;
}
/// <summary>
/// Return the clr python module (new reference)
/// </summary>
public
static
unsafe
NewReference
GetCLRModule
(
)
{
UpdateCLRModuleDict
(
)
;
return
new
NewReference
(
py_clr_module
)
;
}
/// <summary>
/// The hook to import a CLR module into Python. Returns a new reference
/// to the module.
/// </summary>
public
static
PyObject
Import
(
string
modname
)
{
// Traverse the qualified module name to get the named module.
// Note that if
// we are running in interactive mode we pre-load the names in
// each module, which is often useful for introspection. If we
// are not interactive, we stick to just-in-time creation of
// objects at lookup time, which is much more efficient.
// NEW: The clr got a new module variable preload. You can
// enable preloading in a non-interactive python processing by
// setting clr.preload = True
ModuleObject
?
head
=
null
;
ModuleObject
tail
=
clrModule
;
clrModule
.
InitializePreload
(
)
;
string
[
]
names
=
modname
.
Split
(
'.'
)
;
foreach
(
string
name
in
names
)
{
using
var
nested
=
tail
.
GetAttribute
(
name
,
true
)
;
if
(
nested
.
IsNull
(
)
||
ManagedType
.
GetManagedObject
(
nested
.
Borrow
(
)
)
is
not
ModuleObject
module
)
{
Exceptions
.
SetError
(
Exceptions
.
ImportError
,
$
"'
{
name
}
' Is not a ModuleObject."
)
;
throw
PythonException
.
ThrowLastAsClrException
(
)
;
}
if
(
head
==
null
)
{
head
=
module
;
}
tail
=
module
;
if
(
CLRModule
.
preload
)
{
tail
.
LoadNames
(
)
;
}
}
return
tail
.
Alloc
(
)
.
MoveToPyObject
(
)
;
}
}
}
Back
|
FazBrowse Home
|
New Git URL