forked from RedisLabsModules/redismodule-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.rs
82 lines (69 loc) · 2.55 KB
/
build.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
extern crate bindgen;
extern crate cc;
use bindgen::callbacks::{IntKind, ParseCallbacks};
use std::env;
use std::path::PathBuf;
#[derive(Debug)]
struct RedisModuleCallback;
impl ParseCallbacks for RedisModuleCallback {
fn int_macro(&self, name: &str, _value: i64) -> Option<IntKind> {
if name.starts_with("REDISMODULE_SUBEVENT_") || name.starts_with("REDISMODULE_EVENT_") {
Some(IntKind::U64)
} else if name.starts_with("REDISMODULE_REPLY_")
|| name.starts_with("REDISMODULE_KEYTYPE_")
|| name.starts_with("REDISMODULE_AUX_")
|| name == "REDISMODULE_OK"
|| name == "REDISMODULE_ERR"
|| name == "REDISMODULE_LIST_HEAD"
|| name == "REDISMODULE_LIST_TAIL"
{
// These values are used as `enum` discriminants, and thus must be `isize`.
Some(IntKind::Custom {
name: "isize",
is_signed: true,
})
} else if name.starts_with("REDISMODULE_NOTIFY_") {
Some(IntKind::Int)
} else {
None
}
}
}
fn main() {
// Build a Redis pseudo-library so that we have symbols that we can link
// against while building Rust code.
//
// include/redismodule.h is vendored in from the Redis project and
// src/redismodule.c is a stub that includes it and plays a few other
// tricks that we need to complete the build.
const EXPERIMENTAL_API: &str = "REDISMODULE_EXPERIMENTAL_API";
// Determine if the `experimental-api` feature is enabled
fn experimental_api() -> bool {
std::env::var_os("CARGO_FEATURE_EXPERIMENTAL_API").is_some()
}
let mut build = cc::Build::new();
if experimental_api() {
build.define(EXPERIMENTAL_API, None);
}
build
.file("src/redismodule.c")
.include("src/include/")
.compile("redismodule");
let mut build = bindgen::Builder::default();
if experimental_api() {
build = build.clang_arg(format!("-D{}", EXPERIMENTAL_API).as_str());
}
let bindings = build
.header("src/include/redismodule.h")
.allowlist_var("(REDIS|Redis).*")
.blocklist_type("__darwin_.*")
.allowlist_type("RedisModule.*")
.parse_callbacks(Box::new(RedisModuleCallback))
.size_t_is_usize(true)
.generate()
.expect("error generating bindings");
let out_path = PathBuf::from(env::var("OUT_DIR").unwrap());
bindings
.write_to_file(out_path.join("bindings.rs"))
.expect("failed to write bindings to file");
}