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

Rework how bindings are generated #66

Merged
merged 1 commit into from
Jan 16, 2024

Conversation

Phantomical
Copy link
Member

It has been a few years since I have touched the xed-sys crate and advancements to the rust ecosystem have made some of the hacks we used to need obsolete. This commit reworks how and when bindings are generated.

The new approach has two main advantages:

  • With no extra features enabled the build script doesn't even have to run bindgen at all. It can just use the bundled bindings directly.
  • We no longer have to maintain a separate c2rust translation of a subset of the functions exposed by XED. A new experimental feature in bindgen can now do this (mostly) automatically.

I have also thrown in the enc2 feature that is in the process of being introduced by #65. We do end up needing bindgen when the enc2 feature is enabled as the generated bindings would be too large to submit to crates.io. (They are >40MB!).

With that said, here's how things work now:

  1. Bindings for the default featureset are generated in advance by running ./generate.sh. XED's headers don't contain any platform-dependent code so this should remain portable to any platforms where XED is supported.
  2. When the bindgen feature is enabled we ignore the bindings from step 1 and instead generate them in build.rs.

With the new experimental --wrap-static-fns bindgen option we can drop the janky c2rust step that translates versions of these functions to rust so that they can be included. Instead bindgen generates an additional C file that declares a set of new functions that forward to the static functions, the generated bindings refer to these forwarding functions instead of the original ones.

It has been a few years since I have touched the xed-sys crate and
advancements to the rust ecosystem have made some of the hacks we used
to need obsolete. This commit reworks how and when bindings are
generated.

The new approach has two main advantages:
- With no extra features enabled the build script doesn't even have to
  run bindgen at all. It can just use the bundled bindings directly.
- We no longer have to maintain a separate c2rust translation of a
  subset of the functions exposed by XED. A new experimental feature in
  bindgen can now do this (mostly) automatically.

I have also thrown in the enc2 feature that is in the process of being
introduced by rust-xed#65. We do end up needing bindgen when the enc2 feature is
enabled as the generated bindings would be too large to submit to
crates.io. (They are >40MB!).

With that said, here's how things work now:
1. Bindings for the default featureset are generated in advance by
   running `./generate.sh`. XED's headers don't contain any
   platform-dependent code so this should remain portable to any
   platforms where XED is supported.
2. When the bindgen feature is enabled we ignore the bindings from step
   1 and instead generate them in build.rs.

With the new experimental --wrap-static-fns bindgen option we can drop
the janky c2rust step that translates versions of these functions to
rust so that they can be included. Instead bindgen generates an
additional C file that declares a set of new functions that forward to
the static functions, the generated bindings refer to these forwarding
functions instead of the original ones.
@Phantomical Phantomical merged commit c158600 into rust-xed:master Jan 16, 2024
4 checks passed
@Phantomical Phantomical deleted the rework-xed-build branch January 16, 2024 10:00
@Phantomical Phantomical mentioned this pull request Jan 16, 2024
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.

1 participant