2011-07-06 15:22:23 -07:00
|
|
|
import driver::session;
|
|
|
|
|
2011-12-13 16:25:51 -08:00
|
|
|
import option::{none, some};
|
2011-07-06 15:22:23 -07:00
|
|
|
|
|
|
|
import std::map::hashmap;
|
2011-12-13 16:25:51 -08:00
|
|
|
import vec;
|
2011-07-06 15:22:23 -07:00
|
|
|
|
2012-01-25 16:38:09 -07:00
|
|
|
import syntax::ast::{crate, expr_, expr_mac, mac_invoc, mac_qq};
|
2011-08-05 13:06:11 -07:00
|
|
|
import syntax::fold::*;
|
|
|
|
import syntax::ext::base::*;
|
2012-01-26 17:03:20 -07:00
|
|
|
import syntax::ext::qquote::expand_qquote;
|
2011-12-20 13:38:10 -08:00
|
|
|
import syntax::parse::parser::parse_expr_from_source_str;
|
2011-08-05 13:06:11 -07:00
|
|
|
|
2012-01-22 17:30:07 -07:00
|
|
|
import codemap::span;
|
|
|
|
|
|
|
|
fn expand_expr(exts: hashmap<str, syntax_extension>, cx: ext_ctxt,
|
|
|
|
e: expr_, s: span, fld: ast_fold,
|
|
|
|
orig: fn@(expr_, span, ast_fold) -> (expr_, span))
|
|
|
|
-> (expr_, span)
|
|
|
|
{
|
2011-07-27 14:19:39 +02:00
|
|
|
ret alt e {
|
|
|
|
expr_mac(mac) {
|
|
|
|
alt mac.node {
|
|
|
|
mac_invoc(pth, args, body) {
|
2011-08-15 16:38:23 -07:00
|
|
|
assert (vec::len(pth.node.idents) > 0u);
|
2011-08-19 15:16:48 -07:00
|
|
|
let extname = pth.node.idents[0];
|
2011-08-25 17:00:12 -07:00
|
|
|
alt exts.find(extname) {
|
2012-01-18 22:37:22 -08:00
|
|
|
none {
|
2011-08-28 00:24:28 -07:00
|
|
|
cx.span_fatal(pth.span,
|
2011-09-02 15:34:58 -07:00
|
|
|
#fmt["macro undefined: '%s'", extname])
|
2011-07-27 14:19:39 +02:00
|
|
|
}
|
2011-08-05 13:06:11 -07:00
|
|
|
some(normal(ext)) {
|
|
|
|
let expanded = ext(cx, pth.span, args, body);
|
2011-07-27 14:19:39 +02:00
|
|
|
|
2011-08-05 13:06:11 -07:00
|
|
|
cx.bt_push(mac.span);
|
2011-07-27 14:19:39 +02:00
|
|
|
//keep going, outside-in
|
2011-08-05 13:06:11 -07:00
|
|
|
let fully_expanded = fld.fold_expr(expanded).node;
|
|
|
|
cx.bt_pop();
|
|
|
|
|
2012-01-22 17:30:07 -07:00
|
|
|
(fully_expanded, s)
|
2011-07-27 14:19:39 +02:00
|
|
|
}
|
2011-08-05 13:06:11 -07:00
|
|
|
some(macro_defining(ext)) {
|
|
|
|
let named_extension = ext(cx, pth.span, args, body);
|
2011-09-02 15:34:58 -07:00
|
|
|
exts.insert(named_extension.ident, named_extension.ext);
|
2012-01-22 17:30:07 -07:00
|
|
|
(ast::expr_rec([], none), s)
|
2011-07-27 14:19:39 +02:00
|
|
|
}
|
2011-07-06 15:22:23 -07:00
|
|
|
}
|
2011-07-27 14:19:39 +02:00
|
|
|
}
|
2012-01-25 16:38:09 -07:00
|
|
|
mac_qq(sp, exp) { (expand_qquote(cx, sp, exp), s) }
|
2011-09-02 15:34:58 -07:00
|
|
|
_ { cx.span_bug(mac.span, "naked syntactic bit") }
|
2011-07-06 15:22:23 -07:00
|
|
|
}
|
2011-07-27 14:19:39 +02:00
|
|
|
}
|
2012-01-22 17:30:07 -07:00
|
|
|
_ { orig(e, s, fld) }
|
2011-07-27 14:19:39 +02:00
|
|
|
};
|
2011-07-06 15:22:23 -07:00
|
|
|
}
|
|
|
|
|
2011-12-20 13:38:10 -08:00
|
|
|
// FIXME: 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.
|
|
|
|
|
|
|
|
fn core_macros() -> str {
|
|
|
|
ret
|
|
|
|
"{
|
2012-01-13 15:05:26 -08: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 13:38:10 -08:00
|
|
|
}";
|
|
|
|
}
|
|
|
|
|
2011-09-12 11:27:30 +02:00
|
|
|
fn expand_crate(sess: session::session, c: @crate) -> @crate {
|
2011-08-05 13:06:11 -07:00
|
|
|
let exts = syntax_expander_table();
|
2011-07-27 14:19:39 +02:00
|
|
|
let afp = default_ast_fold();
|
2011-08-05 13:06:11 -07:00
|
|
|
let cx: ext_ctxt = mk_ctxt(sess);
|
2011-07-27 14:19:39 +02:00
|
|
|
let f_pre =
|
2012-01-22 17:30:07 -07:00
|
|
|
{fold_expr: bind expand_expr(exts, cx, _, _, _, afp.fold_expr)
|
2011-07-27 14:19:39 +02:00
|
|
|
with *afp};
|
|
|
|
let f = make_fold(f_pre);
|
2012-01-25 15:53:45 -07:00
|
|
|
let cm = parse_expr_from_source_str("<anon>", @core_macros(),
|
2012-01-12 17:59:49 +01:00
|
|
|
sess.opts.cfg,
|
|
|
|
sess.parse_sess);
|
2011-12-20 13:38:10 -08: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 14:19:39 +02:00
|
|
|
let res = @f.fold_crate(*c);
|
2011-07-06 15:22:23 -07: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:
|