Actual dummy server for the server cli

This commit is contained in:
Lukas Wirth 2024-06-30 16:33:30 +02:00
parent b0c4bc4972
commit 9d09bc0619
2 changed files with 29 additions and 3 deletions

View file

@ -8,6 +8,8 @@ extern crate rustc_driver as _;
use std::io; use std::io;
use proc_macro_api::msg::ServerConfig;
fn main() -> std::io::Result<()> { fn main() -> std::io::Result<()> {
let v = std::env::var("RUST_ANALYZER_INTERNALS_DO_NOT_USE"); let v = std::env::var("RUST_ANALYZER_INTERNALS_DO_NOT_USE");
match v.as_deref() { match v.as_deref() {
@ -26,8 +28,32 @@ fn main() -> std::io::Result<()> {
#[cfg(not(any(feature = "sysroot-abi", rust_analyzer)))] #[cfg(not(any(feature = "sysroot-abi", rust_analyzer)))]
fn run() -> io::Result<()> { fn run() -> io::Result<()> {
eprintln!("proc-macro-srv-cli requires the `sysroot-abi` feature to be enabled"); let err = "proc-macro-srv-cli needs to be compiled with the `sysroot-abi` feature to function";
std::process::exit(70); eprintln!("{err}");
use proc_macro_api::msg::{self, Message};
let read_request = |buf: &mut String| msg::Request::read(&mut io::stdin().lock(), buf);
let write_response = |msg: msg::Response| msg.write(&mut io::stdout().lock());
let mut buf = String::new();
while let Some(req) = read_request(&mut buf)? {
let res = match req {
msg::Request::ListMacros { .. } => msg::Response::ListMacros(Err(err.to_owned())),
msg::Request::ExpandMacro(_) => {
msg::Response::ExpandMacro(Err(msg::PanicMessage(err.to_owned())))
}
msg::Request::ApiVersionCheck {} => {
msg::Response::ApiVersionCheck(proc_macro_api::msg::CURRENT_API_VERSION)
}
msg::Request::SetConfig(_) => {
msg::Response::SetConfig(ServerConfig { span_mode: msg::SpanMode::Id })
}
};
write_response(res)?
}
Ok(())
} }
#[cfg(any(feature = "sysroot-abi", rust_analyzer))] #[cfg(any(feature = "sysroot-abi", rust_analyzer))]

View file

@ -8,7 +8,7 @@
//! 1.58) and future ABIs (stage1, nightly) //! 1.58) and future ABIs (stage1, nightly)
use std::{ use std::{
env, fs, env,
path::{Path, PathBuf}, path::{Path, PathBuf},
process::Command, process::Command,
}; };