How can I call a method of an object knowing the address of the object and the address of the method(and its signature):
auto x = (int(*)())(&A::get_state)
Let the object be x
of type void*
.
So, using x
and m
, x
of type void*
and m
of type int(*)()
Since the question is quite unclear, I just blindly guess what you are trying to do and give a short explanation of how to do that.
Typically, plugin mechanisms using shared/dynamic libraries are implemented such that you have an interface.
Next, you implement this interface in your library and, in addition, provide a C function to create an instance of the implementation class (C function, because they are not name-mangled).
Now, in your app you load the library using
dlopen
(orLoadLibrary
on Windows) and fetch the address of yourcreatePlugin
function usingdlsym
(orGetProcAddress
):Then, you cast this to the actual type, which is equivalent in all libraries:
By calling
createPlugin
you can now create an instance of your concrete implementation and access it through the interface. There is no need for fetching any additional methods, sincevirtual
member functions can be called directly across library boundaries (because of the vtable).Same works for functions with arguments and different return types as well, of course. You should however export another C function to destroy the object instance again.
delete
should always be called by the library that created the object (since the library might have been built with a different implementation ofnew
than the executable).