diff options
Diffstat (limited to 'crates/ra_proc_macro_srv')
-rw-r--r-- | crates/ra_proc_macro_srv/Cargo.toml | 21 | ||||
-rw-r--r-- | crates/ra_proc_macro_srv/src/lib.rs | 21 | ||||
-rw-r--r-- | crates/ra_proc_macro_srv/src/main.rs | 55 |
3 files changed, 97 insertions, 0 deletions
diff --git a/crates/ra_proc_macro_srv/Cargo.toml b/crates/ra_proc_macro_srv/Cargo.toml new file mode 100644 index 000000000..315191cc5 --- /dev/null +++ b/crates/ra_proc_macro_srv/Cargo.toml | |||
@@ -0,0 +1,21 @@ | |||
1 | [package] | ||
2 | edition = "2018" | ||
3 | name = "ra_proc_macro_srv" | ||
4 | version = "0.1.0" | ||
5 | authors = ["rust-analyzer developers"] | ||
6 | publish = false | ||
7 | |||
8 | [lib] | ||
9 | doctest = false | ||
10 | |||
11 | [dependencies] | ||
12 | ra_tt = { path = "../ra_tt" } | ||
13 | ra_proc_macro = { path = "../ra_proc_macro" } | ||
14 | |||
15 | serde_derive = "1.0.104" | ||
16 | serde = "1.0.104" | ||
17 | serde_json = "1.0.48" | ||
18 | |||
19 | [dev-dependencies] | ||
20 | cargo_metadata = "0.9.1" | ||
21 | difference = "2.0.0" | ||
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..70743c1f4 --- /dev/null +++ b/crates/ra_proc_macro_srv/src/main.rs | |||
@@ -0,0 +1,55 @@ | |||
1 | //! Driver for proc macro server | ||
2 | |||
3 | use ra_proc_macro::msg::{self, Message}; | ||
4 | use ra_proc_macro_srv::{expand_task, list_macros}; | ||
5 | |||
6 | use std::io; | ||
7 | |||
8 | fn read_request() -> Result<Option<msg::Request>, io::Error> { | ||
9 | let stdin = io::stdin(); | ||
10 | let mut stdin = stdin.lock(); | ||
11 | msg::Request::read(&mut stdin) | ||
12 | } | ||
13 | |||
14 | fn write_response(res: Result<msg::Response, String>) -> Result<(), io::Error> { | ||
15 | let msg: msg::Response = match res { | ||
16 | Ok(res) => res, | ||
17 | Err(err) => msg::Response::Error(msg::ResponseError { | ||
18 | code: msg::ErrorCode::ExpansionError, | ||
19 | message: err, | ||
20 | }), | ||
21 | }; | ||
22 | |||
23 | let stdout = io::stdout(); | ||
24 | let mut stdout = stdout.lock(); | ||
25 | msg.write(&mut stdout) | ||
26 | } | ||
27 | fn main() { | ||
28 | loop { | ||
29 | let req = match read_request() { | ||
30 | Err(err) => { | ||
31 | eprintln!("Read message error on ra_proc_macro_srv: {}", err.to_string()); | ||
32 | continue; | ||
33 | } | ||
34 | Ok(None) => continue, | ||
35 | Ok(Some(req)) => req, | ||
36 | }; | ||
37 | |||
38 | match req { | ||
39 | msg::Request::ListMacro(task) => { | ||
40 | if let Err(err) = | ||
41 | write_response(list_macros(&task).map(|it| msg::Response::ListMacro(it))) | ||
42 | { | ||
43 | eprintln!("Write message error on list macro: {}", err); | ||
44 | } | ||
45 | } | ||
46 | msg::Request::ExpansionMacro(task) => { | ||
47 | if let Err(err) = | ||
48 | write_response(expand_task(&task).map(|it| msg::Response::ExpansionMacro(it))) | ||
49 | { | ||
50 | eprintln!("Write message error on expansion macro: {}", err); | ||
51 | } | ||
52 | } | ||
53 | } | ||
54 | } | ||
55 | } | ||