240 lines
7.3 KiB
Rust
240 lines
7.3 KiB
Rust
use std::time::Duration;
|
|
|
|
use anyhow::{anyhow, Result};
|
|
use galaxy_core::channel::{Channel, ChannelState};
|
|
|
|
/// State machine for the remote server install → launch → initialize flow.
|
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
|
pub enum RemoteServerSetupState {
|
|
/// Checking if the binary exists on remote.
|
|
Checking,
|
|
/// Downloading and installing the binary.
|
|
Installing { progress_percent: Option<u8> },
|
|
/// Binary is launched, waiting for InitializeResponse.
|
|
Initializing,
|
|
/// Handshake complete. Ready.
|
|
Ready,
|
|
/// Something failed. Fall back to ControlMaster.
|
|
Failed { error: String },
|
|
}
|
|
|
|
impl RemoteServerSetupState {
|
|
pub fn is_ready(&self) -> bool {
|
|
matches!(self, Self::Ready)
|
|
}
|
|
|
|
pub fn is_failed(&self) -> bool {
|
|
matches!(self, Self::Failed { .. })
|
|
}
|
|
|
|
pub fn is_terminal(&self) -> bool {
|
|
self.is_ready() || self.is_failed()
|
|
}
|
|
|
|
pub fn is_in_progress(&self) -> bool {
|
|
matches!(
|
|
self,
|
|
Self::Checking | Self::Installing { .. } | Self::Initializing
|
|
)
|
|
}
|
|
}
|
|
|
|
/// Detected remote platform from `uname -sm` output.
|
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
|
pub struct RemotePlatform {
|
|
pub os: RemoteOs,
|
|
pub arch: RemoteArch,
|
|
}
|
|
|
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
|
pub enum RemoteOs {
|
|
Linux,
|
|
MacOs,
|
|
}
|
|
|
|
impl RemoteOs {
|
|
pub fn as_str(&self) -> &'static str {
|
|
match self {
|
|
Self::Linux => "linux",
|
|
Self::MacOs => "macos",
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
|
pub enum RemoteArch {
|
|
X86_64,
|
|
Aarch64,
|
|
}
|
|
|
|
impl RemoteArch {
|
|
pub fn as_str(&self) -> &'static str {
|
|
match self {
|
|
Self::X86_64 => "x86_64",
|
|
Self::Aarch64 => "aarch64",
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Parse `uname -sm` output into a `RemotePlatform`.
|
|
///
|
|
/// The expected format is `<os> <arch>`, e.g. `Linux x86_64` or `Darwin arm64`.
|
|
/// Takes the last line to skip any shell initialization output.
|
|
pub fn parse_uname_output(output: &str) -> Result<RemotePlatform> {
|
|
let line = output
|
|
.lines()
|
|
.last()
|
|
.ok_or_else(|| anyhow!("empty uname output"))?
|
|
.trim();
|
|
|
|
let mut parts = line.split_whitespace();
|
|
let os_str = parts
|
|
.next()
|
|
.ok_or_else(|| anyhow!("missing OS in uname output: {line}"))?;
|
|
let arch_str = parts
|
|
.next()
|
|
.ok_or_else(|| anyhow!("missing arch in uname output: {line}"))?;
|
|
|
|
let os = match os_str {
|
|
"Linux" => RemoteOs::Linux,
|
|
"Darwin" => RemoteOs::MacOs,
|
|
other => return Err(anyhow!("unsupported OS: {other}")),
|
|
};
|
|
|
|
let arch = match arch_str {
|
|
"x86_64" => RemoteArch::X86_64,
|
|
"aarch64" | "arm64" | "armv8l" => RemoteArch::Aarch64,
|
|
other => return Err(anyhow!("unsupported arch: {other}")),
|
|
};
|
|
|
|
Ok(RemotePlatform { os, arch })
|
|
}
|
|
|
|
/// Returns the remote directory where the binary is installed, keyed by channel.
|
|
///
|
|
/// - stable: `~/.warp-core/remote-server`
|
|
/// - preview: `~/.warp-core-preview/remote-server`
|
|
/// - dev: `~/.warp-core-dev/remote-server`
|
|
/// - local: `~/.warp-core-local/remote-server`
|
|
/// - integration: `~/.warp-core-dev/remote-server`
|
|
/// - warp-core-oss: `~/.warp-core-oss/remote-server`
|
|
pub fn remote_server_dir() -> String {
|
|
let warp_dir = match ChannelState::channel() {
|
|
Channel::Stable => ".warp-core",
|
|
Channel::Preview => ".warp-core-preview",
|
|
Channel::Dev | Channel::Integration => ".warp-core-dev",
|
|
Channel::Local => ".warp-core-local",
|
|
Channel::Oss => ".warp-core-dev",
|
|
};
|
|
format!("~/{warp_dir}/remote-server")
|
|
}
|
|
|
|
/// Returns a filesystem-safe directory name for a remote-server identity key.
|
|
///
|
|
/// The identity key is not secret, but it can contain bytes that are unsafe or
|
|
/// ambiguous in paths. Keep ASCII alphanumeric characters plus `-` and `_`;
|
|
/// percent-encode all other UTF-8 bytes.
|
|
pub fn remote_server_identity_dir_name(identity_key: &str) -> String {
|
|
if identity_key.is_empty() {
|
|
return "empty".to_string();
|
|
}
|
|
|
|
let mut encoded = String::with_capacity(identity_key.len());
|
|
for byte in identity_key.bytes() {
|
|
match byte {
|
|
b'a'..=b'z' | b'A'..=b'Z' | b'0'..=b'9' | b'-' | b'_' => {
|
|
encoded.push(byte as char);
|
|
}
|
|
_ => encoded.push_str(&format!("%{byte:02X}")),
|
|
}
|
|
}
|
|
encoded
|
|
}
|
|
|
|
/// Returns the identity-scoped remote directory used for the daemon socket
|
|
/// and PID file.
|
|
pub fn remote_server_daemon_dir(identity_key: &str) -> String {
|
|
format!(
|
|
"{}/{}",
|
|
remote_server_dir(),
|
|
remote_server_identity_dir_name(identity_key)
|
|
)
|
|
}
|
|
|
|
/// Returns the binary name, keyed by channel.
|
|
///
|
|
/// Matches the CLI command names: `oz` (stable), `oz-preview`, `oz-dev`.
|
|
pub fn binary_name() -> &'static str {
|
|
ChannelState::channel().cli_command_name()
|
|
}
|
|
|
|
/// Returns the full remote binary path.
|
|
pub fn remote_server_binary() -> String {
|
|
format!("{}/{}", remote_server_dir(), binary_name())
|
|
}
|
|
|
|
/// Returns the shell command to check if the remote server binary exists and
|
|
/// is executable.
|
|
pub fn binary_check_command() -> String {
|
|
let bin = remote_server_binary();
|
|
format!("test -x {bin}")
|
|
}
|
|
|
|
/// The install script template, loaded from a standalone `.sh` file for
|
|
/// readability. Placeholders like `{download_base_url}` are substituted by
|
|
/// [`install_script`].
|
|
const INSTALL_SCRIPT_TEMPLATE: &str = include_str!("install_remote_server.sh");
|
|
|
|
/// Returns the install script that downloads and installs the CLI binary.
|
|
///
|
|
/// The script detects the remote architecture via `uname -m`, downloads the
|
|
/// correct Oz CLI tarball from the download URL (with os, arch, package, and
|
|
/// channel query params), and extracts it to the install directory.
|
|
///
|
|
/// All parameters (URL, channel, directory, binary name) are derived
|
|
/// internally from the current channel configuration.
|
|
pub fn install_script() -> String {
|
|
INSTALL_SCRIPT_TEMPLATE
|
|
.replace("{download_base_url}", &download_url())
|
|
.replace("{channel}", download_channel())
|
|
.replace("{install_dir}", &remote_server_dir())
|
|
.replace("{binary_name}", binary_name())
|
|
}
|
|
|
|
/// Construct the download URL from the server root URL.
|
|
///
|
|
/// For example, given `https://app.warp.dev`, returns
|
|
/// `https://app.warp.dev/download/cli`.
|
|
fn download_url() -> String {
|
|
let base = ChannelState::server_root_url();
|
|
let base = base.trim_end_matches('/');
|
|
format!("{base}/download/cli")
|
|
}
|
|
|
|
/// Maps the client's [`Channel`] to the server's download channel parameter.
|
|
///
|
|
/// The server recognises `"stable"`, `"preview"`, and `"dev"`. Local and
|
|
/// Integration builds map to `"dev"` so they fetch dogfood artifacts.
|
|
fn download_channel() -> &'static str {
|
|
match ChannelState::channel() {
|
|
Channel::Stable => "stable",
|
|
Channel::Preview => "preview",
|
|
Channel::Dev | Channel::Local | Channel::Integration => "dev",
|
|
Channel::Oss => {
|
|
// TODO(alokedesai): need to figure out how remote server works with warp-oss
|
|
// For now, return what Dev returns.
|
|
"dev"
|
|
}
|
|
}
|
|
}
|
|
|
|
/// Timeout for the binary existence check.
|
|
pub const CHECK_TIMEOUT: Duration = Duration::from_secs(10);
|
|
|
|
/// Timeout for the install script.
|
|
pub const INSTALL_TIMEOUT: Duration = Duration::from_secs(60);
|
|
|
|
#[cfg(test)]
|
|
#[path = "setup_tests.rs"]
|
|
mod tests;
|