flowey_cli/cli/pipeline.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 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
use anyhow::Context;
use flowey_core::node::FlowBackend;
use flowey_core::pipeline::IntoPipeline;
use flowey_core::pipeline::PipelineBackendHint;
use std::path::Path;
use std::path::PathBuf;
#[derive(Clone, clap::ValueEnum)]
pub enum VizModeCli {
Toposort,
Dot,
FlowDot,
}
pub(crate) enum CheckMode {
Runtime(PathBuf),
Check(PathBuf),
None,
}
#[derive(clap::Subcommand)]
enum PipelineBackendCli<P: clap::Subcommand> {
/// A locally executable bash script
#[clap(subcommand_value_name = "PIPELINE")]
#[clap(subcommand_help_heading = "Pipeline")]
Bash {
/// Output directory to write pipeline scripts to. If the directory
/// doesn't exist, it will be created.
#[clap(long, default_value = "./flowey-out")]
out_dir: PathBuf,
/// Persistent storage directory shared across multiple runs. If the
/// directory doesn't exist, it will be created.
#[clap(long, default_value = "./flowey-persist")]
persist_dir: PathBuf,
/// Enable flowey internal debug logs at runtime
#[clap(help_heading = "Global Options (flowey)", global = true, long)]
runtime_debug_log: bool,
/// Attempt to run windows jobs on WSL2. This may or may not work,
/// depending on if the flowey nodes at play are resilient to running
/// in WSL2.
#[clap(help_heading = "Global Options (flowey)", global = true, long)]
windows_as_wsl: bool,
#[clap(subcommand)]
pipelines: P,
},
/// An ADO pipeline YAML file
#[clap(subcommand_value_name = "PIPELINE")]
#[clap(subcommand_help_heading = "Pipeline")]
Ado {
#[clap(subcommand)]
pipelines: P,
/// disable flowey internal debug logs at runtime
#[clap(help_heading = "Global Options (flowey)", global = true, long)]
no_runtime_debug_log: bool,
/// repo-root relative path to generated YAML file
#[clap(long)]
out: PathBuf,
/// check that the provided YAML matches the generated YAML.
#[clap(long, value_name = "YAML")]
check: Option<PathBuf>,
/// generate the pipeline JSON, also runs check
#[clap(long, value_name = "YAML")]
runtime: Option<PathBuf>,
},
/// A GitHub pipeline YAML file
#[clap(subcommand_value_name = "PIPELINE")]
#[clap(subcommand_help_heading = "Pipeline")]
Github {
#[clap(subcommand)]
pipelines: P,
/// disable flowey internal debug logs at runtime
#[clap(help_heading = "Global Options (flowey)", global = true, long)]
no_runtime_debug_log: bool,
/// repo-root relative path to generated YAML file
#[clap(long)]
out: PathBuf,
/// check that the provided YAML matches the generated YAML.
#[clap(long, value_name = "YAML")]
check: Option<PathBuf>,
/// generate the pipeline JSON, also runs check
#[clap(long, value_name = "YAML", conflicts_with = "check")]
runtime: Option<PathBuf>,
},
/// Run the pipeline directly using flowey
Run {
#[clap(subcommand)]
pipelines: P,
/// Output directory to emit artifacts into. If the directory
/// doesn't exist, it will be created.
#[clap(long, default_value = "./flowey-out")]
out_dir: PathBuf,
/// Persistent storage directory shared across multiple runs. If the
/// directory doesn't exist, it will be created.
#[clap(long, default_value = "./flowey-persist")]
persist_dir: PathBuf,
/// Attempt to run windows jobs on WSL2. This may or may not work,
/// depending on if the flowey nodes at play are resilient to running
/// in WSL2.
#[clap(help_heading = "Global Options (flowey)", global = true, long)]
windows_as_wsl: bool,
},
}
/// Generate and Run pipelines.
#[derive(clap::Args)]
#[clap(subcommand_help_heading = "Pipeline Kind")]
#[clap(subcommand_value_name = "PIPELINE_KIND")]
pub struct Pipeline<P: clap::Subcommand> {
/// (debug) Emit a visualization of the output flow, instead of the flow
/// itself.
#[clap(help_heading = "Global Options (flowey)", global = true, long)]
viz_mode: Option<VizModeCli>,
/// (debug) Filter the pipeline to only include the specified jobs.
///
/// At this time, this will _not_ allow running a job without also running
/// any jobs it depends on!
///
/// Accepts a comma-separated list of "job ids", a list of which can be
/// obtained by running `--include-jobs='?'`
///
/// NOTE: because this is intended as a debugging tool, there is no
/// mechanism to ensure that "job ids" remain stable in the face of pipeline
/// updates / flowey updates. i.e: an `--include-jobs` invocation that works
/// today may not work after making changes to the pipeline definition /
/// updating flowey.
#[clap(help_heading = "Global Options (flowey)", global = true, long)]
#[expect(clippy::option_option, reason = "for clap derive")]
include_jobs: Option<Option<IncludeJobs>>,
#[clap(subcommand)]
project_pipeline: PipelineBackendCli<P>,
}
#[derive(Clone)]
enum IncludeJobs {
Query,
List(Vec<usize>),
}
impl std::str::FromStr for IncludeJobs {
type Err = &'static str;
fn from_str(s: &str) -> Result<Self, Self::Err> {
if s == "?" {
return Ok(IncludeJobs::Query);
}
let mut list = Vec::new();
for n in s.split(',') {
if n == "?" {
return Err("can only pass '?' once");
}
list.push(
n.parse()
.map_err(|_| "expected comma separated list of numbers")?,
);
}
Ok(IncludeJobs::List(list))
}
}
impl<P: clap::Subcommand + IntoPipeline> Pipeline<P> {
pub fn run(self, flowey_crate: &str, repo_root: &Path) -> anyhow::Result<()> {
let Self {
project_pipeline,
viz_mode,
include_jobs,
} = self;
match project_pipeline {
PipelineBackendCli::Bash {
pipelines,
out_dir,
persist_dir,
runtime_debug_log,
windows_as_wsl,
} => {
let mut resolved_pipeline =
resolve_pipeline(pipelines, PipelineBackendHint::Local)?;
if matches!(
resolve_include_jobs(&mut resolved_pipeline, include_jobs)?,
EarlyExit::Yes
) {
return Ok(());
}
if let Some(viz_mode) = viz_mode {
viz_pipeline(
viz_mode,
resolved_pipeline,
FlowBackend::Local,
crate::running_in_wsl(),
)
} else {
let _ = (out_dir, persist_dir, runtime_debug_log, windows_as_wsl);
todo!("bash backend is not actively maintained, and currently broken")
}
}
PipelineBackendCli::Run {
pipelines,
out_dir,
persist_dir,
windows_as_wsl,
} => {
let mut resolved_pipeline =
resolve_pipeline(pipelines, PipelineBackendHint::Local)?;
if matches!(
resolve_include_jobs(&mut resolved_pipeline, include_jobs)?,
EarlyExit::Yes
) {
return Ok(());
}
if let Some(viz_mode) = viz_mode {
viz_pipeline(
viz_mode,
resolved_pipeline,
FlowBackend::Local,
crate::running_in_wsl(),
)
} else {
crate::pipeline_resolver::direct_run::direct_run(
resolved_pipeline,
windows_as_wsl,
out_dir,
persist_dir,
)
}
}
PipelineBackendCli::Ado {
pipelines,
out,
no_runtime_debug_log,
check,
runtime,
} => {
let mut resolved_pipeline = resolve_pipeline(pipelines, PipelineBackendHint::Ado)?;
if matches!(
resolve_include_jobs(&mut resolved_pipeline, include_jobs)?,
EarlyExit::Yes
) {
return Ok(());
}
if let Some(viz_mode) = viz_mode {
viz_pipeline(viz_mode, resolved_pipeline, FlowBackend::Ado, false)
} else {
let mode = if let Some(runtime_path) = runtime {
CheckMode::Runtime(runtime_path)
} else if let Some(check_path) = check {
CheckMode::Check(check_path)
} else {
CheckMode::None
};
crate::pipeline_resolver::ado_yaml::ado_yaml(
resolved_pipeline,
!no_runtime_debug_log,
repo_root,
&out,
flowey_crate,
mode,
)
}
}
PipelineBackendCli::Github {
pipelines,
out,
no_runtime_debug_log,
check,
runtime,
} => {
let mut resolved_pipeline =
resolve_pipeline(pipelines, PipelineBackendHint::Github)?;
if matches!(
resolve_include_jobs(&mut resolved_pipeline, include_jobs)?,
EarlyExit::Yes
) {
return Ok(());
}
if let Some(viz_mode) = viz_mode {
viz_pipeline(viz_mode, resolved_pipeline, FlowBackend::Github, false)
} else {
let mode = if let Some(runtime_path) = runtime {
CheckMode::Runtime(runtime_path)
} else if let Some(check_path) = check {
CheckMode::Check(check_path)
} else {
CheckMode::None
};
crate::pipeline_resolver::github_yaml::github_yaml(
resolved_pipeline,
!no_runtime_debug_log,
repo_root,
&out,
flowey_crate,
mode,
)
}
}
}
}
}
fn resolve_pipeline<P: IntoPipeline>(
pipelines: P,
backend_hint: PipelineBackendHint,
) -> Result<crate::pipeline_resolver::generic::ResolvedPipeline, anyhow::Error> {
let pipeline = pipelines
.into_pipeline(backend_hint)
.context("error defining pipeline")?;
let resolved_pipeline = crate::pipeline_resolver::generic::resolve_pipeline(pipeline)
.context("invalid pipeline")?;
Ok(resolved_pipeline)
}
fn viz_pipeline(
viz_mode: VizModeCli,
resolved_pipeline: crate::pipeline_resolver::generic::ResolvedPipeline,
backend: FlowBackend,
with_persist_dir: bool,
) -> Result<(), anyhow::Error> {
match viz_mode {
VizModeCli::Toposort => crate::pipeline_resolver::viz::viz_pipeline_toposort(
resolved_pipeline,
backend,
with_persist_dir,
),
VizModeCli::Dot => {
crate::pipeline_resolver::viz::viz_pipeline_dot(resolved_pipeline, backend)
}
VizModeCli::FlowDot => crate::pipeline_resolver::viz::viz_pipeline_flow_dot(
resolved_pipeline,
backend,
with_persist_dir,
),
}
}
enum EarlyExit {
Yes,
No,
}
#[expect(clippy::option_option, reason = "for clap derive")]
fn resolve_include_jobs(
resolved_pipeline: &mut crate::pipeline_resolver::generic::ResolvedPipeline,
include_jobs: Option<Option<IncludeJobs>>,
) -> anyhow::Result<EarlyExit> {
let Some(include_jobs) = include_jobs else {
return Ok(EarlyExit::No);
};
match include_jobs.unwrap_or(IncludeJobs::Query) {
IncludeJobs::Query => {
for (present_idx, &graph_idx) in resolved_pipeline.order.iter().enumerate() {
println!(
"{}: {}",
present_idx, resolved_pipeline.graph[graph_idx].label
);
}
Ok(EarlyExit::Yes)
}
IncludeJobs::List(list) => {
let preserve_jobs = list
.into_iter()
.map(|present_idx| resolved_pipeline.order.get(present_idx).cloned())
.collect::<Option<Vec<_>>>()
.context("passed invalid job idx. use '?' to list available jobs")?;
resolved_pipeline.trim_pipeline_graph(preserve_jobs);
Ok(EarlyExit::No)
}
}
}