mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
dap-basic: handle output events
This commit is contained in:
parent
c72475bc30
commit
09390be6a5
3 changed files with 26 additions and 2 deletions
|
@ -1,5 +1,7 @@
|
||||||
use helix_dap::{Client, Result, SourceBreakpoint};
|
use helix_dap::{Client, Event, OutputEventBody, Result, SourceBreakpoint};
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize, Serialize};
|
||||||
|
use serde_json::from_value;
|
||||||
|
use tokio::sync::mpsc::Receiver;
|
||||||
|
|
||||||
#[derive(Debug, PartialEq, Clone, Deserialize, Serialize)]
|
#[derive(Debug, PartialEq, Clone, Deserialize, Serialize)]
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
|
@ -8,6 +10,12 @@ struct LaunchArguments {
|
||||||
program: String,
|
program: String,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async fn output(mut output_event: Receiver<Event>) {
|
||||||
|
let body: OutputEventBody =
|
||||||
|
from_value(output_event.recv().await.unwrap().body.unwrap()).unwrap();
|
||||||
|
println!("{:?}", body);
|
||||||
|
}
|
||||||
|
|
||||||
#[tokio::main]
|
#[tokio::main]
|
||||||
pub async fn main() -> Result<()> {
|
pub async fn main() -> Result<()> {
|
||||||
let base_config = fern::Dispatch::new().level(log::LevelFilter::Info);
|
let base_config = fern::Dispatch::new().level(log::LevelFilter::Info);
|
||||||
|
@ -25,6 +33,9 @@ pub async fn main() -> Result<()> {
|
||||||
println!("create: {:?}", client);
|
println!("create: {:?}", client);
|
||||||
let mut client = client?;
|
let mut client = client?;
|
||||||
|
|
||||||
|
let output_event = client.listen_for_event("output".to_owned()).await;
|
||||||
|
tokio::spawn(output(output_event));
|
||||||
|
|
||||||
println!("init: {:?}", client.initialize("go".to_owned()).await);
|
println!("init: {:?}", client.initialize("go".to_owned()).await);
|
||||||
println!("caps: {:#?}", client.capabilities());
|
println!("caps: {:#?}", client.capabilities());
|
||||||
|
|
||||||
|
|
|
@ -254,6 +254,19 @@ struct VariablesResponseBody {
|
||||||
variables: Vec<Variable>,
|
variables: Vec<Variable>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, PartialEq, Clone, Deserialize, Serialize)]
|
||||||
|
#[serde(rename_all = "camelCase")]
|
||||||
|
pub struct OutputEventBody {
|
||||||
|
pub output: String,
|
||||||
|
pub category: Option<String>,
|
||||||
|
pub group: Option<String>,
|
||||||
|
pub line: Option<usize>,
|
||||||
|
pub column: Option<usize>,
|
||||||
|
pub variables_reference: Option<usize>,
|
||||||
|
pub source: Option<Source>,
|
||||||
|
pub data: Option<Value>,
|
||||||
|
}
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Client {
|
pub struct Client {
|
||||||
id: usize,
|
id: usize,
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
mod client;
|
mod client;
|
||||||
mod transport;
|
mod transport;
|
||||||
|
|
||||||
pub use client::{Breakpoint, Client, SourceBreakpoint};
|
pub use client::{Breakpoint, Client, OutputEventBody, SourceBreakpoint};
|
||||||
pub use transport::{Event, Payload, Request, Response, Transport};
|
pub use transport::{Event, Payload, Request, Response, Transport};
|
||||||
|
|
||||||
use thiserror::Error;
|
use thiserror::Error;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue