blob: b734a01ce340dd0bfaf87c229af5ad22464bd500 [file] [log] [blame]
// Licensed to the Apache Software Foundation (ASF) under one
// or more contributor license agreements. See the NOTICE file
// distributed with this work for additional information
// regarding copyright ownership. The ASF licenses this file
// to you under the Apache License, Version 2.0 (the
// "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
use std::env;
use std::path::Path;
use std::process::Command;
use std::str;
fn main() {
let proto_files = [
"services/proto/src/proto/teaclave_access_control_service.proto",
"services/proto/src/proto/teaclave_authentication_service.proto",
"services/proto/src/proto/teaclave_common.proto",
"services/proto/src/proto/teaclave_storage_service.proto",
"services/proto/src/proto/teaclave_frontend_service.proto",
"services/proto/src/proto/teaclave_management_service.proto",
"services/proto/src/proto/teaclave_scheduler_service.proto",
];
let out_dir = env::var("OUT_DIR").expect("$OUT_DIR not set. Please build with cargo");
println!("cargo:rerun-if-changed=build.rs");
println!("cargo:rerun-if-changed=proto_gen/templates/proto.j2");
println!("cargo:rerun-if-changed=proto_gen/main.rs");
for pf in proto_files.iter() {
println!("cargo:rerun-if-changed={}", pf);
}
let target_dir = Path::new(&env::var("TEACLAVE_SYMLINKS").expect("TEACLAVE_SYMLINKS"))
.join("teaclave_build/target/proto_gen");
let unix_toml_dir = env::var("MT_SGXAPP_TOML_DIR").expect("MT_SGXAPP_TOML_DIR");
let c = Command::new("cargo")
.current_dir(&unix_toml_dir)
.args(&[
"run",
"--target-dir",
&target_dir.to_string_lossy(),
"--manifest-path",
"services/proto/proto_gen/Cargo.toml",
"--offline",
"--",
"-i",
"services/proto/src/proto",
"-d",
&out_dir,
"-p",
])
.args(&proto_files)
.output()
.expect("Generate proto failed");
if !c.status.success() {
panic!(
"stdout: {:?}, stderr: {:?}",
str::from_utf8(&c.stderr).unwrap(),
str::from_utf8(&c.stderr).unwrap()
);
}
}