aboutsummaryrefslogtreecommitdiff
path: root/lib/Utils/src/Native
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-03-31 17:00:45 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-03-31 17:00:45 -0400
commit21130c889bd8564b201aa16c8f645abdf85d374a (patch)
tree57e685f0f7e5c341264eb890112de35206f3d289 /lib/Utils/src/Native
parent55859158fbd0bf54473a0baeb486045a025c7c5d (diff)
Squashed commit of the following:
commit 448a93bb1d18d032087afe2476ffccb98634a54c Author: vnugent <public@vaughnnugent.com> Date: Sun Mar 31 16:56:51 2024 -0400 ci: fix third-party dir cleanup commit 9afed1427472da1ea13079f98dbe27339e55ee7d Author: vnugent <public@vaughnnugent.com> Date: Sun Mar 31 16:43:15 2024 -0400 perf: Deprecate unsafememoryhandle span extensions commit 3ff90da4f02af47ea6d233fdd4445337ebe36452 Author: vnugent <public@vaughnnugent.com> Date: Sat Mar 30 21:36:18 2024 -0400 refactor: Updates, advanced tracing, http optimizations commit 8d6b79b5ae309b36f265ba81529bcef8bfcd7414 Merge: 6c1667b 5585915 Author: vnugent <public@vaughnnugent.com> Date: Sun Mar 24 21:01:31 2024 -0400 Merge branch 'main' into develop commit 6c1667be23597513537f8190e2f55d65eb9b7c7a Author: vnugent <public@vaughnnugent.com> Date: Fri Mar 22 12:01:53 2024 -0400 refactor: Overhauled native library loading and lazy init commit ebf688f2f974295beabf7b5def7e6f6f150551d0 Author: vnugent <public@vaughnnugent.com> Date: Wed Mar 20 22:16:17 2024 -0400 refactor: Update compression header files and macros + Ci build commit 9c7b564911080ccd5cbbb9851a0757b05e1e9047 Author: vnugent <public@vaughnnugent.com> Date: Tue Mar 19 21:54:49 2024 -0400 refactor: JWK overhaul & add length getter to FileUpload commit 6d8c3444e09561e5957491b3cc1ae858e0abdd14 Author: vnugent <public@vaughnnugent.com> Date: Mon Mar 18 16:13:20 2024 -0400 feat: Add FNV1a software checksum and basic correction tests commit 00d182088cecefc08ca80b1faee9bed3f215f40b Author: vnugent <public@vaughnnugent.com> Date: Fri Mar 15 01:05:27 2024 -0400 chore: #6 Use utils filewatcher instead of built-in commit d513c10d9895c6693519ef1d459c6a5a76929436 Author: vnugent <public@vaughnnugent.com> Date: Sun Mar 10 21:58:14 2024 -0400 source tree project location updated
Diffstat (limited to 'lib/Utils/src/Native')
-rw-r--r--lib/Utils/src/Native/SafeLibraryHandle.cs11
1 files changed, 7 insertions, 4 deletions
diff --git a/lib/Utils/src/Native/SafeLibraryHandle.cs b/lib/Utils/src/Native/SafeLibraryHandle.cs
index 5fb2283..4b4ead4 100644
--- a/lib/Utils/src/Native/SafeLibraryHandle.cs
+++ b/lib/Utils/src/Native/SafeLibraryHandle.cs
@@ -63,9 +63,8 @@ namespace VNLib.Utils.Native
{
//Get the method pointer
IntPtr nativeMethod = NativeLibrary.GetExport(handle, functionName);
- //Get the delegate for the function pointer
- T method = Marshal.GetDelegateForFunctionPointer<T>(nativeMethod);
- return new(this, method);
+ AdvancedTrace.WriteLine($"Loaded function '{functionName}' with address: 0x'{nativeMethod:x}'");
+ return new(this, Marshal.GetDelegateForFunctionPointer<T>(nativeMethod));
}
catch
{
@@ -90,6 +89,7 @@ namespace VNLib.Utils.Native
this.ThrowIfClosed();
//Get the method pointer
IntPtr nativeMethod = NativeLibrary.GetExport(handle, functionName);
+ AdvancedTrace.WriteLine($"Loaded function '{functionName}' with address: 0x'{nativeMethod:x}'");
//Get the delegate for the function pointer
return Marshal.GetDelegateForFunctionPointer<T>(nativeMethod);
}
@@ -97,6 +97,7 @@ namespace VNLib.Utils.Native
///<inheritdoc/>
protected override bool ReleaseHandle()
{
+ AdvancedTrace.WriteLine($"Releasing library handle: 0x'{handle:x}'");
//Free the library and set the handle as invalid
NativeLibrary.Free(handle);
SetHandleAsInvalid();
@@ -211,7 +212,9 @@ namespace VNLib.Utils.Native
NatveLibraryResolver resolver = new(libPath, assembly, searchPath);
- return resolver.ResolveAndLoadLibrary(out library);
+ bool success = resolver.ResolveAndLoadLibrary(out library);
+ AdvancedTrace.WriteLineIf(success, $"Loaded library '{libPath}' with address: 0x'{library?.DangerousGetHandle():x}'");
+ return success;
}
}
}