ZIm/crates/project/src/debugger/session.rs
Conrad Irwin 6a009b447a
debugger: Open debugger panel on session startup (#29186)
Now all debug sessions are routed through the debug panel and are
started synchronously instead of by a task that returns a session once
the initialization process is finished. A session is `Mode::Booting`
while it's starting the debug adapter process and then transitions to
`Mode::Running` once this is completed.

This PR also added new tests for the dap logger, reverse start debugging
request, and debugging over SSH.

Release Notes:

- N/A

---------

Co-authored-by: Anthony Eid <hello@anthonyeid.me>
Co-authored-by: Anthony <anthony@zed.dev>
Co-authored-by: Cole Miller <m@cole-miller.net>
Co-authored-by: Cole Miller <cole@zed.dev>
Co-authored-by: Zed AI <ai@zed.dev>
Co-authored-by: Remco Smits <djsmits12@gmail.com>
2025-04-22 19:35:47 -04:00

1945 lines
61 KiB
Rust

use super::breakpoint_store::{
BreakpointStore, BreakpointStoreEvent, BreakpointUpdatedReason, SourceBreakpoint,
};
use super::dap_command::{
self, Attach, ConfigurationDone, ContinueCommand, DapCommand, DisconnectCommand,
EvaluateCommand, Initialize, Launch, LoadedSourcesCommand, LocalDapCommand, LocationsCommand,
ModulesCommand, NextCommand, PauseCommand, RestartCommand, RestartStackFrameCommand,
ScopesCommand, SetExceptionBreakpoints, SetVariableValueCommand, StackTraceCommand,
StepBackCommand, StepCommand, StepInCommand, StepOutCommand, TerminateCommand,
TerminateThreadsCommand, ThreadsCommand, VariablesCommand,
};
use super::dap_store::DapStore;
use anyhow::{Context as _, Result, anyhow};
use collections::{HashMap, HashSet, IndexMap, IndexSet};
use dap::adapters::DebugAdapterBinary;
use dap::messages::Response;
use dap::{
Capabilities, ContinueArguments, EvaluateArgumentsContext, Module, Source, StackFrameId,
SteppingGranularity, StoppedEvent, VariableReference,
client::{DebugAdapterClient, SessionId},
messages::{Events, Message},
};
use dap::{ExceptionBreakpointsFilter, ExceptionFilterOptions, OutputEventCategory};
use futures::channel::oneshot;
use futures::{FutureExt, future::Shared};
use gpui::{
App, AppContext, AsyncApp, BackgroundExecutor, Context, Entity, EventEmitter, SharedString,
Task, WeakEntity,
};
use serde_json::{Value, json};
use smol::stream::StreamExt;
use std::any::TypeId;
use std::collections::BTreeMap;
use std::u64;
use std::{
any::Any,
collections::hash_map::Entry,
hash::{Hash, Hasher},
path::Path,
sync::Arc,
};
use task::DebugTaskDefinition;
use text::{PointUtf16, ToPointUtf16};
use util::{ResultExt, merge_json_value_into};
use worktree::Worktree;
#[derive(Debug, Copy, Clone, Hash, PartialEq, PartialOrd, Ord, Eq)]
#[repr(transparent)]
pub struct ThreadId(pub u64);
impl ThreadId {
pub const MIN: ThreadId = ThreadId(u64::MIN);
pub const MAX: ThreadId = ThreadId(u64::MAX);
}
impl From<u64> for ThreadId {
fn from(id: u64) -> Self {
Self(id)
}
}
#[derive(Clone, Debug)]
pub struct StackFrame {
pub dap: dap::StackFrame,
pub scopes: Vec<dap::Scope>,
}
impl From<dap::StackFrame> for StackFrame {
fn from(stack_frame: dap::StackFrame) -> Self {
Self {
scopes: vec![],
dap: stack_frame,
}
}
}
#[derive(Copy, Clone, Debug, Default, PartialEq, Eq)]
pub enum ThreadStatus {
#[default]
Running,
Stopped,
Stepping,
Exited,
Ended,
}
impl ThreadStatus {
pub fn label(&self) -> &'static str {
match self {
ThreadStatus::Running => "Running",
ThreadStatus::Stopped => "Stopped",
ThreadStatus::Stepping => "Stepping",
ThreadStatus::Exited => "Exited",
ThreadStatus::Ended => "Ended",
}
}
}
#[derive(Debug)]
pub struct Thread {
dap: dap::Thread,
stack_frame_ids: IndexSet<StackFrameId>,
_has_stopped: bool,
}
impl From<dap::Thread> for Thread {
fn from(dap: dap::Thread) -> Self {
Self {
dap,
stack_frame_ids: Default::default(),
_has_stopped: false,
}
}
}
enum Mode {
Building,
Running(LocalMode),
}
#[derive(Clone)]
pub struct LocalMode {
client: Arc<DebugAdapterClient>,
binary: DebugAdapterBinary,
root_binary: Option<Arc<DebugAdapterBinary>>,
pub(crate) breakpoint_store: Entity<BreakpointStore>,
tmp_breakpoint: Option<SourceBreakpoint>,
worktree: WeakEntity<Worktree>,
}
fn client_source(abs_path: &Path) -> dap::Source {
dap::Source {
name: abs_path
.file_name()
.map(|filename| filename.to_string_lossy().to_string()),
path: Some(abs_path.to_string_lossy().to_string()),
source_reference: None,
presentation_hint: None,
origin: None,
sources: None,
adapter_data: None,
checksums: None,
}
}
impl LocalMode {
async fn new(
session_id: SessionId,
parent_session: Option<Entity<Session>>,
worktree: WeakEntity<Worktree>,
breakpoint_store: Entity<BreakpointStore>,
binary: DebugAdapterBinary,
messages_tx: futures::channel::mpsc::UnboundedSender<Message>,
cx: AsyncApp,
) -> Result<Self> {
let message_handler = Box::new(move |message| {
messages_tx.unbounded_send(message).ok();
});
let root_binary = if let Some(parent_session) = parent_session.as_ref() {
Some(parent_session.read_with(&cx, |session, _| session.root_binary().clone())?)
} else {
None
};
let client = Arc::new(
if let Some(client) = parent_session
.and_then(|session| cx.update(|cx| session.read(cx).adapter_client()).ok())
.flatten()
{
client
.reconnect(session_id, binary.clone(), message_handler, cx.clone())
.await?
} else {
DebugAdapterClient::start(session_id, binary.clone(), message_handler, cx.clone())
.await
.with_context(|| "Failed to start communication with debug adapter")?
},
);
Ok(Self {
client,
breakpoint_store,
worktree,
tmp_breakpoint: None,
root_binary,
binary,
})
}
pub(crate) fn worktree(&self) -> &WeakEntity<Worktree> {
&self.worktree
}
fn unset_breakpoints_from_paths(&self, paths: &Vec<Arc<Path>>, cx: &mut App) -> Task<()> {
let tasks: Vec<_> = paths
.into_iter()
.map(|path| {
self.request(
dap_command::SetBreakpoints {
source: client_source(path),
source_modified: None,
breakpoints: vec![],
},
cx.background_executor().clone(),
)
})
.collect();
cx.background_spawn(async move {
futures::future::join_all(tasks)
.await
.iter()
.for_each(|res| match res {
Ok(_) => {}
Err(err) => {
log::warn!("Set breakpoints request failed: {}", err);
}
});
})
}
fn send_breakpoints_from_path(
&self,
abs_path: Arc<Path>,
reason: BreakpointUpdatedReason,
cx: &mut App,
) -> Task<()> {
let breakpoints = self
.breakpoint_store
.read_with(cx, |store, cx| store.breakpoints_from_path(&abs_path, cx))
.into_iter()
.filter(|bp| bp.state.is_enabled())
.chain(self.tmp_breakpoint.clone())
.map(Into::into)
.collect();
let task = self.request(
dap_command::SetBreakpoints {
source: client_source(&abs_path),
source_modified: Some(matches!(reason, BreakpointUpdatedReason::FileSaved)),
breakpoints,
},
cx.background_executor().clone(),
);
cx.background_spawn(async move {
match task.await {
Ok(_) => {}
Err(err) => log::warn!("Set breakpoints request failed for path: {}", err),
}
})
}
fn send_exception_breakpoints(
&self,
filters: Vec<ExceptionBreakpointsFilter>,
supports_filter_options: bool,
cx: &App,
) -> Task<Result<Vec<dap::Breakpoint>>> {
let arg = if supports_filter_options {
SetExceptionBreakpoints::WithOptions {
filters: filters
.into_iter()
.map(|filter| ExceptionFilterOptions {
filter_id: filter.filter,
condition: None,
mode: None,
})
.collect(),
}
} else {
SetExceptionBreakpoints::Plain {
filters: filters.into_iter().map(|filter| filter.filter).collect(),
}
};
self.request(arg, cx.background_executor().clone())
}
fn send_source_breakpoints(
&self,
ignore_breakpoints: bool,
cx: &App,
) -> Task<HashMap<Arc<Path>, anyhow::Error>> {
let mut breakpoint_tasks = Vec::new();
let breakpoints = self
.breakpoint_store
.read_with(cx, |store, cx| store.all_breakpoints(cx));
for (path, breakpoints) in breakpoints {
let breakpoints = if ignore_breakpoints {
vec![]
} else {
breakpoints
.into_iter()
.filter(|bp| bp.state.is_enabled())
.map(Into::into)
.collect()
};
breakpoint_tasks.push(
self.request(
dap_command::SetBreakpoints {
source: client_source(&path),
source_modified: Some(false),
breakpoints,
},
cx.background_executor().clone(),
)
.map(|result| result.map_err(|e| (path, e))),
);
}
cx.background_spawn(async move {
futures::future::join_all(breakpoint_tasks)
.await
.into_iter()
.filter_map(Result::err)
.collect::<HashMap<_, _>>()
})
}
fn initialize_sequence(
&self,
capabilities: &Capabilities,
definition: &DebugTaskDefinition,
initialized_rx: oneshot::Receiver<()>,
dap_store: WeakEntity<DapStore>,
cx: &App,
) -> Task<Result<()>> {
let mut raw = self.binary.request_args.clone();
merge_json_value_into(
definition.initialize_args.clone().unwrap_or(json!({})),
&mut raw.configuration,
);
// Of relevance: https://github.com/microsoft/vscode/issues/4902#issuecomment-368583522
let launch = match raw.request {
dap::StartDebuggingRequestArgumentsRequest::Launch => self.request(
Launch {
raw: raw.configuration,
},
cx.background_executor().clone(),
),
dap::StartDebuggingRequestArgumentsRequest::Attach => self.request(
Attach {
raw: raw.configuration,
},
cx.background_executor().clone(),
),
};
let configuration_done_supported = ConfigurationDone::is_supported(capabilities);
let exception_filters = capabilities
.exception_breakpoint_filters
.as_ref()
.map(|exception_filters| {
exception_filters
.iter()
.filter(|filter| filter.default == Some(true))
.cloned()
.collect::<Vec<_>>()
})
.unwrap_or_default();
let supports_exception_filters = capabilities
.supports_exception_filter_options
.unwrap_or_default();
let this = self.clone();
let worktree = self.worktree().clone();
let configuration_sequence = cx.spawn({
async move |cx| {
initialized_rx.await?;
let errors_by_path = cx
.update(|cx| this.send_source_breakpoints(false, cx))?
.await;
dap_store.update(cx, |_, cx| {
let Some(worktree) = worktree.upgrade() else {
return;
};
for (path, error) in &errors_by_path {
log::error!("failed to set breakpoints for {path:?}: {error}");
}
if let Some(failed_path) = errors_by_path.keys().next() {
let failed_path = failed_path
.strip_prefix(worktree.read(cx).abs_path())
.unwrap_or(failed_path)
.display();
let message = format!(
"Failed to set breakpoints for {failed_path}{}",
match errors_by_path.len() {
0 => unreachable!(),
1 => "".into(),
2 => " and 1 other path".into(),
n => format!(" and {} other paths", n - 1),
}
);
cx.emit(super::dap_store::DapStoreEvent::Notification(message));
}
})?;
cx.update(|cx| {
this.send_exception_breakpoints(
exception_filters,
supports_exception_filters,
cx,
)
})?
.await
.ok();
let ret = if configuration_done_supported {
this.request(ConfigurationDone {}, cx.background_executor().clone())
} else {
Task::ready(Ok(()))
}
.await;
ret
}
});
cx.background_spawn(async move {
futures::future::try_join(launch, configuration_sequence).await?;
Ok(())
})
}
fn request<R: LocalDapCommand>(
&self,
request: R,
executor: BackgroundExecutor,
) -> Task<Result<R::Response>>
where
<R::DapRequest as dap::requests::Request>::Response: 'static,
<R::DapRequest as dap::requests::Request>::Arguments: 'static + Send,
{
let request = Arc::new(request);
let request_clone = request.clone();
let connection = self.client.clone();
let request_task = executor.spawn(async move {
let args = request_clone.to_dap();
connection.request::<R::DapRequest>(args).await
});
executor.spawn(async move {
let response = request.response_from_dap(request_task.await?);
response
})
}
}
impl Mode {
fn request_dap<R: DapCommand>(
&self,
request: R,
cx: &mut Context<Session>,
) -> Task<Result<R::Response>>
where
<R::DapRequest as dap::requests::Request>::Response: 'static,
<R::DapRequest as dap::requests::Request>::Arguments: 'static + Send,
{
match self {
Mode::Running(debug_adapter_client) => {
debug_adapter_client.request(request, cx.background_executor().clone())
}
Mode::Building => Task::ready(Err(anyhow!(
"no adapter running to send request: {:?}",
request
))),
}
}
}
#[derive(Default)]
struct ThreadStates {
global_state: Option<ThreadStatus>,
known_thread_states: IndexMap<ThreadId, ThreadStatus>,
}
impl ThreadStates {
fn stop_all_threads(&mut self) {
self.global_state = Some(ThreadStatus::Stopped);
self.known_thread_states.clear();
}
fn exit_all_threads(&mut self) {
self.global_state = Some(ThreadStatus::Exited);
self.known_thread_states.clear();
}
fn continue_all_threads(&mut self) {
self.global_state = Some(ThreadStatus::Running);
self.known_thread_states.clear();
}
fn stop_thread(&mut self, thread_id: ThreadId) {
self.known_thread_states
.insert(thread_id, ThreadStatus::Stopped);
}
fn continue_thread(&mut self, thread_id: ThreadId) {
self.known_thread_states
.insert(thread_id, ThreadStatus::Running);
}
fn process_step(&mut self, thread_id: ThreadId) {
self.known_thread_states
.insert(thread_id, ThreadStatus::Stepping);
}
fn thread_status(&self, thread_id: ThreadId) -> ThreadStatus {
self.thread_state(thread_id)
.unwrap_or(ThreadStatus::Running)
}
fn thread_state(&self, thread_id: ThreadId) -> Option<ThreadStatus> {
self.known_thread_states
.get(&thread_id)
.copied()
.or(self.global_state)
}
fn exit_thread(&mut self, thread_id: ThreadId) {
self.known_thread_states
.insert(thread_id, ThreadStatus::Exited);
}
fn any_stopped_thread(&self) -> bool {
self.global_state
.is_some_and(|state| state == ThreadStatus::Stopped)
|| self
.known_thread_states
.values()
.any(|status| *status == ThreadStatus::Stopped)
}
}
const MAX_TRACKED_OUTPUT_EVENTS: usize = 5000;
type IsEnabled = bool;
#[derive(Copy, Clone, Default, Debug, PartialEq, PartialOrd, Eq, Ord)]
pub struct OutputToken(pub usize);
/// Represents a current state of a single debug adapter and provides ways to mutate it.
pub struct Session {
mode: Mode,
definition: DebugTaskDefinition,
pub(super) capabilities: Capabilities,
id: SessionId,
child_session_ids: HashSet<SessionId>,
parent_session: Option<Entity<Session>>,
ignore_breakpoints: bool,
modules: Vec<dap::Module>,
loaded_sources: Vec<dap::Source>,
output_token: OutputToken,
output: Box<circular_buffer::CircularBuffer<MAX_TRACKED_OUTPUT_EVENTS, dap::OutputEvent>>,
threads: IndexMap<ThreadId, Thread>,
thread_states: ThreadStates,
variables: HashMap<VariableReference, Vec<dap::Variable>>,
stack_frames: IndexMap<StackFrameId, StackFrame>,
locations: HashMap<u64, dap::LocationsResponse>,
is_session_terminated: bool,
requests: HashMap<TypeId, HashMap<RequestSlot, Shared<Task<Option<()>>>>>,
exception_breakpoints: BTreeMap<String, (ExceptionBreakpointsFilter, IsEnabled)>,
start_debugging_requests_tx: futures::channel::mpsc::UnboundedSender<(SessionId, Message)>,
background_tasks: Vec<Task<()>>,
}
trait CacheableCommand: Any + Send + Sync {
fn dyn_eq(&self, rhs: &dyn CacheableCommand) -> bool;
fn dyn_hash(&self, hasher: &mut dyn Hasher);
fn as_any_arc(self: Arc<Self>) -> Arc<dyn Any + Send + Sync>;
}
impl<T> CacheableCommand for T
where
T: DapCommand + PartialEq + Eq + Hash,
{
fn dyn_eq(&self, rhs: &dyn CacheableCommand) -> bool {
(rhs as &dyn Any)
.downcast_ref::<Self>()
.map_or(false, |rhs| self == rhs)
}
fn dyn_hash(&self, mut hasher: &mut dyn Hasher) {
T::hash(self, &mut hasher);
}
fn as_any_arc(self: Arc<Self>) -> Arc<dyn Any + Send + Sync> {
self
}
}
pub(crate) struct RequestSlot(Arc<dyn CacheableCommand>);
impl<T: DapCommand + PartialEq + Eq + Hash> From<T> for RequestSlot {
fn from(request: T) -> Self {
Self(Arc::new(request))
}
}
impl PartialEq for RequestSlot {
fn eq(&self, other: &Self) -> bool {
self.0.dyn_eq(other.0.as_ref())
}
}
impl Eq for RequestSlot {}
impl Hash for RequestSlot {
fn hash<H: std::hash::Hasher>(&self, state: &mut H) {
self.0.dyn_hash(state);
(&*self.0 as &dyn Any).type_id().hash(state)
}
}
#[derive(Debug, Clone, Hash, PartialEq, Eq)]
pub struct CompletionsQuery {
pub query: String,
pub column: u64,
pub line: Option<u64>,
pub frame_id: Option<u64>,
}
impl CompletionsQuery {
pub fn new(
buffer: &language::Buffer,
cursor_position: language::Anchor,
frame_id: Option<u64>,
) -> Self {
let PointUtf16 { row, column } = cursor_position.to_point_utf16(&buffer.snapshot());
Self {
query: buffer.text(),
column: column as u64,
frame_id,
line: Some(row as u64),
}
}
}
pub enum SessionEvent {
Modules,
LoadedSources,
Stopped(Option<ThreadId>),
StackTrace,
Variables,
Threads,
CapabilitiesLoaded,
}
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum SessionStateEvent {
Running,
Shutdown,
Restart,
}
impl EventEmitter<SessionEvent> for Session {}
impl EventEmitter<SessionStateEvent> for Session {}
// local session will send breakpoint updates to DAP for all new breakpoints
// remote side will only send breakpoint updates when it is a breakpoint created by that peer
// BreakpointStore notifies session on breakpoint changes
impl Session {
pub(crate) fn new(
breakpoint_store: Entity<BreakpointStore>,
session_id: SessionId,
parent_session: Option<Entity<Session>>,
template: DebugTaskDefinition,
start_debugging_requests_tx: futures::channel::mpsc::UnboundedSender<(SessionId, Message)>,
cx: &mut App,
) -> Entity<Self> {
cx.new::<Self>(|cx| {
cx.subscribe(&breakpoint_store, |this, _, event, cx| match event {
BreakpointStoreEvent::BreakpointsUpdated(path, reason) => {
if let Some(local) = (!this.ignore_breakpoints)
.then(|| this.as_local_mut())
.flatten()
{
local
.send_breakpoints_from_path(path.clone(), *reason, cx)
.detach();
};
}
BreakpointStoreEvent::BreakpointsCleared(paths) => {
if let Some(local) = (!this.ignore_breakpoints)
.then(|| this.as_local_mut())
.flatten()
{
local.unset_breakpoints_from_paths(paths, cx).detach();
}
}
BreakpointStoreEvent::ActiveDebugLineChanged => {}
})
.detach();
let this = Self {
mode: Mode::Building,
id: session_id,
child_session_ids: HashSet::default(),
parent_session,
capabilities: Capabilities::default(),
ignore_breakpoints: false,
variables: Default::default(),
stack_frames: Default::default(),
thread_states: ThreadStates::default(),
output_token: OutputToken(0),
output: circular_buffer::CircularBuffer::boxed(),
requests: HashMap::default(),
modules: Vec::default(),
loaded_sources: Vec::default(),
threads: IndexMap::default(),
background_tasks: Vec::default(),
locations: Default::default(),
is_session_terminated: false,
exception_breakpoints: Default::default(),
definition: template,
start_debugging_requests_tx,
};
this
})
}
pub fn worktree(&self) -> Option<Entity<Worktree>> {
match &self.mode {
Mode::Building => None,
Mode::Running(local_mode) => local_mode.worktree.upgrade(),
}
}
pub fn boot(
&mut self,
binary: DebugAdapterBinary,
worktree: Entity<Worktree>,
breakpoint_store: Entity<BreakpointStore>,
dap_store: WeakEntity<DapStore>,
cx: &mut Context<Self>,
) -> Task<Result<()>> {
let (message_tx, mut message_rx) = futures::channel::mpsc::unbounded();
let (initialized_tx, initialized_rx) = futures::channel::oneshot::channel();
let session_id = self.session_id();
let background_tasks = vec![cx.spawn(async move |this: WeakEntity<Session>, cx| {
let mut initialized_tx = Some(initialized_tx);
while let Some(message) = message_rx.next().await {
if let Message::Event(event) = message {
if let Events::Initialized(_) = *event {
if let Some(tx) = initialized_tx.take() {
tx.send(()).ok();
}
} else {
let Ok(_) = this.update(cx, |session, cx| {
session.handle_dap_event(event, cx);
}) else {
break;
};
}
} else {
let Ok(Ok(_)) = this.update(cx, |this, _| {
this.start_debugging_requests_tx
.unbounded_send((session_id, message))
}) else {
break;
};
}
}
})];
self.background_tasks = background_tasks;
let id = self.id;
let parent_session = self.parent_session.clone();
cx.spawn(async move |this, cx| {
let mode = LocalMode::new(
id,
parent_session,
worktree.downgrade(),
breakpoint_store.clone(),
binary,
message_tx,
cx.clone(),
)
.await?;
this.update(cx, |this, cx| {
this.mode = Mode::Running(mode);
cx.emit(SessionStateEvent::Running);
})?;
this.update(cx, |session, cx| session.request_initialize(cx))?
.await?;
this.update(cx, |session, cx| {
session.initialize_sequence(initialized_rx, dap_store.clone(), cx)
})?
.await
})
}
pub fn session_id(&self) -> SessionId {
self.id
}
pub fn child_session_ids(&self) -> HashSet<SessionId> {
self.child_session_ids.clone()
}
pub fn add_child_session_id(&mut self, session_id: SessionId) {
self.child_session_ids.insert(session_id);
}
pub fn remove_child_session_id(&mut self, session_id: SessionId) {
self.child_session_ids.remove(&session_id);
}
pub fn parent_id(&self, cx: &App) -> Option<SessionId> {
self.parent_session
.as_ref()
.map(|session| session.read(cx).id)
}
pub fn parent_session(&self) -> Option<&Entity<Self>> {
self.parent_session.as_ref()
}
pub fn capabilities(&self) -> &Capabilities {
&self.capabilities
}
pub(crate) fn root_binary(&self) -> Arc<DebugAdapterBinary> {
match &self.mode {
Mode::Building => {
// todo(debugger): Implement root_binary for building mode
unimplemented!()
}
Mode::Running(running) => running
.root_binary
.clone()
.unwrap_or_else(|| Arc::new(running.binary.clone())),
}
}
pub fn binary(&self) -> &DebugAdapterBinary {
let Mode::Running(local_mode) = &self.mode else {
panic!("Session is not local");
};
&local_mode.binary
}
pub fn adapter_name(&self) -> SharedString {
self.definition.adapter.clone().into()
}
pub fn label(&self) -> String {
self.definition.label.clone()
}
pub fn definition(&self) -> DebugTaskDefinition {
self.definition.clone()
}
pub fn is_terminated(&self) -> bool {
self.is_session_terminated
}
pub fn is_local(&self) -> bool {
matches!(self.mode, Mode::Running(_))
}
pub fn as_local_mut(&mut self) -> Option<&mut LocalMode> {
match &mut self.mode {
Mode::Running(local_mode) => Some(local_mode),
Mode::Building => None,
}
}
pub fn as_local(&self) -> Option<&LocalMode> {
match &self.mode {
Mode::Running(local_mode) => Some(local_mode),
Mode::Building => None,
}
}
pub(super) fn request_initialize(&mut self, cx: &mut Context<Self>) -> Task<Result<()>> {
let adapter_id = self.definition.adapter.clone();
let request = Initialize { adapter_id };
match &self.mode {
Mode::Running(local_mode) => {
let capabilities = local_mode.request(request, cx.background_executor().clone());
cx.spawn(async move |this, cx| {
let capabilities = capabilities.await?;
this.update(cx, |session, cx| {
session.capabilities = capabilities;
let filters = session
.capabilities
.exception_breakpoint_filters
.clone()
.unwrap_or_default();
for filter in filters {
let default = filter.default.unwrap_or_default();
session
.exception_breakpoints
.entry(filter.filter.clone())
.or_insert_with(|| (filter, default));
}
cx.emit(SessionEvent::CapabilitiesLoaded);
})?;
Ok(())
})
}
Mode::Building => Task::ready(Err(anyhow!(
"Cannot send initialize request, task still building"
))),
}
}
pub(super) fn initialize_sequence(
&mut self,
initialize_rx: oneshot::Receiver<()>,
dap_store: WeakEntity<DapStore>,
cx: &mut Context<Self>,
) -> Task<Result<()>> {
match &self.mode {
Mode::Running(local_mode) => local_mode.initialize_sequence(
&self.capabilities,
&self.definition,
initialize_rx,
dap_store,
cx,
),
Mode::Building => Task::ready(Err(anyhow!("cannot initialize, still building"))),
}
}
pub fn run_to_position(
&mut self,
breakpoint: SourceBreakpoint,
active_thread_id: ThreadId,
cx: &mut Context<Self>,
) {
match &mut self.mode {
Mode::Running(local_mode) => {
if !matches!(
self.thread_states.thread_state(active_thread_id),
Some(ThreadStatus::Stopped)
) {
return;
};
let path = breakpoint.path.clone();
local_mode.tmp_breakpoint = Some(breakpoint);
let task = local_mode.send_breakpoints_from_path(
path,
BreakpointUpdatedReason::Toggled,
cx,
);
cx.spawn(async move |this, cx| {
task.await;
this.update(cx, |this, cx| {
this.continue_thread(active_thread_id, cx);
})
})
.detach();
}
Mode::Building => {}
}
}
pub fn has_new_output(&self, last_update: OutputToken) -> bool {
self.output_token.0.checked_sub(last_update.0).unwrap_or(0) != 0
}
pub fn output(
&self,
since: OutputToken,
) -> (impl Iterator<Item = &dap::OutputEvent>, OutputToken) {
if self.output_token.0 == 0 {
return (self.output.range(0..0), OutputToken(0));
};
let events_since = self.output_token.0.checked_sub(since.0).unwrap_or(0);
let clamped_events_since = events_since.clamp(0, self.output.len());
(
self.output
.range(self.output.len() - clamped_events_since..),
self.output_token,
)
}
pub fn respond_to_client(
&self,
request_seq: u64,
success: bool,
command: String,
body: Option<serde_json::Value>,
cx: &mut Context<Self>,
) -> Task<Result<()>> {
let Some(local_session) = self.as_local() else {
unreachable!("Cannot respond to remote client");
};
let client = local_session.client.clone();
cx.background_spawn(async move {
client
.send_message(Message::Response(Response {
body,
success,
command,
seq: request_seq + 1,
request_seq,
message: None,
}))
.await
})
}
fn handle_stopped_event(&mut self, event: StoppedEvent, cx: &mut Context<Self>) {
if let Some((local, path)) = self.as_local_mut().and_then(|local| {
let breakpoint = local.tmp_breakpoint.take()?;
let path = breakpoint.path.clone();
Some((local, path))
}) {
local
.send_breakpoints_from_path(path, BreakpointUpdatedReason::Toggled, cx)
.detach();
};
if event.all_threads_stopped.unwrap_or_default() || event.thread_id.is_none() {
self.thread_states.stop_all_threads();
self.invalidate_command_type::<StackTraceCommand>();
}
// Event if we stopped all threads we still need to insert the thread_id
// to our own data
if let Some(thread_id) = event.thread_id {
self.thread_states.stop_thread(ThreadId(thread_id));
self.invalidate_state(
&StackTraceCommand {
thread_id,
start_frame: None,
levels: None,
}
.into(),
);
}
self.invalidate_generic();
self.threads.clear();
self.variables.clear();
cx.emit(SessionEvent::Stopped(
event
.thread_id
.map(Into::into)
.filter(|_| !event.preserve_focus_hint.unwrap_or(false)),
));
cx.notify();
}
pub(crate) fn handle_dap_event(&mut self, event: Box<Events>, cx: &mut Context<Self>) {
match *event {
Events::Initialized(_) => {
debug_assert!(
false,
"Initialized event should have been handled in LocalMode"
);
}
Events::Stopped(event) => self.handle_stopped_event(event, cx),
Events::Continued(event) => {
if event.all_threads_continued.unwrap_or_default() {
self.thread_states.continue_all_threads();
} else {
self.thread_states
.continue_thread(ThreadId(event.thread_id));
}
// todo(debugger): We should be able to get away with only invalidating generic if all threads were continued
self.invalidate_generic();
}
Events::Exited(_event) => {
self.clear_active_debug_line(cx);
}
Events::Terminated(_) => {
self.is_session_terminated = true;
self.clear_active_debug_line(cx);
}
Events::Thread(event) => {
let thread_id = ThreadId(event.thread_id);
match event.reason {
dap::ThreadEventReason::Started => {
self.thread_states.continue_thread(thread_id);
}
dap::ThreadEventReason::Exited => {
self.thread_states.exit_thread(thread_id);
}
reason => {
log::error!("Unhandled thread event reason {:?}", reason);
}
}
self.invalidate_state(&ThreadsCommand.into());
cx.notify();
}
Events::Output(event) => {
if event
.category
.as_ref()
.is_some_and(|category| *category == OutputEventCategory::Telemetry)
{
return;
}
self.output.push_back(event);
self.output_token.0 += 1;
cx.notify();
}
Events::Breakpoint(_) => {}
Events::Module(event) => {
match event.reason {
dap::ModuleEventReason::New => {
self.modules.push(event.module);
}
dap::ModuleEventReason::Changed => {
if let Some(module) = self
.modules
.iter_mut()
.find(|other| event.module.id == other.id)
{
*module = event.module;
}
}
dap::ModuleEventReason::Removed => {
self.modules.retain(|other| event.module.id != other.id);
}
}
// todo(debugger): We should only send the invalidate command to downstream clients.
// self.invalidate_state(&ModulesCommand.into());
}
Events::LoadedSource(_) => {
self.invalidate_state(&LoadedSourcesCommand.into());
}
Events::Capabilities(event) => {
self.capabilities = self.capabilities.merge(event.capabilities);
cx.notify();
}
Events::Memory(_) => {}
Events::Process(_) => {}
Events::ProgressEnd(_) => {}
Events::ProgressStart(_) => {}
Events::ProgressUpdate(_) => {}
Events::Invalidated(_) => {}
Events::Other(_) => {}
}
}
/// Ensure that there's a request in flight for the given command, and if not, send it. Use this to run requests that are idempotent.
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,
cx: &mut Context<Self>,
) {
const {
assert!(
T::CACHEABLE,
"Only requests marked as cacheable should invoke `fetch`"
);
}
if !self.thread_states.any_stopped_thread()
&& request.type_id() != TypeId::of::<ThreadsCommand>()
|| self.is_session_terminated
{
return;
}
let request_map = self
.requests
.entry(std::any::TypeId::of::<T>())
.or_default();
if let Entry::Vacant(vacant) = request_map.entry(request.into()) {
let command = vacant.key().0.clone().as_any_arc().downcast::<T>().unwrap();
let task = Self::request_inner::<Arc<T>>(
&self.capabilities,
&self.mode,
command,
process_result,
cx,
);
let task = cx
.background_executor()
.spawn(async move {
let _ = task.await?;
Some(())
})
.shared();
vacant.insert(task);
cx.notify();
}
}
fn request_inner<T: DapCommand + PartialEq + Eq + Hash>(
capabilities: &Capabilities,
mode: &Mode,
request: T,
process_result: impl FnOnce(
&mut Self,
Result<T::Response>,
&mut Context<Self>,
) -> Option<T::Response>
+ 'static,
cx: &mut Context<Self>,
) -> Task<Option<T::Response>> {
if !T::is_supported(&capabilities) {
log::warn!(
"Attempted to send a DAP request that isn't supported: {:?}",
request
);
let error = Err(anyhow::Error::msg(
"Couldn't complete request because it's not supported",
));
return cx.spawn(async move |this, cx| {
this.update(cx, |this, cx| process_result(this, error, cx))
.log_err()
.flatten()
});
}
let request = mode.request_dap(request, cx);
cx.spawn(async move |this, cx| {
let result = request.await;
this.update(cx, |this, cx| process_result(this, result, cx))
.log_err()
.flatten()
})
}
fn request<T: DapCommand + PartialEq + Eq + Hash>(
&self,
request: T,
process_result: impl FnOnce(
&mut Self,
Result<T::Response>,
&mut Context<Self>,
) -> Option<T::Response>
+ 'static,
cx: &mut Context<Self>,
) -> Task<Option<T::Response>> {
Self::request_inner(&self.capabilities, &self.mode, request, process_result, cx)
}
fn invalidate_command_type<Command: DapCommand>(&mut self) {
self.requests.remove(&std::any::TypeId::of::<Command>());
}
fn invalidate_generic(&mut self) {
self.invalidate_command_type::<ModulesCommand>();
self.invalidate_command_type::<LoadedSourcesCommand>();
self.invalidate_command_type::<ThreadsCommand>();
}
fn invalidate_state(&mut self, key: &RequestSlot) {
self.requests
.entry((&*key.0 as &dyn Any).type_id())
.and_modify(|request_map| {
request_map.remove(&key);
});
}
pub fn thread_status(&self, thread_id: ThreadId) -> ThreadStatus {
self.thread_states.thread_status(thread_id)
}
pub fn threads(&mut self, cx: &mut Context<Self>) -> Vec<(dap::Thread, ThreadStatus)> {
self.fetch(
dap_command::ThreadsCommand,
|this, result, cx| {
let result = result.log_err()?;
this.threads = result
.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,
);
self.threads
.values()
.map(|thread| {
(
thread.dap.clone(),
self.thread_states.thread_status(ThreadId(thread.dap.id)),
)
})
.collect()
}
pub fn modules(&mut self, cx: &mut Context<Self>) -> &[Module] {
self.fetch(
dap_command::ModulesCommand,
|this, result, cx| {
let result = result.log_err()?;
this.modules = result.iter().cloned().collect();
cx.emit(SessionEvent::Modules);
cx.notify();
Some(result)
},
cx,
);
&self.modules
}
pub fn ignore_breakpoints(&self) -> bool {
self.ignore_breakpoints
}
pub fn toggle_ignore_breakpoints(
&mut self,
cx: &mut App,
) -> Task<HashMap<Arc<Path>, anyhow::Error>> {
self.set_ignore_breakpoints(!self.ignore_breakpoints, cx)
}
pub(crate) fn set_ignore_breakpoints(
&mut self,
ignore: bool,
cx: &mut App,
) -> Task<HashMap<Arc<Path>, anyhow::Error>> {
if self.ignore_breakpoints == ignore {
return Task::ready(HashMap::default());
}
self.ignore_breakpoints = ignore;
if let Some(local) = self.as_local() {
local.send_source_breakpoints(ignore, cx)
} else {
// todo(debugger): We need to propagate this change to downstream sessions and send a message to upstream sessions
unimplemented!()
}
}
pub fn exception_breakpoints(
&self,
) -> impl Iterator<Item = &(ExceptionBreakpointsFilter, IsEnabled)> {
self.exception_breakpoints.values()
}
pub fn toggle_exception_breakpoint(&mut self, id: &str, cx: &App) {
if let Some((_, is_enabled)) = self.exception_breakpoints.get_mut(id) {
*is_enabled = !*is_enabled;
self.send_exception_breakpoints(cx);
}
}
fn send_exception_breakpoints(&mut self, cx: &App) {
if let Some(local) = self.as_local() {
let exception_filters = self
.exception_breakpoints
.values()
.filter_map(|(filter, is_enabled)| is_enabled.then(|| filter.clone()))
.collect();
let supports_exception_filters = self
.capabilities
.supports_exception_filter_options
.unwrap_or_default();
local
.send_exception_breakpoints(exception_filters, supports_exception_filters, cx)
.detach_and_log_err(cx);
} else {
debug_assert!(false, "Not implemented");
}
}
pub fn breakpoints_enabled(&self) -> bool {
self.ignore_breakpoints
}
pub fn loaded_sources(&mut self, cx: &mut Context<Self>) -> &[Source] {
self.fetch(
dap_command::LoadedSourcesCommand,
|this, result, cx| {
let result = result.log_err()?;
this.loaded_sources = result.iter().cloned().collect();
cx.emit(SessionEvent::LoadedSources);
cx.notify();
Some(result)
},
cx,
);
&self.loaded_sources
}
fn fallback_to_manual_restart(
&mut self,
res: Result<()>,
cx: &mut Context<Self>,
) -> Option<()> {
if res.log_err().is_none() {
cx.emit(SessionStateEvent::Restart);
return None;
}
Some(())
}
fn empty_response(&mut self, res: Result<()>, _cx: &mut Context<Self>) -> Option<()> {
res.log_err()?;
Some(())
}
fn on_step_response<T: DapCommand + PartialEq + Eq + Hash>(
thread_id: ThreadId,
) -> impl FnOnce(&mut Self, Result<T::Response>, &mut Context<Self>) -> Option<T::Response> + 'static
{
move |this, response, cx| match response.log_err() {
Some(response) => Some(response),
None => {
this.thread_states.stop_thread(thread_id);
cx.notify();
None
}
}
}
fn clear_active_debug_line_response(
&mut self,
response: Result<()>,
cx: &mut Context<Session>,
) -> Option<()> {
response.log_err()?;
self.clear_active_debug_line(cx);
Some(())
}
fn clear_active_debug_line(&mut self, cx: &mut Context<Session>) {
self.as_local()
.expect("Message handler will only run in local mode")
.breakpoint_store
.update(cx, |store, cx| {
store.remove_active_position(Some(self.id), cx)
});
}
pub fn pause_thread(&mut self, thread_id: ThreadId, cx: &mut Context<Self>) {
self.request(
PauseCommand {
thread_id: thread_id.0,
},
Self::empty_response,
cx,
)
.detach();
}
pub fn restart_stack_frame(&mut self, stack_frame_id: u64, cx: &mut Context<Self>) {
self.request(
RestartStackFrameCommand { stack_frame_id },
Self::empty_response,
cx,
)
.detach();
}
pub fn restart(&mut self, args: Option<Value>, cx: &mut Context<Self>) {
if self.capabilities.supports_restart_request.unwrap_or(false) && !self.is_terminated() {
self.request(
RestartCommand {
raw: args.unwrap_or(Value::Null),
},
Self::fallback_to_manual_restart,
cx,
)
.detach();
} else {
cx.emit(SessionStateEvent::Restart);
}
}
pub fn shutdown(&mut self, cx: &mut Context<Self>) -> Task<()> {
self.is_session_terminated = true;
self.thread_states.exit_all_threads();
cx.notify();
let task = if self
.capabilities
.supports_terminate_request
.unwrap_or_default()
{
self.request(
TerminateCommand {
restart: Some(false),
},
Self::clear_active_debug_line_response,
cx,
)
} else {
self.request(
DisconnectCommand {
restart: Some(false),
terminate_debuggee: Some(true),
suspend_debuggee: Some(false),
},
Self::clear_active_debug_line_response,
cx,
)
};
cx.emit(SessionStateEvent::Shutdown);
let debug_client = self.adapter_client();
cx.background_spawn(async move {
let _ = task.await;
if let Some(client) = debug_client {
client.shutdown().await.log_err();
}
})
}
pub fn completions(
&mut self,
query: CompletionsQuery,
cx: &mut Context<Self>,
) -> Task<Result<Vec<dap::CompletionItem>>> {
let task = self.request(query, |_, result, _| result.log_err(), cx);
cx.background_executor().spawn(async move {
anyhow::Ok(
task.await
.map(|response| response.targets)
.ok_or_else(|| anyhow!("failed to fetch completions"))?,
)
})
}
pub fn continue_thread(&mut self, thread_id: ThreadId, cx: &mut Context<Self>) {
self.thread_states.continue_thread(thread_id);
self.request(
ContinueCommand {
args: ContinueArguments {
thread_id: thread_id.0,
single_thread: Some(true),
},
},
Self::on_step_response::<ContinueCommand>(thread_id),
cx,
)
.detach();
}
pub fn adapter_client(&self) -> Option<Arc<DebugAdapterClient>> {
match self.mode {
Mode::Running(ref local) => Some(local.client.clone()),
Mode::Building => None,
}
}
pub fn step_over(
&mut self,
thread_id: ThreadId,
granularity: SteppingGranularity,
cx: &mut Context<Self>,
) {
let supports_single_thread_execution_requests =
self.capabilities.supports_single_thread_execution_requests;
let supports_stepping_granularity = self
.capabilities
.supports_stepping_granularity
.unwrap_or_default();
let command = NextCommand {
inner: StepCommand {
thread_id: thread_id.0,
granularity: supports_stepping_granularity.then(|| granularity),
single_thread: supports_single_thread_execution_requests,
},
};
self.thread_states.process_step(thread_id);
self.request(
command,
Self::on_step_response::<NextCommand>(thread_id),
cx,
)
.detach();
}
pub fn step_in(
&mut self,
thread_id: ThreadId,
granularity: SteppingGranularity,
cx: &mut Context<Self>,
) {
let supports_single_thread_execution_requests =
self.capabilities.supports_single_thread_execution_requests;
let supports_stepping_granularity = self
.capabilities
.supports_stepping_granularity
.unwrap_or_default();
let command = StepInCommand {
inner: StepCommand {
thread_id: thread_id.0,
granularity: supports_stepping_granularity.then(|| granularity),
single_thread: supports_single_thread_execution_requests,
},
};
self.thread_states.process_step(thread_id);
self.request(
command,
Self::on_step_response::<StepInCommand>(thread_id),
cx,
)
.detach();
}
pub fn step_out(
&mut self,
thread_id: ThreadId,
granularity: SteppingGranularity,
cx: &mut Context<Self>,
) {
let supports_single_thread_execution_requests =
self.capabilities.supports_single_thread_execution_requests;
let supports_stepping_granularity = self
.capabilities
.supports_stepping_granularity
.unwrap_or_default();
let command = StepOutCommand {
inner: StepCommand {
thread_id: thread_id.0,
granularity: supports_stepping_granularity.then(|| granularity),
single_thread: supports_single_thread_execution_requests,
},
};
self.thread_states.process_step(thread_id);
self.request(
command,
Self::on_step_response::<StepOutCommand>(thread_id),
cx,
)
.detach();
}
pub fn step_back(
&mut self,
thread_id: ThreadId,
granularity: SteppingGranularity,
cx: &mut Context<Self>,
) {
let supports_single_thread_execution_requests =
self.capabilities.supports_single_thread_execution_requests;
let supports_stepping_granularity = self
.capabilities
.supports_stepping_granularity
.unwrap_or_default();
let command = StepBackCommand {
inner: StepCommand {
thread_id: thread_id.0,
granularity: supports_stepping_granularity.then(|| granularity),
single_thread: supports_single_thread_execution_requests,
},
};
self.thread_states.process_step(thread_id);
self.request(
command,
Self::on_step_response::<StepBackCommand>(thread_id),
cx,
)
.detach();
}
pub fn stack_frames(&mut self, thread_id: ThreadId, cx: &mut Context<Self>) -> 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)
// ^ todo(debugger): We need a better way to check that we're not querying stale data
// We could still be using an old thread id and have sent a new thread's request
// This isn't the biggest concern right now because it hasn't caused any issues outside of tests
// But it very well could cause a minor bug in the future that is hard to track down
{
self.fetch(
super::dap_command::StackTraceCommand {
thread_id: thread_id.0,
start_frame: None,
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_frame_ids =
stack_frames.iter().map(|frame| frame.id).collect();
});
debug_assert!(
matches!(entry, indexmap::map::Entry::Occupied(_)),
"Sent request for thread_id that doesn't exist"
);
this.stack_frames.extend(
stack_frames
.iter()
.cloned()
.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_frame_ids
.iter()
.filter_map(|id| self.stack_frames.get(id))
.cloned()
.collect()
})
.unwrap_or_default()
}
pub fn scopes(&mut self, stack_frame_id: u64, cx: &mut Context<Self>) -> &[dap::Scope] {
if self.requests.contains_key(&TypeId::of::<ThreadsCommand>())
&& self
.requests
.contains_key(&TypeId::of::<StackTraceCommand>())
{
self.fetch(
ScopesCommand { stack_frame_id },
move |this, scopes, cx| {
let scopes = scopes.log_err()?;
for scope in scopes .iter(){
this.variables(scope.variables_reference, cx);
}
let entry = this
.stack_frames
.entry(stack_frame_id)
.and_modify(|stack_frame| {
stack_frame.scopes = scopes.clone();
});
cx.emit(SessionEvent::Variables);
debug_assert!(
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,
);
}
self.stack_frames
.get(&stack_frame_id)
.map(|frame| frame.scopes.as_slice())
.unwrap_or_default()
}
pub fn variables(
&mut self,
variables_reference: VariableReference,
cx: &mut Context<Self>,
) -> Vec<dap::Variable> {
let command = VariablesCommand {
variables_reference,
filter: None,
start: None,
count: None,
format: None,
};
self.fetch(
command,
move |this, variables, cx| {
let variables = variables.log_err()?;
this.variables
.insert(variables_reference, variables.clone());
cx.emit(SessionEvent::Variables);
Some(variables)
},
cx,
);
self.variables
.get(&variables_reference)
.cloned()
.unwrap_or_default()
}
pub fn set_variable_value(
&mut self,
variables_reference: u64,
name: String,
value: String,
cx: &mut Context<Self>,
) {
if self.capabilities.supports_set_variable.unwrap_or_default() {
self.request(
SetVariableValueCommand {
name,
value,
variables_reference,
},
move |this, response, cx| {
let response = response.log_err()?;
this.invalidate_command_type::<VariablesCommand>();
cx.notify();
Some(response)
},
cx,
)
.detach()
}
}
pub fn evaluate(
&mut self,
expression: String,
context: Option<EvaluateArgumentsContext>,
frame_id: Option<u64>,
source: Option<Source>,
cx: &mut Context<Self>,
) {
self.request(
EvaluateCommand {
expression,
context,
frame_id,
source,
},
|this, response, cx| {
let response = response.log_err()?;
this.output_token.0 += 1;
this.output.push_back(dap::OutputEvent {
category: None,
output: response.result.clone(),
group: None,
variables_reference: Some(response.variables_reference),
source: None,
line: None,
column: None,
data: None,
location_reference: None,
});
this.invalidate_command_type::<ScopesCommand>();
cx.notify();
Some(response)
},
cx,
)
.detach();
}
pub fn location(
&mut self,
reference: u64,
cx: &mut Context<Self>,
) -> Option<dap::LocationsResponse> {
self.fetch(
LocationsCommand { reference },
move |this, response, _| {
let response = response.log_err()?;
this.locations.insert(reference, response.clone());
Some(response)
},
cx,
);
self.locations.get(&reference).cloned()
}
pub fn disconnect_client(&mut self, cx: &mut Context<Self>) {
let command = DisconnectCommand {
restart: Some(false),
terminate_debuggee: Some(true),
suspend_debuggee: Some(false),
};
self.request(command, Self::empty_response, cx).detach()
}
pub fn terminate_threads(&mut self, thread_ids: Option<Vec<ThreadId>>, cx: &mut Context<Self>) {
if self
.capabilities
.supports_terminate_threads_request
.unwrap_or_default()
{
self.request(
TerminateThreadsCommand {
thread_ids: thread_ids.map(|ids| ids.into_iter().map(|id| id.0).collect()),
},
Self::clear_active_debug_line_response,
cx,
)
.detach();
} else {
self.shutdown(cx).detach();
}
}
}