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

Replace generic prebuilt bindings with target specific bindings #1

Merged
merged 2 commits into from
Nov 22, 2024

Conversation

weiznich
Copy link

This commit replaces the generic gdal bindings with architecture specific ones. This is necessary as bindgen 0.71 introduced a feature that essentially turned the size assertions into a compile time check. This pointed to several potential mismatches between the bindings and the actual type definitions.

This commit now introduces different bindings for 32 and 64 bit platforms. Additionally it differentiates between windows and linux/macos bindings. For any unsupported platform a build error is generated that the built_time bindgen feature needs to be used there.

Finally it adds documentation on how to generate these bindings.

  • I agree to follow the project's code of conduct.
  • I added an entry to CHANGES.md if knowledge of this change could be valuable to users.

This commit replaces the generic gdal bindings with architecture
specific ones. This is necessary as bindgen 0.71 introduced a feature
that essentially turned the size assertions into a compile time check.
This pointed to several potential mismatches between the bindings and
the actual type definitions.

This commit now introduces different bindings for 32 and 64 bit
platforms. Additionally it differentiates between windows and
linux/macos bindings. For any unsupported platform a build error is
generated that the built_time bindgen feature needs to be used there.

Finally it adds documentation on how to generate these bindings.
@weiznich weiznich mentioned this pull request Nov 21, 2024
2 tasks
let is_windows = std::env::var("CARGO_CFG_WINDOWS").is_ok();
let ptr_size = std::env::var("CARGO_CFG_TARGET_POINTER_WIDTH").expect("Set by cargo");

let binding_name = match (target_arch.as_str(), ptr_size.as_str(), is_windows) {
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we use env::var("TARGET") here?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wouldn't want to do that as it makes the match below much longer

As currently written we accept anything that's a 64-bit system independently from the OS as long as it uses x86_64 ar aarch64 as architecture. If we would use targets there this would become much more complicated as you would need to all possible target variants, which might be ever changing.

let binding_path = PathBuf::from(format!(
"prebuilt-bindings/gdal_{}_{}.rs",
version.major, version.minor
"prebuilt-bindings/{}.{}/{binding_name}",
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nit: I can't test it right now, but I don't know if Explorer shows directory extensions by default. Maybe we should stick to {}_{}.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I've just moved the files in f49cb3a

DEVELOPMENT.md Outdated
# Generating Binding

```bash
docker run -it --rm -v ./gdal-sys:/gdal_sys ghcr.io/osgeo/gdal:ubuntu-full-$GDAL_VERSION /bash
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I didn't try this, but it suspect it will work fine:

Suggested change
docker run -it --rm -v ./gdal-sys:/gdal_sys ghcr.io/osgeo/gdal:ubuntu-full-$GDAL_VERSION /bash
docker run -it --rm -v ./gdal-sys:/gdal_sys ghcr.io/osgeo/gdal:ubuntu-small-$GDAL_VERSION /bash

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That image seems to be sufficient, changed the docs in f49cb3a

DEVELOPMENT.md Outdated
apt install -y libclang-dev mingw-w64 gcc gcc-i686-linux-gnu pkg-config

# install bindgen
cargo install bindgen-cli
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If we grab the binary from e.g. https://github.com/rust-lang/rust-bindgen/releases/tag/v0.70.1, we won't even need to install Rust, right? That would be nice, since I kept getting throttled.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That works. It's implemented in f49cb3a

@lnicola
Copy link
Owner

lnicola commented Nov 21, 2024

Thanks, this is great! I meant to do it, but you were faster :-).

@lnicola lnicola merged commit 759df53 into lnicola:gdal-src-3-10 Nov 22, 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.

2 participants