Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Sean1708/rusty-cheddar
A Rust crate for automatically generating C header files from Rust source file.
https://github.com/Sean1708/rusty-cheddar
Last synced: 7 days ago
JSON representation
A Rust crate for automatically generating C header files from Rust source file.
- Host: GitHub
- URL: https://github.com/Sean1708/rusty-cheddar
- Owner: Sean1708
- Created: 2015-10-12T15:43:18.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-06-30T10:38:35.000Z (over 6 years ago)
- Last Synced: 2024-10-25T06:50:32.576Z (10 days ago)
- Language: Rust
- Homepage: http://sean1708.github.io/rusty-cheddar/
- Size: 4.08 MB
- Stars: 191
- Watchers: 8
- Forks: 25
- Open Issues: 24
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
- awesome-rust-cn - Sean1708/rusty-cheddar - ci.org/Sean1708/rusty-cheddar.svg?branch=master">](https://travis-ci.org/Sean1708/rusty-cheddar) (Development tools / FFI)
- awesome-rust - Sean1708/rusty-cheddar - ci.org/Sean1708/rusty-cheddar.svg?branch=master">](https://travis-ci.org/Sean1708/rusty-cheddar) (Development tools / FFI)
- awesome-rust - Sean1708/rusty-cheddar
- awesome-rust-cn - Sean1708/rusty-cheddar
- awesome-rust-zh - Sean1708/rusty-cheddar - 从 Rust 源文件,生成 C 头文件[<img src="https://api.travis-ci.org/Sean1708/rusty-cheddar.svg?branch=master">](https://travis-ci.org/Sean1708/rusty-cheddar) (开发工具 / FFI)
- awesome-rust - Sean1708/rusty-cheddar - generates C header files from Rust source files (Development tools / FFI)
- awesome-rust - Sean1708/rusty-cheddar - ci.org/Sean1708/rusty-cheddar.svg?branch=master">](https://travis-ci.org/Sean1708/rusty-cheddar) (开发工具 Development tools / 示例 FFI)
- fucking-awesome-rust - Sean1708/rusty-cheddar - generates C header files from Rust source files (Development tools / FFI)
- fucking-awesome-rust - Sean1708/rusty-cheddar - generates C header files from Rust source files (Development tools / FFI)
README
**_Please be aware that this crate is no longer actively maintained, please look into the much more feature rich [cbindgen](https://github.com/eqrion/cbindgen/) instead._**
# rusty-cheddar
[![Build Status](https://travis-ci.org/Sean1708/rusty-cheddar.svg)](https://travis-ci.org/Sean1708/rusty-cheddar)
[![crates.io](http://meritbadge.herokuapp.com/rusty-cheddar)](https://crates.io/crates/rusty-cheddar)
![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)rusty-cheddar is a library for converting Rust source files into C header files.
**A note on versioning:** While rusty-cheddar is still in a significant flux (i.e.
pre-`v1.0.0`) it will likely go through numerous breaking changes. However, until `v1.0.0`, any
time a breaking change is made the minor version will be bumped and any time a new feature is
added the path version will be bumped.rusty-cheddar targets C99 or later (for sane single line comments and use of `stdint.h` and
`stdbool.h`), if you really really really really really have to use an older standard then please
open an issue at the [repo] and I will begrudgingly figure out how to implement support for it
(after arguing with you lots and lots).The most useful way to use rusty-cheddar is in a build script. To do this add the following
`build-dependencies` section to your `Cargo.toml` (to use it as a normal library simply replace
`build-dependencies` with `dependencies`):```toml
# Cargo.toml[build-dependencies]
rusty-cheddar = "0.3.0"
```Then create the following `build.rs`:
```rust
// build.rsextern crate cheddar;
fn main() {
cheddar::Cheddar::new().expect("could not read manifest")
.run_build("include/my_header.h");
}
```This should work as is providing you've set up your project correctly. **Don't forget to add a
`build = ...` to your `[package]` section, see [the cargo docs] for more info.**rusty-cheddar will then create a `my_header.h` file in `include/`. Note that rusty-cheddar
emits very few warnings, it is up to the programmer to write a library which can be correctly
called from C.#### API In a Module
You can also place your API in a module to help keep your source code neat. To do this you must
supply the name of the module to Cheddar, then ensure that the items are available in the
top-level scope:```rust
// build.rsextern crate cheddar;
fn main() {
cheddar::Cheddar::new().expect("could not read manifest")
.module("c_api").expect("malformed module path")
.run_build("target/include/rusty.h");
}
``````rust
// src/lib.rspub use c_api::*;
mod c_api {
// api goes here ...
}
```There is also the `.compile()` and `.compile_code()` methods for finer control.
## Conversions
In the examples below, boilerplate has been omitted from the header.
### Typedefs
rusty-cheddar converts `pub type A = B` into `typedef B A;`. Types containing generics are ignored.
Rust:
```rust
type UInt32 = u32;
pub type UInt64 = u64;
pub type MyOption = Option
```Header:
```C
// Some boilerplate omitted.
typedef uint64_t UInt64;
// Some more boilerplate omitted.
```### Enums
rusty-cheddar will convert public enums which are marked `#[repr(C)]`. If the enum is generic or
contains tuple or struct variants then `cheddar` will fail. rusty-cheddar should correctly handle
explicit discriminants.Rust:
```rust
#[repr(C)]
pub enum Colours {
Red = -6,
Blue,
Green = 7,
Yellow,
}// This would fail if it was #[repr(C)].
pub enum Tastes {
Savoury(T),
Sweet,
}// This would fail if it was public.
#[repr(C)]
enum Units {
Kg(f64),
M(f64),
S(f64),
A(f64),
K(f64),
Mol(f64),
Cd(f64),
}
```Header:
```C
// Some boilerplate omitted.
typedef enum Colours {
Red = -6,
Blue,
Green = 7,
Yellow,
} Colours;
// Some more boilerplate omitted.
```### Structs
Structs are handled very similarly to enums, they must be public, marked `#[repr(C)]`, and they must not
contain generics (this currently only checked at the struct-level, generic fields are not checked).Rust:
```rust
#[repr(C)]
pub struct Person {
age: i32,
height: f64,
weight: f64,
}
```Header:
```C
// Some boilerplate omitted.
typedef struct Person {
int32_t age;
double height;
double weight;
} Person;
// Some more boilerplate omitted.
```#### Opaque Structs
One common C idiom is to hide the implementation of a struct using an opaque struct, which can
only be used behind a pointer. This is especially useful in Rust-C interfaces as it allows you
to use _any arbitrary Rust struct_ in C.To define an opaque struct you must define a public newtype which is marked as `#[repr(C)]`.
Rust:
```rust
struct Foo {
bar: i32,
baz: Option,
}#[repr(C)]
pub struct MyCrate_Foo(Foo);
```Header:
```C
// Some boilerplate omitted.
typedef struct MyCrate_Foo MyCrate_Foo;
// Some boilerplate omitted.
```Note that the newtype _must not_ be generic but the type that it wraps can be arbitrary.
### Functions
For rusty-cheddar to pick up on a function declaration it must be public, marked `#[no_mangle]` and
have one of the following ABIs:- C
- Cdecl
- Stdcall
- Fastcall
- SystemI'm not totally up to speed on calling conventions so if you believe one of these has been including
in error, or if one has been omitted, then please open an issue at the [repo].rusty-cheddar will fail on functions which are marked as diverging (`-> !`).
Rust:
```rust
use std::ops::Add;#[no_mangle]
pub extern fn hello() {
println!("Hello!");
}fn add>(l: L, r: R) -> O {
l + r
}#[no_mangle]
#[allow(non_snake_case)]
pub extern fn MyAdd_add_u8(l: u8, r: u8) -> u8 {
add(l, r)
}#[no_mangle]
#[allow(non_snake_case)]
pub extern fn MyAdd_add_u16(l: u16, r: u16) -> u16 {
add(l, r)
}
```Header:
```C
// Some boilerplate omitted.
void hello();uint8_t MyAdd_add_u8(uint8_t l, uint8_t r);
uint16_t MyAdd_add_u16(uint16_t l, uint16_t r);
// Some more boilerplate omitted.
```### Paths
You must not put types defined in other modules in an exported type signature without hiding it
behind an opaque struct. This is because the C compiler must know the layout of the type and
rusty-cheddar can not yet search other modules.The very important exception to this rule are the C ABI types defined in
the `libc` crate and `std::os::raw`. Types from these two modules _must_
be fully qualified (e.g. `libc::c_void` or `std::os::raw::c_longlong)
so that they can be converted properly. Importing them with a `use`
statement will not work.[the cargo docs]: http://doc.crates.io/build-script.html
[repo]: https://github.com/Sean1708/rusty-cheddar## Contributing
Contributions to rusty-cheddar are more than welcome.
### Bugs
If you find a bug or have a feature request please open an issue. I can't guarantee that I'll fix it
but I'll give it a damn good go.If you find the source code unclear in any way then I consider that a bug. I try to make my source
code as clear as possible but I'm not very good at it, so any help in that regard is appreciated.### PRs
I love pull requests they tend to make my job much easier, so if you want to fix a bug or implement
a feature yourself then that would be great. If you're confused by anything or need some pointers on
how to proceed then feel free to open an issue so that I can help, otherwise [these docs] are a good
place to start.#### Tests
The tests require you to have a recent version (> `v2.7.2`) of [CppHeaderParser] installed for the
version of Python which is installed as `python` (usually Python 2). Furthermore due to the fact
that the tests are a massive pile of wanky hacks, you must be in the same directory as
rusty-cheddar's `Cargo.toml` to successfully run them.[rusty-binder]: https://gitlab.com/rusty-binder/rusty-binder
[these docs]: http://manishearth.github.io/rust-internals-docs/syntax/ast/index.html
[CppHeaderParser]: https://bitbucket.org/senex/cppheaderparser