| use dora_core::{ | |
| config::OperatorId, | |
| descriptor::{Descriptor, SINGLE_OPERATOR_DEFAULT_ID}, | |
| }; | |
| use eyre::{eyre, Context}; | |
| use std::{path::Path, process::Command}; | |
| pub fn build(dataflow: &Path) -> eyre::Result<()> { | |
| let descriptor = Descriptor::blocking_read(dataflow)?; | |
| let dataflow_absolute = if dataflow.is_relative() { | |
| std::env::current_dir().unwrap().join(dataflow) | |
| } else { | |
| dataflow.to_owned() | |
| }; | |
| let working_dir = dataflow_absolute.parent().unwrap(); | |
| let default_op_id = OperatorId::from(SINGLE_OPERATOR_DEFAULT_ID.to_string()); | |
| for node in descriptor.nodes { | |
| match node.kind()? { | |
| dora_core::descriptor::NodeKind::Standard(_) => { | |
| run_build_command(node.build.as_deref(), working_dir).with_context(|| { | |
| format!("build command failed for standard node `{}`", node.id) | |
| })? | |
| } | |
| dora_core::descriptor::NodeKind::Runtime(runtime_node) => { | |
| for operator in &runtime_node.operators { | |
| run_build_command(operator.config.build.as_deref(), working_dir).with_context( | |
| || { | |
| format!( | |
| "build command failed for operator `{}/{}`", | |
| node.id, operator.id | |
| ) | |
| }, | |
| )?; | |
| } | |
| } | |
| dora_core::descriptor::NodeKind::Custom(custom_node) => { | |
| run_build_command(custom_node.build.as_deref(), working_dir).with_context(|| { | |
| format!("build command failed for custom node `{}`", node.id) | |
| })? | |
| } | |
| dora_core::descriptor::NodeKind::Operator(operator) => { | |
| run_build_command(operator.config.build.as_deref(), working_dir).with_context( | |
| || { | |
| format!( | |
| "build command failed for operator `{}/{}`", | |
| node.id, | |
| operator.id.as_ref().unwrap_or(&default_op_id) | |
| ) | |
| }, | |
| )? | |
| } | |
| } | |
| } | |
| Ok(()) | |
| } | |
| fn run_build_command(build: Option<&str>, working_dir: &Path) -> eyre::Result<()> { | |
| if let Some(build) = build { | |
| let mut split = build.split_whitespace(); | |
| let mut cmd = Command::new( | |
| split | |
| .next() | |
| .ok_or_else(|| eyre!("build command is empty"))?, | |
| ); | |
| cmd.args(split); | |
| cmd.current_dir(working_dir); | |
| let exit_status = cmd | |
| .status() | |
| .wrap_err_with(|| format!("failed to run `{}`", build))?; | |
| if exit_status.success() { | |
| Ok(()) | |
| } else { | |
| Err(eyre!("build command returned an error code")) | |
| } | |
| } else { | |
| Ok(()) | |
| } | |
| } | |