| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -101,7 +101,17 @@ public void CollectOnShutdown() | |||
| 101 | 101 | ||
| 102 | 102 | PythonEngine.Shutdown(); | |
| 103 | 103 | garbage = Finalizer.Instance.GetCollectedObjects(); | |
| 104 | - Assert.IsEmpty(garbage); | ||
| 104 | + | ||
| 105 | + if (garbage.Count > 0) | ||
| 106 | + { | ||
| 107 | + PythonEngine.Initialize(); | ||
| 108 | + string objects = string.Join("\n", garbage.Select(ob => | ||
| 109 | + { | ||
| 110 | + var obj = new PyObject(new BorrowedReference(ob)); | ||
| 111 | + return $"{obj} [{obj.GetPythonType()}@{obj.Handle}]"; | ||
| 112 | + })); | ||
| 113 | + Assert.Fail("Garbage is not empty:\n" + objects); | ||
| 114 | + } | ||
| 105 | 115 | } | |
| 106 | 116 | ||
| 107 | 117 | [MethodImpl(MethodImplOptions.NoInlining | MethodImplOptions.NoOptimization)] // ensure lack of references to obj | |
@@ -173,7 +183,7 @@ public void SimpleTestMemory() | |||
| 173 | 183 | bool oldState = Finalizer.Instance.Enable; | |
| 174 | 184 | try | |
| 175 | 185 | { | |
| 176 | - using (PyObject gcModule = PythonEngine.ImportModule("gc")) | ||
| 186 | + using (PyModule gcModule = PyModule.Import("gc")) | ||
| 177 | 187 | using (PyObject pyCollect = gcModule.GetAttr("collect")) | |
| 178 | 188 | { | |
| 179 | 189 | long span1 = CompareWithFinalizerOn(pyCollect, false); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -46,7 +46,7 @@ public void TestPythonErrorTypeName() | |||
| 46 | 46 | { | |
| 47 | 47 | try | |
| 48 | 48 | { | |
| 49 | - var module = PythonEngine.ImportModule("really____unknown___module"); | ||
| 49 | + var module = PyModule.Import("really____unknown___module"); | ||
| 50 | 50 | Assert.Fail("Unknown module should not be loaded"); | |
| 51 | 51 | } | |
| 52 | 52 | catch (PythonException ex) | |
@@ -95,7 +95,7 @@ public void TestPythonExceptionFormatNoTraceback() | |||
| 95 | 95 | { | |
| 96 | 96 | try | |
| 97 | 97 | { | |
| 98 | - var module = PythonEngine.ImportModule("really____unknown___module"); | ||
| 98 | + var module = PyModule.Import("really____unknown___module"); | ||
| 99 | 99 | Assert.Fail("Unknown module should not be loaded"); | |
| 100 | 100 | } | |
| 101 | 101 | catch (PythonException ex) | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -96,7 +96,7 @@ public static void PyCheck_Iter_PyObject_IsIterable_ThreadingLock_Test() | |||
| 96 | 96 | // TypeFlags.HaveIter set in Python 2. This tests a different code path in PyObject_IsIterable and PyIter_Check. | |
| 97 | 97 | var threading = Runtime.Runtime.PyImport_ImportModule("threading"); | |
| 98 | 98 | Exceptions.ErrorCheck(threading); | |
| 99 | - var threadingDict = Runtime.Runtime.PyModule_GetDict(new BorrowedReference(threading)); | ||
| 99 | + var threadingDict = Runtime.Runtime.PyModule_GetDict(threading); | ||
| 100 | 100 | Exceptions.ErrorCheck(threadingDict); | |
| 101 | 101 | var lockType = Runtime.Runtime.PyDict_GetItemString(threadingDict, "Lock"); | |
| 102 | 102 | if (lockType.IsNull) | |
@@ -110,6 +110,8 @@ public static void PyCheck_Iter_PyObject_IsIterable_ThreadingLock_Test() | |||
| 110 | 110 | Assert.IsFalse(Runtime.Runtime.PyObject_IsIterable(lockInstance)); | |
| 111 | 111 | Assert.IsFalse(Runtime.Runtime.PyIter_Check(lockInstance)); | |
| 112 | 112 | ||
| 113 | + threading.Dispose(); | ||
| 114 | + | ||
| 113 | 115 | Runtime.Runtime.Py_Finalize(); | |
| 114 | 116 | } | |
| 115 | 117 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -52,7 +52,7 @@ public void Dispose() | |||
| 52 | 52 | [Test] | |
| 53 | 53 | public void TestDottedName() | |
| 54 | 54 | { | |
| 55 | - PyObject module = PythonEngine.ImportModule("PyImportTest.test.one"); | ||
| 55 | + var module = PyModule.Import("PyImportTest.test.one"); | ||
| 56 | 56 | Assert.IsNotNull(module); | |
| 57 | 57 | } | |
| 58 | 58 | ||
@@ -62,7 +62,7 @@ public void TestDottedName() | |||
| 62 | 62 | [Test] | |
| 63 | 63 | public void TestSysArgsImportException() | |
| 64 | 64 | { | |
| 65 | - PyObject module = PythonEngine.ImportModule("PyImportTest.sysargv"); | ||
| 65 | + var module = PyModule.Import("PyImportTest.sysargv"); | ||
| 66 | 66 | Assert.IsNotNull(module); | |
| 67 | 67 | } | |
| 68 | 68 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -175,7 +175,8 @@ public static void TestRunExitFuncs() | |||
| 175 | 175 | { | |
| 176 | 176 | called = true; | |
| 177 | 177 | }; | |
| 178 | - atexit.InvokeMethod("register", callback.ToPython()); | ||
| 178 | + atexit.InvokeMethod("register", callback.ToPython()).Dispose(); | ||
| 179 | + atexit.Dispose(); | ||
| 179 | 180 | Runtime.Runtime.Shutdown(); | |
| 180 | 181 | Assert.True(called); | |
| 181 | 182 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -95,24 +95,21 @@ internal static Exception ToException(IntPtr ob) | |||
| 95 | 95 | /// </remarks> | |
| 96 | 96 | public static class Exceptions | |
| 97 | 97 | { | |
| 98 | - internal static IntPtr warnings_module; | ||
| 99 | - internal static IntPtr exceptions_module; | ||
| 98 | + internal static PyModule warnings_module; | ||
| 99 | + internal static PyModule exceptions_module; | ||
| 100 | 100 | ||
| 101 | 101 | /// <summary> | |
| 102 | 102 | /// Initialization performed on startup of the Python runtime. | |
| 103 | 103 | /// </summary> | |
| 104 | 104 | internal static void Initialize() | |
| 105 | 105 | { | |
| 106 | 106 | string exceptionsModuleName = "builtins"; | |
| 107 | - exceptions_module = Runtime.PyImport_ImportModule(exceptionsModuleName); | ||
| 108 | - | ||
| 109 | - Exceptions.ErrorCheck(exceptions_module); | ||
| 110 | - warnings_module = Runtime.PyImport_ImportModule("warnings"); | ||
| 111 | - Exceptions.ErrorCheck(warnings_module); | ||
| 107 | + exceptions_module = PyModule.Import(exceptionsModuleName); | ||
| 108 | + warnings_module = PyModule.Import("warnings"); | ||
| 112 | 109 | Type type = typeof(Exceptions); | |
| 113 | 110 | foreach (FieldInfo fi in type.GetFields(BindingFlags.Public | BindingFlags.Static)) | |
| 114 | 111 | { | |
| 115 | - IntPtr op = Runtime.PyObject_GetAttrString(exceptions_module, fi.Name); | ||
| 112 | + IntPtr op = Runtime.PyObject_GetAttrString(exceptions_module.obj, fi.Name); | ||
| 116 | 113 | if (op != IntPtr.Zero) | |
| 117 | 114 | { | |
| 118 | 115 | fi.SetValue(type, op); | |
@@ -147,8 +144,8 @@ internal static void Shutdown() | |||
| 147 | 144 | Runtime.XDecref(op); | |
| 148 | 145 | fi.SetValue(null, IntPtr.Zero); | |
| 149 | 146 | } | |
| 150 | - Runtime.Py_CLEAR(ref exceptions_module); | ||
| 151 | - Runtime.Py_CLEAR(ref warnings_module); | ||
| 147 | + exceptions_module.Dispose(); | ||
| 148 | + warnings_module.Dispose(); | ||
| 152 | 149 | } | |
| 153 | 150 | ||
| 154 | 151 | /// <summary> | |
@@ -348,9 +345,7 @@ public static void warn(string message, IntPtr exception, int stacklevel) | |||
| 348 | 345 | Exceptions.RaiseTypeError("Invalid exception"); | |
| 349 | 346 | } | |
| 350 | 347 | ||
| 351 | - Runtime.XIncref(warnings_module); | ||
| 352 | - IntPtr warn = Runtime.PyObject_GetAttrString(warnings_module, "warn"); | ||
| 353 | - Runtime.XDecref(warnings_module); | ||
| 348 | + IntPtr warn = Runtime.PyObject_GetAttrString(warnings_module.obj, "warn"); | ||
| 354 | 349 | Exceptions.ErrorCheck(warn); | |
| 355 | 350 | ||
| 356 | 351 | IntPtr args = Runtime.PyTuple_New(3); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -0,0 +1,40 @@ | |||
| 1 | + using System; | ||
| 2 | + | ||
| 3 | + namespace Python.Runtime | ||
| 4 | + { | ||
| 5 | + public class PyModule : PyScope | ||
| 6 | + { | ||
| 7 | + internal PyModule(ref NewReference reference) : base(ref reference, PyScopeManager.Global) { } | ||
| 8 | + | ||
| 9 | + /// <summary> | ||
| 10 | + /// Given a module or package name, import the | ||
| 11 | + /// module and return the resulting module object as a <see cref="PyModule"/>. | ||
| 12 | + /// </summary> | ||
| 13 | + /// <param name="name">Fully-qualified module or package name</param> | ||
| 14 | + public static PyModule Import(string name) | ||
| 15 | + { | ||
| 16 | + NewReference op = Runtime.PyImport_ImportModule(name); | ||
| 17 | + PythonException.ThrowIfIsNull(op); | ||
| 18 | + return new PyModule(ref op); | ||
| 19 | + } | ||
| 20 | + | ||
| 21 | + /// <summary> | ||
| 22 | + /// Reloads the module, and returns the updated object | ||
| 23 | + /// </summary> | ||
| 24 | + public PyModule Reload() | ||
| 25 | + { | ||
| 26 | + NewReference op = Runtime.PyImport_ReloadModule(this.Reference); | ||
| 27 | + PythonException.ThrowIfIsNull(op); | ||
| 28 | + return new PyModule(ref op); | ||
| 29 | + } | ||
| 30 | + | ||
| 31 | + public static PyModule FromString(string name, string code) | ||
| 32 | + { | ||
| 33 | + using NewReference c = Runtime.Py_CompileString(code, "none", (int)RunFlagType.File); | ||
| 34 | + PythonException.ThrowIfIsNull(c); | ||
| 35 | + NewReference m = Runtime.PyImport_ExecCodeModule(name, c); | ||
| 36 | + PythonException.ThrowIfIsNull(m); | ||
| 37 | + return new PyModule(ref m); | ||
| 38 | + } | ||
| 39 | + } | ||
| 40 | + } | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -22,15 +22,9 @@ public class PyGILAttribute : Attribute | |||
| 22 | 22 | } | |
| 23 | 23 | ||
| 24 | 24 | [PyGIL] | |
| 25 | - public class PyScope : DynamicObject, IDisposable | ||
| 25 | + public class PyScope : PyObject | ||
| 26 | 26 | { | |
| 27 | - public readonly string Name; | ||
| 28 | - | ||
| 29 | - /// <summary> | ||
| 30 | - /// the python Module object the scope associated with. | ||
| 31 | - /// </summary> | ||
| 32 | - readonly PyObject obj; | ||
| 33 | - internal BorrowedReference Reference => obj.Reference; | ||
| 27 | + public string Name { get; } | ||
| 34 | 28 | ||
| 35 | 29 | /// <summary> | |
| 36 | 30 | /// the variable dict of the scope. Borrowed. | |
@@ -55,14 +49,13 @@ public class PyScope : DynamicObject, IDisposable | |||
| 55 | 49 | /// <remarks> | |
| 56 | 50 | /// Create a scope based on a Python Module. | |
| 57 | 51 | /// </remarks> | |
| 58 | - internal PyScope(ref NewReference ptr, PyScopeManager manager) | ||
| 52 | + internal PyScope(ref NewReference ptr, PyScopeManager manager) : base(ptr.DangerousMoveToPointer()) | ||
| 59 | 53 | { | |
| 60 | - if (!Runtime.PyType_IsSubtype(Runtime.PyObject_TYPE(ptr), Runtime.PyModuleType)) | ||
| 54 | + if (!Runtime.PyType_IsSubtype(Runtime.PyObject_TYPE(Reference), Runtime.PyModuleType)) | ||
| 61 | 55 | { | |
| 62 | 56 | throw new PyScopeException("object is not a module"); | |
| 63 | 57 | } | |
| 64 | 58 | Manager = manager ?? PyScopeManager.Global; | |
| 65 | - obj = ptr.MoveToPyObject(); | ||
| 66 | 59 | //Refcount of the variables not increase | |
| 67 | 60 | variables = Runtime.PyModule_GetDict(Reference).DangerousGetAddress(); | |
| 68 | 61 | PythonException.ThrowIfIsNull(variables); | |
@@ -72,7 +65,8 @@ internal PyScope(ref NewReference ptr, PyScopeManager manager) | |||
| 72 | 65 | Runtime.PyEval_GetBuiltins() | |
| 73 | 66 | ); | |
| 74 | 67 | PythonException.ThrowIfIsNotZero(res); | |
| 75 | - this.Name = this.Get<string>("__name__"); | ||
| 68 | + using var name = this.Get("__name__"); | ||
| 69 | + this.Name = name.As<string>(); | ||
| 76 | 70 | } | |
| 77 | 71 | ||
| 78 | 72 | /// <summary> | |
@@ -118,7 +112,7 @@ public dynamic Import(string name, string asname = null) | |||
| 118 | 112 | } | |
| 119 | 113 | else | |
| 120 | 114 | { | |
| 121 | - PyObject module = PythonEngine.ImportModule(name); | ||
| 115 | + var module = PyModule.Import(name); | ||
| 122 | 116 | Import(module, asname); | |
| 123 | 117 | return module; | |
| 124 | 118 | } | |
@@ -132,7 +126,7 @@ public dynamic Import(string name, string asname = null) | |||
| 132 | 126 | /// </remarks> | |
| 133 | 127 | public void Import(PyScope scope, string asname) | |
| 134 | 128 | { | |
| 135 | - this.SetPyValue(asname, scope.obj.Handle); | ||
| 129 | + this.SetPyValue(asname, scope.Handle); | ||
| 136 | 130 | } | |
| 137 | 131 | ||
| 138 | 132 | /// <summary> | |
@@ -169,7 +163,7 @@ public void ImportAll(string name) | |||
| 169 | 163 | } | |
| 170 | 164 | else | |
| 171 | 165 | { | |
| 172 | - PyObject module = PythonEngine.ImportModule(name); | ||
| 166 | + var module = PyModule.Import(name); | ||
| 173 | 167 | ImportAll(module); | |
| 174 | 168 | } | |
| 175 | 169 | } | |
@@ -503,16 +497,20 @@ public override bool TrySetMember(SetMemberBinder binder, object value) | |||
| 503 | 497 | ||
| 504 | 498 | private void Check() | |
| 505 | 499 | { | |
| 506 | - if (this.obj.IsDisposed) | ||
| 500 | + if (this.obj == IntPtr.Zero) | ||
| 507 | 501 | { | |
| 508 | 502 | throw new PyScopeException($"The scope of name '{Name}' object has been disposed"); | |
| 509 | 503 | } | |
| 510 | 504 | } | |
| 511 | 505 | ||
| 512 | - public void Dispose() | ||
| 506 | + protected override void Dispose(bool disposing) | ||
| 513 | 507 | { | |
| 508 | + if (this.obj == IntPtr.Zero) | ||
| 509 | + { | ||
| 510 | + return; | ||
| 511 | + } | ||
| 512 | + base.Dispose(disposing); | ||
| 514 | 513 | this.OnDispose?.Invoke(this); | |
| 515 | - this.obj.Dispose(); | ||
| 516 | 514 | } | |
| 517 | 515 | } | |
| 518 | 516 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -469,61 +469,15 @@ public static void EndAllowThreads(IntPtr ts) | |||
| 469 | 469 | } | |
| 470 | 470 | ||
| 471 | 471 | ||
| 472 | - /// <summary> | ||
| 473 | - /// ImportModule Method | ||
| 474 | - /// </summary> | ||
| 475 | - /// <remarks> | ||
| 476 | - /// Given a fully-qualified module or package name, import the | ||
| 477 | - /// module and return the resulting module object as a PyObject | ||
| 478 | - /// or null if an exception is raised. | ||
| 479 | - /// </remarks> | ||
| 480 | - public static PyObject ImportModule(string name) | ||
| 481 | - { | ||
| 482 | - IntPtr op = Runtime.PyImport_ImportModule(name); | ||
| 483 | - PythonException.ThrowIfIsNull(op); | ||
| 484 | - return new PyObject(op); | ||
| 485 | - } | ||
| 486 | - | ||
| 487 | - | ||
| 488 | - /// <summary> | ||
| 489 | - /// ReloadModule Method | ||
| 490 | - /// </summary> | ||
| 491 | - /// <remarks> | ||
| 492 | - /// Given a PyObject representing a previously loaded module, reload | ||
| 493 | - /// the module. | ||
| 494 | - /// </remarks> | ||
| 495 | - public static PyObject ReloadModule(PyObject module) | ||
| 496 | - { | ||
| 497 | - IntPtr op = Runtime.PyImport_ReloadModule(module.Handle); | ||
| 498 | - PythonException.ThrowIfIsNull(op); | ||
| 499 | - return new PyObject(op); | ||
| 500 | - } | ||
| 501 | - | ||
| 502 | - | ||
| 503 | - /// <summary> | ||
| 504 | - /// ModuleFromString Method | ||
| 505 | - /// </summary> | ||
| 506 | - /// <remarks> | ||
| 507 | - /// Given a string module name and a string containing Python code, | ||
| 508 | - /// execute the code in and return a module of the given name. | ||
| 509 | - /// </remarks> | ||
| 510 | - public static PyObject ModuleFromString(string name, string code) | ||
| 511 | - { | ||
| 512 | - IntPtr c = Runtime.Py_CompileString(code, "none", (int)RunFlagType.File); | ||
| 513 | - PythonException.ThrowIfIsNull(c); | ||
| 514 | - IntPtr m = Runtime.PyImport_ExecCodeModule(name, c); | ||
| 515 | - PythonException.ThrowIfIsNull(m); | ||
| 516 | - return new PyObject(m); | ||
| 517 | - } | ||
| 518 | - | ||
| 519 | 472 | public static PyObject Compile(string code, string filename = "", RunFlagType mode = RunFlagType.File) | |
| 520 | 473 | { | |
| 521 | 474 | var flag = (int)mode; | |
| 522 | - IntPtr ptr = Runtime.Py_CompileString(code, filename, flag); | ||
| 475 | + NewReference ptr = Runtime.Py_CompileString(code, filename, flag); | ||
| 523 | 476 | PythonException.ThrowIfIsNull(ptr); | |
| 524 | - return new PyObject(ptr); | ||
| 477 | + return ptr.MoveToPyObject(); | ||
| 525 | 478 | } | |
| 526 | 479 | ||
| 480 | + | ||
| 527 | 481 | /// <summary> | |
| 528 | 482 | /// Eval Method | |
| 529 | 483 | /// </summary> | |
@@ -744,7 +698,7 @@ public static KeywordArguments kw(params object[] kv) | |||
| 744 | 698 | ||
| 745 | 699 | public static PyObject Import(string name) | |
| 746 | 700 | { | |
| 747 | - return PythonEngine.ImportModule(name); | ||
| 701 | + return PyModule.Import(name); | ||
| 748 | 702 | } | |
| 749 | 703 | ||
| 750 | 704 | public static void SetArgv() | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -48,7 +48,7 @@ public PythonException() | |||
| 48 | 48 | ||
| 49 | 49 | if (_pyTB != IntPtr.Zero) | |
| 50 | 50 | { | |
| 51 | - using PyObject tb_module = PythonEngine.ImportModule("traceback"); | ||
| 51 | + using var tb_module = PyModule.Import("traceback"); | ||
| 52 | 52 | ||
| 53 | 53 | Runtime.XIncref(_pyTB); | |
| 54 | 54 | using var pyTB = new PyObject(_pyTB); | |
@@ -198,7 +198,7 @@ public string Format() | |||
| 198 | 198 | using (PyObject pyType = new PyObject(type)) | |
| 199 | 199 | using (PyObject pyValue = new PyObject(value)) | |
| 200 | 200 | using (PyObject pyTB = new PyObject(tb)) | |
| 201 | - using (PyObject tb_mod = PythonEngine.ImportModule("traceback")) | ||
| 201 | + using (PyObject tb_mod = PyModule.Import("traceback")) | ||
| 202 | 202 | { | |
| 203 | 203 | var buffer = new StringBuilder(); | |
| 204 | 204 | var values = tb_mod.InvokeMethod("format_exception", pyType, pyValue, pyTB); | |
| Back | FazBrowse Home | New Git URL |
0 commit comments