diff options
author | Edwin Cheng <[email protected]> | 2020-04-01 06:11:26 +0100 |
---|---|---|
committer | Edwin Cheng <[email protected]> | 2020-04-03 12:01:44 +0100 |
commit | 84fb9b44c3b06e1a542608570bb6d7212c8505b7 (patch) | |
tree | e959b5bfef78d08b622e37fabdbe2f630abb7a87 /crates/ra_proc_macro_srv/src | |
parent | ac91de1525662a602a1057709eb91a9b21ea3ac7 (diff) |
Introduce ra_proc_macro_srv
Diffstat (limited to 'crates/ra_proc_macro_srv/src')
-rw-r--r-- | crates/ra_proc_macro_srv/src/lib.rs | 21 | ||||
-rw-r--r-- | crates/ra_proc_macro_srv/src/main.rs | 53 |
2 files changed, 74 insertions, 0 deletions
diff --git a/crates/ra_proc_macro_srv/src/lib.rs b/crates/ra_proc_macro_srv/src/lib.rs new file mode 100644 index 000000000..f77be1475 --- /dev/null +++ b/crates/ra_proc_macro_srv/src/lib.rs | |||
@@ -0,0 +1,21 @@ | |||
1 | //! RA Proc Macro Server | ||
2 | //! | ||
3 | //! This library is able to call compiled Rust custom derive dynamic libraries on arbitrary code. | ||
4 | //! The general idea here is based on https://github.com/fedochet/rust-proc-macro-expander. | ||
5 | //! | ||
6 | //! But we change some several design for fitting RA needs: | ||
7 | //! | ||
8 | //! * We use `ra_tt` for proc-macro `TokenStream` server, it is easy to manipute and interact with | ||
9 | //! RA then proc-macro2 token stream. | ||
10 | //! * By **copying** the whole rustc `lib_proc_macro` code, we are able to build this with `stable` | ||
11 | //! rustc rather than `unstable`. (Although in gerenal ABI compatibility is still an issue) | ||
12 | |||
13 | use ra_proc_macro::{ExpansionResult, ExpansionTask, ListMacrosResult, ListMacrosTask}; | ||
14 | |||
15 | pub fn expand_task(_task: &ExpansionTask) -> Result<ExpansionResult, String> { | ||
16 | unimplemented!() | ||
17 | } | ||
18 | |||
19 | pub fn list_macros(_task: &ListMacrosTask) -> Result<ListMacrosResult, String> { | ||
20 | unimplemented!() | ||
21 | } | ||
diff --git a/crates/ra_proc_macro_srv/src/main.rs b/crates/ra_proc_macro_srv/src/main.rs new file mode 100644 index 000000000..54ce0224d --- /dev/null +++ b/crates/ra_proc_macro_srv/src/main.rs | |||
@@ -0,0 +1,53 @@ | |||
1 | use ra_proc_macro::msg::{self, Message}; | ||
2 | use ra_proc_macro_srv::{expand_task, list_macros}; | ||
3 | |||
4 | use std::io; | ||
5 | |||
6 | fn read_request() -> Result<Option<msg::Request>, io::Error> { | ||
7 | let stdin = io::stdin(); | ||
8 | let mut stdin = stdin.lock(); | ||
9 | msg::Request::read(&mut stdin) | ||
10 | } | ||
11 | |||
12 | fn write_response(res: Result<msg::Response, String>) -> Result<(), io::Error> { | ||
13 | let msg: msg::Response = match res { | ||
14 | Ok(res) => res, | ||
15 | Err(err) => msg::Response::Error(msg::ResponseError { | ||
16 | code: msg::ErrorCode::ExpansionError, | ||
17 | message: err, | ||
18 | }), | ||
19 | }; | ||
20 | |||
21 | let stdout = io::stdout(); | ||
22 | let mut stdout = stdout.lock(); | ||
23 | msg.write(&mut stdout) | ||
24 | } | ||
25 | fn main() { | ||
26 | loop { | ||
27 | let req = match read_request() { | ||
28 | Err(err) => { | ||
29 | eprintln!("Read message error on ra_proc_macro_srv: {}", err.to_string()); | ||
30 | continue; | ||
31 | } | ||
32 | Ok(None) => continue, | ||
33 | Ok(Some(req)) => req, | ||
34 | }; | ||
35 | |||
36 | match req { | ||
37 | msg::Request::ListMacro(task) => { | ||
38 | if let Err(err) = | ||
39 | write_response(list_macros(&task).map(|it| msg::Response::ListMacro(it))) | ||
40 | { | ||
41 | eprintln!("Write message error on list macro: {}", err); | ||
42 | } | ||
43 | } | ||
44 | msg::Request::ExpansionMacro(task) => { | ||
45 | if let Err(err) = | ||
46 | write_response(expand_task(&task).map(|it| msg::Response::ExpansionMacro(it))) | ||
47 | { | ||
48 | eprintln!("Write message error on expansion macro: {}", err); | ||
49 | } | ||
50 | } | ||
51 | } | ||
52 | } | ||
53 | } | ||