debugger: Show errors loading stack (#32658)

- **TEMP**
- **Show errors loading stack frames**
- **Stop cloning every DAP response unnecessarily**

Closes #ISSUE

Release Notes:

- debugger: Show errors loading stack frames.

<img width="1840" alt="Screenshot 2025-06-12 at 23 53 42"
src="https://github.com/user-attachments/assets/310d3046-f34c-4964-acef-f9742441c9db"
/>
This commit is contained in:
Conrad Irwin 2025-06-13 00:05:57 -06:00 committed by GitHub
parent bcd79331b9
commit f63ae4388d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 123 additions and 86 deletions

View file

@ -36,6 +36,7 @@ use gpui::{
Task, WeakEntity,
};
use rpc::ErrorExt;
use serde_json::Value;
use smol::stream::StreamExt;
use std::any::TypeId;
@ -108,6 +109,7 @@ impl ThreadStatus {
pub struct Thread {
dap: dap::Thread,
stack_frames: Vec<StackFrame>,
stack_frames_error: Option<anyhow::Error>,
_has_stopped: bool,
}
@ -116,6 +118,7 @@ impl From<dap::Thread> for Thread {
Self {
dap,
stack_frames: Default::default(),
stack_frames_error: None,
_has_stopped: false,
}
}
@ -1388,12 +1391,7 @@ impl Session {
fn fetch<T: DapCommand + PartialEq + Eq + Hash>(
&mut self,
request: T,
process_result: impl FnOnce(
&mut Self,
Result<T::Response>,
&mut Context<Self>,
) -> Option<T::Response>
+ 'static,
process_result: impl FnOnce(&mut Self, Result<T::Response>, &mut Context<Self>) + 'static,
cx: &mut Context<Self>,
) {
const {
@ -1422,7 +1420,10 @@ impl Session {
&self.capabilities,
&self.mode,
command,
process_result,
|this, result, cx| {
process_result(this, result, cx);
None
},
cx,
);
let task = cx
@ -1438,17 +1439,6 @@ impl Session {
}
}
pub async fn request2<T: DapCommand + PartialEq + Eq + Hash>(
&self,
request: T,
) -> Result<T::Response> {
if !T::is_supported(&self.capabilities) {
anyhow::bail!("DAP request {:?} is not supported", request);
}
self.mode.request_dap(request).await
}
fn request_inner<T: DapCommand + PartialEq + Eq + Hash>(
capabilities: &Capabilities,
mode: &Mode,
@ -1535,18 +1525,18 @@ impl Session {
self.fetch(
dap_command::ThreadsCommand,
|this, result, cx| {
let result = result.log_err()?;
let Some(result) = result.log_err() else {
return;
};
this.threads = result
.iter()
.into_iter()
.map(|thread| (ThreadId(thread.id), Thread::from(thread.clone())))
.collect();
this.invalidate_command_type::<StackTraceCommand>();
cx.emit(SessionEvent::Threads);
cx.notify();
Some(result)
},
cx,
);
@ -1566,13 +1556,13 @@ impl Session {
self.fetch(
dap_command::ModulesCommand,
|this, result, cx| {
let result = result.log_err()?;
let Some(result) = result.log_err() else {
return;
};
this.modules = result.iter().cloned().collect();
this.modules = result;
cx.emit(SessionEvent::Modules);
cx.notify();
Some(result)
},
cx,
);
@ -1651,11 +1641,12 @@ impl Session {
self.fetch(
dap_command::LoadedSourcesCommand,
|this, result, cx| {
let result = result.log_err()?;
this.loaded_sources = result.iter().cloned().collect();
let Some(result) = result.log_err() else {
return;
};
this.loaded_sources = result;
cx.emit(SessionEvent::LoadedSources);
cx.notify();
Some(result)
},
cx,
);
@ -1961,7 +1952,11 @@ impl Session {
.detach();
}
pub fn stack_frames(&mut self, thread_id: ThreadId, cx: &mut Context<Self>) -> Vec<StackFrame> {
pub fn stack_frames(
&mut self,
thread_id: ThreadId,
cx: &mut Context<Self>,
) -> Result<Vec<StackFrame>> {
if self.thread_states.thread_status(thread_id) == ThreadStatus::Stopped
&& self.requests.contains_key(&ThreadsCommand.type_id())
&& self.threads.contains_key(&thread_id)
@ -1977,48 +1972,63 @@ impl Session {
levels: None,
},
move |this, stack_frames, cx| {
let stack_frames = stack_frames.log_err()?;
let entry = this.threads.entry(thread_id).and_modify(|thread| {
thread.stack_frames =
stack_frames.iter().cloned().map(StackFrame::from).collect();
});
let entry =
this.threads
.entry(thread_id)
.and_modify(|thread| match &stack_frames {
Ok(stack_frames) => {
thread.stack_frames = stack_frames
.iter()
.cloned()
.map(StackFrame::from)
.collect();
thread.stack_frames_error = None;
}
Err(error) => {
thread.stack_frames.clear();
thread.stack_frames_error = Some(error.cloned());
}
});
debug_assert!(
matches!(entry, indexmap::map::Entry::Occupied(_)),
"Sent request for thread_id that doesn't exist"
);
this.stack_frames.extend(
stack_frames
.iter()
.filter(|frame| {
// Workaround for JavaScript debug adapter sending out "fake" stack frames for delineating await points. This is fine,
// except that they always use an id of 0 for it, which collides with other (valid) stack frames.
!(frame.id == 0
&& frame.line == 0
&& frame.column == 0
&& frame.presentation_hint
== Some(StackFramePresentationHint::Label))
})
.cloned()
.map(|frame| (frame.id, StackFrame::from(frame))),
);
if let Ok(stack_frames) = stack_frames {
this.stack_frames.extend(
stack_frames
.into_iter()
.filter(|frame| {
// Workaround for JavaScript debug adapter sending out "fake" stack frames for delineating await points. This is fine,
// except that they always use an id of 0 for it, which collides with other (valid) stack frames.
!(frame.id == 0
&& frame.line == 0
&& frame.column == 0
&& frame.presentation_hint
== Some(StackFramePresentationHint::Label))
})
.map(|frame| (frame.id, StackFrame::from(frame))),
);
}
this.invalidate_command_type::<ScopesCommand>();
this.invalidate_command_type::<VariablesCommand>();
cx.emit(SessionEvent::StackTrace);
cx.notify();
Some(stack_frames)
},
cx,
);
}
self.threads
.get(&thread_id)
.map(|thread| thread.stack_frames.clone())
.unwrap_or_default()
match self.threads.get(&thread_id) {
Some(thread) => {
if let Some(error) = &thread.stack_frames_error {
Err(error.cloned())
} else {
Ok(thread.stack_frames.clone())
}
}
None => Ok(Vec::new()),
}
}
pub fn scopes(&mut self, stack_frame_id: u64, cx: &mut Context<Self>) -> &[dap::Scope] {
@ -2030,9 +2040,11 @@ impl Session {
self.fetch(
ScopesCommand { stack_frame_id },
move |this, scopes, cx| {
let scopes = scopes.log_err()?;
let Some(scopes) = scopes.log_err() else {
return
};
for scope in scopes .iter(){
for scope in scopes.iter() {
this.variables(scope.variables_reference, cx);
}
@ -2040,7 +2052,7 @@ impl Session {
.stack_frames
.entry(stack_frame_id)
.and_modify(|stack_frame| {
stack_frame.scopes = scopes.clone();
stack_frame.scopes = scopes;
});
cx.emit(SessionEvent::Variables);
@ -2049,8 +2061,6 @@ impl Session {
matches!(entry, indexmap::map::Entry::Occupied(_)),
"Sent scopes request for stack_frame_id that doesn't exist or hasn't been fetched"
);
Some(scopes)
},
cx,
);
@ -2092,13 +2102,14 @@ impl Session {
self.fetch(
command,
move |this, variables, cx| {
let variables = variables.log_err()?;
this.variables
.insert(variables_reference, variables.clone());
let Some(variables) = variables.log_err() else {
return;
};
this.variables.insert(variables_reference, variables);
cx.emit(SessionEvent::Variables);
cx.emit(SessionEvent::InvalidateInlineValue);
Some(variables)
},
cx,
);
@ -2209,9 +2220,10 @@ impl Session {
self.fetch(
LocationsCommand { reference },
move |this, response, _| {
let response = response.log_err()?;
this.locations.insert(reference, response.clone());
Some(response)
let Some(response) = response.log_err() else {
return;
};
this.locations.insert(reference, response);
},
cx,
);