Allow syntax extensions to return multiple items, closes #16723.

This patch replaces `MacItem` with `MacItems`.
This commit is contained in:
Florian Hahn 2014-09-13 12:55:00 +02:00
parent af3889f697
commit 89b09440d8
4 changed files with 78 additions and 20 deletions

View file

@ -13,7 +13,7 @@ use std::collections::HashMap;
use ast; use ast;
use ast::{Ident, Name, TokenTree}; use ast::{Ident, Name, TokenTree};
use codemap::Span; use codemap::Span;
use ext::base::{ExtCtxt, MacExpr, MacItem, MacResult}; use ext::base::{ExtCtxt, MacExpr, MacResult, MacItems};
use ext::build::AstBuilder; use ext::build::AstBuilder;
use parse::token; use parse::token;
use ptr::P; use ptr::P;
@ -102,7 +102,7 @@ pub fn expand_register_diagnostic<'cx>(ecx: &'cx mut ExtCtxt,
let sym = Ident::new(token::gensym(( let sym = Ident::new(token::gensym((
"__register_diagnostic_".to_string() + token::get_ident(*code).get() "__register_diagnostic_".to_string() + token::get_ident(*code).get()
).as_slice())); ).as_slice()));
MacItem::new(quote_item!(ecx, mod $sym {}).unwrap()) MacItems::new(vec![quote_item!(ecx, mod $sym {}).unwrap()].into_iter())
} }
pub fn expand_build_diagnostic_array<'cx>(ecx: &'cx mut ExtCtxt, pub fn expand_build_diagnostic_array<'cx>(ecx: &'cx mut ExtCtxt,
@ -133,7 +133,7 @@ pub fn expand_build_diagnostic_array<'cx>(ecx: &'cx mut ExtCtxt,
(descriptions.len(), ecx.expr_vec(span, descriptions)) (descriptions.len(), ecx.expr_vec(span, descriptions))
}) })
}); });
MacItem::new(quote_item!(ecx, MacItems::new(vec![quote_item!(ecx,
pub static $name: [(&'static str, &'static str), ..$count] = $expr; pub static $name: [(&'static str, &'static str), ..$count] = $expr;
).unwrap()) ).unwrap()].into_iter())
} }

View file

@ -203,25 +203,20 @@ impl MacResult for MacPat {
Some(self.p) Some(self.p)
} }
} }
/// A convenience type for macros that return a single item. /// A type for macros that return multiple items.
pub struct MacItem { pub struct MacItems {
i: P<ast::Item> items: SmallVector<P<ast::Item>>
} }
impl MacItem {
pub fn new(i: P<ast::Item>) -> Box<MacResult+'static> { impl MacItems {
box MacItem { i: i } as Box<MacResult+'static> pub fn new<I: Iterator<P<ast::Item>>>(mut it: I) -> Box<MacResult+'static> {
box MacItems { items: it.collect() } as Box<MacResult+'static>
} }
} }
impl MacResult for MacItem {
fn make_items(self: Box<MacItem>) -> Option<SmallVector<P<ast::Item>>> { impl MacResult for MacItems {
Some(SmallVector::one(self.i)) fn make_items(self: Box<MacItems>) -> Option<SmallVector<P<ast::Item>>> {
} Some(self.items)
fn make_stmt(self: Box<MacItem>) -> Option<P<ast::Stmt>> {
Some(P(codemap::respan(
self.i.span,
ast::StmtDecl(
P(codemap::respan(self.i.span, ast::DeclItem(self.i))),
ast::DUMMY_NODE_ID))))
} }
} }

View file

@ -0,0 +1,33 @@
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
// ignore-stage1
#![feature(plugin_registrar, managed_boxes, quote)]
#![crate_type = "dylib"]
extern crate syntax;
extern crate rustc;
use syntax::ast;
use syntax::codemap;
use syntax::ext::base::{ExtCtxt, MacResult, MacItems};
use rustc::plugin::Registry;
#[plugin_registrar]
pub fn plugin_registrar(reg: &mut Registry) {
reg.register_macro("multiple_items", expand)
}
fn expand(cx: &mut ExtCtxt, _: codemap::Span, _: &[ast::TokenTree]) -> Box<MacResult+'static> {
MacItems::new(vec![
quote_item!(cx, struct Struct1;).unwrap(),
quote_item!(cx, struct Struct2;).unwrap()
].into_iter())
}

View file

@ -0,0 +1,30 @@
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
// ignore-stage1
// aux-build:issue_16723_multiple_items_syntax_ext.rs
#![feature(phase)]
#[phase(plugin)] extern crate issue_16723_multiple_items_syntax_ext;
multiple_items!()
impl Struct1 {
fn foo() {}
}
impl Struct2 {
fn foo() {}
}
fn main() {
Struct1::foo();
Struct2::foo();
println!("hallo");
}