#api-bindings #open-harmony #harmony-os #ffi

ohos-sys

Bindings to the native API of OpenHarmony OS

11 unstable releases (3 breaking)

new 0.4.0 Oct 29, 2024
0.3.1 Sep 5, 2024
0.3.0 Aug 29, 2024
0.2.2 Aug 18, 2024
0.1.0 Apr 29, 2024

#149 in Graphics APIs

Download history 9/week @ 2024-07-09 34/week @ 2024-07-16 651/week @ 2024-07-23 739/week @ 2024-07-30 784/week @ 2024-08-06 1787/week @ 2024-08-13 908/week @ 2024-08-20 1109/week @ 2024-08-27 1228/week @ 2024-09-03 963/week @ 2024-09-10 520/week @ 2024-09-17 742/week @ 2024-09-24 734/week @ 2024-10-01 1295/week @ 2024-10-08 987/week @ 2024-10-15 985/week @ 2024-10-22

4,123 downloads per month
Used in 2 crates

Apache-2.0

280KB
4K SLoC

ohos-sys

FFI-bindings for the native API of OpenHarmony OS. See the documentation for a list of supported components. This crate is under active development, and not officially affiliated with OpenHarmony OS.

Development

The current bindings are generated with bindgen using scripts/generate_bindings.sh. A separate file is generated for each API version, and (assuming no breaking changes) the new additions are manually copied to an apiXX_additions.rs file, which is included as a module if feature = api-XX is selected. The generated file drawing_apiXX.rs should be committed to version control, so we can easily rerun the script on a patch-release for a given API-level and see what changed. The file itself is however not needed, and will be excluded from crates.io releases.

Contributing

There are still quite a few OpenHarmony APIs missing. Feel free to contribute missing APIs, but be sure to adapt the script, so your bindings are reproducible! Please also check the following:

  • Ensure that opaque struct definitions do not derive Copy, Clone and Debug.
  • Blocklist all unnecessary type definitions, e.g. from the C standard library.
  • Preferably generate the bindings with libclang in C mode. However, if a header file is not C-compliant due to an issue of the OpenHarmony SDK, then setting libclang to C++ mode is fine.
  • Be sure to guard the new component behind a cargo feature and document the feature in Cargo.toml.
  • If you did not generate the bindings with API-level 10, specify which API-level you generated the bindings with and guard the generated module behind the corresponding api-level feature flag.
  • Installing bindgen: We require at least bindgen 0.70.0, with the prettyplease feature enabled. You can install it by running cargo install bindgen-cli --features prettyplease

License

This crate is licensed under the Apache-2.0 license, matching the OpenHarmony OS SDK.

Dependencies