File size: 16,011 Bytes
b98ffbb |
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 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 |
use crate::config::{
CommunicationConfig, DataId, Input, InputMapping, NodeId, NodeRunConfig, OperatorId,
};
use eyre::{bail, eyre, Context, OptionExt, Result};
use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
use serde_with_expand_env::with_expand_envs;
use std::{
collections::{BTreeMap, BTreeSet, HashMap},
env::consts::EXE_EXTENSION,
fmt,
path::{Path, PathBuf},
};
use tracing::warn;
pub use visualize::collect_dora_timers;
mod validate;
mod visualize;
pub const SHELL_SOURCE: &str = "shell";
/// Dataflow description
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
#[serde(deny_unknown_fields)]
#[schemars(title = "dora-rs specification")]
pub struct Descriptor {
#[schemars(skip)]
#[serde(default)]
pub communication: CommunicationConfig,
#[schemars(skip)]
#[serde(default, rename = "_unstable_deploy")]
pub deploy: Deploy,
pub nodes: Vec<Node>,
}
pub const SINGLE_OPERATOR_DEFAULT_ID: &str = "op";
impl Descriptor {
pub fn resolve_aliases_and_set_defaults(&self) -> eyre::Result<Vec<ResolvedNode>> {
let default_op_id = OperatorId::from(SINGLE_OPERATOR_DEFAULT_ID.to_string());
let single_operator_nodes: HashMap<_, _> = self
.nodes
.iter()
.filter_map(|n| {
n.operator
.as_ref()
.map(|op| (&n.id, op.id.as_ref().unwrap_or(&default_op_id)))
})
.collect();
let mut resolved = vec![];
for mut node in self.nodes.clone() {
// adjust input mappings
let mut node_kind = node.kind_mut()?;
let input_mappings: Vec<_> = match &mut node_kind {
NodeKindMut::Standard { path: _, inputs } => inputs.values_mut().collect(),
NodeKindMut::Runtime(node) => node
.operators
.iter_mut()
.flat_map(|op| op.config.inputs.values_mut())
.collect(),
NodeKindMut::Custom(node) => node.run_config.inputs.values_mut().collect(),
NodeKindMut::Operator(operator) => operator.config.inputs.values_mut().collect(),
};
for mapping in input_mappings
.into_iter()
.filter_map(|i| match &mut i.mapping {
InputMapping::Timer { .. } => None,
InputMapping::User(m) => Some(m),
})
{
if let Some(op_name) = single_operator_nodes.get(&mapping.source).copied() {
mapping.output = DataId::from(format!("{op_name}/{}", mapping.output));
}
}
// resolve nodes
let kind = match node_kind {
NodeKindMut::Standard { path, inputs: _ } => CoreNodeKind::Custom(CustomNode {
source: path.clone(),
args: node.args,
build: node.build,
send_stdout_as: node.send_stdout_as,
run_config: NodeRunConfig {
inputs: node.inputs,
outputs: node.outputs,
},
envs: None,
}),
NodeKindMut::Custom(node) => CoreNodeKind::Custom(node.clone()),
NodeKindMut::Runtime(node) => CoreNodeKind::Runtime(node.clone()),
NodeKindMut::Operator(op) => CoreNodeKind::Runtime(RuntimeNode {
operators: vec![OperatorDefinition {
id: op.id.clone().unwrap_or_else(|| default_op_id.clone()),
config: op.config.clone(),
}],
}),
};
resolved.push(ResolvedNode {
id: node.id,
name: node.name,
description: node.description,
env: node.env,
deploy: ResolvedDeploy::new(node.deploy, self),
kind,
});
}
Ok(resolved)
}
pub fn visualize_as_mermaid(&self) -> eyre::Result<String> {
let resolved = self.resolve_aliases_and_set_defaults()?;
let flowchart = visualize::visualize_nodes(&resolved);
Ok(flowchart)
}
pub async fn read(path: &Path) -> eyre::Result<Descriptor> {
let buf = tokio::fs::read(path)
.await
.context("failed to open given file")?;
Descriptor::parse(buf)
}
pub fn blocking_read(path: &Path) -> eyre::Result<Descriptor> {
let buf = std::fs::read(path).context("failed to open given file")?;
Descriptor::parse(buf)
}
pub fn parse(buf: Vec<u8>) -> eyre::Result<Descriptor> {
serde_yaml::from_slice(&buf).context("failed to parse given descriptor")
}
pub fn check(&self, working_dir: &Path) -> eyre::Result<()> {
validate::check_dataflow(self, working_dir).wrap_err("Dataflow could not be validated.")
}
}
#[derive(Debug, Clone, Default, Serialize, Deserialize, JsonSchema)]
#[serde(deny_unknown_fields)]
pub struct Deploy {
pub machine: Option<String>,
}
/// Dora Node
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
#[serde(deny_unknown_fields)]
pub struct Node {
/// Node identifier
pub id: NodeId,
/// Node name
pub name: Option<String>,
/// Description of the node
pub description: Option<String>,
/// Environment variables
pub env: Option<BTreeMap<String, EnvValue>>,
/// Unstable machine deployment configuration
#[schemars(skip)]
#[serde(default, rename = "_unstable_deploy")]
pub deploy: Deploy,
#[serde(default, skip_serializing_if = "Option::is_none")]
operators: Option<RuntimeNode>,
#[serde(default, skip_serializing_if = "Option::is_none")]
custom: Option<CustomNode>,
#[serde(default, skip_serializing_if = "Option::is_none")]
operator: Option<SingleOperatorDefinition>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub path: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub args: Option<String>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub build: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub send_stdout_as: Option<String>,
#[serde(default)]
pub inputs: BTreeMap<DataId, Input>,
#[serde(default)]
pub outputs: BTreeSet<DataId>,
}
impl Node {
pub fn kind(&self) -> eyre::Result<NodeKind> {
match (&self.path, &self.operators, &self.custom, &self.operator) {
(None, None, None, None) => {
eyre::bail!(
"node `{}` requires a `path`, `custom`, or `operators` field",
self.id
)
}
(None, None, None, Some(operator)) => Ok(NodeKind::Operator(operator)),
(None, None, Some(custom), None) => Ok(NodeKind::Custom(custom)),
(None, Some(runtime), None, None) => Ok(NodeKind::Runtime(runtime)),
(Some(path), None, None, None) => Ok(NodeKind::Standard(path)),
_ => {
eyre::bail!(
"node `{}` has multiple exclusive fields set, only one of `path`, `custom`, `operators` and `operator` is allowed",
self.id
)
}
}
}
fn kind_mut(&mut self) -> eyre::Result<NodeKindMut> {
match self.kind()? {
NodeKind::Standard(_) => self
.path
.as_ref()
.map(|path| NodeKindMut::Standard {
path,
inputs: &mut self.inputs,
})
.ok_or_eyre("no path"),
NodeKind::Runtime(_) => self
.operators
.as_mut()
.map(NodeKindMut::Runtime)
.ok_or_eyre("no operators"),
NodeKind::Custom(_) => self
.custom
.as_mut()
.map(NodeKindMut::Custom)
.ok_or_eyre("no custom"),
NodeKind::Operator(_) => self
.operator
.as_mut()
.map(NodeKindMut::Operator)
.ok_or_eyre("no operator"),
}
}
}
#[derive(Debug)]
pub enum NodeKind<'a> {
Standard(&'a String),
/// Dora runtime node
Runtime(&'a RuntimeNode),
Custom(&'a CustomNode),
Operator(&'a SingleOperatorDefinition),
}
#[derive(Debug)]
enum NodeKindMut<'a> {
Standard {
path: &'a String,
inputs: &'a mut BTreeMap<DataId, Input>,
},
/// Dora runtime node
Runtime(&'a mut RuntimeNode),
Custom(&'a mut CustomNode),
Operator(&'a mut SingleOperatorDefinition),
}
#[derive(Debug, Clone, Serialize, Deserialize)]
pub struct ResolvedNode {
pub id: NodeId,
pub name: Option<String>,
pub description: Option<String>,
pub env: Option<BTreeMap<String, EnvValue>>,
#[serde(default)]
pub deploy: ResolvedDeploy,
#[serde(flatten)]
pub kind: CoreNodeKind,
}
impl ResolvedNode {
pub fn send_stdout_as(&self) -> Result<Option<String>> {
match &self.kind {
// TODO: Split stdout between operators
CoreNodeKind::Runtime(n) => {
let count = n
.operators
.iter()
.filter(|op| op.config.send_stdout_as.is_some())
.count();
if count == 1 && n.operators.len() > 1 {
warn!("All stdout from all operators of a runtime are going to be sent in the selected `send_stdout_as` operator.")
} else if count > 1 {
return Err(eyre!("More than one `send_stdout_as` entries for a runtime node. Please only use one `send_stdout_as` per runtime."));
}
Ok(n.operators.iter().find_map(|op| {
op.config
.send_stdout_as
.clone()
.map(|stdout| format!("{}/{}", op.id, stdout))
}))
}
CoreNodeKind::Custom(n) => Ok(n.send_stdout_as.clone()),
}
}
}
#[derive(Debug, Clone, Default, Serialize, Deserialize)]
pub struct ResolvedDeploy {
pub machine: String,
}
impl ResolvedDeploy {
fn new(deploy: Deploy, descriptor: &Descriptor) -> Self {
let default_machine = descriptor.deploy.machine.as_deref().unwrap_or_default();
let machine = match deploy.machine {
Some(m) => m,
None => default_machine.to_owned(),
};
Self { machine }
}
}
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "lowercase")]
pub enum CoreNodeKind {
/// Dora runtime node
#[serde(rename = "operators")]
Runtime(RuntimeNode),
Custom(CustomNode),
}
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
#[serde(transparent)]
pub struct RuntimeNode {
pub operators: Vec<OperatorDefinition>,
}
#[derive(Debug, Serialize, Deserialize, JsonSchema, Clone)]
pub struct OperatorDefinition {
pub id: OperatorId,
#[serde(flatten)]
pub config: OperatorConfig,
}
#[derive(Debug, Serialize, Deserialize, JsonSchema, Clone)]
pub struct SingleOperatorDefinition {
/// ID is optional if there is only a single operator.
pub id: Option<OperatorId>,
#[serde(flatten)]
pub config: OperatorConfig,
}
#[derive(Debug, Serialize, Deserialize, JsonSchema, Clone)]
pub struct OperatorConfig {
pub name: Option<String>,
pub description: Option<String>,
#[serde(default)]
pub inputs: BTreeMap<DataId, Input>,
#[serde(default)]
pub outputs: BTreeSet<DataId>,
#[serde(flatten)]
pub source: OperatorSource,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub build: Option<String>,
#[serde(skip_serializing_if = "Option::is_none")]
pub send_stdout_as: Option<String>,
}
#[derive(Debug, Serialize, Deserialize, JsonSchema, Clone)]
#[serde(rename_all = "kebab-case")]
pub enum OperatorSource {
SharedLibrary(String),
Python(PythonSource),
#[schemars(skip)]
Wasm(String),
}
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
#[serde(
deny_unknown_fields,
from = "PythonSourceDef",
into = "PythonSourceDef"
)]
pub struct PythonSource {
pub source: String,
pub conda_env: Option<String>,
}
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
#[serde(untagged)]
pub enum PythonSourceDef {
SourceOnly(String),
WithOptions {
source: String,
conda_env: Option<String>,
},
}
impl From<PythonSource> for PythonSourceDef {
fn from(input: PythonSource) -> Self {
match input {
PythonSource {
source,
conda_env: None,
} => Self::SourceOnly(source),
PythonSource { source, conda_env } => Self::WithOptions { source, conda_env },
}
}
}
impl From<PythonSourceDef> for PythonSource {
fn from(value: PythonSourceDef) -> Self {
match value {
PythonSourceDef::SourceOnly(source) => Self {
source,
conda_env: None,
},
PythonSourceDef::WithOptions { source, conda_env } => Self { source, conda_env },
}
}
}
pub fn source_is_url(source: &str) -> bool {
source.contains("://")
}
pub fn resolve_path(source: &str, working_dir: &Path) -> Result<PathBuf> {
let path = Path::new(&source);
let path = if path.extension().is_none() {
path.with_extension(EXE_EXTENSION)
} else {
path.to_owned()
};
// Search path within current working directory
if let Ok(abs_path) = working_dir.join(&path).canonicalize() {
Ok(abs_path)
// Search path within $PATH
} else if let Ok(abs_path) = which::which(&path) {
Ok(abs_path)
} else {
bail!("Could not find source path {}", path.display())
}
}
#[derive(Debug, Serialize, Deserialize, Clone)]
#[serde(deny_unknown_fields)]
pub struct PythonOperatorConfig {
pub path: PathBuf,
#[serde(default)]
pub inputs: BTreeMap<DataId, InputMapping>,
#[serde(default)]
pub outputs: BTreeSet<DataId>,
}
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
pub struct CustomNode {
/// Path of the source code
///
/// If you want to use a specific `conda` environment.
/// Provide the python path within the source.
///
/// source: /home/peter/miniconda3/bin/python
///
/// args: some_node.py
///
/// Source can match any executable in PATH.
pub source: String,
/// Args for the executable.
#[serde(default, skip_serializing_if = "Option::is_none")]
pub args: Option<String>,
/// Environment variables for the custom nodes
///
/// Deprecated, use outer-level `env` field instead.
pub envs: Option<BTreeMap<String, EnvValue>>,
#[serde(default, skip_serializing_if = "Option::is_none")]
pub build: Option<String>,
/// Send stdout and stderr to another node
#[serde(skip_serializing_if = "Option::is_none")]
pub send_stdout_as: Option<String>,
#[serde(flatten)]
pub run_config: NodeRunConfig,
}
#[derive(Debug, Clone, Serialize, Deserialize, JsonSchema)]
#[serde(untagged)]
pub enum EnvValue {
#[serde(deserialize_with = "with_expand_envs")]
Bool(bool),
#[serde(deserialize_with = "with_expand_envs")]
Integer(u64),
#[serde(deserialize_with = "with_expand_envs")]
String(String),
}
impl fmt::Display for EnvValue {
fn fmt(&self, fmt: &mut fmt::Formatter) -> fmt::Result {
match self {
EnvValue::Bool(bool) => fmt.write_str(&bool.to_string()),
EnvValue::Integer(u64) => fmt.write_str(&u64.to_string()),
EnvValue::String(str) => fmt.write_str(str),
}
}
}
|