#![cfg_attr(not(feature = "sysroot-abi"), allow(unused_crate_dependencies))]
#![cfg_attr(
feature = "sysroot-abi",
feature(proc_macro_internals, proc_macro_diagnostic, proc_macro_span)
)]
#![allow(internal_features, unused_features)]
#![cfg_attr(feature = "in-rust-tree", feature(rustc_private))]
#[cfg(feature = "in-rust-tree")]
extern crate rustc_driver as _;
pub mod bidirectional_protocol;
pub mod legacy_protocol;
pub mod pool;
pub mod process;
pub mod transport;
use paths::{AbsPath, AbsPathBuf};
use semver::Version;
use span::{ErasedFileAstId, FIXUP_ERASED_FILE_AST_ID_MARKER, Span};
use std::{fmt, io, sync::Arc, time::SystemTime};
use crate::{
bidirectional_protocol::SubCallback, pool::ProcMacroServerPool, process::ProcMacroServerProcess,
};
pub mod version {
pub const NO_VERSION_CHECK_VERSION: u32 = 0;
pub const VERSION_CHECK_VERSION: u32 = 1;
pub const ENCODE_CLOSE_SPAN_VERSION: u32 = 2;
pub const HAS_GLOBAL_SPANS: u32 = 3;
pub const RUST_ANALYZER_SPAN_SUPPORT: u32 = 4;
pub const EXTENDED_LEAF_DATA: u32 = 5;
pub const HASHED_AST_ID: u32 = 6;
pub const CURRENT_API_VERSION: u32 = HASHED_AST_ID;
}
#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub enum ProtocolFormat {
JsonLegacy,
BidirectionalPostcardPrototype,
}
impl fmt::Display for ProtocolFormat {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
match self {
ProtocolFormat::JsonLegacy => write!(f, "json-legacy"),
ProtocolFormat::BidirectionalPostcardPrototype => {
write!(f, "bidirectional-postcard-prototype")
}
}
}
}
#[derive(Copy, Clone, Eq, PartialEq, Debug, serde_derive::Serialize, serde_derive::Deserialize)]
pub enum ProcMacroKind {
CustomDerive,
Attr,
#[serde(alias = "Bang")]
#[serde(rename(serialize = "FuncLike", deserialize = "FuncLike"))]
Bang,
}
#[derive(Debug)]
pub struct ProcMacroClient {
pool: Arc<ProcMacroServerPool>,
path: AbsPathBuf,
}
pub struct MacroDylib {
path: AbsPathBuf,
}
impl MacroDylib {
pub fn new(path: AbsPathBuf) -> MacroDylib {
MacroDylib { path }
}
}
#[derive(Debug, Clone)]
pub struct ProcMacro {
pool: ProcMacroServerPool,
dylib_path: Arc<AbsPathBuf>,
name: Box<str>,
kind: ProcMacroKind,
dylib_last_modified: Option<SystemTime>,
}
impl Eq for ProcMacro {}
impl PartialEq for ProcMacro {
fn eq(&self, other: &Self) -> bool {
self.name == other.name
&& self.kind == other.kind
&& self.dylib_path == other.dylib_path
&& self.dylib_last_modified == other.dylib_last_modified
}
}
#[derive(Clone, Debug)]
pub struct ServerError {
pub message: String,
pub io: Option<Arc<io::Error>>,
}
impl fmt::Display for ServerError {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
self.message.fmt(f)?;
if let Some(io) = &self.io {
f.write_str(": ")?;
io.fmt(f)?;
}
Ok(())
}
}
impl ProcMacroClient {
pub fn spawn<'a>(
process_path: &AbsPath,
env: impl IntoIterator<
Item = (impl AsRef<std::ffi::OsStr>, &'a Option<impl 'a + AsRef<std::ffi::OsStr>>),
> + Clone,
version: Option<&Version>,
num_process: usize,
) -> io::Result<ProcMacroClient> {
let pool_size = num_process;
let mut workers = Vec::with_capacity(pool_size);
for _ in 0..pool_size {
let worker = ProcMacroServerProcess::spawn(process_path, env.clone(), version)?;
workers.push(worker);
}
let pool = ProcMacroServerPool::new(workers);
Ok(ProcMacroClient { pool: Arc::new(pool), path: process_path.to_owned() })
}
pub fn with_io_channels(
process_path: &AbsPath,
spawn: impl Fn(
Option<ProtocolFormat>,
) -> io::Result<(
Box<dyn process::ProcessExit>,
Box<dyn io::Write + Send + Sync>,
Box<dyn io::BufRead + Send + Sync>,
)> + Clone,
version: Option<&Version>,
num_process: usize,
) -> io::Result<ProcMacroClient> {
let pool_size = num_process;
let mut workers = Vec::with_capacity(pool_size);
for _ in 0..pool_size {
let worker =
ProcMacroServerProcess::run(spawn.clone(), version, || "<unknown>".to_owned())?;
workers.push(worker);
}
let pool = ProcMacroServerPool::new(workers);
Ok(ProcMacroClient { pool: Arc::new(pool), path: process_path.to_owned() })
}
pub fn server_path(&self) -> &AbsPath {
&self.path
}
pub fn load_dylib(&self, dylib: MacroDylib) -> Result<Vec<ProcMacro>, ServerError> {
self.pool.load_dylib(&dylib)
}
pub fn exited(&self) -> Option<&ServerError> {
self.pool.exited()
}
}
impl ProcMacro {
pub fn name(&self) -> &str {
&self.name
}
pub fn kind(&self) -> ProcMacroKind {
self.kind
}
fn needs_fixup_change(&self) -> bool {
let version = self.pool.version();
(version::RUST_ANALYZER_SPAN_SUPPORT..version::HASHED_AST_ID).contains(&version)
}
fn change_fixup_to_match_old_server(&self, tt: &mut tt::TopSubtree) {
const OLD_FIXUP_AST_ID: ErasedFileAstId = ErasedFileAstId::from_raw(!0 - 1);
tt.change_every_ast_id(|ast_id| {
if *ast_id == FIXUP_ERASED_FILE_AST_ID_MARKER {
*ast_id = OLD_FIXUP_AST_ID;
} else if *ast_id == OLD_FIXUP_AST_ID {
*ast_id = FIXUP_ERASED_FILE_AST_ID_MARKER;
}
});
}
pub fn expand(
&self,
subtree: tt::SubtreeView<'_>,
attr: Option<tt::SubtreeView<'_>>,
env: Vec<(String, String)>,
def_site: Span,
call_site: Span,
mixed_site: Span,
current_dir: String,
callback: Option<SubCallback<'_>>,
) -> Result<Result<tt::TopSubtree, String>, ServerError> {
let (mut subtree, mut attr) = (subtree, attr);
let (mut subtree_changed, mut attr_changed);
if self.needs_fixup_change() {
subtree_changed = tt::TopSubtree::from_subtree(subtree);
self.change_fixup_to_match_old_server(&mut subtree_changed);
subtree = subtree_changed.view();
if let Some(attr) = &mut attr {
attr_changed = tt::TopSubtree::from_subtree(*attr);
self.change_fixup_to_match_old_server(&mut attr_changed);
*attr = attr_changed.view();
}
}
self.pool.pick_process()?.expand(
self,
subtree,
attr,
env,
def_site,
call_site,
mixed_site,
current_dir,
callback,
)
}
}