类型信息不可用于语法扩展。它们可用于 lint 插件。
但是,您可以为自己编写另一个装饰器impl Monster
来获取类型。
例如:
#![feature(plugin_registrar, rustc_private)]
extern crate rustc;
extern crate syntax;
use rustc::plugin::Registry;
use syntax::ast::MetaItem;
use syntax::ast::Item_::ItemImpl;
use syntax::ast::MetaItem_::{MetaList, MetaWord};
use syntax::codemap::Span;
use syntax::ext::base::{Annotatable, ExtCtxt};
use syntax::ext::base::Annotatable::Item;
use syntax::ext::base::SyntaxExtension::MultiDecorator;
use syntax::parse::token::intern;
use std::collections::hash_map::HashMap;
use std::collections::hash_set::HashSet;
use std::mem;
type Structs = HashMap<String, HashSet<String>>;
fn singleton() -> &'static mut Structs {
static mut hash_set: *mut Structs = 0 as *mut Structs;
let set: Structs = HashMap::new();
unsafe {
if hash_set == 0 as *mut Structs {
hash_set = mem::transmute(Box::new(set));
}
&mut *hash_set
}
}
fn expand_attack(cx: &mut ExtCtxt, sp: Span, meta_item: &MetaItem, _: &Annotatable, _: &mut FnMut(Annotatable)) {
let structs = singleton();
if let MetaList(_, ref items) = meta_item.node {
if let MetaWord(ref word) = items[0].node {
let struct_name = word.to_string();
if let Some(ref methods) = structs.get(&struct_name) {
if let Some(method_name) = methods.iter().next() {
cx.span_warn(sp, &format!("{}.{}()", struct_name, method_name));
// TODO: generate the impl.
}
}
}
}
}
fn expand_register(_: &mut ExtCtxt, _: Span, _: &MetaItem, item: &Annotatable, _: &mut FnMut(Annotatable)) {
let mut structs = singleton();
if let &Annotatable::Item(ref item) = item {
let name = item.ident.to_string();
if let ItemImpl(_, _, _, _, _, ref items) = item.node {
let mut methods = HashSet::new();
for item in items {
methods.insert(item.ident.to_string());
}
structs.insert(name, methods);
}
}
}
#[plugin_registrar]
pub fn plugin_register(reg: &mut Registry) {
reg.register_syntax_extension(intern("attack"), MultiDecorator(Box::new(expand_attack)));
reg.register_syntax_extension(intern("register"), MultiDecorator(Box::new(expand_register)));
}
然后,您可以使用它:
#[register]
impl Monster {
fn health(&self) -> u8 { self.health }
}
这类似于我在这个问题中所做的,我仍在寻找一种更好的方法来共享这个全局可变状态(singleton
)。