diff options
author | Aleksey Kladov <[email protected]> | 2018-08-27 20:03:19 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2018-08-27 20:03:19 +0100 |
commit | 57518153147ad53639f16cc940d219dc582c550a (patch) | |
tree | 5c1708cf8ea4e2344c8dfc96af82343be0b0271c /crates/server/src/main_loop | |
parent | b79c8b6d8a3b38c94de992a54ffb9055c1ad6f31 (diff) |
Add runnables
Diffstat (limited to 'crates/server/src/main_loop')
-rw-r--r-- | crates/server/src/main_loop/handlers.rs | 50 | ||||
-rw-r--r-- | crates/server/src/main_loop/mod.rs | 4 |
2 files changed, 54 insertions, 0 deletions
diff --git a/crates/server/src/main_loop/handlers.rs b/crates/server/src/main_loop/handlers.rs index 350eda7df..583af0900 100644 --- a/crates/server/src/main_loop/handlers.rs +++ b/crates/server/src/main_loop/handlers.rs | |||
@@ -204,6 +204,56 @@ pub fn handle_code_action( | |||
204 | return Ok(Some(res)); | 204 | return Ok(Some(res)); |
205 | } | 205 | } |
206 | 206 | ||
207 | pub fn handle_runnables( | ||
208 | world: ServerWorld, | ||
209 | params: req::RunnablesParams, | ||
210 | ) -> Result<Vec<req::Runnable>> { | ||
211 | let file_id = params.text_document.try_conv_with(&world)?; | ||
212 | let file = world.analysis().file_syntax(file_id)?; | ||
213 | let line_index = world.analysis().file_line_index(file_id)?; | ||
214 | let offset = params.position.map(|it| it.conv_with(&line_index)); | ||
215 | let mut res = Vec::new(); | ||
216 | for runnable in libeditor::runnables(&file) { | ||
217 | if let Some(offset) = offset { | ||
218 | if !contains_offset_nonstrict(runnable.range, offset) { | ||
219 | continue; | ||
220 | } | ||
221 | } | ||
222 | |||
223 | let r = req::Runnable { | ||
224 | range: runnable.range.conv_with(&line_index), | ||
225 | label: match &runnable.kind { | ||
226 | libeditor::RunnableKind::Test { name } => | ||
227 | format!("test {}", name), | ||
228 | libeditor::RunnableKind::Bin => | ||
229 | "run binary".to_string(), | ||
230 | }, | ||
231 | bin: "cargo".to_string(), | ||
232 | args: match runnable.kind { | ||
233 | libeditor::RunnableKind::Test { name } => { | ||
234 | vec![ | ||
235 | "test".to_string(), | ||
236 | "--".to_string(), | ||
237 | name, | ||
238 | "--nocapture".to_string(), | ||
239 | ] | ||
240 | } | ||
241 | libeditor::RunnableKind::Bin => vec!["run".to_string()] | ||
242 | }, | ||
243 | env: { | ||
244 | let mut m = HashMap::new(); | ||
245 | m.insert( | ||
246 | "RUST_BACKTRACE".to_string(), | ||
247 | "short".to_string(), | ||
248 | ); | ||
249 | m | ||
250 | } | ||
251 | }; | ||
252 | res.push(r); | ||
253 | } | ||
254 | return Ok(res); | ||
255 | } | ||
256 | |||
207 | pub fn handle_workspace_symbol( | 257 | pub fn handle_workspace_symbol( |
208 | world: ServerWorld, | 258 | world: ServerWorld, |
209 | params: req::WorkspaceSymbolParams, | 259 | params: req::WorkspaceSymbolParams, |
diff --git a/crates/server/src/main_loop/mod.rs b/crates/server/src/main_loop/mod.rs index 5213ecc04..6d6ca6ae9 100644 --- a/crates/server/src/main_loop/mod.rs +++ b/crates/server/src/main_loop/mod.rs | |||
@@ -29,6 +29,7 @@ use { | |||
29 | handle_parent_module, | 29 | handle_parent_module, |
30 | handle_join_lines, | 30 | handle_join_lines, |
31 | handle_completion, | 31 | handle_completion, |
32 | handle_runnables, | ||
32 | }, | 33 | }, |
33 | }; | 34 | }; |
34 | 35 | ||
@@ -138,6 +139,9 @@ fn on_request( | |||
138 | handle_request_on_threadpool::<req::CodeActionRequest>( | 139 | handle_request_on_threadpool::<req::CodeActionRequest>( |
139 | &mut req, pool, world, sender, handle_code_action, | 140 | &mut req, pool, world, sender, handle_code_action, |
140 | )?; | 141 | )?; |
142 | handle_request_on_threadpool::<req::Runnables>( | ||
143 | &mut req, pool, world, sender, handle_runnables, | ||
144 | )?; | ||
141 | handle_request_on_threadpool::<req::WorkspaceSymbol>( | 145 | handle_request_on_threadpool::<req::WorkspaceSymbol>( |
142 | &mut req, pool, world, sender, handle_workspace_symbol, | 146 | &mut req, pool, world, sender, handle_workspace_symbol, |
143 | )?; | 147 | )?; |