2013-03-19 08:52:10 -04:00
|
|
|
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
|
2012-12-03 16:48:01 -08:00
|
|
|
// 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.
|
|
|
|
|
2012-12-23 17:41:37 -05:00
|
|
|
use ast;
|
2013-05-08 15:27:29 -07:00
|
|
|
use ast::Name;
|
2012-12-23 17:41:37 -05:00
|
|
|
use codemap;
|
2013-08-31 18:13:04 +02:00
|
|
|
use codemap::{CodeMap, Span, ExpnInfo};
|
2012-12-23 17:41:37 -05:00
|
|
|
use diagnostic::span_handler;
|
|
|
|
use ext;
|
|
|
|
use parse;
|
2013-03-26 16:38:07 -04:00
|
|
|
use parse::token;
|
2013-06-04 12:21:25 -07:00
|
|
|
use parse::token::{ident_to_str, intern, str_to_ident};
|
2012-12-23 17:41:37 -05:00
|
|
|
|
2013-06-24 20:40:33 -04:00
|
|
|
use std::hashmap::HashMap;
|
2011-06-04 15:41:45 -04:00
|
|
|
|
2012-07-27 17:42:32 -07:00
|
|
|
// new-style macro! tt code:
|
|
|
|
//
|
2013-05-28 14:53:38 -07:00
|
|
|
// MacResult, NormalTT, IdentTT
|
2012-07-27 17:42:32 -07:00
|
|
|
//
|
2012-12-12 12:25:40 -08:00
|
|
|
// also note that ast::mac used to have a bunch of extraneous cases and
|
|
|
|
// is now probably a redundant AST node, can be merged with
|
|
|
|
// ast::mac_invoc_tt.
|
2012-07-27 17:42:32 -07:00
|
|
|
|
2013-01-29 14:41:40 -08:00
|
|
|
pub struct MacroDef {
|
2013-06-13 03:02:55 +10:00
|
|
|
name: @str,
|
2013-01-22 16:45:27 -08:00
|
|
|
ext: SyntaxExtension
|
2013-01-17 08:55:28 -08:00
|
|
|
}
|
2012-07-27 17:42:32 -07:00
|
|
|
|
2013-08-30 14:40:05 -07:00
|
|
|
pub type ItemDecorator = extern "Rust" fn(@ExtCtxt,
|
|
|
|
Span,
|
|
|
|
@ast::MetaItem,
|
|
|
|
~[@ast::item])
|
|
|
|
-> ~[@ast::item];
|
2012-07-06 14:29:50 -07:00
|
|
|
|
2013-08-30 14:40:05 -07:00
|
|
|
pub struct SyntaxExpanderTT {
|
|
|
|
expander: SyntaxExpanderTTExpander,
|
|
|
|
span: Option<Span>
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait SyntaxExpanderTTTrait {
|
|
|
|
fn expand(&self,
|
|
|
|
ecx: @ExtCtxt,
|
|
|
|
span: Span,
|
|
|
|
token_tree: &[ast::token_tree],
|
|
|
|
context: ast::SyntaxContext)
|
|
|
|
-> MacResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
pub type SyntaxExpanderTTFunNoCtxt =
|
|
|
|
extern "Rust" fn(ecx: @ExtCtxt,
|
|
|
|
span: codemap::Span,
|
|
|
|
token_tree: &[ast::token_tree])
|
|
|
|
-> MacResult;
|
|
|
|
|
|
|
|
enum SyntaxExpanderTTExpander {
|
|
|
|
SyntaxExpanderTTExpanderWithoutContext(SyntaxExpanderTTFunNoCtxt),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl SyntaxExpanderTTTrait for SyntaxExpanderTT {
|
|
|
|
fn expand(&self,
|
|
|
|
ecx: @ExtCtxt,
|
|
|
|
span: Span,
|
|
|
|
token_tree: &[ast::token_tree],
|
|
|
|
_: ast::SyntaxContext)
|
|
|
|
-> MacResult {
|
|
|
|
match self.expander {
|
|
|
|
SyntaxExpanderTTExpanderWithoutContext(f) => {
|
|
|
|
f(ecx, span, token_tree)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-07-08 15:55:14 -07:00
|
|
|
|
2013-08-30 14:40:05 -07:00
|
|
|
enum SyntaxExpanderTTItemExpander {
|
|
|
|
SyntaxExpanderTTItemExpanderWithContext(SyntaxExpanderTTItemFun),
|
|
|
|
SyntaxExpanderTTItemExpanderWithoutContext(SyntaxExpanderTTItemFunNoCtxt),
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct SyntaxExpanderTTItem {
|
|
|
|
expander: SyntaxExpanderTTItemExpander,
|
|
|
|
span: Option<Span>
|
|
|
|
}
|
|
|
|
|
|
|
|
pub trait SyntaxExpanderTTItemTrait {
|
|
|
|
fn expand(&self,
|
|
|
|
cx: @ExtCtxt,
|
|
|
|
sp: Span,
|
|
|
|
ident: ast::Ident,
|
|
|
|
token_tree: ~[ast::token_tree],
|
|
|
|
context: ast::SyntaxContext)
|
|
|
|
-> MacResult;
|
|
|
|
}
|
|
|
|
|
|
|
|
impl SyntaxExpanderTTItemTrait for SyntaxExpanderTTItem {
|
|
|
|
fn expand(&self,
|
|
|
|
cx: @ExtCtxt,
|
|
|
|
sp: Span,
|
|
|
|
ident: ast::Ident,
|
|
|
|
token_tree: ~[ast::token_tree],
|
|
|
|
context: ast::SyntaxContext)
|
|
|
|
-> MacResult {
|
|
|
|
match self.expander {
|
|
|
|
SyntaxExpanderTTItemExpanderWithContext(fun) => {
|
|
|
|
fun(cx, sp, ident, token_tree, context)
|
|
|
|
}
|
|
|
|
SyntaxExpanderTTItemExpanderWithoutContext(fun) => {
|
|
|
|
fun(cx, sp, ident, token_tree)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub type SyntaxExpanderTTItemFun = extern "Rust" fn(@ExtCtxt,
|
|
|
|
Span,
|
|
|
|
ast::Ident,
|
|
|
|
~[ast::token_tree],
|
|
|
|
ast::SyntaxContext)
|
|
|
|
-> MacResult;
|
|
|
|
|
|
|
|
pub type SyntaxExpanderTTItemFunNoCtxt =
|
|
|
|
extern "Rust" fn(@ExtCtxt, Span, ast::Ident, ~[ast::token_tree])
|
|
|
|
-> MacResult;
|
|
|
|
|
|
|
|
pub trait AnyMacro {
|
|
|
|
fn make_expr(&self) -> @ast::Expr;
|
|
|
|
fn make_item(&self) -> Option<@ast::item>;
|
|
|
|
fn make_stmt(&self) -> @ast::Stmt;
|
|
|
|
}
|
2013-07-08 15:55:14 -07:00
|
|
|
|
2013-01-29 14:41:40 -08:00
|
|
|
pub enum MacResult {
|
2013-09-02 03:45:37 +02:00
|
|
|
MRExpr(@ast::Expr),
|
2013-01-22 16:45:27 -08:00
|
|
|
MRItem(@ast::item),
|
2013-08-30 14:40:05 -07:00
|
|
|
MRAny(@AnyMacro),
|
|
|
|
MRDef(MacroDef),
|
2012-07-06 14:29:50 -07:00
|
|
|
}
|
2012-07-05 12:10:33 -07:00
|
|
|
|
2013-01-29 14:41:40 -08:00
|
|
|
pub enum SyntaxExtension {
|
2012-12-10 20:37:21 -08:00
|
|
|
// #[auto_encode] and such
|
2013-08-30 14:40:05 -07:00
|
|
|
ItemDecorator(ItemDecorator),
|
2012-06-25 15:04:50 -07:00
|
|
|
|
2012-07-27 17:42:32 -07:00
|
|
|
// Token-tree expanders
|
2013-08-30 14:40:05 -07:00
|
|
|
NormalTT(@SyntaxExpanderTTTrait, Option<Span>),
|
2012-11-08 23:12:45 -05:00
|
|
|
|
2013-02-26 10:15:29 -08:00
|
|
|
// An IdentTT is a macro that has an
|
|
|
|
// identifier in between the name of the
|
|
|
|
// macro and the argument. Currently,
|
2013-07-31 16:10:35 -07:00
|
|
|
// the only examples of this is
|
|
|
|
// macro_rules!
|
2013-02-26 10:15:29 -08:00
|
|
|
|
2012-11-08 23:12:45 -05:00
|
|
|
// perhaps macro_rules! will lose its odd special identifier argument,
|
|
|
|
// and this can go away also
|
2013-08-30 14:40:05 -07:00
|
|
|
IdentTT(@SyntaxExpanderTTItemTrait, Option<Span>),
|
2011-06-20 17:26:17 -07:00
|
|
|
}
|
2011-06-04 15:41:45 -04:00
|
|
|
|
2013-07-08 15:55:14 -07:00
|
|
|
|
2013-05-08 15:27:29 -07:00
|
|
|
// The SyntaxEnv is the environment that's threaded through the expansion
|
|
|
|
// of macros. It contains bindings for macros, and also a special binding
|
|
|
|
// for " block" (not a legal identifier) that maps to a BlockInfo
|
2013-02-25 14:11:21 -05:00
|
|
|
pub type SyntaxEnv = @mut MapChain<Name, Transformer>;
|
2013-02-26 10:15:29 -08:00
|
|
|
|
|
|
|
// Transformer : the codomain of SyntaxEnvs
|
|
|
|
|
2013-02-25 14:11:21 -05:00
|
|
|
pub enum Transformer {
|
2013-02-26 10:15:29 -08:00
|
|
|
// this identifier maps to a syntax extension or macro
|
|
|
|
SE(SyntaxExtension),
|
2013-05-08 15:27:29 -07:00
|
|
|
// blockinfo : this is ... well, it's simpler than threading
|
|
|
|
// another whole data stack-structured data structure through
|
|
|
|
// expansion. Basically, there's an invariant that every
|
|
|
|
// map must contain a binding for " block".
|
|
|
|
BlockInfo(BlockInfo)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub struct BlockInfo {
|
|
|
|
// should macros escape from this scope?
|
|
|
|
macros_escape : bool,
|
|
|
|
// what are the pending renames?
|
|
|
|
pending_renames : @mut RenameList
|
2013-02-26 10:15:29 -08:00
|
|
|
}
|
2013-02-13 20:08:35 -08:00
|
|
|
|
2013-05-08 15:27:29 -07:00
|
|
|
// a list of ident->name renamings
|
2013-09-02 02:50:59 +02:00
|
|
|
type RenameList = ~[(ast::Ident,Name)];
|
2013-05-08 15:27:29 -07:00
|
|
|
|
2013-02-26 10:15:29 -08:00
|
|
|
// The base map of methods for expanding syntax extension
|
2011-06-04 15:41:45 -04:00
|
|
|
// AST nodes into full ASTs
|
2013-02-26 10:15:29 -08:00
|
|
|
pub fn syntax_expander_table() -> SyntaxEnv {
|
2013-02-04 13:15:17 -08:00
|
|
|
// utility function to simplify creating NormalTT syntax extensions
|
2013-08-30 14:40:05 -07:00
|
|
|
fn builtin_normal_tt_no_ctxt(f: SyntaxExpanderTTFunNoCtxt)
|
|
|
|
-> @Transformer {
|
|
|
|
@SE(NormalTT(@SyntaxExpanderTT{
|
|
|
|
expander: SyntaxExpanderTTExpanderWithoutContext(f),
|
|
|
|
span: None,
|
|
|
|
} as @SyntaxExpanderTTTrait,
|
|
|
|
None))
|
2012-10-07 14:56:18 -07:00
|
|
|
}
|
2013-02-26 10:15:29 -08:00
|
|
|
// utility function to simplify creating IdentTT syntax extensions
|
2013-07-08 15:55:14 -07:00
|
|
|
// that ignore their contexts
|
|
|
|
fn builtin_item_tt_no_ctxt(f: SyntaxExpanderTTItemFunNoCtxt) -> @Transformer {
|
2013-08-30 14:40:05 -07:00
|
|
|
@SE(IdentTT(@SyntaxExpanderTTItem {
|
|
|
|
expander: SyntaxExpanderTTItemExpanderWithoutContext(f),
|
|
|
|
span: None,
|
|
|
|
} as @SyntaxExpanderTTItemTrait,
|
|
|
|
None))
|
2012-10-07 14:56:18 -07:00
|
|
|
}
|
2013-04-03 09:28:36 -04:00
|
|
|
let mut syntax_expanders = HashMap::new();
|
2013-02-26 10:15:29 -08:00
|
|
|
// NB identifier starts with space, and can't conflict with legal idents
|
2013-05-08 15:27:29 -07:00
|
|
|
syntax_expanders.insert(intern(&" block"),
|
|
|
|
@BlockInfo(BlockInfo{
|
|
|
|
macros_escape : false,
|
|
|
|
pending_renames : @mut ~[]
|
|
|
|
}));
|
|
|
|
syntax_expanders.insert(intern(&"macro_rules"),
|
2013-08-30 14:40:05 -07:00
|
|
|
@SE(IdentTT(@SyntaxExpanderTTItem {
|
2013-09-16 23:37:54 -07:00
|
|
|
expander: SyntaxExpanderTTItemExpanderWithContext(
|
|
|
|
ext::tt::macro_rules::add_new_extension),
|
2013-08-30 14:40:05 -07:00
|
|
|
span: None,
|
|
|
|
} as @SyntaxExpanderTTItemTrait,
|
|
|
|
None)));
|
2013-09-27 17:04:57 -07:00
|
|
|
syntax_expanders.insert(intern(&"oldfmt"),
|
2013-08-30 14:40:05 -07:00
|
|
|
builtin_normal_tt_no_ctxt(
|
|
|
|
ext::fmt::expand_syntax_ext));
|
2013-08-28 02:22:45 -07:00
|
|
|
syntax_expanders.insert(intern(&"format_args"),
|
2013-08-30 14:40:05 -07:00
|
|
|
builtin_normal_tt_no_ctxt(
|
|
|
|
ext::format::expand_args));
|
2012-12-10 20:37:21 -08:00
|
|
|
syntax_expanders.insert(
|
2013-05-08 15:27:29 -07:00
|
|
|
intern(&"auto_encode"),
|
2013-02-26 10:15:29 -08:00
|
|
|
@SE(ItemDecorator(ext::auto_encode::expand_auto_encode)));
|
2012-12-10 20:37:21 -08:00
|
|
|
syntax_expanders.insert(
|
2013-05-08 15:27:29 -07:00
|
|
|
intern(&"auto_decode"),
|
2013-02-26 10:15:29 -08:00
|
|
|
@SE(ItemDecorator(ext::auto_encode::expand_auto_decode)));
|
2013-05-08 15:27:29 -07:00
|
|
|
syntax_expanders.insert(intern(&"env"),
|
2013-08-30 14:40:05 -07:00
|
|
|
builtin_normal_tt_no_ctxt(
|
|
|
|
ext::env::expand_env));
|
2013-08-07 00:50:23 -04:00
|
|
|
syntax_expanders.insert(intern(&"option_env"),
|
2013-08-30 14:40:05 -07:00
|
|
|
builtin_normal_tt_no_ctxt(
|
|
|
|
ext::env::expand_option_env));
|
2013-05-08 15:27:29 -07:00
|
|
|
syntax_expanders.insert(intern("bytes"),
|
2013-08-30 14:40:05 -07:00
|
|
|
builtin_normal_tt_no_ctxt(
|
|
|
|
ext::bytes::expand_syntax_ext));
|
2013-05-08 15:27:29 -07:00
|
|
|
syntax_expanders.insert(intern("concat_idents"),
|
2013-07-08 15:55:14 -07:00
|
|
|
builtin_normal_tt_no_ctxt(
|
2013-08-30 14:40:05 -07:00
|
|
|
ext::concat_idents::expand_syntax_ext));
|
2013-05-08 15:27:29 -07:00
|
|
|
syntax_expanders.insert(intern(&"log_syntax"),
|
2013-07-08 15:55:14 -07:00
|
|
|
builtin_normal_tt_no_ctxt(
|
2013-08-30 14:40:05 -07:00
|
|
|
ext::log_syntax::expand_syntax_ext));
|
2013-05-08 15:27:29 -07:00
|
|
|
syntax_expanders.insert(intern(&"deriving"),
|
2013-03-11 16:47:23 -04:00
|
|
|
@SE(ItemDecorator(
|
|
|
|
ext::deriving::expand_meta_deriving)));
|
2012-11-16 14:50:35 -08:00
|
|
|
|
|
|
|
// Quasi-quoting expanders
|
2013-05-08 15:27:29 -07:00
|
|
|
syntax_expanders.insert(intern(&"quote_tokens"),
|
2013-08-30 14:40:05 -07:00
|
|
|
builtin_normal_tt_no_ctxt(
|
|
|
|
ext::quote::expand_quote_tokens));
|
2013-05-08 15:27:29 -07:00
|
|
|
syntax_expanders.insert(intern(&"quote_expr"),
|
2013-08-30 14:40:05 -07:00
|
|
|
builtin_normal_tt_no_ctxt(
|
|
|
|
ext::quote::expand_quote_expr));
|
2013-05-08 15:27:29 -07:00
|
|
|
syntax_expanders.insert(intern(&"quote_ty"),
|
2013-08-30 14:40:05 -07:00
|
|
|
builtin_normal_tt_no_ctxt(
|
|
|
|
ext::quote::expand_quote_ty));
|
2013-05-08 15:27:29 -07:00
|
|
|
syntax_expanders.insert(intern(&"quote_item"),
|
2013-08-30 14:40:05 -07:00
|
|
|
builtin_normal_tt_no_ctxt(
|
|
|
|
ext::quote::expand_quote_item));
|
2013-05-08 15:27:29 -07:00
|
|
|
syntax_expanders.insert(intern(&"quote_pat"),
|
2013-08-30 14:40:05 -07:00
|
|
|
builtin_normal_tt_no_ctxt(
|
|
|
|
ext::quote::expand_quote_pat));
|
2013-05-08 15:27:29 -07:00
|
|
|
syntax_expanders.insert(intern(&"quote_stmt"),
|
2013-08-30 14:40:05 -07:00
|
|
|
builtin_normal_tt_no_ctxt(
|
|
|
|
ext::quote::expand_quote_stmt));
|
2012-11-16 14:50:35 -08:00
|
|
|
|
2013-05-08 15:27:29 -07:00
|
|
|
syntax_expanders.insert(intern(&"line"),
|
2013-07-08 15:55:14 -07:00
|
|
|
builtin_normal_tt_no_ctxt(
|
2013-08-30 14:40:05 -07:00
|
|
|
ext::source_util::expand_line));
|
2013-05-08 15:27:29 -07:00
|
|
|
syntax_expanders.insert(intern(&"col"),
|
2013-07-08 15:55:14 -07:00
|
|
|
builtin_normal_tt_no_ctxt(
|
2013-08-30 14:40:05 -07:00
|
|
|
ext::source_util::expand_col));
|
2013-05-08 15:27:29 -07:00
|
|
|
syntax_expanders.insert(intern(&"file"),
|
2013-07-08 15:55:14 -07:00
|
|
|
builtin_normal_tt_no_ctxt(
|
2013-08-30 14:40:05 -07:00
|
|
|
ext::source_util::expand_file));
|
2013-05-08 15:27:29 -07:00
|
|
|
syntax_expanders.insert(intern(&"stringify"),
|
2013-07-08 15:55:14 -07:00
|
|
|
builtin_normal_tt_no_ctxt(
|
2013-08-30 14:40:05 -07:00
|
|
|
ext::source_util::expand_stringify));
|
2013-05-08 15:27:29 -07:00
|
|
|
syntax_expanders.insert(intern(&"include"),
|
2013-07-08 15:55:14 -07:00
|
|
|
builtin_normal_tt_no_ctxt(
|
2013-08-30 14:40:05 -07:00
|
|
|
ext::source_util::expand_include));
|
2013-05-08 15:27:29 -07:00
|
|
|
syntax_expanders.insert(intern(&"include_str"),
|
2013-07-08 15:55:14 -07:00
|
|
|
builtin_normal_tt_no_ctxt(
|
2013-08-30 14:40:05 -07:00
|
|
|
ext::source_util::expand_include_str));
|
2013-05-08 15:27:29 -07:00
|
|
|
syntax_expanders.insert(intern(&"include_bin"),
|
2013-07-08 15:55:14 -07:00
|
|
|
builtin_normal_tt_no_ctxt(
|
2013-08-30 14:40:05 -07:00
|
|
|
ext::source_util::expand_include_bin));
|
2013-05-08 15:27:29 -07:00
|
|
|
syntax_expanders.insert(intern(&"module_path"),
|
2013-07-08 15:55:14 -07:00
|
|
|
builtin_normal_tt_no_ctxt(
|
2013-08-30 14:40:05 -07:00
|
|
|
ext::source_util::expand_mod));
|
2013-05-08 15:27:29 -07:00
|
|
|
syntax_expanders.insert(intern(&"asm"),
|
2013-08-30 14:40:05 -07:00
|
|
|
builtin_normal_tt_no_ctxt(
|
|
|
|
ext::asm::expand_asm));
|
2013-08-01 23:03:03 +10:00
|
|
|
syntax_expanders.insert(intern(&"cfg"),
|
2013-08-30 14:40:05 -07:00
|
|
|
builtin_normal_tt_no_ctxt(
|
|
|
|
ext::cfg::expand_cfg));
|
|
|
|
syntax_expanders.insert(intern(&"trace_macros"),
|
|
|
|
builtin_normal_tt_no_ctxt(
|
|
|
|
ext::trace_macros::expand_trace_macros));
|
2013-02-26 10:15:29 -08:00
|
|
|
MapChain::new(~syntax_expanders)
|
2012-10-07 14:56:18 -07:00
|
|
|
}
|
2012-07-27 17:42:32 -07:00
|
|
|
|
|
|
|
// One of these is made during expansion and incrementally updated as we go;
|
|
|
|
// when a macro expansion occurs, the resulting nodes have the backtrace()
|
|
|
|
// -> expn_info of their expansion context stored into their span.
|
2013-05-17 21:27:17 +10:00
|
|
|
pub struct ExtCtxt {
|
2013-05-17 20:10:26 +10:00
|
|
|
parse_sess: @mut parse::ParseSess,
|
2013-07-19 07:38:55 +02:00
|
|
|
cfg: ast::CrateConfig,
|
2013-05-17 20:10:26 +10:00
|
|
|
backtrace: @mut Option<@ExpnInfo>,
|
2011-07-10 17:00:28 -07:00
|
|
|
|
2013-05-17 20:10:26 +10:00
|
|
|
// These two @mut's should really not be here,
|
|
|
|
// but the self types for CtxtRepr are all wrong
|
|
|
|
// and there are bugs in the code for object
|
|
|
|
// types that make this hard to get right at the
|
|
|
|
// moment. - nmatsakis
|
2013-09-02 02:50:59 +02:00
|
|
|
mod_path: @mut ~[ast::Ident],
|
2013-05-17 20:10:26 +10:00
|
|
|
trace_mac: @mut bool
|
|
|
|
}
|
2013-03-15 15:24:24 -04:00
|
|
|
|
2013-05-31 15:17:22 -07:00
|
|
|
impl ExtCtxt {
|
2013-07-19 07:38:55 +02:00
|
|
|
pub fn new(parse_sess: @mut parse::ParseSess, cfg: ast::CrateConfig)
|
2013-05-31 15:17:22 -07:00
|
|
|
-> @ExtCtxt {
|
2013-05-17 21:27:17 +10:00
|
|
|
@ExtCtxt {
|
|
|
|
parse_sess: parse_sess,
|
|
|
|
cfg: cfg,
|
|
|
|
backtrace: @mut None,
|
|
|
|
mod_path: @mut ~[],
|
|
|
|
trace_mac: @mut false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-31 15:17:22 -07:00
|
|
|
pub fn codemap(&self) -> @CodeMap { self.parse_sess.cm }
|
|
|
|
pub fn parse_sess(&self) -> @mut parse::ParseSess { self.parse_sess }
|
2013-07-19 07:38:55 +02:00
|
|
|
pub fn cfg(&self) -> ast::CrateConfig { self.cfg.clone() }
|
2013-08-31 18:13:04 +02:00
|
|
|
pub fn call_site(&self) -> Span {
|
2013-05-17 20:10:26 +10:00
|
|
|
match *self.backtrace {
|
2013-07-02 18:31:00 +09:00
|
|
|
Some(@ExpnInfo {call_site: cs, _}) => cs,
|
2013-05-17 20:10:26 +10:00
|
|
|
None => self.bug("missing top span")
|
2012-12-06 11:01:58 -08:00
|
|
|
}
|
2013-05-17 20:10:26 +10:00
|
|
|
}
|
2013-05-31 15:17:22 -07:00
|
|
|
pub fn print_backtrace(&self) { }
|
|
|
|
pub fn backtrace(&self) -> Option<@ExpnInfo> { *self.backtrace }
|
2013-09-02 02:50:59 +02:00
|
|
|
pub fn mod_push(&self, i: ast::Ident) { self.mod_path.push(i); }
|
2013-05-31 15:17:22 -07:00
|
|
|
pub fn mod_pop(&self) { self.mod_path.pop(); }
|
2013-09-02 02:50:59 +02:00
|
|
|
pub fn mod_path(&self) -> ~[ast::Ident] { (*self.mod_path).clone() }
|
2013-05-31 15:17:22 -07:00
|
|
|
pub fn bt_push(&self, ei: codemap::ExpnInfo) {
|
2013-05-17 20:10:26 +10:00
|
|
|
match ei {
|
2013-07-02 18:31:00 +09:00
|
|
|
ExpnInfo {call_site: cs, callee: ref callee} => {
|
2013-02-21 11:57:20 -08:00
|
|
|
*self.backtrace =
|
2013-07-02 18:31:00 +09:00
|
|
|
Some(@ExpnInfo {
|
2013-08-31 18:13:04 +02:00
|
|
|
call_site: Span {lo: cs.lo, hi: cs.hi,
|
2013-02-21 11:57:20 -08:00
|
|
|
expn_info: *self.backtrace},
|
2013-06-27 17:41:35 -07:00
|
|
|
callee: *callee});
|
2012-02-04 18:37:24 -07:00
|
|
|
}
|
2012-01-13 09:32:05 +01:00
|
|
|
}
|
2013-05-17 20:10:26 +10:00
|
|
|
}
|
2013-05-31 15:17:22 -07:00
|
|
|
pub fn bt_pop(&self) {
|
2013-05-17 20:10:26 +10:00
|
|
|
match *self.backtrace {
|
2013-07-02 18:31:00 +09:00
|
|
|
Some(@ExpnInfo {
|
2013-08-31 18:13:04 +02:00
|
|
|
call_site: Span {expn_info: prev, _}, _}) => {
|
2013-02-21 11:57:20 -08:00
|
|
|
*self.backtrace = prev
|
2012-01-13 09:32:05 +01:00
|
|
|
}
|
2013-05-17 20:10:26 +10:00
|
|
|
_ => self.bug("tried to pop without a push")
|
2012-01-13 09:32:05 +01:00
|
|
|
}
|
|
|
|
}
|
2013-08-31 18:13:04 +02:00
|
|
|
pub fn span_fatal(&self, sp: Span, msg: &str) -> ! {
|
2013-05-17 20:10:26 +10:00
|
|
|
self.print_backtrace();
|
|
|
|
self.parse_sess.span_diagnostic.span_fatal(sp, msg);
|
|
|
|
}
|
2013-08-31 18:13:04 +02:00
|
|
|
pub fn span_err(&self, sp: Span, msg: &str) {
|
2013-05-17 20:10:26 +10:00
|
|
|
self.print_backtrace();
|
|
|
|
self.parse_sess.span_diagnostic.span_err(sp, msg);
|
|
|
|
}
|
2013-08-31 18:13:04 +02:00
|
|
|
pub fn span_warn(&self, sp: Span, msg: &str) {
|
2013-05-17 20:10:26 +10:00
|
|
|
self.print_backtrace();
|
|
|
|
self.parse_sess.span_diagnostic.span_warn(sp, msg);
|
|
|
|
}
|
2013-08-31 18:13:04 +02:00
|
|
|
pub fn span_unimpl(&self, sp: Span, msg: &str) -> ! {
|
2013-05-17 20:10:26 +10:00
|
|
|
self.print_backtrace();
|
|
|
|
self.parse_sess.span_diagnostic.span_unimpl(sp, msg);
|
|
|
|
}
|
2013-08-31 18:13:04 +02:00
|
|
|
pub fn span_bug(&self, sp: Span, msg: &str) -> ! {
|
2013-05-17 20:10:26 +10:00
|
|
|
self.print_backtrace();
|
|
|
|
self.parse_sess.span_diagnostic.span_bug(sp, msg);
|
|
|
|
}
|
2013-05-31 15:17:22 -07:00
|
|
|
pub fn bug(&self, msg: &str) -> ! {
|
2013-05-17 20:10:26 +10:00
|
|
|
self.print_backtrace();
|
|
|
|
self.parse_sess.span_diagnostic.handler().bug(msg);
|
|
|
|
}
|
2013-05-31 15:17:22 -07:00
|
|
|
pub fn trace_macros(&self) -> bool {
|
2013-05-17 20:10:26 +10:00
|
|
|
*self.trace_mac
|
|
|
|
}
|
2013-05-31 15:17:22 -07:00
|
|
|
pub fn set_trace_macros(&self, x: bool) {
|
2013-05-17 20:10:26 +10:00
|
|
|
*self.trace_mac = x
|
|
|
|
}
|
2013-09-02 02:50:59 +02:00
|
|
|
pub fn str_of(&self, id: ast::Ident) -> @str {
|
2013-06-13 03:02:55 +10:00
|
|
|
ident_to_str(&id)
|
2013-05-17 20:10:26 +10:00
|
|
|
}
|
2013-09-02 02:50:59 +02:00
|
|
|
pub fn ident_of(&self, st: &str) -> ast::Ident {
|
2013-06-04 12:34:25 -07:00
|
|
|
str_to_ident(st)
|
2013-05-17 20:10:26 +10:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-09-02 03:45:37 +02:00
|
|
|
pub fn expr_to_str(cx: @ExtCtxt, expr: @ast::Expr, err_msg: &str) -> @str {
|
2012-08-06 12:34:08 -07:00
|
|
|
match expr.node {
|
2013-09-02 03:45:37 +02:00
|
|
|
ast::ExprLit(l) => match l.node {
|
2013-06-13 03:02:55 +10:00
|
|
|
ast::lit_str(s) => s,
|
2012-11-06 18:41:06 -08:00
|
|
|
_ => cx.span_fatal(l.span, err_msg)
|
2012-08-06 17:14:32 -07:00
|
|
|
},
|
2012-11-06 18:41:06 -08:00
|
|
|
_ => cx.span_fatal(expr.span, err_msg)
|
2011-06-20 17:26:17 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-31 18:13:04 +02:00
|
|
|
pub fn check_zero_tts(cx: @ExtCtxt, sp: Span, tts: &[ast::token_tree],
|
2013-01-29 14:41:40 -08:00
|
|
|
name: &str) {
|
2012-12-12 17:08:09 -08:00
|
|
|
if tts.len() != 0 {
|
|
|
|
cx.span_fatal(sp, fmt!("%s takes no arguments", name));
|
|
|
|
}
|
2012-05-14 15:32:32 -07:00
|
|
|
}
|
|
|
|
|
2013-05-17 21:27:17 +10:00
|
|
|
pub fn get_single_str_from_tts(cx: @ExtCtxt,
|
2013-08-31 18:13:04 +02:00
|
|
|
sp: Span,
|
2013-01-29 14:41:40 -08:00
|
|
|
tts: &[ast::token_tree],
|
2013-08-07 09:47:28 -07:00
|
|
|
name: &str)
|
|
|
|
-> @str {
|
2012-12-12 17:08:09 -08:00
|
|
|
if tts.len() != 1 {
|
|
|
|
cx.span_fatal(sp, fmt!("%s takes 1 argument.", name));
|
2012-02-01 00:20:31 -07:00
|
|
|
}
|
|
|
|
|
2012-12-12 17:08:09 -08:00
|
|
|
match tts[0] {
|
|
|
|
ast::tt_tok(_, token::LIT_STR(ident)) => cx.str_of(ident),
|
2013-08-07 09:47:28 -07:00
|
|
|
_ => cx.span_fatal(sp, fmt!("%s requires a string.", name)),
|
2012-01-31 23:50:12 -07:00
|
|
|
}
|
|
|
|
}
|
2011-06-20 17:26:17 -07:00
|
|
|
|
2013-07-22 21:22:22 +03:00
|
|
|
pub fn get_exprs_from_tts(cx: @ExtCtxt,
|
2013-08-31 18:13:04 +02:00
|
|
|
sp: Span,
|
2013-09-02 03:45:37 +02:00
|
|
|
tts: &[ast::token_tree]) -> ~[@ast::Expr] {
|
2012-12-12 17:08:09 -08:00
|
|
|
let p = parse::new_parser_from_tts(cx.parse_sess(),
|
|
|
|
cx.cfg(),
|
2013-07-12 00:53:03 -07:00
|
|
|
tts.to_owned());
|
2012-12-12 17:08:09 -08:00
|
|
|
let mut es = ~[];
|
2013-02-21 18:12:13 -08:00
|
|
|
while *p.token != token::EOF {
|
2013-07-22 21:22:22 +03:00
|
|
|
if es.len() != 0 && !p.eat(&token::COMMA) {
|
|
|
|
cx.span_fatal(sp, "expected token: `,`");
|
2012-12-12 17:08:09 -08:00
|
|
|
}
|
|
|
|
es.push(p.parse_expr());
|
2012-07-12 17:59:59 -07:00
|
|
|
}
|
2012-12-12 17:08:09 -08:00
|
|
|
es
|
2012-07-12 17:59:59 -07:00
|
|
|
}
|
|
|
|
|
2013-02-26 10:15:29 -08:00
|
|
|
// in order to have some notion of scoping for macros,
|
|
|
|
// we want to implement the notion of a transformation
|
|
|
|
// environment.
|
|
|
|
|
|
|
|
// This environment maps Names to Transformers.
|
|
|
|
// Initially, this includes macro definitions and
|
|
|
|
// block directives.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Actually, the following implementation is parameterized
|
|
|
|
// by both key and value types.
|
|
|
|
|
|
|
|
//impl question: how to implement it? Initially, the
|
|
|
|
// env will contain only macros, so it might be painful
|
|
|
|
// to add an empty frame for every context. Let's just
|
|
|
|
// get it working, first....
|
|
|
|
|
|
|
|
// NB! the mutability of the underlying maps means that
|
|
|
|
// if expansion is out-of-order, a deeper scope may be
|
|
|
|
// able to refer to a macro that was added to an enclosing
|
|
|
|
// scope lexically later than the deeper scope.
|
|
|
|
|
|
|
|
// Note on choice of representation: I've been pushed to
|
|
|
|
// use a top-level managed pointer by some difficulties
|
|
|
|
// with pushing and popping functionally, and the ownership
|
|
|
|
// issues. As a result, the values returned by the table
|
2013-03-14 11:22:51 -07:00
|
|
|
// also need to be managed; the &'self ... type that Maps
|
2013-02-26 10:15:29 -08:00
|
|
|
// return won't work for things that need to get outside
|
|
|
|
// of that managed pointer. The easiest way to do this
|
|
|
|
// is just to insist that the values in the tables are
|
|
|
|
// managed to begin with.
|
|
|
|
|
|
|
|
// a transformer env is either a base map or a map on top
|
|
|
|
// of another chain.
|
|
|
|
pub enum MapChain<K,V> {
|
2013-04-03 09:28:36 -04:00
|
|
|
BaseMapChain(~HashMap<K,@V>),
|
|
|
|
ConsMapChain(~HashMap<K,@V>,@mut MapChain<K,V>)
|
2013-02-26 10:15:29 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// get the map from an env frame
|
2013-07-18 17:12:46 -07:00
|
|
|
impl <K: Eq + Hash + IterBytes + 'static, V: 'static> MapChain<K,V>{
|
2013-02-26 10:15:29 -08:00
|
|
|
// Constructor. I don't think we need a zero-arg one.
|
2013-08-07 14:29:29 +02:00
|
|
|
pub fn new(init: ~HashMap<K,@V>) -> @mut MapChain<K,V> {
|
2013-02-26 15:48:00 -08:00
|
|
|
@mut BaseMapChain(init)
|
2013-02-26 10:15:29 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// add a new frame to the environment (functionally)
|
2013-08-07 14:29:29 +02:00
|
|
|
pub fn push_frame (@mut self) -> @mut MapChain<K,V> {
|
2013-04-03 09:28:36 -04:00
|
|
|
@mut ConsMapChain(~HashMap::new() ,self)
|
2013-02-26 10:15:29 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// no need for pop, it'll just be functional.
|
|
|
|
|
|
|
|
// utility fn...
|
|
|
|
|
|
|
|
// ugh: can't get this to compile with mut because of the
|
|
|
|
// lack of flow sensitivity.
|
2013-08-07 14:29:29 +02:00
|
|
|
pub fn get_map<'a>(&'a self) -> &'a HashMap<K,@V> {
|
2013-04-10 13:11:27 -07:00
|
|
|
match *self {
|
|
|
|
BaseMapChain (~ref map) => map,
|
|
|
|
ConsMapChain (~ref map,_) => map
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-26 10:15:29 -08:00
|
|
|
// traits just don't work anywhere...?
|
2013-05-31 15:17:22 -07:00
|
|
|
//impl Map<Name,SyntaxExtension> for MapChain {
|
2013-02-26 10:15:29 -08:00
|
|
|
|
2013-08-07 14:29:29 +02:00
|
|
|
pub fn contains_key (&self, key: &K) -> bool {
|
2013-02-26 10:15:29 -08:00
|
|
|
match *self {
|
2013-02-26 15:48:00 -08:00
|
|
|
BaseMapChain (ref map) => map.contains_key(key),
|
|
|
|
ConsMapChain (ref map,ref rest) =>
|
2013-02-26 10:15:29 -08:00
|
|
|
(map.contains_key(key)
|
|
|
|
|| rest.contains_key(key))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// should each_key and each_value operate on shadowed
|
|
|
|
// names? I think not.
|
|
|
|
// delaying implementing this....
|
2013-08-07 14:29:29 +02:00
|
|
|
pub fn each_key (&self, _f: &fn (&K)->bool) {
|
2013-05-06 00:18:51 +02:00
|
|
|
fail!("unimplemented 2013-02-15T10:01");
|
2013-02-26 10:15:29 -08:00
|
|
|
}
|
|
|
|
|
2013-08-07 14:29:29 +02:00
|
|
|
pub fn each_value (&self, _f: &fn (&V) -> bool) {
|
2013-05-06 00:18:51 +02:00
|
|
|
fail!("unimplemented 2013-02-15T10:02");
|
2013-02-26 10:15:29 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
// Returns a copy of the value that the name maps to.
|
|
|
|
// Goes down the chain 'til it finds one (or bottom out).
|
2013-08-07 14:29:29 +02:00
|
|
|
pub fn find (&self, key: &K) -> Option<@V> {
|
2013-02-26 10:15:29 -08:00
|
|
|
match self.get_map().find (key) {
|
|
|
|
Some(ref v) => Some(**v),
|
|
|
|
None => match *self {
|
2013-02-26 15:48:00 -08:00
|
|
|
BaseMapChain (_) => None,
|
|
|
|
ConsMapChain (_,ref rest) => rest.find(key)
|
2013-02-26 10:15:29 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-07 14:29:29 +02:00
|
|
|
pub fn find_in_topmost_frame(&self, key: &K) -> Option<@V> {
|
2013-06-04 14:56:33 -07:00
|
|
|
let map = match *self {
|
|
|
|
BaseMapChain(ref map) => map,
|
|
|
|
ConsMapChain(ref map,_) => map
|
|
|
|
};
|
|
|
|
// strip one layer of indirection off the pointer.
|
2013-08-04 14:59:36 -07:00
|
|
|
map.find(key).map_move(|r| {*r})
|
2013-06-04 14:56:33 -07:00
|
|
|
}
|
|
|
|
|
2013-02-26 10:15:29 -08:00
|
|
|
// insert the binding into the top-level map
|
2013-08-07 14:29:29 +02:00
|
|
|
pub fn insert (&mut self, key: K, ext: @V) -> bool {
|
2013-02-26 10:15:29 -08:00
|
|
|
// can't abstract over get_map because of flow sensitivity...
|
|
|
|
match *self {
|
2013-02-26 15:48:00 -08:00
|
|
|
BaseMapChain (~ref mut map) => map.insert(key, ext),
|
|
|
|
ConsMapChain (~ref mut map,_) => map.insert(key,ext)
|
2013-02-26 10:15:29 -08:00
|
|
|
}
|
|
|
|
}
|
2013-05-08 15:27:29 -07:00
|
|
|
// insert the binding into the topmost frame for which the binding
|
|
|
|
// associated with 'n' exists and satisfies pred
|
|
|
|
// ... there are definitely some opportunities for abstraction
|
|
|
|
// here that I'm ignoring. (e.g., manufacturing a predicate on
|
|
|
|
// the maps in the chain, and using an abstract "find".
|
2013-08-07 14:29:29 +02:00
|
|
|
pub fn insert_into_frame(&mut self, key: K, ext: @V, n: K, pred: &fn(&@V)->bool) {
|
2013-05-08 15:27:29 -07:00
|
|
|
match *self {
|
|
|
|
BaseMapChain (~ref mut map) => {
|
|
|
|
if satisfies_pred(map,&n,pred) {
|
|
|
|
map.insert(key,ext);
|
|
|
|
} else {
|
|
|
|
fail!(~"expected map chain containing satisfying frame")
|
|
|
|
}
|
|
|
|
},
|
|
|
|
ConsMapChain (~ref mut map, rest) => {
|
2013-06-21 20:08:35 -04:00
|
|
|
if satisfies_pred(map,&n,|v|pred(v)) {
|
2013-05-08 15:27:29 -07:00
|
|
|
map.insert(key,ext);
|
|
|
|
} else {
|
|
|
|
rest.insert_into_frame(key,ext,n,pred)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-02-26 10:15:29 -08:00
|
|
|
|
2013-06-04 14:56:33 -07:00
|
|
|
// returns true if the binding for 'n' satisfies 'pred' in 'map'
|
2013-05-08 15:27:29 -07:00
|
|
|
fn satisfies_pred<K : Eq + Hash + IterBytes,V>(map : &mut HashMap<K,V>,
|
|
|
|
n: &K,
|
|
|
|
pred: &fn(&V)->bool)
|
|
|
|
-> bool {
|
|
|
|
match map.find(n) {
|
|
|
|
Some(ref v) => (pred(*v)),
|
|
|
|
None => false
|
|
|
|
}
|
2013-02-26 10:15:29 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
|
|
|
use super::MapChain;
|
2013-06-24 20:40:33 -04:00
|
|
|
use std::hashmap::HashMap;
|
2013-02-26 10:15:29 -08:00
|
|
|
|
|
|
|
#[test] fn testenv () {
|
2013-04-03 09:28:36 -04:00
|
|
|
let mut a = HashMap::new();
|
2013-06-13 03:02:55 +10:00
|
|
|
a.insert (@"abc",@15);
|
2013-02-26 10:15:29 -08:00
|
|
|
let m = MapChain::new(~a);
|
2013-06-13 03:02:55 +10:00
|
|
|
m.insert (@"def",@16);
|
2013-08-07 00:50:23 -04:00
|
|
|
assert_eq!(m.find(&@"abc"),Some(@15));
|
|
|
|
assert_eq!(m.find(&@"def"),Some(@16));
|
2013-08-04 01:59:24 +02:00
|
|
|
assert_eq!(*(m.find(&@"abc").unwrap()),15);
|
|
|
|
assert_eq!(*(m.find(&@"def").unwrap()),16);
|
2013-02-26 10:15:29 -08:00
|
|
|
let n = m.push_frame();
|
|
|
|
// old bindings are still present:
|
2013-08-04 01:59:24 +02:00
|
|
|
assert_eq!(*(n.find(&@"abc").unwrap()),15);
|
|
|
|
assert_eq!(*(n.find(&@"def").unwrap()),16);
|
2013-06-13 03:02:55 +10:00
|
|
|
n.insert (@"def",@17);
|
2013-02-26 10:15:29 -08:00
|
|
|
// n shows the new binding
|
2013-08-04 01:59:24 +02:00
|
|
|
assert_eq!(*(n.find(&@"abc").unwrap()),15);
|
|
|
|
assert_eq!(*(n.find(&@"def").unwrap()),17);
|
2013-02-26 10:15:29 -08:00
|
|
|
// ... but m still has the old ones
|
2013-08-07 00:50:23 -04:00
|
|
|
assert_eq!(m.find(&@"abc"),Some(@15));
|
|
|
|
assert_eq!(m.find(&@"def"),Some(@16));
|
2013-08-04 01:59:24 +02:00
|
|
|
assert_eq!(*(m.find(&@"abc").unwrap()),15);
|
|
|
|
assert_eq!(*(m.find(&@"def").unwrap()),16);
|
2013-02-26 10:15:29 -08:00
|
|
|
}
|
|
|
|
}
|