Open constvoidptr opened 2 years ago
I have seen multiple different use-cases asking for symbols associated with a library instance, but nothing quite like this. Most of the use-cases involve collecting the Library
together with a number of Symbol
s that come from it. As an example, this is something bindgen
can generate code for.
As it pertains to this specific proposal, it isn’t clear to me if Arc
is the appropriate reference counting type in all instances, nor that it is the right way to associate the library and the loaded symbol in 100% of the instances. It might well be the case that people might want to use Rc
instead, or it might be the case that leaving the reference counting up to the system/loader is more efficient or appropriate.
With that in mind, I’m not sure if libloading
is the right place for this sort of type, at least not without an extensive analysis of the problem and solution space. In the meantime, libloading
does provide the tools to build structs like these outside of libloading
via libloading::os::*::{Library,Symbol}
. The os
-specific Symbol
s don’t relate to the containing Library
via lifetime, which should help constructing such types much easier.
As an alternative to adding this type to libloading
proper, what I could see is making this repository a workspace and start adding various libloading-*
crates implementing experiments such as the type proposed in this issue.
I needed the ability the cache multiple
Symbol
s in a struct across FFI calls.I didn't want to use a self referental struct, so instead I created a
OwnedSymbol
type that keeps the library alive as long as needed.https://github.com/constvoidptr/rust_libloading/blob/768dc11b4fa3d48527a6406d56e3100c7f49a376/src/safe.rs#L308
Is that something you'd like to see upstream? I've seen a few issues/pr's that reference something similar. If so, I would document the new type and functions, write the tests and get a pull request going.