Skip to content
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

Libloading support #8

Merged
merged 8 commits into from
Nov 16, 2024
Merged

Libloading support #8

merged 8 commits into from
Nov 16, 2024

Conversation

Amjad50
Copy link
Owner

@Amjad50 Amjad50 commented Nov 16, 2024

Fix #5

Implements libloading support, allows the user to specify linked or loaded features and use the library based on those.

The loaded feature allow you to load the ultralight library at runtime and thus doesn't require explicit linking to these libraries.

Like, you can download and load the libraries at runtime while the game/app is running.

Note: for some reason, needed to push MSRV to 1.67 some libraries weren't building

Partial update to the `libloading` feature, added the support for it
in the `sys` crate, this works well. But the main crate is failing to build because of the changes introduced here.

We changed how we generate the bindings, used a small crate `generate` to do that instead of using `bindgen` binary in a shell script.

What we do, is generate `load`/`link` bindings for `ultralight` libs and `appcore` lib, and we can allow the user to choose whether to include `appcore` or not during `loading` or `linking`

Signed-off-by: Amjad Alsharafi <[email protected]>
This new struct, `Library` holds the ultralight library.
Its an abstraction that covers `linked` and `loaded` versions, so which version you choose to use, the rest of the code will be the same.

The issue with this now is that `ultralight` by design (since we use the C API) relies on global variables and things are done in the form of `platform::instance().do_something` i.e. singletons.

With the introduction of this variable (library) that must be used at all times, it makes using the library a bit more complicated. We need to think of a better way to do these stuff.

Examples are still failing, will be fixed next.

Signed-off-by: Amjad Alsharafi <[email protected]>
Signed-off-by: Amjad Alsharafi <[email protected]>
@Amjad50 Amjad50 merged commit 85085cc into master Nov 16, 2024
2 checks passed
@Amjad50 Amjad50 deleted the libloading branch November 16, 2024 12:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Implement libloading and better handling of shared library files
1 participant