Skip to content

Commit a753760

Browse files
authored
chore: clean up unused protos and fuctions (#294)
1 parent a7b55ae commit a753760

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+66
-1751
lines changed

crates/fig_desktop/src/main.rs

-6
Original file line numberDiff line numberDiff line change
@@ -75,12 +75,6 @@ use webview::{
7575
#[macro_use]
7676
extern crate objc;
7777

78-
#[derive(Debug, Default)]
79-
pub struct DebugState {
80-
pub debug_lines: RwLock<Vec<String>>,
81-
pub color: RwLock<Option<String>>,
82-
}
83-
8478
#[derive(Debug, Default)]
8579
pub struct InterceptState {
8680
pub intercept_bound_keystrokes: RwLock<bool>,

crates/fig_desktop/src/platform/linux/mod.rs

-10
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ pub mod integrations;
44
mod sway;
55
mod x11;
66

7-
use std::borrow::Cow;
87
use std::sync::Arc;
98
use std::sync::atomic::{
109
AtomicBool,
@@ -305,15 +304,6 @@ impl PlatformStateImpl {
305304
}
306305
}
307306

308-
pub(super) fn shell() -> Cow<'static, str> {
309-
for shell in &["bash", "zsh", "sh"] {
310-
if let Ok(shell_path) = which::which(shell) {
311-
return shell_path.to_string_lossy().to_string().into();
312-
}
313-
}
314-
"/bin/bash".into()
315-
}
316-
317307
pub fn accessibility_is_enabled() -> Option<bool> {
318308
None
319309
}

crates/fig_desktop/src/platform/macos.rs

-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// This is needed for objc
22
#![allow(unexpected_cfgs)]
33

4-
use std::borrow::Cow;
54
use std::ffi::CString;
65
use std::path::Path;
76
use std::slice;
@@ -789,10 +788,6 @@ impl PlatformStateImpl {
789788
Some((Arc::new(data.into()), AssetKind::Png))
790789
}
791790

792-
pub(super) fn shell() -> Cow<'static, str> {
793-
"/bin/bash".into()
794-
}
795-
796791
pub(super) fn accessibility_is_enabled() -> Option<bool> {
797792
Some(ACCESSIBILITY_ENABLED.load(Ordering::SeqCst))
798793
}

crates/fig_desktop/src/platform/mod.rs

-6
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use std::borrow::Cow;
21
use std::sync::Arc;
32

43
#[cfg(target_os = "macos")]
@@ -93,11 +92,6 @@ impl PlatformState {
9392
PlatformStateImpl::icon_lookup(name).await
9493
}
9594

96-
/// The shell to execute processes in
97-
pub fn shell() -> Cow<'static, str> {
98-
PlatformStateImpl::shell()
99-
}
100-
10195
/// Whether or not accessibility is enabled
10296
pub fn accessibility_is_enabled() -> Option<bool> {
10397
PlatformStateImpl::accessibility_is_enabled()

crates/fig_desktop/src/protocol/api.rs

-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ use crate::request::{
2424
};
2525
use crate::webview::{
2626
DASH_KV_STORE,
27-
DEBUG_STATE,
2827
FIGTERM_STATE,
2928
GLOBAL_PROXY,
3029
INTERCEPT_STATE,
@@ -54,7 +53,6 @@ pub async fn handle(
5453
EventHandler::default(),
5554
Context {
5655
window_id: &window_id,
57-
debug_state: DEBUG_STATE.get().unwrap().as_ref(),
5856
figterm_state: FIGTERM_STATE.get().unwrap().as_ref(),
5957
intercept_state: INTERCEPT_STATE.get().unwrap().as_ref(),
6058
notifications_state: NOTIFICATIONS_STATE.get().unwrap().as_ref(),

crates/fig_desktop/src/request/debug.rs

-23
This file was deleted.

crates/fig_desktop/src/request/mod.rs

-20
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
mod debug;
21
mod figterm;
32
mod notifications;
43
mod onboarding;
@@ -30,14 +29,11 @@ use fig_proto::fig::server_originated_message::Submessage as ServerOriginatedSub
3029
use fig_proto::fig::{
3130
AggregateSessionMetricActionRequest,
3231
ClientOriginatedMessage,
33-
DebuggerUpdateRequest,
3432
DragWindowRequest,
3533
InsertTextRequest,
3634
NotificationRequest,
3735
OnboardingRequest,
3836
PositionWindowRequest,
39-
PseudoterminalExecuteRequest,
40-
PseudoterminalWriteRequest,
4137
RunProcessRequest,
4238
ServerOriginatedMessage,
4339
UpdateApplicationPropertiesRequest,
@@ -65,13 +61,11 @@ use crate::event::{
6561
use crate::webview::WindowId;
6662
use crate::webview::notification::WebviewNotificationsState;
6763
use crate::{
68-
DebugState,
6964
EventLoopProxy,
7065
InterceptState,
7166
};
7267

7368
pub struct Context<'a> {
74-
pub debug_state: &'a DebugState,
7569
pub figterm_state: &'a FigtermState,
7670
pub intercept_state: &'a InterceptState,
7771
pub notifications_state: &'a WebviewNotificationsState,
@@ -136,10 +130,6 @@ impl<'a> fig_desktop_api::handler::EventHandler for EventHandler<'a> {
136130
.await
137131
}
138132

139-
async fn debugger_update(&self, request: Wrapped<Self::Ctx, DebuggerUpdateRequest>) -> RequestResult {
140-
debug::update(request.request, request.context.debug_state).await
141-
}
142-
143133
async fn insert_text(&self, request: Wrapped<Self::Ctx, InsertTextRequest>) -> RequestResult {
144134
figterm::insert_text(request.request, request.context.figterm_state).await
145135
}
@@ -187,14 +177,6 @@ impl<'a> fig_desktop_api::handler::EventHandler for EventHandler<'a> {
187177
process::run(request.request, request.context.figterm_state).await
188178
}
189179

190-
async fn pseudoterminal_execute(&self, request: Wrapped<Self::Ctx, PseudoterminalExecuteRequest>) -> RequestResult {
191-
process::execute(request.request, request.context.figterm_state).await
192-
}
193-
194-
async fn pseudoterminal_write(&self, _request: Wrapped<Self::Ctx, PseudoterminalWriteRequest>) -> RequestResult {
195-
process::write().await
196-
}
197-
198180
async fn update_application_properties(
199181
&self,
200182
request: Wrapped<Self::Ctx, UpdateApplicationPropertiesRequest>,
@@ -223,7 +205,6 @@ impl<'a> fig_desktop_api::handler::EventHandler for EventHandler<'a> {
223205
pub async fn api_request(
224206
window_id: WindowId,
225207
message: fig_desktop_api::error::Result<ClientOriginatedMessage>,
226-
debug_state: &DebugState,
227208
figterm_state: &FigtermState,
228209
intercept_state: &InterceptState,
229210
notifications_state: &WebviewNotificationsState,
@@ -237,7 +218,6 @@ pub async fn api_request(
237218
match fig_desktop_api::handler::api_request(
238219
EventHandler::default(),
239220
Context {
240-
debug_state,
241221
figterm_state,
242222
intercept_state,
243223
notifications_state,
+2-122
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
use std::time::Duration;
22

3-
use fig_desktop_api::requests::Error;
43
use fig_proto::fig::server_originated_message::Submessage as ServerOriginatedSubMessage;
54
use fig_proto::fig::{
6-
EnvironmentVariable,
7-
PseudoterminalExecuteRequest,
8-
PseudoterminalExecuteResponse,
95
RunProcessRequest,
106
RunProcessResponse,
117
};
@@ -21,29 +17,9 @@ use fig_util::env_var::{
2117
};
2218
use tokio::process::Command;
2319
use tokio::time::timeout;
24-
use tracing::{
25-
debug,
26-
warn,
27-
};
20+
use tracing::debug;
2821

29-
use super::{
30-
RequestResult,
31-
RequestResultImpl,
32-
};
33-
use crate::platform::PlatformState;
34-
35-
fn shell_args(shell_path: &str) -> &'static [&'static str] {
36-
let (_, shell_name) = shell_path.rsplit_once(['/', '\\']).unwrap_or(("", shell_path));
37-
match shell_name {
38-
"bash" | "bash.exe" => &["--norc", "--noprofile", "-c"],
39-
"zsh" | "zsh.exe" => &["--norcs", "-c"],
40-
"fish" | "fish.exe" => &["--no-config", "-c"],
41-
_ => {
42-
warn!(%shell_name, "unknown shell");
43-
&[]
44-
},
45-
}
46-
}
22+
use super::RequestResult;
4723

4824
fn set_fig_vars(cmd: &mut Command) {
4925
cmd.env(Q_TERM, env!("CARGO_PKG_VERSION"));
@@ -54,98 +30,6 @@ fn set_fig_vars(cmd: &mut Command) {
5430
cmd.env("TERM", "xterm-256color");
5531
}
5632

57-
pub async fn execute(request: PseudoterminalExecuteRequest, figterm_state: &FigtermState) -> RequestResult {
58-
debug!({
59-
term_session =? request.terminal_session_id,
60-
command = request.command,
61-
cwd = request.working_directory(),
62-
env =? request.env,
63-
background = request.background_job,
64-
pipelined = request.is_pipelined
65-
}, "Executing command");
66-
67-
let session_sender = figterm_state
68-
.with_maybe_id(&request.terminal_session_id.map(FigtermSessionId::new), |session| {
69-
session.sender.clone()
70-
});
71-
72-
if let Some(session_sender) = session_sender {
73-
let (message, rx) = FigtermCommand::pseudoterminal_execute(
74-
request.command,
75-
request.working_directory,
76-
request.background_job,
77-
request.is_pipelined,
78-
request.env,
79-
);
80-
session_sender
81-
.send(message)
82-
.map_err(|err| format!("failed sending command to figterm: {err}"))?;
83-
drop(session_sender);
84-
85-
let response = timeout(Duration::from_secs(10), rx)
86-
.await
87-
.map_err(|err| Error::from_std(err).wrap_err("Qterm response timed out after 10 sec"))?
88-
.map_err(|err| Error::from_std(err).wrap_err("Qterm response failed to receive from sender"))?;
89-
90-
if let hostbound::response::Response::PseudoterminalExecute(response) = response {
91-
RequestResult::Ok(Box::new(ServerOriginatedSubMessage::PseudoterminalExecuteResponse(
92-
PseudoterminalExecuteResponse {
93-
stdout: response.stdout,
94-
stderr: response.stderr,
95-
exit_code: response.exit_code,
96-
},
97-
)))
98-
} else {
99-
Err("invalid response type".to_string().into())
100-
}
101-
} else {
102-
debug!("executing locally");
103-
104-
let shell = PlatformState::shell();
105-
106-
// note: we don't know what shell they use because we don't have any figterm sessions to check
107-
let args = shell_args(&shell);
108-
109-
let mut cmd = Command::new(&*shell);
110-
#[cfg(target_os = "windows")]
111-
cmd.creation_flags(windows::Win32::System::Threading::DETACHED_PROCESS.0);
112-
// TODO: better SHELL_ARGs handling here based on shell.
113-
// TODO: handle wsl distro from FigtermState here.
114-
cmd.args(args);
115-
cmd.arg(&request.command);
116-
117-
if let Some(working_directory) = request.working_directory {
118-
cmd.current_dir(working_directory);
119-
}
120-
121-
set_fig_vars(&mut cmd);
122-
123-
for EnvironmentVariable { key, value } in &request.env {
124-
match value {
125-
Some(value) => cmd.env(key, value),
126-
None => cmd.env_remove(key),
127-
};
128-
}
129-
130-
let output = cmd
131-
.output()
132-
.await
133-
.map_err(|err| format!("Failed running command {:?}: {err}", request.command))?;
134-
135-
RequestResult::Ok(Box::new(ServerOriginatedSubMessage::PseudoterminalExecuteResponse(
136-
PseudoterminalExecuteResponse {
137-
stdout: String::from_utf8_lossy(&output.stdout).to_string(),
138-
stderr: if output.stderr.is_empty() {
139-
None
140-
} else {
141-
Some(String::from_utf8_lossy(&output.stderr).to_string())
142-
},
143-
exit_code: output.status.code(),
144-
},
145-
)))
146-
}
147-
}
148-
14933
pub async fn run(request: RunProcessRequest, state: &FigtermState) -> RequestResult {
15034
debug!({
15135
term_session =? request.terminal_session_id,
@@ -230,7 +114,3 @@ pub async fn run(request: RunProcessRequest, state: &FigtermState) -> RequestRes
230114
)))
231115
}
232116
}
233-
234-
pub async fn write() -> RequestResult {
235-
RequestResult::error("PseudoterminalWriteRequest is deprecated".to_string())
236-
}

crates/fig_desktop/src/tray.rs

-2
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ use crate::webview::LOGIN_PATH;
4444
use crate::{
4545
AUTOCOMPLETE_ID,
4646
DASHBOARD_ID,
47-
DebugState,
4847
EventLoopProxy,
4948
EventLoopWindowTarget,
5049
};
@@ -261,7 +260,6 @@ fn load_icon(path: impl AsRef<std::path::Path>) -> Option<Icon> {
261260

262261
pub async fn build_tray(
263262
_event_loop_window_target: &EventLoopWindowTarget,
264-
_debug_state: &DebugState,
265263
_figterm_state: &FigtermState,
266264
) -> tray_icon::Result<TrayIcon> {
267265
let is_logged_in = fig_auth::is_logged_in().await;

0 commit comments

Comments
 (0)