Skip to content

Commit 21a8086

Browse files
authored
Rework libcubeb vendoring. (#111)
cubeb-rs releases are now to be performed using `cargo xtask release`. This is a hack to allow us to ship a vendored copy of libcubeb *including* libcubeb's Rust crates. `cargo publish` excludes all subdirectories that contain a `Cargo.toml`, preventing a complete vendoring of libcubeb. The release xtask recursively renames `Cargo.toml` -> `Cargo.toml.in` before running `cargo release` and `cargo publish`, then renames them back. build.rs now always builds using $OUT_DIR/libcubeb, copying and renaming `Cargo.toml.in` as necessary.
1 parent a40d2f4 commit 21a8086

File tree

11 files changed

+195
-31
lines changed

11 files changed

+195
-31
lines changed

.cargo/config.toml

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[alias]
2+
xtask = "run --package xtask --"
3+

Cargo.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
[workspace]
2+
resolver = "2"
23
members = [
34
"cubeb-core",
45
"cubeb-api",
56
"cubeb-backend",
67
"cubeb-sys",
7-
"systest"
8+
"systest",
9+
"xtask",
810
]
911
exclude = [
1012
"cubeb-sys/libcubeb/src/cubeb-coreaudio-rs",

cubeb-api/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cubeb"
3-
version = "0.18.0"
3+
version = "0.20.0"
44
authors = ["Dan Glastonbury <[email protected]>"]
55
license = "ISC"
66
readme = "README.md"
@@ -19,4 +19,4 @@ circle-ci = { repository = "mozilla/cubeb-rs" }
1919
gecko-in-tree = ["cubeb-core/gecko-in-tree"]
2020

2121
[dependencies]
22-
cubeb-core = { path = "../cubeb-core", version = "0.18.0" }
22+
cubeb-core = { path = "../cubeb-core", version = "0.20.0" }

cubeb-backend/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cubeb-backend"
3-
version = "0.18.0"
3+
version = "0.20.0"
44
authors = ["Dan Glastonbury <[email protected]>"]
55
license = "ISC"
66
keywords = ["cubeb"]
@@ -18,4 +18,4 @@ circle-ci = { repository = "mozilla/cubeb-rs" }
1818
gecko-in-tree = ["cubeb-core/gecko-in-tree"]
1919

2020
[dependencies]
21-
cubeb-core = { path = "../cubeb-core", version = "0.18.0" }
21+
cubeb-core = { path = "../cubeb-core", version = "0.20.0" }

cubeb-backend/tests/test_capi.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// This program is made available under an ISC-style license. See the
44
// accompanying file LICENSE for details
55

6-
#![cfg_attr(feature = "cargo-clippy", allow(clippy::float_cmp))]
6+
#![allow(clippy::float_cmp)]
77

88
#[macro_use]
99
extern crate cubeb_backend;

cubeb-core/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cubeb-core"
3-
version = "0.18.0"
3+
version = "0.20.0"
44
authors = ["Dan Glastonbury <[email protected]>"]
55
license = "ISC"
66
keywords = ["cubeb"]
@@ -19,7 +19,7 @@ gecko-in-tree = ["cubeb-sys/gecko-in-tree"]
1919

2020
[dependencies]
2121
bitflags = "1.2.0"
22-
cubeb-sys = { path = "../cubeb-sys", version = "0.18" }
22+
cubeb-sys = { path = "../cubeb-sys", version = "0.20" }
2323

2424
[build-dependencies]
2525
cc = "1.1.30"

cubeb-sys/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "cubeb-sys"
3-
version = "0.18.0"
3+
version = "0.20.0"
44
authors = ["Dan Glastonbury <[email protected]>"]
55
repository = "https://github.com/mozilla/cubeb-rs"
66
license = "ISC"
77
description = "Native bindings to the cubeb library"
8-
exclude = ["libcubeb/"]
8+
exclude = ["libcubeb/googletest"]
99

1010
links = "cubeb"
1111
build = "build.rs"

cubeb-sys/build.rs

+38-21
Original file line numberDiff line numberDiff line change
@@ -33,33 +33,50 @@ fn main() {
3333
return;
3434
}
3535

36+
if env::var("DOCS_RS").is_ok() {
37+
// Use stubs, not libcubeb, for docs.rs.
38+
return;
39+
}
40+
3641
let _ = fs::remove_dir_all(env::var("OUT_DIR").unwrap());
3742
t!(fs::create_dir_all(env::var("OUT_DIR").unwrap()));
3843

3944
env::remove_var("DESTDIR");
4045

41-
if env::var("DOCS_RS").is_ok() {
42-
// Use stubs, not libcubeb, for docs.rs.
43-
return;
46+
// Copy libcubeb to the output directory.
47+
let libcubeb_path = format!("{}/libcubeb", env::var("OUT_DIR").unwrap());
48+
t!(Command::new("cp")
49+
.args(["-r", "libcubeb", &env::var("OUT_DIR").unwrap(),])
50+
.status());
51+
52+
fn visit_dirs(dir: &Path, cb: &dyn Fn(&fs::DirEntry)) -> std::io::Result<()> {
53+
if dir.is_dir() {
54+
for entry in fs::read_dir(dir)? {
55+
let entry = entry?;
56+
let path = entry.path();
57+
if path.is_dir() {
58+
visit_dirs(&path, cb)?;
59+
} else {
60+
cb(&entry);
61+
}
62+
}
63+
}
64+
Ok(())
4465
}
45-
46-
// If the libcubeb submodule is present, use that.
47-
let libcubeb_path = if Path::new("libcubeb").exists() {
48-
"libcubeb".to_owned()
49-
} else {
50-
// If the submodule is not present, we're building in a packaged environment
51-
// so we expected a vendored copy of the source to be available.
52-
// Vendored copy generated with:
53-
// "tar -c -f libcubeb_vendored.tar --exclude libcubeb/googletest libcubeb"
54-
t!(Command::new("tar")
55-
.args([
56-
"xvfC",
57-
"libcubeb_vendored.tar",
58-
&env::var("OUT_DIR").unwrap(),
59-
])
60-
.status());
61-
env::var("OUT_DIR").unwrap() + "/libcubeb"
62-
};
66+
// For packaged build: rename libcubeb Cargo.toml.in files to Cargo.toml.
67+
t!(visit_dirs(Path::new(&libcubeb_path), &|entry| {
68+
let path = entry.path();
69+
if path
70+
.file_name()
71+
.unwrap()
72+
.to_str()
73+
.unwrap()
74+
.ends_with("Cargo.toml.in")
75+
{
76+
let new_path = path.with_file_name("Cargo.toml");
77+
fs::rename(&path, &new_path).unwrap();
78+
}
79+
}));
6380

6481
let target = env::var("TARGET").unwrap();
6582
let windows = target.contains("windows");

cubeb-sys/libcubeb_vendored.tar

-2.1 MB
Binary file not shown.

xtask/Cargo.toml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[package]
2+
name = "xtask"
3+
version = "0.3.0"
4+
edition = "2021"
5+
publish = false
6+
release = false
7+
8+
[dependencies]

xtask/src/main.rs

+134
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
use std::{
2+
env, fs,
3+
path::{Path, PathBuf},
4+
process::Command,
5+
};
6+
7+
type DynError = Box<dyn std::error::Error>;
8+
9+
fn main() {
10+
if let Err(e) = try_main() {
11+
eprintln!("{}", e);
12+
std::process::exit(-1);
13+
}
14+
}
15+
16+
fn try_main() -> Result<(), DynError> {
17+
let task = env::args().nth(1);
18+
match task.as_deref() {
19+
Some("release") => release()?,
20+
_ => print_help(),
21+
}
22+
Ok(())
23+
}
24+
25+
fn print_help() {
26+
eprintln!(
27+
"Tasks:
28+
29+
release runs 'cargo release' after preparing the source directory
30+
"
31+
)
32+
}
33+
34+
fn visit_dirs(dir: &Path, cb: &dyn Fn(&fs::DirEntry)) -> std::io::Result<()> {
35+
if dir.is_dir() {
36+
for entry in fs::read_dir(dir)? {
37+
let entry = entry?;
38+
let path = entry.path();
39+
if path.is_dir() {
40+
visit_dirs(&path, cb)?;
41+
} else {
42+
cb(&entry);
43+
}
44+
}
45+
}
46+
Ok(())
47+
}
48+
49+
fn release() -> Result<(), DynError> {
50+
let cargo = env::var("CARGO").unwrap_or_else(|_| "cargo".to_string());
51+
52+
let status = Command::new(&cargo)
53+
.current_dir(project_root())
54+
.args(["release", "--workspace", "minor", "-x", "--no-publish"])
55+
.status()?;
56+
57+
if !status.success() {
58+
Err("cargo release failed")?;
59+
}
60+
61+
// For packaged build: rename libcubeb Cargo.toml files to Cargo.toml.in.
62+
visit_dirs(Path::new("cubeb-sys/libcubeb"), &|entry| {
63+
let path = entry.path();
64+
if path
65+
.file_name()
66+
.unwrap()
67+
.to_str()
68+
.unwrap()
69+
.ends_with("Cargo.toml")
70+
{
71+
let new_path = path.with_file_name("Cargo.toml.in");
72+
fs::rename(&path, &new_path).unwrap();
73+
}
74+
})
75+
.unwrap();
76+
77+
let status = Command::new(&cargo)
78+
.current_dir(project_root())
79+
.args(["publish", "--package", "cubeb-sys", "--allow-dirty"])
80+
.status()?;
81+
if !status.success() {
82+
Err("cargo publish failed")?;
83+
}
84+
85+
// Rename libcubeb Cargo.toml.in files back to Cargo.toml.
86+
visit_dirs(Path::new("cubeb-sys/libcubeb"), &|entry| {
87+
let path = entry.path();
88+
if path
89+
.file_name()
90+
.unwrap()
91+
.to_str()
92+
.unwrap()
93+
.ends_with("Cargo.toml.in")
94+
{
95+
let new_path = path.with_file_name("Cargo.toml");
96+
fs::rename(&path, &new_path).unwrap();
97+
}
98+
})
99+
.unwrap();
100+
101+
let status = Command::new(&cargo)
102+
.current_dir(project_root())
103+
.args(["publish", "--package", "cubeb-core"])
104+
.status()?;
105+
if !status.success() {
106+
Err("cargo publish failed")?;
107+
}
108+
109+
let status = Command::new(&cargo)
110+
.current_dir(project_root())
111+
.args(["publish", "--package", "cubeb-backend"])
112+
.status()?;
113+
if !status.success() {
114+
Err("cargo publish failed")?;
115+
}
116+
117+
let status = Command::new(&cargo)
118+
.current_dir(project_root())
119+
.args(["publish", "--package", "cubeb"])
120+
.status()?;
121+
if !status.success() {
122+
Err("cargo publish failed")?;
123+
}
124+
125+
Ok(())
126+
}
127+
128+
fn project_root() -> PathBuf {
129+
Path::new(&env!("CARGO_MANIFEST_DIR"))
130+
.ancestors()
131+
.nth(1)
132+
.unwrap()
133+
.to_path_buf()
134+
}

0 commit comments

Comments
 (0)