1use std::path::Path;
2
3use anyhow::{Context as _, Result};
4use collections::HashMap;
5
6use crate::shell::ShellKind;
7
8pub fn print_env() {
9 let env_vars: HashMap<String, String> = std::env::vars().collect();
10 let json = serde_json::to_string_pretty(&env_vars).unwrap_or_else(|err| {
11 eprintln!("Error serializing environment variables: {}", err);
12 std::process::exit(1);
13 });
14 println!("{}", json);
15}
16
17/// Capture all environment variables from the login shell in the given directory.
18pub async fn capture(
19 shell_path: impl AsRef<Path>,
20 args: &[String],
21 directory: impl AsRef<Path>,
22) -> Result<collections::HashMap<String, String>> {
23 #[cfg(windows)]
24 return capture_windows(shell_path.as_ref(), args, directory.as_ref()).await;
25 #[cfg(unix)]
26 return capture_unix(shell_path.as_ref(), args, directory.as_ref()).await;
27}
28
29#[cfg(unix)]
30async fn capture_unix(
31 shell_path: &Path,
32 args: &[String],
33 directory: &Path,
34) -> Result<collections::HashMap<String, String>> {
35 use std::os::unix::process::CommandExt;
36
37 let shell_kind = ShellKind::new(shell_path, false);
38 let zed_path = super::get_shell_safe_zed_path(shell_kind)?;
39
40 let mut command_string = String::new();
41 let mut command = std::process::Command::new(shell_path);
42 command.args(args);
43 // In some shells, file descriptors greater than 2 cannot be used in interactive mode,
44 // so file descriptor 0 (stdin) is used instead. This impacts zsh, old bash; perhaps others.
45 // See: https://github.com/zed-industries/zed/pull/32136#issuecomment-2999645482
46 const FD_STDIN: std::os::fd::RawFd = 0;
47 const FD_STDOUT: std::os::fd::RawFd = 1;
48 const FD_STDERR: std::os::fd::RawFd = 2;
49
50 let (fd_num, redir) = match shell_kind {
51 ShellKind::Rc => (FD_STDIN, format!(">[1={}]", FD_STDIN)), // `[1=0]`
52 ShellKind::Nushell | ShellKind::Tcsh => (FD_STDOUT, "".to_string()),
53 // xonsh doesn't support redirecting to stdin, and control sequences are printed to
54 // stdout on startup
55 ShellKind::Xonsh => (FD_STDERR, "o>e".to_string()),
56 _ => (FD_STDIN, format!(">&{}", FD_STDIN)), // `>&0`
57 };
58
59 match shell_kind {
60 ShellKind::Csh | ShellKind::Tcsh => {
61 // For csh/tcsh, login shell requires passing `-` as 0th argument (instead of `-l`)
62 command.arg0("-");
63 }
64 ShellKind::Fish => {
65 // in fish, asdf, direnv attach to the `fish_prompt` event
66 command_string.push_str("emit fish_prompt;");
67 command.arg("-l");
68 }
69 _ => {
70 command.arg("-l");
71 }
72 }
73 // cd into the directory, triggering directory specific side-effects (asdf, direnv, etc)
74 command_string.push_str(&format!("cd '{}';", directory.display()));
75 if let Some(prefix) = shell_kind.command_prefix() {
76 command_string.push(prefix);
77 }
78 command_string.push_str(&format!("{} --printenv {}", zed_path, redir));
79 command.args(["-i", "-c", &command_string]);
80
81 super::set_pre_exec_to_start_new_session(&mut command);
82
83 let (env_output, process_output) = spawn_and_read_fd(command, fd_num).await?;
84 let env_output = String::from_utf8_lossy(&env_output);
85
86 anyhow::ensure!(
87 process_output.status.success(),
88 "login shell exited with {}. stdout: {:?}, stderr: {:?}",
89 process_output.status,
90 String::from_utf8_lossy(&process_output.stdout),
91 String::from_utf8_lossy(&process_output.stderr),
92 );
93
94 // Parse the JSON output from zed --printenv
95 let env_map: collections::HashMap<String, String> = serde_json::from_str(&env_output)
96 .with_context(|| "Failed to deserialize environment variables from json: {env_output}")?;
97 Ok(env_map)
98}
99
100#[cfg(unix)]
101async fn spawn_and_read_fd(
102 mut command: std::process::Command,
103 child_fd: std::os::fd::RawFd,
104) -> anyhow::Result<(Vec<u8>, std::process::Output)> {
105 use command_fds::{CommandFdExt, FdMapping};
106 use std::{io::Read, process::Stdio};
107
108 let (mut reader, writer) = std::io::pipe()?;
109
110 command.fd_mappings(vec![FdMapping {
111 parent_fd: writer.into(),
112 child_fd,
113 }])?;
114
115 let process = smol::process::Command::from(command)
116 .stdin(Stdio::null())
117 .stdout(Stdio::piped())
118 .stderr(Stdio::piped())
119 .spawn()?;
120
121 let mut buffer = Vec::new();
122 reader.read_to_end(&mut buffer)?;
123
124 Ok((buffer, process.output().await?))
125}
126
127#[cfg(windows)]
128async fn capture_windows(
129 shell_path: &Path,
130 _args: &[String],
131 directory: &Path,
132) -> Result<collections::HashMap<String, String>> {
133 use std::process::Stdio;
134
135 let zed_path =
136 std::env::current_exe().context("Failed to determine current zed executable path.")?;
137
138 let shell_kind = ShellKind::new(shell_path, true);
139 if let ShellKind::Csh | ShellKind::Tcsh | ShellKind::Rc | ShellKind::Fish | ShellKind::Xonsh =
140 shell_kind
141 {
142 return Err(anyhow::anyhow!("unsupported shell kind"));
143 }
144 let mut cmd = crate::command::new_smol_command(shell_path);
145 let cmd = match shell_kind {
146 ShellKind::Csh | ShellKind::Tcsh | ShellKind::Rc | ShellKind::Fish | ShellKind::Xonsh => {
147 unreachable!()
148 }
149 ShellKind::Posix => cmd.args([
150 "-c",
151 &format!(
152 "cd '{}'; '{}' --printenv",
153 directory.display(),
154 zed_path.display()
155 ),
156 ]),
157 ShellKind::PowerShell => cmd.args([
158 "-NonInteractive",
159 "-NoProfile",
160 "-Command",
161 &format!(
162 "Set-Location '{}'; & '{}' --printenv",
163 directory.display(),
164 zed_path.display()
165 ),
166 ]),
167 ShellKind::Elvish => cmd.args([
168 "-c",
169 &format!(
170 "cd '{}'; '{}' --printenv",
171 directory.display(),
172 zed_path.display()
173 ),
174 ]),
175 ShellKind::Nushell => cmd.args([
176 "-c",
177 &format!(
178 "cd '{}'; {}'{}' --printenv",
179 directory.display(),
180 shell_kind
181 .command_prefix()
182 .map(|prefix| prefix.to_string())
183 .unwrap_or_default(),
184 zed_path.display()
185 ),
186 ]),
187 ShellKind::Cmd => cmd.args([
188 "/c",
189 "cd",
190 &directory.display().to_string(),
191 "&&",
192 &zed_path.display().to_string(),
193 "--printenv",
194 ]),
195 }
196 .stdin(Stdio::null())
197 .stdout(Stdio::piped())
198 .stderr(Stdio::piped());
199 let output = cmd
200 .output()
201 .await
202 .with_context(|| format!("command {cmd:?}"))?;
203 anyhow::ensure!(
204 output.status.success(),
205 "Command {cmd:?} failed with {}. stdout: {:?}, stderr: {:?}",
206 output.status,
207 String::from_utf8_lossy(&output.stdout),
208 String::from_utf8_lossy(&output.stderr),
209 );
210 let env_output = String::from_utf8_lossy(&output.stdout);
211
212 // Parse the JSON output from zed --printenv
213 serde_json::from_str(&env_output)
214 .with_context(|| "Failed to deserialize environment variables from json: {env_output}")
215}