use std::path::Path; use anyhow::{Context as _, Result}; use collections::HashMap; use crate::shell::ShellKind; pub fn print_env() { let env_vars: HashMap = std::env::vars().collect(); let json = serde_json::to_string_pretty(&env_vars).unwrap_or_else(|err| { eprintln!("Error serializing environment variables: {}", err); std::process::exit(1); }); println!("{}", json); } /// Capture all environment variables from the login shell in the given directory. pub async fn capture( shell_path: impl AsRef, args: &[String], directory: impl AsRef, ) -> Result> { #[cfg(windows)] return capture_windows(shell_path.as_ref(), args, directory.as_ref()).await; #[cfg(unix)] return capture_unix(shell_path.as_ref(), args, directory.as_ref()).await; } #[cfg(unix)] async fn capture_unix( shell_path: &Path, args: &[String], directory: &Path, ) -> Result> { use std::os::unix::process::CommandExt; let shell_kind = ShellKind::new(shell_path, false); let zed_path = super::get_shell_safe_zed_path(shell_kind)?; let mut command_string = String::new(); let mut command = std::process::Command::new(shell_path); command.args(args); // In some shells, file descriptors greater than 2 cannot be used in interactive mode, // so file descriptor 0 (stdin) is used instead. This impacts zsh, old bash; perhaps others. // See: https://github.com/zed-industries/zed/pull/32136#issuecomment-2999645482 const FD_STDIN: std::os::fd::RawFd = 0; const FD_STDOUT: std::os::fd::RawFd = 1; const FD_STDERR: std::os::fd::RawFd = 2; let (fd_num, redir) = match shell_kind { ShellKind::Rc => (FD_STDIN, format!(">[1={}]", FD_STDIN)), // `[1=0]` ShellKind::Nushell | ShellKind::Tcsh => (FD_STDOUT, "".to_string()), // xonsh doesn't support redirecting to stdin, and control sequences are printed to // stdout on startup ShellKind::Xonsh => (FD_STDERR, "o>e".to_string()), _ => (FD_STDIN, format!(">&{}", FD_STDIN)), // `>&0` }; match shell_kind { ShellKind::Csh | ShellKind::Tcsh => { // For csh/tcsh, login shell requires passing `-` as 0th argument (instead of `-l`) command.arg0("-"); } ShellKind::Fish => { // in fish, asdf, direnv attach to the `fish_prompt` event command_string.push_str("emit fish_prompt;"); command.arg("-l"); } _ => { command.arg("-l"); } } // cd into the directory, triggering directory specific side-effects (asdf, direnv, etc) command_string.push_str(&format!("cd '{}';", directory.display())); if let Some(prefix) = shell_kind.command_prefix() { command_string.push(prefix); } command_string.push_str(&format!("{} --printenv {}", zed_path, redir)); command.args(["-i", "-c", &command_string]); super::set_pre_exec_to_start_new_session(&mut command); let (env_output, process_output) = spawn_and_read_fd(command, fd_num).await?; let env_output = String::from_utf8_lossy(&env_output); anyhow::ensure!( process_output.status.success(), "login shell exited with {}. stdout: {:?}, stderr: {:?}", process_output.status, String::from_utf8_lossy(&process_output.stdout), String::from_utf8_lossy(&process_output.stderr), ); // Parse the JSON output from zed --printenv let env_map: collections::HashMap = serde_json::from_str(&env_output) .with_context(|| "Failed to deserialize environment variables from json: {env_output}")?; Ok(env_map) } #[cfg(unix)] async fn spawn_and_read_fd( mut command: std::process::Command, child_fd: std::os::fd::RawFd, ) -> anyhow::Result<(Vec, std::process::Output)> { use command_fds::{CommandFdExt, FdMapping}; use std::{io::Read, process::Stdio}; let (mut reader, writer) = std::io::pipe()?; command.fd_mappings(vec![FdMapping { parent_fd: writer.into(), child_fd, }])?; let process = smol::process::Command::from(command) .stdin(Stdio::null()) .stdout(Stdio::piped()) .stderr(Stdio::piped()) .spawn()?; let mut buffer = Vec::new(); reader.read_to_end(&mut buffer)?; Ok((buffer, process.output().await?)) } #[cfg(windows)] async fn capture_windows( shell_path: &Path, _args: &[String], directory: &Path, ) -> Result> { use std::process::Stdio; let zed_path = std::env::current_exe().context("Failed to determine current zed executable path.")?; let shell_kind = ShellKind::new(shell_path, true); if let ShellKind::Posix | ShellKind::Csh | ShellKind::Tcsh | ShellKind::Rc | ShellKind::Fish | ShellKind::Xonsh = shell_kind { return Err(anyhow::anyhow!("unsupported shell kind")); } let mut cmd = crate::command::new_smol_command(shell_path); let cmd = match shell_kind { ShellKind::Posix | ShellKind::Csh | ShellKind::Tcsh | ShellKind::Rc | ShellKind::Fish | ShellKind::Xonsh => { unreachable!() } ShellKind::PowerShell => cmd.args([ "-NonInteractive", "-NoProfile", "-Command", &format!( "Set-Location '{}'; & '{}' --printenv", directory.display(), zed_path.display() ), ]), ShellKind::Elvish => cmd.args([ "-c", &format!( "cd '{}'; {} --printenv", directory.display(), zed_path.display() ), ]), ShellKind::Nushell => cmd.args([ "-c", &format!( "cd '{}'; {}'{}' --printenv", directory.display(), shell_kind .command_prefix() .map(|prefix| prefix.to_string()) .unwrap_or_default(), zed_path.display() ), ]), ShellKind::Cmd => cmd.args([ "/c", "cd", &directory.display().to_string(), "&&", &zed_path.display().to_string(), "--printenv", ]), } .stdin(Stdio::null()) .stdout(Stdio::piped()) .stderr(Stdio::piped()); let output = cmd .output() .await .with_context(|| format!("command {cmd:?}"))?; anyhow::ensure!( output.status.success(), "Command {cmd:?} failed with {}. stdout: {:?}, stderr: {:?}", output.status, String::from_utf8_lossy(&output.stdout), String::from_utf8_lossy(&output.stderr), ); let env_output = String::from_utf8_lossy(&output.stdout); // Parse the JSON output from zed --printenv serde_json::from_str(&env_output) .with_context(|| "Failed to deserialize environment variables from json: {env_output}") }