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
// Copyright Materialize, Inc. and contributors. All rights reserved.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0.

use std::path::{self, PathBuf};
use std::{env, iter};

use anyhow::{bail, Context};
use tokio::process::Command;

use crate::action::{ControlFlow, State};
use crate::parser::BuiltinCommand;

pub async fn run_compile_descriptors(
    mut cmd: BuiltinCommand,
    state: &mut State,
) -> Result<ControlFlow, anyhow::Error> {
    let inputs: Vec<String> = cmd
        .args
        .string("inputs")?
        .split(',')
        .map(|s| s.into())
        .collect();
    let output = cmd.args.string("output")?;
    for path in inputs.iter().chain(iter::once(&output)) {
        if path.contains(path::MAIN_SEPARATOR) {
            // The goal isn't security, but preventing mistakes.
            bail!("separators in paths are forbidden");
        }
    }
    let protoc = match env::var_os("PROTOC") {
        None => mz_build_tools::protoc(),
        Some(protoc) => PathBuf::from(protoc),
    };
    let output_path = state.temp_path.join(&output);
    let status = Command::new(protoc)
        .arg("--include_imports")
        .arg("-I")
        .arg(&state.temp_path)
        .arg("--descriptor_set_out")
        .arg(state.temp_path.join(&output).clone())
        .args(&inputs)
        .status()
        .await
        .context("invoking protoc failed")?;
    if !status.success() {
        bail!("protoc exited unsuccessfully");
    }
    if let Some(var) = cmd.args.opt_string("set-var") {
        let res = std::fs::read(output_path)?;
        let hex_encoded = hex::encode(res);
        state.cmd_vars.insert(var, format!("\\x{hex_encoded}"));
    }
    Ok(ControlFlow::Continue)
}