Files
vscode/cli/src/constants.rs
T
Connor PeetandCopilot f5b3eba94e agentHost: select remote endpoints from shared registry
Discover and select editor or dedicated agent hosts over SSH and dev tunnels. Add structured CLI discovery and relay commands, tunnel protocol-v6 selection, and idle shutdown for remotely spawned standalone hosts.

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-07-30 15:18:48 -07:00

176 lines
7.1 KiB
Rust

/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
use serde::Deserialize;
use std::{collections::HashMap, io::IsTerminal};
use const_format::concatcp;
use std::sync::LazyLock;
use crate::options::Quality;
pub const CONTROL_PORT: u16 = 31545;
pub const AGENT_HOST_PORT: u16 = 31546;
/// Protocol version sent to clients. This can be used to indicate new or
/// changed capabilities that clients may wish to leverage.
/// 1 - Initial protocol version
/// 2 - Addition of `serve.compressed` property to control whether servermsg's
/// are compressed bidirectionally.
/// 3 - The server's connection token is set to a SHA256 hash of the tunnel ID
/// 4 - The server's msgpack messages are no longer length-prefixed
/// 5 - The server now exposes an agent host connection
/// 6 - The forwarded agent host port additionally serves a registry-based
/// endpoint selection WebSocket route (see
/// `tunnels::agent_host::AGENT_HOST_GATEWAY_SELECT_PATH`); the root
/// route keeps serving the unchanged v5 direct-reuse behavior, so
/// older clients that only know the root route are unaffected.
pub const PROTOCOL_VERSION: u32 = 6;
/// Prefix for the tunnel tag that includes the version.
pub const PROTOCOL_VERSION_TAG_PREFIX: &str = "protocolv";
/// Tag for the current protocol version, which is included in dev tunnels.
pub const PROTOCOL_VERSION_TAG: &str = concatcp!("protocolv", PROTOCOL_VERSION);
pub const VSCODE_CLI_VERSION: Option<&'static str> = option_env!("VSCODE_CLI_VERSION");
pub const VSCODE_CLI_AI_KEY: Option<&'static str> = option_env!("VSCODE_CLI_AI_KEY");
pub const VSCODE_CLI_AI_ENDPOINT: Option<&'static str> = option_env!("VSCODE_CLI_AI_ENDPOINT");
pub const VSCODE_CLI_QUALITY: Option<&'static str> = option_env!("VSCODE_CLI_QUALITY");
pub const DOCUMENTATION_URL: Option<&'static str> = option_env!("VSCODE_CLI_DOCUMENTATION_URL");
pub const VSCODE_CLI_COMMIT: Option<&'static str> = option_env!("VSCODE_CLI_COMMIT");
pub const VSCODE_CLI_UPDATE_ENDPOINT: Option<&'static str> = option_env!("VSCODE_CLI_UPDATE_URL");
/// Windows lock name for the running tunnel service. Used by the setup script
/// to detect a tunnel process. See #179265.
pub const TUNNEL_SERVICE_LOCK_NAME: Option<&'static str> =
option_env!("VSCODE_CLI_WIN32_TUNNEL_SERVICE_MUTEX");
/// Windows lock name for the running tunnel without a service. Used by the setup
/// script to detect a tunnel process. See #179265.
pub const TUNNEL_CLI_LOCK_NAME: Option<&'static str> = option_env!("VSCODE_CLI_WIN32_TUNNEL_MUTEX");
pub const TUNNEL_SERVICE_USER_AGENT_ENV_VAR: &str = "TUNNEL_SERVICE_USER_AGENT";
/// Application name as it appears on the CLI.
pub const APPLICATION_NAME: &str = match option_env!("VSCODE_CLI_APPLICATION_NAME") {
Some(n) => n,
None => "code",
};
/// Full name of the product with its version.
pub const PRODUCT_NAME_LONG: &str = match option_env!("VSCODE_CLI_NAME_LONG") {
Some(n) => n,
None => "Code - OSS",
};
/// Name of the application without quality information.
pub const QUALITYLESS_PRODUCT_NAME: &str = match option_env!("VSCODE_CLI_QUALITYLESS_PRODUCT_NAME")
{
Some(n) => n,
None => "Code",
};
/// Short product name, mirroring `product.json`'s `nameShort` (e.g. `Code -
/// OSS`, `Visual Studio Code`). Used as the leaf directory name when
/// resolving the platform user data directory, matching the TypeScript
/// resolver in `src/vs/platform/environment/node/userDataPath.ts` (which is
/// passed `product.nameShort`).
pub const PRODUCT_NAME_SHORT: &str = match option_env!("VSCODE_CLI_NAME_SHORT") {
Some(n) => n,
None => "Code - OSS",
};
/// Name of the application without quality information.
pub const QUALITYLESS_SERVER_NAME: &str = concatcp!(QUALITYLESS_PRODUCT_NAME, " Server");
pub const QUALITY: &str = match VSCODE_CLI_QUALITY {
Some(q) => q,
_ => "oss",
};
/// Web URL the editor is hosted at. For VS Code, this is vscode.dev.
pub const EDITOR_WEB_URL: Option<&'static str> = option_env!("VSCODE_CLI_TUNNEL_EDITOR_WEB_URL");
/// Name shown in places where we need to tell a user what a process is, e.g. in sleep inhibition.
pub const TUNNEL_ACTIVITY_NAME: &str = concatcp!(PRODUCT_NAME_LONG, " Tunnel");
/// Download URL of the desktop product.
pub const PRODUCT_DOWNLOAD_URL: Option<&'static str> = option_env!("VSCODE_CLI_DOWNLOAD_URL");
const NONINTERACTIVE_VAR: &str = "VSCODE_CLI_NONINTERACTIVE";
/// Default data CLI data directory.
pub const DEFAULT_DATA_PARENT_DIR: &str = match option_env!("VSCODE_CLI_DATA_FOLDER_NAME") {
Some(n) => n,
None => ".vscode-oss",
};
/// Canonical, machine-wide parent directory used to coordinate the agent
/// host across CLI invocations. Mirrors the `serverDataFolderName` in
/// `product.json` so the supervisor log written by `code agent host`
/// lines up with the directory the SSH `command-shell` entry point
/// already uses (otherwise local + remote would race on different
/// directories).
pub const SERVER_DATA_PARENT_DIR: &str = match option_env!("VSCODE_CLI_SERVER_DATA_FOLDER_NAME") {
Some(n) => n,
None => ".vscode-server-oss",
};
pub fn get_default_user_agent() -> String {
format!(
"vscode-server-launcher/{}",
VSCODE_CLI_VERSION.unwrap_or("dev")
)
}
const NO_COLOR_ENV: &str = "NO_COLOR";
#[derive(Deserialize, Debug)]
#[serde(rename_all = "camelCase")]
pub struct ServerQualityInfo {
pub server_application_name: String,
}
pub static TUNNEL_SERVICE_USER_AGENT: LazyLock<String> =
LazyLock::new(|| match std::env::var(TUNNEL_SERVICE_USER_AGENT_ENV_VAR) {
Ok(ua) if !ua.is_empty() => format!("{} {}", ua, get_default_user_agent()),
_ => get_default_user_agent(),
});
/// Map of qualities to the server name
pub static SERVER_NAME_MAP: LazyLock<Option<HashMap<Quality, ServerQualityInfo>>> =
LazyLock::new(|| {
option_env!("VSCODE_CLI_TUNNEL_SERVER_QUALITIES")
.and_then(|s| serde_json::from_str(s).unwrap())
});
/// Whether i/o interactions are allowed in the current CLI.
pub static IS_A_TTY: LazyLock<bool> = LazyLock::new(|| std::io::stdin().is_terminal());
/// Whether i/o interactions are allowed in the current CLI.
pub static COLORS_ENABLED: LazyLock<bool> =
LazyLock::new(|| *IS_A_TTY && std::env::var(NO_COLOR_ENV).is_err());
/// Whether i/o interactions are allowed in the current CLI.
pub static IS_INTERACTIVE_CLI: LazyLock<bool> =
LazyLock::new(|| *IS_A_TTY && std::env::var(NONINTERACTIVE_VAR).is_err());
/// Map of quality names to arrays of app IDs used for them, for example, `{"stable":["ABC123"]}`
pub static WIN32_APP_IDS: LazyLock<Option<Vec<String>>> = LazyLock::new(|| {
option_env!("VSCODE_CLI_WIN32_APP_IDS").map(|s| s.split(',').map(|s| s.to_string()).collect())
});
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn protocol_version_tag_matches_bumped_version() {
assert_eq!(PROTOCOL_VERSION, 6);
assert_eq!(PROTOCOL_VERSION_TAG, "protocolv6");
assert!(PROTOCOL_VERSION_TAG.starts_with(PROTOCOL_VERSION_TAG_PREFIX));
}
}