-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Added note about caching to DllImportResolver #11864
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
/cc @gewarren |
The runtime does not do any lifetime management around the handle returned by a <xref:System.Runtime.InteropServices.DllImportResolver>. It is left to the implementation and consuming code to keep the library loaded for as long as necessary and free it if/when desired. | ||
The resolver delegate is called everytime when a PInvoke call is done. It is fine to cache the handle, as long as the consuming code does not call <xref:System.Runtime.InteropServices.NativeLibrary.Free>. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The resolver delegate is called every time when a PInvoke call is done.
This does not look right.
The resolver is called first time a PInvoke call is done. It is not called every time PInvoke call is done.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also please change everytime to "every time".
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The resolver is called first time a PInvoke call is done. It is not called every time PInvoke call is done.
Ah, I mis-interpreted the (debug) output from dotnet/runtime#86088 (comment) and from my test program.
test program
using System.Reflection;
using System.Runtime.InteropServices;
for (int i = 0; i < 10; ++i)
{
string version = Native.GetVersion();
int versionNumber = Native.cairo_version();
Console.WriteLine($"{version}\t{versionNumber}");
}
internal static unsafe partial class Native
{
[LibraryImport("cairo")]
internal static partial int cairo_version();
[LibraryImport("cairo")]
internal static partial sbyte* cairo_version_string();
public static string GetVersion() => new string(cairo_version_string());
static Native()
{
NativeLibrary.SetDllImportResolver(Assembly.GetExecutingAssembly(), static (libraryName, assembly, searchPath) =>
{
Console.WriteLine($"DllResolver called for lib {libraryName}");
return 0;
});
}
}
In a larger project I saw a call to the resolver quite often, but actually it's called the first time a native method is called, not every time.
So for
And to avoid repeated building of paths, etc. the returned handle can be cached e.g. in a static field, as long the library is not unloaded.
Now I understand how it works. Maybe the woding isn't perfect here, but I'll open a PR that corrects this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Runtime does not take any locks around the resolver callback, so the resolver callback can be called from multiple threads at the same time for the same entrypoint.
The runtime does not do any lifetime management around the handle returned by a <xref:System.Runtime.InteropServices.DllImportResolver>. It is left to the implementation and consuming code to keep the library loaded for as long as necessary and free it if/when desired. | ||
The resolver delegate is called everytime when a PInvoke call is done. It is fine to cache the handle, as long as the consuming code does not call <xref:System.Runtime.InteropServices.NativeLibrary.Free>. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is fine to cache the handle, as long as the consuming code does not call
This looks misleading without the context from the discussion that this was copied from.
Where is it fine to cache the handle? What is the consuming code?
@gfoidl Could you please open a follow up PR to adjust the wording? I am sorry this was merged before I got a chance to take a look. |
PTAL at #11865 (and help for better wording). |
Summary
See dotnet/runtime#86088 for context
/cc: @jkotas (thanks for your pointers)