-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathbuild.rs
239 lines (203 loc) · 7.82 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
use std::{collections::HashMap, path::Path};
const LIB: &str = "libdrift_ffi_sys";
const SUPPORTED_PLATFORMS: &[(&str, &str, &str)] = &[
("apple", "x86_64-apple-darwin", "dylib"),
("linux", "x86_64-unknown-linux-gnu", "so"),
];
const FFI_TOOLCHAIN_VERSION: &str = "1.76.0";
fn main() -> Result<(), Box<dyn std::error::Error>> {
if std::env::var("DOCS_RS").is_ok() {
println!("cargo:warning=docs.rs build detected. skipping idl-gen and libdrift build");
return Ok(());
}
let current_dir = std::env::current_dir()?.canonicalize()?;
// Generate IDL types from 'res/drift.json'
let idl_source_path = current_dir.join("res/drift.json");
let idl_mod_path = current_dir.join("crates/src/drift_idl.rs");
generate_idl_types(&idl_source_path, idl_mod_path.as_path())?;
// Only build FFI lib if static or no lib path provided
if should_build_from_source() {
build_ffi_lib(¤t_dir)?;
}
link_library()?;
Ok(())
}
fn generate_idl_types(
idl_source_path: &Path,
idl_mod_path: &Path,
) -> Result<(), Box<dyn std::error::Error>> {
let idl_mod_rs = drift_idl_gen::generate_rust_types(idl_source_path)
.map_err(|err| format!("generating IDL failed: {err:?}"))?;
std::fs::write(idl_mod_path, idl_mod_rs)?;
Ok(())
}
fn should_build_from_source() -> bool {
if std::env::var("CARGO_DRIFT_FFI_STATIC").is_ok() {
println!("cargo:warning=CARGO_DRIFT_FFI_STATIC on");
return true;
}
match std::env::var("CARGO_DRIFT_FFI_PATH") {
Err(_) => {
println!("cargo:warning=CARGO_DRIFT_FFI_PATH not set");
true
}
Ok(ref path) => {
println!("cargo:warning=CARGO_DRIFT_FFI_PATH set: {path}");
false
// check version
// if let Some(soname) = extract_soname(&format!("{path}/{LIB}")) {
// if soname.contains(LIB_VERSION.as_str()) {
// println!("cargo:warning=compatible {LIB} version detected ✅");
// return false;
// } else {
// println!("cargo:warning=incompatible {LIB} version detected ❌: {soname}");
// println!(
// "cargo:warning=update {LIB} to latest release: {}",
// LIB_VERSION.as_str()
// );
// return true;
// }
// }
// println!("cargo:warning=no compatible {LIB} detected");
// true
}
}
}
fn build_ffi_lib(current_dir: &Path) -> Result<(), Box<dyn std::error::Error>> {
println!("cargo:warning={LIB}: building from source...");
let host_target = std::env::var("TARGET")?;
let (lib_target, lib_ext) = get_platform_details(&host_target)?;
verify_toolchain(lib_target)?;
// Build the library
let profile = std::env::var("PROFILE")?;
let drift_ffi_sys_crate = current_dir.join("crates/drift-ffi-sys");
build_with_toolchain(&drift_ffi_sys_crate, lib_target, &profile)?;
install_library(&drift_ffi_sys_crate, &profile, lib_ext)?;
Ok(())
}
fn get_platform_details(
host_target: &str,
) -> Result<(&'static str, &'static str), Box<dyn std::error::Error>> {
for (platform, target, ext) in SUPPORTED_PLATFORMS {
if host_target.contains(platform) {
return Ok((target, ext));
}
}
println!("cargo:warning=Unsupported host platform: {host_target}");
println!(
"cargo:warning=Please open an issue at: https://github.com/drift-labs/drift-rs/issues"
);
Err("Unsupported platform".into())
}
fn verify_toolchain(lib_target: &str) -> Result<(), Box<dyn std::error::Error>> {
let ffi_toolchain = format!("{FFI_TOOLCHAIN_VERSION}-{lib_target}");
let output = std::process::Command::new("rustup")
.args(["toolchain", "list"])
.output()?;
if !output.status.success() {
return Err("Failed to query rustup toolchains".into());
}
let installed_toolchains = String::from_utf8_lossy(&output.stdout);
if !installed_toolchains.contains(&ffi_toolchain) {
println!("cargo:warning=Required toolchain {ffi_toolchain} is missing");
println!("cargo:warning=Run: 'rustup install {ffi_toolchain}' to install");
return Err("Missing required toolchain".into());
}
Ok(())
}
fn build_with_toolchain(
drift_ffi_sys_crate: &Path,
lib_target: &str,
profile: &str,
) -> Result<(), Box<dyn std::error::Error>> {
// Filter out cargo and rustc environment variables
let ffi_build_envs: HashMap<String, String> = std::env::vars()
.filter(|(k, _v)| !k.starts_with("CARGO") && !k.starts_with("RUSTC"))
.collect();
let ffi_toolchain = format!("{FFI_TOOLCHAIN_VERSION}-{lib_target}");
let mut ffi_build = std::process::Command::new("rustup");
ffi_build
.env_clear()
.envs(ffi_build_envs)
.current_dir(drift_ffi_sys_crate)
.args(["run", &ffi_toolchain, "cargo", "build"]);
match profile {
"debug" => (),
"release" => {
ffi_build.arg("--release");
}
custom => {
ffi_build.arg(format!("--profile={custom}"));
}
}
let output = ffi_build.output()?;
if !output.status.success() {
println!("cargo:warning={}", String::from_utf8_lossy(&output.stderr));
return Err("FFI build failed".into());
}
Ok(())
}
fn install_library(
drift_ffi_sys_crate: &Path,
profile: &str,
lib_ext: &str,
) -> Result<(), Box<dyn std::error::Error>> {
let libffi_out_path = drift_ffi_sys_crate.join(format!("target/{profile}/{LIB}.{lib_ext}"));
if let Ok(out_dir) = std::env::var("OUT_DIR") {
std::process::Command::new("cp")
.args([
libffi_out_path.to_str().ok_or("Invalid path")?,
out_dir.as_str(),
])
.output()?;
println!("cargo:warning={LIB}: searching for lib at: {out_dir}");
println!("cargo:rustc-link-search=native={out_dir}");
} else {
// Install to system library path
std::process::Command::new("ln")
.args([
"-sf",
libffi_out_path.to_str().ok_or("Invalid path")?,
"/usr/local/lib/",
])
.output()?;
println!("cargo:warning={LIB}: searching for lib at: /usr/local/lib");
println!("cargo:rustc-link-search=native=/usr/local/lib");
}
Ok(())
}
fn link_library() -> Result<(), Box<dyn std::error::Error>> {
if let Ok(lib_path) = std::env::var("CARGO_DRIFT_FFI_PATH") {
println!("cargo:rustc-link-search=native={lib_path}");
} else {
// On linux need to refresh the linker cache
let host_target = std::env::var("TARGET")?;
let (lib_target, _lib_ext) = get_platform_details(&host_target)?;
if lib_target.contains("linux") {
if let Err(err) = std::process::Command::new("ldconfig").output() {
println!("cargo:warning={LIB}: ldconfig failed: {err:?}");
}
}
}
println!("cargo:rustc-link-lib=dylib=drift_ffi_sys");
Ok(())
}
// try to pull the SONAME from drift_ffi_sys lib
// fn extract_soname(path: &str) -> Option<String> {
// use std::{fs::File, io::Read};
// use goblin::{elf::Elf, mach::MachO};
// let mut buffer = Vec::new();
// // try linux
// let _ = File::open(format!("{path}.so")).and_then(|mut f| f.read_to_end(&mut buffer));
// if let Ok(elf) = Elf::parse(&buffer) {
// return elf.soname.map(|s| s.to_string());
// }
// // try mac OS
// buffer.clear();
// let _ = File::open(format!("{path}.dylib")).and_then(|mut f| f.read_to_end(&mut buffer));
// // Parse the macho file
// if let Ok(macho) = MachO::parse(&buffer, 0) {
// return macho.name.map(|n| n.to_string());
// }
// None
// }