aboutsummaryrefslogtreecommitdiff
path: root/helix-dap/src/client.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-dap/src/client.rs')
-rw-r--r--helix-dap/src/client.rs28
1 files changed, 23 insertions, 5 deletions
diff --git a/helix-dap/src/client.rs b/helix-dap/src/client.rs
index 10d93180..f6d8a069 100644
--- a/helix-dap/src/client.rs
+++ b/helix-dap/src/client.rs
@@ -1,4 +1,5 @@
use crate::{
+ requests::DisconnectArguments,
transport::{Payload, Request, Response, Transport},
types::*,
Error, Result, ThreadId,
@@ -31,6 +32,7 @@ pub struct Client {
_process: Option<Child>,
server_tx: UnboundedSender<Payload>,
request_counter: AtomicU64,
+ connection_type: Option<ConnectionType>,
pub caps: Option<DebuggerCapabilities>,
// thread_id -> frames
pub stack_frames: HashMap<ThreadId, Vec<StackFrame>>,
@@ -41,6 +43,12 @@ pub struct Client {
pub quirks: DebuggerQuirks,
}
+#[derive(Clone, Copy, Debug)]
+pub enum ConnectionType {
+ Launch,
+ Attach,
+}
+
impl Client {
// Spawn a process and communicate with it by either TCP or stdio
pub async fn process(
@@ -78,7 +86,7 @@ impl Client {
server_tx,
request_counter: AtomicU64::new(0),
caps: None,
- //
+ connection_type: None,
stack_frames: HashMap::new(),
thread_states: HashMap::new(),
thread_id: None,
@@ -207,6 +215,10 @@ impl Client {
self.id
}
+ pub fn connection_type(&self) -> Option<ConnectionType> {
+ self.connection_type
+ }
+
fn next_request_id(&self) -> u64 {
self.request_counter.fetch_add(1, Ordering::Relaxed)
}
@@ -334,15 +346,21 @@ impl Client {
Ok(())
}
- pub fn disconnect(&self) -> impl Future<Output = Result<Value>> {
- self.call::<requests::Disconnect>(())
+ pub fn disconnect(
+ &mut self,
+ args: Option<DisconnectArguments>,
+ ) -> impl Future<Output = Result<Value>> {
+ self.connection_type = None;
+ self.call::<requests::Disconnect>(args)
}
- pub fn launch(&self, args: serde_json::Value) -> impl Future<Output = Result<Value>> {
+ pub fn launch(&mut self, args: serde_json::Value) -> impl Future<Output = Result<Value>> {
+ self.connection_type = Some(ConnectionType::Launch);
self.call::<requests::Launch>(args)
}
- pub fn attach(&self, args: serde_json::Value) -> impl Future<Output = Result<Value>> {
+ pub fn attach(&mut self, args: serde_json::Value) -> impl Future<Output = Result<Value>> {
+ self.connection_type = Some(ConnectionType::Attach);
self.call::<requests::Attach>(args)
}