riverd-loader ~wip-documentation
A cross-platform betterC compatible shared library loader for D bindings
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
RiverD Loader
A cross-platform betterC compatible shared library loader for D bindings
RiverD is a project to create static and dynamic binds to all C libraries. The intent is to make a standard loader and allow users to use or not -betterC
, @nogc
or even nothrow
.
Use RiverD
How to create a RiverD bind
At the moment, our mixin builder don't support -betterC
, so you need to make it manually (D compilers can't evaluate CTFE with GC dependent code using -betterC
).
Using RiverD builder, you need to specify a types
module containing all the types to be used on your C functions, a dynfun
module containing __gshared
symbols and import to types
(for function types), a dynload
module containing the import of dynfun
module and this piece of code:
mixin(DylibLoaderBuilder!(dynfun));
Additionally, you have statfun
module for static linkage support containing extern(C)
functions declarations.
Using RiverD loader manually you can adapt this code for dynload
module:
void* dylib_load_libname() {
void* handle = dylib_load("libname.so");
if(handle is null) return null;
dylib_bindSymbol(handle, cast(void**)&libname_symbol, "libname_symbol"); //make this for every function symbol
return handle;
}
How to load/unload a bind
void* libname_handle = dylib_load_libname(); // load
dylib_unload(libname_handle); // unload
bool loaded = dylib_is_loaded(libname_handle); // isloaded
How to contribute
Check out our wiki.
License
GNU Lesser General Public License (Version 3, 29 June 2007)
Made with ❤ by a bunch of geeks
- Registered by Luís Ferreira
- ~wip-documentation released 5 years ago
- aurorafossorg/riverd-loader
- LGPL-3.0
- Authors:
- Dependencies:
- none
- Versions:
-
1.0.2 2019-Apr-29 ~master 2019-Apr-29 ~wip-documentation 2019-Apr-29 - Download Stats:
-
-
0 downloads today
-
0 downloads this week
-
1 downloads this month
-
6607 downloads total
-
- Score:
- 0.6
- Short URL:
- riverd-loader.dub.pm