Closes #33736 Use `thiserror` to implement error stack and `anyhow` to report is to user. Also move some code from main to remote_server to have better crate isolation. Release Notes: - N/A --------- Co-authored-by: Kirill Bulatov <kirill@zed.dev>
56 lines
1.4 KiB
Rust
56 lines
1.4 KiB
Rust
#![cfg_attr(target_os = "windows", allow(unused, dead_code))]
|
|
|
|
use clap::Parser;
|
|
use remote_server::Commands;
|
|
use std::path::PathBuf;
|
|
|
|
#[derive(Parser)]
|
|
#[command(disable_version_flag = true)]
|
|
struct Cli {
|
|
#[command(subcommand)]
|
|
command: Option<Commands>,
|
|
/// Used for SSH/Git password authentication, to remove the need for netcat as a dependency,
|
|
/// by having Zed act like netcat communicating over a Unix socket.
|
|
#[arg(long, hide = true)]
|
|
askpass: Option<String>,
|
|
/// Used for recording minidumps on crashes by having the server run a separate
|
|
/// process communicating over a socket.
|
|
#[arg(long, hide = true)]
|
|
crash_handler: Option<PathBuf>,
|
|
/// Used for loading the environment from the project.
|
|
#[arg(long, hide = true)]
|
|
printenv: bool,
|
|
}
|
|
|
|
#[cfg(windows)]
|
|
fn main() {
|
|
unimplemented!()
|
|
}
|
|
|
|
#[cfg(not(windows))]
|
|
fn main() -> anyhow::Result<()> {
|
|
let cli = Cli::parse();
|
|
|
|
if let Some(socket_path) = &cli.askpass {
|
|
askpass::main(socket_path);
|
|
return Ok(());
|
|
}
|
|
|
|
if let Some(socket) = &cli.crash_handler {
|
|
crashes::crash_server(socket.as_path());
|
|
return Ok(());
|
|
}
|
|
|
|
if cli.printenv {
|
|
util::shell_env::print_env();
|
|
return Ok(());
|
|
}
|
|
|
|
if let Some(command) = cli.command {
|
|
remote_server::run(command)
|
|
} else {
|
|
eprintln!("usage: remote <run|proxy|version>");
|
|
std::process::exit(1);
|
|
}
|
|
}
|