forked from pythonnet/pythonnet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRuntimeData.cs
More file actions
260 lines (233 loc) · 9.17 KB
/
RuntimeData.cs
File metadata and controls
260 lines (233 loc) · 9.17 KB
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
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Runtime.InteropServices;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters.Binary;
using Python.Runtime.StateSerialization;
using static Python.Runtime.Runtime;
namespace Python.Runtime
{
public static class RuntimeData
{
private static Type? _formatterType;
public static Type? FormatterType
{
get => _formatterType;
set
{
if (!typeof(IFormatter).IsAssignableFrom(value))
{
throw new ArgumentException("Not a type implemented IFormatter");
}
_formatterType = value;
}
}
public static ICLRObjectStorer? WrappersStorer { get; set; }
/// <summary>
/// Clears the old "clr_data" entry if a previous one is present.
/// </summary>
static void ClearCLRData ()
{
BorrowedReference capsule = PySys_GetObject("clr_data");
if (!capsule.IsNull)
{
IntPtr oldData = PyCapsule_GetPointer(capsule, IntPtr.Zero);
PyMem_Free(oldData);
PyCapsule_SetPointer(capsule, IntPtr.Zero);
}
}
internal static void Stash()
{
var runtimeStorage = new PythonNetState
{
Metatype = MetaType.SaveRuntimeData(),
ImportHookState = ImportHook.SaveRuntimeData(),
Types = TypeManager.SaveRuntimeData(),
Classes = ClassManager.SaveRuntimeData(),
SharedObjects = SaveRuntimeDataObjects(),
};
IFormatter formatter = CreateFormatter();
var ms = new MemoryStream();
formatter.Serialize(ms, runtimeStorage);
Debug.Assert(ms.Length <= int.MaxValue);
byte[] data = ms.GetBuffer();
// TODO: use buffer api instead
IntPtr mem = PyMem_Malloc(ms.Length + IntPtr.Size);
Marshal.WriteIntPtr(mem, (IntPtr)ms.Length);
Marshal.Copy(data, 0, mem + IntPtr.Size, (int)ms.Length);
ClearCLRData();
using NewReference capsule = PyCapsule_New(mem, IntPtr.Zero, IntPtr.Zero);
int res = PySys_SetObject("clr_data", capsule.BorrowOrThrow());
PythonException.ThrowIfIsNotZero(res);
}
internal static void RestoreRuntimeData()
{
try
{
RestoreRuntimeDataImpl();
}
finally
{
ClearStash();
}
}
private static void RestoreRuntimeDataImpl()
{
BorrowedReference capsule = PySys_GetObject("clr_data");
if (capsule.IsNull)
{
return;
}
IntPtr mem = PyCapsule_GetPointer(capsule, IntPtr.Zero);
int length = (int)Marshal.ReadIntPtr(mem);
byte[] data = new byte[length];
Marshal.Copy(mem + IntPtr.Size, data, 0, length);
var ms = new MemoryStream(data);
var formatter = CreateFormatter();
var storage = (PythonNetState)formatter.Deserialize(ms);
PyCLRMetaType = MetaType.RestoreRuntimeData(storage.Metatype);
TypeManager.RestoreRuntimeData(storage.Types);
ClassManager.RestoreRuntimeData(storage.Classes);
RestoreRuntimeDataObjects(storage.SharedObjects);
ImportHook.RestoreRuntimeData(storage.ImportHookState);
}
public static bool HasStashData()
{
return !PySys_GetObject("clr_data").IsNull;
}
public static void ClearStash()
{
PySys_SetObject("clr_data", default);
}
static bool CheckSerializable (object o)
{
Type type = o.GetType();
do
{
if (!type.IsSerializable)
{
return false;
}
} while ((type = type.BaseType) != null);
return true;
}
private static SharedObjectsState SaveRuntimeDataObjects()
{
var contexts = new Dictionary<PyObject, Dictionary<string, object?>>(PythonReferenceComparer.Instance);
var extensionObjs = new Dictionary<PyObject, ExtensionType>(PythonReferenceComparer.Instance);
// make a copy with strongly typed references to avoid concurrent modification
var extensions = ExtensionType.loadedExtensions
.Select(addr => new PyObject(
new BorrowedReference(addr),
// if we don't skip collect, finalizer might modify loadedExtensions
skipCollect: true))
.ToArray();
foreach (var pyObj in extensions)
{
var extension = (ExtensionType)ManagedType.GetManagedObject(pyObj)!;
Debug.Assert(CheckSerializable(extension));
var context = extension.Save(pyObj);
if (context is not null)
{
contexts[pyObj] = context;
}
extensionObjs.Add(pyObj, extension);
}
var wrappers = new Dictionary<object, List<CLRObject>>();
var userObjects = new CLRWrapperCollection();
// make a copy with strongly typed references to avoid concurrent modification
var reflectedObjects = CLRObject.reflectedObjects
.Select(addr => new PyObject(
new BorrowedReference(addr),
// if we don't skip collect, finalizer might modify reflectedObjects
skipCollect: true))
.ToList();
foreach (var pyObj in reflectedObjects)
{
// Wrapper must be the CLRObject
var clrObj = (CLRObject)ManagedType.GetManagedObject(pyObj)!;
object inst = clrObj.inst;
List<CLRObject> mappedObjs;
if (!userObjects.TryGetValue(inst, out var item))
{
item = new CLRMappedItem(inst);
userObjects.Add(item);
Debug.Assert(!wrappers.ContainsKey(inst));
mappedObjs = new List<CLRObject>();
wrappers.Add(inst, mappedObjs);
}
else
{
mappedObjs = wrappers[inst];
}
item.AddRef(pyObj);
mappedObjs.Add(clrObj);
}
var wrapperStorage = new Dictionary<string, object?>();
WrappersStorer?.Store(userObjects, wrapperStorage);
var internalStores = new Dictionary<PyObject, CLRObject>(PythonReferenceComparer.Instance);
foreach (var item in userObjects)
{
if (!item.Stored)
{
if (!CheckSerializable(item.Instance))
{
continue;
}
var clrO = wrappers[item.Instance].First();
foreach (var @ref in item.PyRefs)
{
internalStores.Add(@ref, clrO);
}
}
}
return new()
{
InternalStores = internalStores,
Extensions = extensionObjs,
Wrappers = wrapperStorage,
Contexts = contexts,
};
}
private static void RestoreRuntimeDataObjects(SharedObjectsState storage)
{
var extensions = storage.Extensions;
var internalStores = storage.InternalStores;
var contexts = storage.Contexts;
foreach (var extension in extensions)
{
contexts.TryGetValue(extension.Key, out var context);
extension.Value.Load(extension.Key, context);
}
foreach (var clrObj in internalStores)
{
clrObj.Value.Load(clrObj.Key, null);
}
if (WrappersStorer != null)
{
var wrapperStorage = storage.Wrappers;
var handle2Obj = WrappersStorer.Restore(wrapperStorage);
foreach (var item in handle2Obj)
{
object obj = item.Instance;
foreach (var pyRef in item.PyRefs ?? new List<PyObject>())
{
var context = contexts[pyRef];
CLRObject.Restore(obj, pyRef, context);
}
}
}
}
internal static IFormatter CreateFormatter()
{
return FormatterType != null ?
(IFormatter)Activator.CreateInstance(FormatterType)
: new BinaryFormatter();
}
}
}