Browse Source

Move and merge `command` module file

tags/v0.3.12-fix
Philipp Oppermann 7 months ago
parent
commit
0cc4937174
Failed to extract signature
1 changed files with 32 additions and 1 deletions
  1. +32
    -1
      binaries/cli/src/command/mod.rs

binaries/cli/src/commands.rs → binaries/cli/src/command/mod.rs View File

@@ -14,12 +14,16 @@ mod start;
mod stop;
mod up;

use std::path::{Path, PathBuf};

use build::Build;
use check::Check;
use communication_layer_request_reply::TcpRequestReplyConnection;
use coordinator::Coordinator;
use daemon::Daemon;
use destroy::Destroy;
use eyre::Context;
use dora_core::descriptor::Descriptor;
use eyre::{Context, ContextCompat};
use graph::Graph;
use list::ListArgs;
use logs::LogsArgs;
@@ -31,6 +35,8 @@ use start::Start;
use stop::Stop;
use up::Up;

use crate::common::cli_and_daemon_on_same_machine;

/// dora-rs cli client
#[derive(Debug, clap::Subcommand)]
pub enum Command {
@@ -100,3 +106,28 @@ impl Executable for Command {
}
}
}

fn local_working_dir(
dataflow_path: &Path,
dataflow_descriptor: &Descriptor,
coordinator_session: &mut TcpRequestReplyConnection,
) -> eyre::Result<Option<PathBuf>> {
Ok(
if dataflow_descriptor
.nodes
.iter()
.all(|n| n.deploy.as_ref().map(|d| d.machine.as_ref()).is_none())
&& cli_and_daemon_on_same_machine(coordinator_session)?
{
Some(
dunce::canonicalize(dataflow_path)
.context("failed to canonicalize dataflow file path")?
.parent()
.context("dataflow path has no parent dir")?
.to_owned(),
)
} else {
None
},
)
}

Loading…
Cancel
Save