| use communication_layer_request_reply::TcpRequestReplyConnection; |
| use dora_core::{ |
| descriptor::{resolve_path, CoreNodeKind, Descriptor}, |
| topics::{ControlRequest, ControlRequestReply}, |
| }; |
| use eyre::Context; |
| use notify::event::ModifyKind; |
| use notify::{Config, Event as NotifyEvent, EventKind, RecommendedWatcher, RecursiveMode, Watcher}; |
| use std::collections::HashMap; |
| use std::{path::PathBuf, sync::mpsc, time::Duration}; |
| use tracing::{error, info}; |
| use uuid::Uuid; |
|
|
| pub fn attach_dataflow( |
| dataflow: Descriptor, |
| dataflow_path: PathBuf, |
| dataflow_id: Uuid, |
| session: &mut TcpRequestReplyConnection, |
| hot_reload: bool, |
| ) -> Result<(), eyre::ErrReport> { |
| let (tx, rx) = mpsc::sync_channel(2); |
|
|
| |
| let mut node_path_lookup = HashMap::new(); |
|
|
| let nodes = dataflow.resolve_aliases_and_set_defaults()?; |
|
|
| let working_dir = dataflow_path |
| .canonicalize() |
| .context("failed to canoncialize dataflow path")? |
| .parent() |
| .ok_or_else(|| eyre::eyre!("canonicalized dataflow path has no parent"))? |
| .to_owned(); |
|
|
| for node in nodes { |
| match node.kind { |
| |
| CoreNodeKind::Custom(_cn) => (), |
| CoreNodeKind::Runtime(rn) => { |
| for op in rn.operators.iter() { |
| if let dora_core::descriptor::OperatorSource::Python(python_source) = |
| &op.config.source |
| { |
| let path = resolve_path(&python_source.source, &working_dir) |
| .wrap_err_with(|| { |
| format!("failed to resolve node source `{}`", python_source.source) |
| })?; |
| node_path_lookup |
| .insert(path, (dataflow_id, node.id.clone(), Some(op.id.clone()))); |
| } |
| |
| } |
| } |
| } |
| } |
|
|
| |
| let watcher_tx = tx.clone(); |
| let _watcher = if hot_reload { |
| let hash = node_path_lookup.clone(); |
| let paths = hash.keys(); |
| let notifier = move |event| { |
| if let Ok(NotifyEvent { |
| paths, |
| kind: EventKind::Modify(ModifyKind::Data(_data)), |
| .. |
| }) = event |
| { |
| for path in paths { |
| if let Some((dataflow_id, node_id, operator_id)) = node_path_lookup.get(&path) { |
| watcher_tx |
| .send(ControlRequest::Reload { |
| dataflow_id: *dataflow_id, |
| node_id: node_id.clone(), |
| operator_id: operator_id.clone(), |
| }) |
| .context("Could not send reload request to the cli loop") |
| .unwrap(); |
| } |
| } |
| |
| } |
| }; |
|
|
| let mut watcher = RecommendedWatcher::new( |
| notifier, |
| Config::default().with_poll_interval(Duration::from_secs(1)), |
| )?; |
|
|
| for path in paths { |
| watcher.watch(path, RecursiveMode::Recursive)?; |
| } |
| Some(watcher) |
| } else { |
| None |
| }; |
|
|
| |
| let ctrlc_tx = tx; |
| let mut ctrlc_sent = false; |
| ctrlc::set_handler(move || { |
| if ctrlc_sent { |
| std::process::abort(); |
| } else { |
| if ctrlc_tx |
| .send(ControlRequest::Stop { |
| dataflow_uuid: dataflow_id, |
| grace_duration: None, |
| }) |
| .is_err() |
| { |
| |
| } |
| ctrlc_sent = true; |
| } |
| }) |
| .wrap_err("failed to set ctrl-c handler")?; |
|
|
| loop { |
| let control_request = match rx.recv_timeout(Duration::from_secs(1)) { |
| Err(_err) => ControlRequest::Check { |
| dataflow_uuid: dataflow_id, |
| }, |
| Ok(reload_event) => reload_event, |
| }; |
|
|
| let reply_raw = session |
| .request(&serde_json::to_vec(&control_request)?) |
| .wrap_err("failed to send request message to coordinator")?; |
| let result: ControlRequestReply = |
| serde_json::from_slice(&reply_raw).wrap_err("failed to parse reply")?; |
| match result { |
| ControlRequestReply::DataflowStarted { uuid: _ } => (), |
| ControlRequestReply::DataflowStopped { uuid, result } => { |
| info!("dataflow {uuid} stopped"); |
| break result |
| .map_err(|err| eyre::eyre!(err)) |
| .wrap_err("dataflow failed"); |
| } |
| ControlRequestReply::DataflowReloaded { uuid } => { |
| info!("dataflow {uuid} reloaded") |
| } |
| other => error!("Received unexpected Coordinator Reply: {:#?}", other), |
| }; |
| } |
| } |
|
|