Skip to content

Commit 489dfb2

Browse files
committed
Read from env variables for the default web bundle
This commit makes it easy to override the default web bundle through the environment variables: - `TECTONIC_WEB_BUNDLE_PREFIX` - `TECTONIC_WEB_BUNDLE_LOCKED` The PREFIX variable makes it easy for people to track a mirrored bundle, while the LOCKED variable ensures reproducible builds across all CLIs.
1 parent d882938 commit 489dfb2

File tree

2 files changed

+48
-2
lines changed

2 files changed

+48
-2
lines changed

crates/bundles/build.rs

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
// Copyright 2016-2021 the Tectonic Project
2+
// Licensed under the MIT License.
3+
4+
use std::env;
5+
6+
/// The current hardcoded default prefix for tectonic's web bundle.
7+
const TECTONIC_WEB_BUNDLE_PREFIX_DEFAULT: &str = "https://relay.fullyjustified.net";
8+
9+
/// Environment variable names to look for the bundle URLs.
10+
const LOCKED_VAR: &str = "TECTONIC_WEB_BUNDLE_LOCKED";
11+
const PREFIX_VAR: &str = "TECTONIC_WEB_BUNDLE_PREFIX";
12+
13+
/// Sets the environment variables for the default web bundle.
14+
///
15+
/// `${TECTONIC_WEB_BUNDLE_PREFIX}` would lead to a url in the form of
16+
/// `${TECTONIC_WEB_BUNDLE_PREFIX}/default_bundle.tar`, while the optional
17+
/// "locked" url, `${TECTONIC_WEB_BUNDLE_LOCKED}`, can be used to pin the
18+
/// default bundle to a specific version if specified. This would be useful
19+
/// for reproducible builds.
20+
fn web_bundle_presets() {
21+
// load from env
22+
let web_bundle_locked = env::var(LOCKED_VAR).unwrap_or("".into());
23+
let web_bundle_prefix = match env::var(PREFIX_VAR) {
24+
Ok(x) if !x.is_empty() => x,
25+
_ => TECTONIC_WEB_BUNDLE_PREFIX_DEFAULT.into(),
26+
};
27+
28+
// export to rustc
29+
println!("cargo:rustc-env={LOCKED_VAR}={web_bundle_locked}");
30+
println!("cargo:rustc-env={PREFIX_VAR}={web_bundle_prefix}");
31+
}
32+
33+
fn main() {
34+
web_bundle_presets();
35+
}

crates/bundles/src/lib.rs

+13-2
Original file line numberDiff line numberDiff line change
@@ -112,12 +112,23 @@ impl<B: Bundle + ?Sized> Bundle for Box<B> {
112112
/// low-level reliability problems and was blocked in China. We now use a custom
113113
/// webservice.
114114
pub fn get_fallback_bundle_url(format_version: u32) -> String {
115+
// Build time environment variables declared in `bundles/build.rs`:
116+
let web_bundle_locked = option_env!("TECTONIC_WEB_BUNDLE_LOCKED").unwrap_or("");
117+
let web_bundle_prefix = option_env!("TECTONIC_WEB_BUNDLE_PREFIX")
118+
.filter(|x| !x.is_empty())
119+
.expect("TECTONIC_WEB_BUNDLE_PREFIX must be defined at compile time");
120+
121+
// Simply return the locked url when it is specified:
122+
if !web_bundle_locked.is_empty() {
123+
return web_bundle_locked.to_owned();
124+
}
125+
115126
// Format version 32 (TeXLive 2021) was when we introduced versioning to the
116127
// URL.
117128
if format_version < 32 {
118-
"https://relay.fullyjustified.net/default_bundle.tar".to_owned()
129+
format!("{web_bundle_prefix}/default_bundle.tar")
119130
} else {
120-
format!("https://relay.fullyjustified.net/default_bundle_v{format_version}.tar")
131+
format!("{web_bundle_prefix}/default_bundle_v{format_version}.tar")
121132
}
122133
}
123134

0 commit comments

Comments
 (0)