forked from substrait-io/substrait-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.rs
227 lines (192 loc) · 7.26 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
// SPDX-License-Identifier: Apache-2.0
use prost_build::Config;
use std::{
env,
error::Error,
fs::{self, File},
io::Write,
path::{Path, PathBuf},
process::Command,
};
use walkdir::{DirEntry, WalkDir};
const SUBMODULE_ROOT: &str = "substrait";
const PROTO_ROOT: &str = "substrait/proto";
const TEXT_ROOT: &str = "substrait/text";
const GEN_ROOT: &str = "gen";
/// Add Substrait version information to the build
fn substrait_version() -> Result<(), Box<dyn Error>> {
let gen_dir = Path::new(GEN_ROOT);
fs::create_dir_all(gen_dir)?;
let version_in_file = gen_dir.join("version.in");
// Rerun if the Substrait submodule changed (to allow setting `dirty`)
println!(
"cargo:rerun-if-changed={}",
Path::new("substrait").display()
);
// Check if there is a submodule. This file is not included in the packaged crate.
if Path::new(SUBMODULE_ROOT).join(".git").exists() {
// Rerun if the Substrait submodule HEAD changed (when there is a submodule)
println!(
"cargo:rerun-if-changed={}",
Path::new(".git/modules/substrait/HEAD").display()
);
// Get the version of the submodule by directly calling `git describe`.
let git_describe = String::from_utf8(
Command::new("git")
.current_dir(SUBMODULE_ROOT)
.arg("describe")
.arg("--tags")
.arg("--long")
.arg("--dirty=-dirty")
.arg("--abbrev=40")
.output()?
.stdout,
)?;
// Extract the parts.
let mut split = git_describe.split('-');
let git_version = split.next().unwrap_or_default();
let git_depth = split.next().unwrap_or_default();
let git_hash = split.next().unwrap_or_default().trim_end();
let git_dirty = git_describe.ends_with("dirty");
let version = semver::Version::parse(git_version.trim_start_matches('v'))?;
let &semver::Version {
major,
minor,
patch,
..
} = &version;
fs::write(
version_in_file,
format!(
r#"// SPDX-License-Identifier: Apache-2.0
// Note that this file is auto-generated and auto-synced using `build.rs`. It is
// included in `version.rs`.
/// The major version of Substrait used to build this crate
pub const SUBSTRAIT_MAJOR_VERSION: u32 = {major};
/// The minor version of Substrait used to build this crate
pub const SUBSTRAIT_MINOR_VERSION: u32 = {minor};
/// The patch version of Substrait used to build this crate
pub const SUBSTRAIT_PATCH_VERSION: u32 = {patch};
/// The Git SHA (lower hex) of Substrait used to build this crate
pub const SUBSTRAIT_GIT_SHA: &str = "{git_hash}";
/// The `git describe` output of the Substrait submodule used to build this
/// crate
pub const SUBSTRAIT_GIT_DESCRIBE: &str = "{git_describe}";
/// The amount of commits between the latest tag and the version of the
/// Substrait submodule used to build this crate
pub const SUBSTRAIT_GIT_DEPTH: u32 = {git_depth};
/// The dirty state of the Substrait submodule used to build this crate
pub const SUBSTRAIT_GIT_DIRTY: bool = {git_dirty};
"#
),
)?;
} else {
// If we don't have a version file yet we fail the build.
if !version_in_file.exists() {
panic!("Couldn't find the substrait submodule. Please clone the submodule: `git submodule update --init`.")
}
}
Ok(())
}
/// `text` type generation
fn text(out_dir: &Path) -> Result<(), Box<dyn Error>> {
use heck::ToSnakeCase;
use schemars::schema::{RootSchema, Schema};
use typify::{TypeSpace, TypeSpaceSettings};
let mut out_file = File::create(out_dir.join("substrait_text").with_extension("rs"))?;
for schema_path in WalkDir::new(TEXT_ROOT)
.into_iter()
.filter_map(Result::ok)
.filter(|entry| entry.file_type().is_file() || entry.file_type().is_symlink())
.filter(|entry| {
entry
.path()
.extension()
.filter(|&extension| extension == "yaml") // Option::contains
.is_some()
})
.map(DirEntry::into_path)
.inspect(|entry| {
println!("cargo:rerun-if-changed={}", entry.display());
})
{
let schema = serde_yaml::from_reader::<_, RootSchema>(File::open(&schema_path)?)?;
let metadata = schema.schema.metadata.as_ref();
let id = metadata
.and_then(|metadata| metadata.id.as_ref())
.map(ToString::to_string)
.unwrap_or_else(|| {
panic!(
"$id missing in schema metadata (`{}`)",
schema_path.display()
)
});
let title = metadata
.and_then(|metadata| metadata.title.as_ref())
.map(|title| title.to_snake_case())
.unwrap_or_else(|| {
panic!(
"title missing in schema metadata (`{}`)",
schema_path.display()
)
});
let mut type_space = TypeSpace::new(TypeSpaceSettings::default().with_struct_builder(true));
type_space.add_ref_types(schema.definitions)?;
type_space.add_type(&Schema::Object(schema.schema))?;
out_file.write_fmt(format_args!(
r#"
#[doc = "Generated types for `{id}`"]
pub mod {title} {{
use serde::{{Deserialize, Serialize}};
{}
}}"#,
prettyplease::unparse(&syn::parse2::<syn::File>(type_space.to_stream())?),
))?;
}
Ok(())
}
#[cfg(feature = "serde")]
/// Serialize and deserialize implementations for proto types using `pbjson`
fn serde(protos: &[impl AsRef<Path>], out_dir: PathBuf) -> Result<(), Box<dyn Error>> {
use pbjson_build::Builder;
let descriptor_path = out_dir.join("proto_descriptor.bin");
let mut cfg = Config::new();
cfg.file_descriptor_set_path(&descriptor_path);
cfg.compile_well_known_types()
.extern_path(".google.protobuf", "::pbjson_types")
.compile_protos(protos, &[PROTO_ROOT])?;
Builder::new()
.register_descriptors(&fs::read(descriptor_path)?)?
.build(&[".substrait"])?;
Ok(())
}
fn main() -> Result<(), Box<dyn Error>> {
// for use in docker build where file changes can be wonky
println!("cargo:rerun-if-env-changed=FORCE_REBUILD");
substrait_version()?;
#[cfg(feature = "protoc")]
std::env::set_var("PROTOC", protobuf_src::protoc());
let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
text(out_dir.as_path())?;
let protos = WalkDir::new(PROTO_ROOT)
.into_iter()
.filter_map(Result::ok)
.filter(|entry| entry.file_type().is_file() || entry.file_type().is_symlink())
.filter(|entry| {
entry
.path()
.extension()
.filter(|&extension| extension == "proto")
.is_some()
})
.map(DirEntry::into_path)
.inspect(|entry| {
println!("cargo:rerun-if-changed={}", entry.display());
})
.collect::<Vec<_>>();
#[cfg(feature = "serde")]
serde(&protos, out_dir)?;
#[cfg(not(feature = "serde"))]
Config::new().compile_protos(&protos, &[PROTO_ROOT])?;
Ok(())
}