2011-07-06 17:22:23 -05:00
|
|
|
import std::map::hashmap;
|
|
|
|
|
2012-06-06 14:38:29 -05:00
|
|
|
import ast::{crate, expr_, expr_mac, mac_invoc, mac_invoc_tt,
|
2012-07-05 14:10:33 -05:00
|
|
|
tt_delim, tt_flat, item_mac};
|
2012-03-29 15:48:05 -05:00
|
|
|
import fold::*;
|
|
|
|
import ext::base::*;
|
|
|
|
import ext::qquote::{qq_helper};
|
2012-06-06 14:38:29 -05:00
|
|
|
import parse::{parser, parse_expr_from_source_str, new_parser_from_tt};
|
2011-08-05 15:06:11 -05:00
|
|
|
|
2012-03-02 16:36:22 -06:00
|
|
|
|
2012-02-04 19:37:24 -06:00
|
|
|
import codemap::{span, expanded_from};
|
2012-01-22 18:30:07 -06:00
|
|
|
|
2012-07-14 00:57:48 -05:00
|
|
|
fn expand_expr(exts: hashmap<~str, syntax_extension>, cx: ext_ctxt,
|
2012-01-22 18:30:07 -06:00
|
|
|
e: expr_, s: span, fld: ast_fold,
|
|
|
|
orig: fn@(expr_, span, ast_fold) -> (expr_, span))
|
|
|
|
-> (expr_, span)
|
|
|
|
{
|
2011-07-27 07:19:39 -05:00
|
|
|
ret alt e {
|
|
|
|
expr_mac(mac) {
|
|
|
|
alt mac.node {
|
|
|
|
mac_invoc(pth, args, body) {
|
2012-04-23 06:04:46 -05:00
|
|
|
assert (vec::len(pth.idents) > 0u);
|
|
|
|
let extname = pth.idents[0];
|
2012-06-10 02:49:59 -05:00
|
|
|
alt exts.find(*extname) {
|
2012-01-19 00:37:22 -06:00
|
|
|
none {
|
2011-08-28 02:24:28 -05:00
|
|
|
cx.span_fatal(pth.span,
|
2012-06-10 02:49:59 -05:00
|
|
|
#fmt["macro undefined: '%s'", *extname])
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2012-03-02 16:36:22 -06:00
|
|
|
some(item_decorator(_)) {
|
|
|
|
cx.span_fatal(
|
|
|
|
pth.span,
|
2012-06-10 02:49:59 -05:00
|
|
|
#fmt["%s can only be used as a decorator", *extname]);
|
2012-03-02 16:36:22 -06:00
|
|
|
}
|
2012-02-04 19:37:24 -06:00
|
|
|
some(normal({expander: exp, span: exp_sp})) {
|
2012-07-06 20:04:28 -05:00
|
|
|
let expanded = exp(cx, mac.span, args, body);
|
2011-07-27 07:19:39 -05:00
|
|
|
|
2012-04-19 18:19:53 -05:00
|
|
|
cx.bt_push(expanded_from({call_site: s,
|
2012-06-10 02:49:59 -05:00
|
|
|
callie: {name: *extname, span: exp_sp}}));
|
2011-07-27 07:19:39 -05:00
|
|
|
//keep going, outside-in
|
2011-08-05 15:06:11 -05:00
|
|
|
let fully_expanded = fld.fold_expr(expanded).node;
|
|
|
|
cx.bt_pop();
|
|
|
|
|
2012-01-22 18:30:07 -06:00
|
|
|
(fully_expanded, s)
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2011-08-05 15:06:11 -05:00
|
|
|
some(macro_defining(ext)) {
|
2012-07-06 20:04:28 -05:00
|
|
|
let named_extension = ext(cx, mac.span, args, body);
|
2012-06-10 02:49:59 -05:00
|
|
|
exts.insert(*named_extension.ident, named_extension.ext);
|
2012-06-29 18:26:56 -05:00
|
|
|
(ast::expr_rec(~[], none), s)
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2012-07-06 20:04:28 -05:00
|
|
|
some(expr_tt(_)) {
|
2012-06-25 17:04:50 -05:00
|
|
|
cx.span_fatal(pth.span,
|
|
|
|
#fmt["this tt-style macro should be \
|
|
|
|
invoked '%s!{...}'", *extname])
|
|
|
|
}
|
2012-07-05 14:10:33 -05:00
|
|
|
some(item_tt(*)) {
|
|
|
|
cx.span_fatal(pth.span,
|
2012-07-14 00:57:48 -05:00
|
|
|
~"cannot use item macros in this context");
|
2012-07-05 14:10:33 -05:00
|
|
|
}
|
2012-06-25 17:04:50 -05:00
|
|
|
}
|
|
|
|
}
|
2012-07-06 20:04:28 -05:00
|
|
|
mac_invoc_tt(pth, tts) {
|
|
|
|
assert (vec::len(pth.idents) == 1u);
|
2012-06-25 17:04:50 -05:00
|
|
|
let extname = pth.idents[0];
|
|
|
|
alt exts.find(*extname) {
|
|
|
|
none {
|
|
|
|
cx.span_fatal(pth.span,
|
|
|
|
#fmt["macro undefined: '%s'", *extname])
|
|
|
|
}
|
2012-07-06 20:04:28 -05:00
|
|
|
some(expr_tt({expander: exp, span: exp_sp})) {
|
|
|
|
let expanded = alt exp(cx, mac.span, tts) {
|
|
|
|
mr_expr(e) { e }
|
|
|
|
_ { cx.span_fatal(
|
|
|
|
pth.span, #fmt["non-expr macro in expr pos: %s",
|
|
|
|
*extname]) }
|
|
|
|
};
|
2012-06-25 17:04:50 -05:00
|
|
|
|
|
|
|
cx.bt_push(expanded_from({call_site: s,
|
|
|
|
callie: {name: *extname, span: exp_sp}}));
|
|
|
|
//keep going, outside-in
|
|
|
|
let fully_expanded = fld.fold_expr(expanded).node;
|
|
|
|
cx.bt_pop();
|
|
|
|
|
|
|
|
(fully_expanded, s)
|
2012-07-12 19:59:59 -05:00
|
|
|
}
|
|
|
|
some(normal({expander: exp, span: exp_sp})) {
|
|
|
|
//convert the new-style invoc for the old-style macro
|
|
|
|
let arg = base::tt_args_to_original_flavor(cx, pth.span,
|
|
|
|
tts);
|
|
|
|
let expanded = exp(cx, mac.span, arg, none);
|
2012-06-25 17:04:50 -05:00
|
|
|
|
2012-07-12 19:59:59 -05:00
|
|
|
cx.bt_push(expanded_from({call_site: s,
|
|
|
|
callie: {name: *extname, span: exp_sp}}));
|
|
|
|
//keep going, outside-in
|
|
|
|
let fully_expanded = fld.fold_expr(expanded).node;
|
|
|
|
cx.bt_pop();
|
|
|
|
|
|
|
|
(fully_expanded, s)
|
2012-06-25 17:04:50 -05:00
|
|
|
}
|
|
|
|
_ {
|
|
|
|
cx.span_fatal(pth.span,
|
|
|
|
#fmt["'%s' is not a tt-style macro",
|
|
|
|
*extname])
|
|
|
|
}
|
|
|
|
|
2011-07-06 17:22:23 -05:00
|
|
|
}
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2012-07-14 00:57:48 -05:00
|
|
|
_ { cx.span_bug(mac.span, ~"naked syntactic bit") }
|
2011-07-06 17:22:23 -05:00
|
|
|
}
|
2011-07-27 07:19:39 -05:00
|
|
|
}
|
2012-01-22 18:30:07 -06:00
|
|
|
_ { orig(e, s, fld) }
|
2011-07-27 07:19:39 -05:00
|
|
|
};
|
2011-07-06 17:22:23 -05:00
|
|
|
}
|
|
|
|
|
2012-07-14 00:57:48 -05:00
|
|
|
fn expand_mod_items(exts: hashmap<~str, syntax_extension>, cx: ext_ctxt,
|
2012-03-02 16:36:22 -06:00
|
|
|
module: ast::_mod, fld: ast_fold,
|
|
|
|
orig: fn@(ast::_mod, ast_fold) -> ast::_mod)
|
|
|
|
-> ast::_mod
|
|
|
|
{
|
|
|
|
// Fold the contents first:
|
|
|
|
let module = orig(module, fld);
|
|
|
|
|
|
|
|
// For each item, look through the attributes. If any of them are
|
|
|
|
// decorated with "item decorators", then use that function to transform
|
|
|
|
// the item into a new set of items.
|
2012-06-30 18:19:07 -05:00
|
|
|
let new_items = do vec::flat_map(module.items) |item| {
|
|
|
|
do vec::foldr(item.attrs, ~[item]) |attr, items| {
|
2012-03-02 16:36:22 -06:00
|
|
|
let mname = alt attr.node.value.node {
|
|
|
|
ast::meta_word(n) { n }
|
|
|
|
ast::meta_name_value(n, _) { n }
|
|
|
|
ast::meta_list(n, _) { n }
|
|
|
|
};
|
2012-06-10 02:49:59 -05:00
|
|
|
alt exts.find(*mname) {
|
2012-06-25 17:04:50 -05:00
|
|
|
none | some(normal(_)) | some(macro_defining(_))
|
2012-07-06 20:04:28 -05:00
|
|
|
| some(expr_tt(_)) | some(item_tt(*)) {
|
2012-03-02 16:36:22 -06:00
|
|
|
items
|
|
|
|
}
|
|
|
|
|
|
|
|
some(item_decorator(dec_fn)) {
|
|
|
|
dec_fn(cx, attr.span, attr.node.value, items)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ret {items: new_items with module};
|
|
|
|
}
|
|
|
|
|
2012-05-18 12:00:49 -05:00
|
|
|
/* record module we enter for `#mod` */
|
2012-07-14 00:57:48 -05:00
|
|
|
fn expand_item(exts: hashmap<~str, syntax_extension>,
|
2012-07-05 14:10:33 -05:00
|
|
|
cx: ext_ctxt, &&it: @ast::item, fld: ast_fold,
|
2012-07-06 14:17:34 -05:00
|
|
|
orig: fn@(&&@ast::item, ast_fold) -> option<@ast::item>)
|
|
|
|
-> option<@ast::item>
|
2012-05-18 12:00:49 -05:00
|
|
|
{
|
|
|
|
let is_mod = alt it.node {
|
2012-06-26 18:18:37 -05:00
|
|
|
ast::item_mod(_) | ast::item_foreign_mod(_) {true}
|
2012-05-18 12:00:49 -05:00
|
|
|
_ {false}
|
|
|
|
};
|
2012-07-06 14:17:34 -05:00
|
|
|
let maybe_it = alt it.node {
|
2012-07-05 14:10:33 -05:00
|
|
|
ast::item_mac(*) {
|
2012-07-05 18:46:32 -05:00
|
|
|
expand_item_mac(exts, cx, it, fld)
|
2012-07-05 14:10:33 -05:00
|
|
|
}
|
2012-07-06 14:17:34 -05:00
|
|
|
_ { some(it) }
|
2012-07-05 14:10:33 -05:00
|
|
|
};
|
2012-07-06 14:17:34 -05:00
|
|
|
|
|
|
|
alt maybe_it {
|
|
|
|
some(it) {
|
|
|
|
if is_mod { cx.mod_push(it.ident); }
|
|
|
|
let ret_val = orig(it, fld);
|
|
|
|
if is_mod { cx.mod_pop(); }
|
|
|
|
ret ret_val;
|
|
|
|
}
|
|
|
|
none { ret none; }
|
|
|
|
}
|
2012-05-18 12:00:49 -05:00
|
|
|
}
|
|
|
|
|
2012-07-14 00:57:48 -05:00
|
|
|
fn expand_item_mac(exts: hashmap<~str, syntax_extension>,
|
2012-07-05 18:46:32 -05:00
|
|
|
cx: ext_ctxt, &&it: @ast::item,
|
2012-07-06 14:17:34 -05:00
|
|
|
fld: ast_fold) -> option<@ast::item> {
|
2012-07-05 14:10:33 -05:00
|
|
|
alt it.node {
|
2012-07-06 20:04:28 -05:00
|
|
|
item_mac({node: mac_invoc_tt(pth, tts), span}) {
|
2012-07-05 14:10:33 -05:00
|
|
|
let extname = pth.idents[0];
|
|
|
|
alt exts.find(*extname) {
|
|
|
|
none {
|
|
|
|
cx.span_fatal(pth.span,
|
|
|
|
#fmt("macro undefined: '%s'", *extname))
|
|
|
|
}
|
|
|
|
some(item_tt(expand)) {
|
2012-07-06 20:04:28 -05:00
|
|
|
let expanded = expand.expander(cx, it.span, it.ident, tts);
|
2012-07-05 18:46:32 -05:00
|
|
|
cx.bt_push(expanded_from({call_site: it.span,
|
|
|
|
callie: {name: *extname,
|
|
|
|
span: expand.span}}));
|
2012-07-06 20:04:28 -05:00
|
|
|
let maybe_it = alt expanded {
|
|
|
|
mr_item(it) { fld.fold_item(it) }
|
|
|
|
mr_expr(e) { cx.span_fatal(pth.span,
|
2012-07-14 00:57:48 -05:00
|
|
|
~"expr macro in item position: " +
|
2012-07-06 20:04:28 -05:00
|
|
|
*extname) }
|
|
|
|
mr_def(mdef) {
|
|
|
|
exts.insert(*mdef.ident, mdef.ext);
|
|
|
|
none
|
|
|
|
}
|
|
|
|
};
|
2012-07-05 18:46:32 -05:00
|
|
|
cx.bt_pop();
|
2012-07-06 16:29:50 -05:00
|
|
|
ret maybe_it
|
2012-07-05 14:10:33 -05:00
|
|
|
}
|
|
|
|
_ { cx.span_fatal(it.span,
|
|
|
|
#fmt("%s is not a legal here", *extname)) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ {
|
2012-07-14 00:57:48 -05:00
|
|
|
cx.span_bug(it.span, ~"invalid item macro invocation");
|
2012-07-05 14:10:33 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-04 19:37:24 -06:00
|
|
|
fn new_span(cx: ext_ctxt, sp: span) -> span {
|
|
|
|
/* this discards information in the case of macro-defining macros */
|
|
|
|
ret {lo: sp.lo, hi: sp.hi, expn_info: cx.backtrace()};
|
|
|
|
}
|
|
|
|
|
2012-06-21 18:44:10 -05:00
|
|
|
// FIXME (#2247): this is a terrible kludge to inject some macros into
|
|
|
|
// the default compilation environment. When the macro-definition system
|
|
|
|
// is substantially more mature, these should move from here, into a
|
|
|
|
// compiled part of libcore at very least.
|
2011-12-20 15:38:10 -06:00
|
|
|
|
2012-07-14 00:57:48 -05:00
|
|
|
fn core_macros() -> ~str {
|
2011-12-20 15:38:10 -06:00
|
|
|
ret
|
2012-07-14 00:57:48 -05:00
|
|
|
~"{
|
2012-01-13 17:05:26 -06:00
|
|
|
#macro([#error[f, ...], log(core::error, #fmt[f, ...])]);
|
|
|
|
#macro([#warn[f, ...], log(core::warn, #fmt[f, ...])]);
|
|
|
|
#macro([#info[f, ...], log(core::info, #fmt[f, ...])]);
|
|
|
|
#macro([#debug[f, ...], log(core::debug, #fmt[f, ...])]);
|
2011-12-20 15:38:10 -06:00
|
|
|
}";
|
|
|
|
}
|
|
|
|
|
2012-04-18 01:34:48 -05:00
|
|
|
fn expand_crate(parse_sess: parse::parse_sess,
|
2012-03-27 16:03:57 -05:00
|
|
|
cfg: ast::crate_cfg, c: @crate) -> @crate {
|
2011-08-05 15:06:11 -05:00
|
|
|
let exts = syntax_expander_table();
|
2011-07-27 07:19:39 -05:00
|
|
|
let afp = default_ast_fold();
|
2012-03-27 16:03:57 -05:00
|
|
|
let cx: ext_ctxt = mk_ctxt(parse_sess, cfg);
|
2011-07-27 07:19:39 -05:00
|
|
|
let f_pre =
|
2012-06-30 18:19:07 -05:00
|
|
|
@{fold_expr: |a,b,c| expand_expr(exts, cx, a, b, c, afp.fold_expr),
|
|
|
|
fold_mod: |a,b| expand_mod_items(exts, cx, a, b, afp.fold_mod),
|
2012-07-05 14:10:33 -05:00
|
|
|
fold_item: |a,b| expand_item(exts, cx, a, b, afp.fold_item),
|
2012-06-30 18:19:07 -05:00
|
|
|
new_span: |a|new_span(cx, a)
|
2012-05-21 20:28:39 -05:00
|
|
|
with *afp};
|
2011-07-27 07:19:39 -05:00
|
|
|
let f = make_fold(f_pre);
|
2012-07-14 00:57:48 -05:00
|
|
|
let cm = parse_expr_from_source_str(~"<core-macros>",
|
2012-04-30 13:52:07 -05:00
|
|
|
@core_macros(),
|
2012-03-27 16:03:57 -05:00
|
|
|
cfg,
|
|
|
|
parse_sess);
|
2011-12-20 15:38:10 -06:00
|
|
|
|
|
|
|
// This is run for its side-effects on the expander env,
|
|
|
|
// as it registers all the core macros as expanders.
|
|
|
|
f.fold_expr(cm);
|
|
|
|
|
2011-07-27 07:19:39 -05:00
|
|
|
let res = @f.fold_crate(*c);
|
2011-07-06 17:22:23 -05:00
|
|
|
ret res;
|
|
|
|
}
|
|
|
|
// Local Variables:
|
|
|
|
// mode: rust
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|