dap: Reply to RunInTerminal

This commit is contained in:
Blaž Hrastnik 2021-12-05 14:43:34 +09:00
parent d5d1a9b1ae
commit 2b4de41bf0
3 changed files with 160 additions and 143 deletions

View file

@ -262,10 +262,11 @@ impl Client {
pub fn reply(
&self,
request_seq: u64,
command: String,
command: &str,
result: core::result::Result<Value, Error>,
) -> impl Future<Output = Result<()>> {
let server_tx = self.server_tx.clone();
let command = command.to_string();
async move {
let response = match result {

View file

@ -545,11 +545,11 @@ pub mod requests {
// Reverse Requests
#[derive(Debug, PartialEq, Clone, Deserialize, Serialize)]
#[derive(Debug, Default, PartialEq, Clone, Deserialize, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct RunInTerminalResponse {
pub process_id: Option<usize>,
pub shell_process_id: Option<usize>,
pub process_id: Option<u32>,
pub shell_process_id: Option<u32>,
}
#[derive(Debug, PartialEq, Clone, Deserialize, Serialize)]
@ -557,7 +557,7 @@ pub mod requests {
pub struct RunInTerminalArguments {
pub kind: Option<String>,
pub title: Option<String>,
pub cwd: String,
pub cwd: Option<String>,
pub args: Vec<String>,
pub env: Option<HashMap<String, Option<String>>>,
}