2011-06-04 19:41:45 +00:00
|
|
|
import std::map::hashmap;
|
2012-03-29 20:48:05 +00:00
|
|
|
import parse::parser;
|
|
|
|
import diagnostic::span_handler;
|
2012-03-23 01:53:30 +00:00
|
|
|
import codemap::{codemap, span, expn_info, expanded_from};
|
2012-03-14 19:07:23 +00:00
|
|
|
import std::map::str_hash;
|
2011-06-04 19:41:45 +00:00
|
|
|
|
2012-02-05 01:37:24 +00:00
|
|
|
type syntax_expander_ =
|
2012-02-01 06:50:12 +00:00
|
|
|
fn@(ext_ctxt, span, ast::mac_arg, ast::mac_body) -> @ast::expr;
|
2012-06-25 22:04:50 +00:00
|
|
|
type syntax_expander = {expander: syntax_expander_, span: option<span>};
|
|
|
|
|
2012-06-10 07:49:59 +00:00
|
|
|
type macro_def = {ident: ast::ident, ext: syntax_extension};
|
2011-07-27 12:19:39 +00:00
|
|
|
type macro_definer =
|
2012-02-01 06:50:12 +00:00
|
|
|
fn@(ext_ctxt, span, ast::mac_arg, ast::mac_body) -> macro_def;
|
2012-03-02 22:36:22 +00:00
|
|
|
type item_decorator =
|
2012-06-29 23:26:56 +00:00
|
|
|
fn@(ext_ctxt, span, ast::meta_item, ~[@ast::item]) -> ~[@ast::item];
|
2011-06-15 18:19:50 +00:00
|
|
|
|
2012-06-25 22:04:50 +00:00
|
|
|
type syntax_expander_tt = {expander: syntax_expander_tt_, span: option<span>};
|
|
|
|
type syntax_expander_tt_ = fn@(ext_ctxt, span, ast::token_tree) -> @ast::expr;
|
|
|
|
|
2012-07-05 19:10:33 +00:00
|
|
|
type syntax_expander_tt_item
|
|
|
|
= {expander: syntax_expander_tt_item_, span: option<span>};
|
|
|
|
type syntax_expander_tt_item_
|
|
|
|
= fn@(ext_ctxt, span, ast::ident, ast::token_tree) -> @ast::item;
|
|
|
|
|
2012-01-19 22:24:03 +00:00
|
|
|
enum syntax_extension {
|
2012-01-20 01:56:05 +00:00
|
|
|
normal(syntax_expander),
|
|
|
|
macro_defining(macro_definer),
|
2012-03-02 22:36:22 +00:00
|
|
|
item_decorator(item_decorator),
|
2012-06-25 22:04:50 +00:00
|
|
|
|
2012-07-05 19:10:33 +00:00
|
|
|
normal_tt(syntax_expander_tt),
|
|
|
|
item_tt(syntax_expander_tt_item),
|
2011-06-21 00:26:17 +00:00
|
|
|
}
|
2011-06-04 19:41:45 +00:00
|
|
|
|
|
|
|
// A temporary hard-coded map of methods for expanding syntax extension
|
|
|
|
// AST nodes into full ASTs
|
2011-09-02 22:34:58 +00:00
|
|
|
fn syntax_expander_table() -> hashmap<str, syntax_extension> {
|
2012-02-05 01:37:24 +00:00
|
|
|
fn builtin(f: syntax_expander_) -> syntax_extension
|
|
|
|
{normal({expander: f, span: none})}
|
2012-07-05 19:10:33 +00:00
|
|
|
fn builtin_item_tt(f: syntax_expander_tt_item_) -> syntax_extension {
|
|
|
|
item_tt({expander: f, span: none})
|
|
|
|
}
|
2012-03-14 19:07:23 +00:00
|
|
|
let syntax_expanders = str_hash::<syntax_extension>();
|
2012-02-05 01:37:24 +00:00
|
|
|
syntax_expanders.insert("fmt", builtin(ext::fmt::expand_syntax_ext));
|
2012-03-12 17:19:35 +00:00
|
|
|
syntax_expanders.insert("auto_serialize",
|
|
|
|
item_decorator(ext::auto_serialize::expand));
|
2012-02-05 01:37:24 +00:00
|
|
|
syntax_expanders.insert("env", builtin(ext::env::expand_syntax_ext));
|
2011-09-02 22:34:58 +00:00
|
|
|
syntax_expanders.insert("macro",
|
2011-07-05 09:48:19 +00:00
|
|
|
macro_defining(ext::simplext::add_new_extension));
|
2011-09-02 22:34:58 +00:00
|
|
|
syntax_expanders.insert("concat_idents",
|
2012-02-05 01:37:24 +00:00
|
|
|
builtin(ext::concat_idents::expand_syntax_ext));
|
2011-09-02 22:34:58 +00:00
|
|
|
syntax_expanders.insert("ident_to_str",
|
2012-02-05 01:37:24 +00:00
|
|
|
builtin(ext::ident_to_str::expand_syntax_ext));
|
2011-09-02 22:34:58 +00:00
|
|
|
syntax_expanders.insert("log_syntax",
|
2012-02-05 01:37:24 +00:00
|
|
|
builtin(ext::log_syntax::expand_syntax_ext));
|
2012-02-01 09:58:28 +00:00
|
|
|
syntax_expanders.insert("ast",
|
2012-02-05 01:37:24 +00:00
|
|
|
builtin(ext::qquote::expand_ast));
|
2012-05-15 00:43:31 +00:00
|
|
|
syntax_expanders.insert("line",
|
|
|
|
builtin(ext::source_util::expand_line));
|
|
|
|
syntax_expanders.insert("col",
|
|
|
|
builtin(ext::source_util::expand_col));
|
|
|
|
syntax_expanders.insert("file",
|
|
|
|
builtin(ext::source_util::expand_file));
|
|
|
|
syntax_expanders.insert("stringify",
|
|
|
|
builtin(ext::source_util::expand_stringify));
|
|
|
|
syntax_expanders.insert("include",
|
|
|
|
builtin(ext::source_util::expand_include));
|
2012-05-18 17:02:21 +00:00
|
|
|
syntax_expanders.insert("include_str",
|
|
|
|
builtin(ext::source_util::expand_include_str));
|
2012-05-18 17:03:27 +00:00
|
|
|
syntax_expanders.insert("include_bin",
|
|
|
|
builtin(ext::source_util::expand_include_bin));
|
2012-05-18 17:00:49 +00:00
|
|
|
syntax_expanders.insert("mod",
|
|
|
|
builtin(ext::source_util::expand_mod));
|
2012-07-05 19:10:33 +00:00
|
|
|
syntax_expanders.insert("proto",
|
|
|
|
builtin_item_tt(ext::pipes::expand_proto));
|
2011-06-04 19:41:45 +00:00
|
|
|
ret syntax_expanders;
|
|
|
|
}
|
|
|
|
|
2012-01-13 08:32:05 +00:00
|
|
|
iface ext_ctxt {
|
2012-03-23 01:53:30 +00:00
|
|
|
fn codemap() -> codemap;
|
2012-04-18 06:34:48 +00:00
|
|
|
fn parse_sess() -> parse::parse_sess;
|
2012-03-23 01:53:30 +00:00
|
|
|
fn cfg() -> ast::crate_cfg;
|
2012-01-13 08:32:05 +00:00
|
|
|
fn print_backtrace();
|
2012-02-05 01:37:24 +00:00
|
|
|
fn backtrace() -> expn_info;
|
2012-05-18 17:00:49 +00:00
|
|
|
fn mod_push(mod_name: ast::ident);
|
|
|
|
fn mod_pop();
|
2012-06-29 23:26:56 +00:00
|
|
|
fn mod_path() -> ~[ast::ident];
|
2012-02-05 01:37:24 +00:00
|
|
|
fn bt_push(ei: codemap::expn_info_);
|
2012-01-13 08:32:05 +00:00
|
|
|
fn bt_pop();
|
|
|
|
fn span_fatal(sp: span, msg: str) -> !;
|
|
|
|
fn span_err(sp: span, msg: str);
|
|
|
|
fn span_unimpl(sp: span, msg: str) -> !;
|
|
|
|
fn span_bug(sp: span, msg: str) -> !;
|
|
|
|
fn bug(msg: str) -> !;
|
|
|
|
fn next_id() -> ast::node_id;
|
2011-08-05 20:06:11 +00:00
|
|
|
}
|
2011-07-11 00:00:28 +00:00
|
|
|
|
2012-04-18 06:34:48 +00:00
|
|
|
fn mk_ctxt(parse_sess: parse::parse_sess,
|
2012-03-23 01:53:30 +00:00
|
|
|
cfg: ast::crate_cfg) -> ext_ctxt {
|
2012-04-18 06:34:48 +00:00
|
|
|
type ctxt_repr = {parse_sess: parse::parse_sess,
|
2012-03-23 01:53:30 +00:00
|
|
|
cfg: ast::crate_cfg,
|
2012-05-18 17:00:49 +00:00
|
|
|
mut backtrace: expn_info,
|
2012-06-29 23:26:56 +00:00
|
|
|
mut mod_path: ~[ast::ident]};
|
2012-01-13 08:32:05 +00:00
|
|
|
impl of ext_ctxt for ctxt_repr {
|
2012-03-23 01:53:30 +00:00
|
|
|
fn codemap() -> codemap { self.parse_sess.cm }
|
2012-04-18 06:34:48 +00:00
|
|
|
fn parse_sess() -> parse::parse_sess { self.parse_sess }
|
2012-03-23 01:53:30 +00:00
|
|
|
fn cfg() -> ast::crate_cfg { self.cfg }
|
2012-01-13 08:32:05 +00:00
|
|
|
fn print_backtrace() { }
|
2012-02-05 01:37:24 +00:00
|
|
|
fn backtrace() -> expn_info { self.backtrace }
|
2012-05-18 17:00:49 +00:00
|
|
|
fn mod_push(i: ast::ident) { vec::push(self.mod_path, i); }
|
|
|
|
fn mod_pop() { vec::pop(self.mod_path); }
|
2012-06-29 23:26:56 +00:00
|
|
|
fn mod_path() -> ~[ast::ident] { ret self.mod_path; }
|
2012-02-05 01:37:24 +00:00
|
|
|
fn bt_push(ei: codemap::expn_info_) {
|
|
|
|
alt ei {
|
|
|
|
expanded_from({call_site: cs, callie: callie}) {
|
|
|
|
self.backtrace =
|
|
|
|
some(@expanded_from({
|
|
|
|
call_site: {lo: cs.lo, hi: cs.hi,
|
|
|
|
expn_info: self.backtrace},
|
|
|
|
callie: callie}));
|
|
|
|
}
|
|
|
|
}
|
2012-01-13 08:32:05 +00:00
|
|
|
}
|
|
|
|
fn bt_pop() {
|
|
|
|
alt self.backtrace {
|
2012-02-05 01:37:24 +00:00
|
|
|
some(@expanded_from({call_site: {expn_info: prev, _}, _})) {
|
|
|
|
self.backtrace = prev
|
2012-01-13 08:32:05 +00:00
|
|
|
}
|
|
|
|
_ { self.bug("tried to pop without a push"); }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fn span_fatal(sp: span, msg: str) -> ! {
|
|
|
|
self.print_backtrace();
|
2012-03-23 01:53:30 +00:00
|
|
|
self.parse_sess.span_diagnostic.span_fatal(sp, msg);
|
2012-01-13 08:32:05 +00:00
|
|
|
}
|
|
|
|
fn span_err(sp: span, msg: str) {
|
|
|
|
self.print_backtrace();
|
2012-03-23 01:53:30 +00:00
|
|
|
self.parse_sess.span_diagnostic.span_err(sp, msg);
|
2012-01-13 08:32:05 +00:00
|
|
|
}
|
|
|
|
fn span_unimpl(sp: span, msg: str) -> ! {
|
|
|
|
self.print_backtrace();
|
2012-03-23 01:53:30 +00:00
|
|
|
self.parse_sess.span_diagnostic.span_unimpl(sp, msg);
|
2012-01-13 08:32:05 +00:00
|
|
|
}
|
|
|
|
fn span_bug(sp: span, msg: str) -> ! {
|
|
|
|
self.print_backtrace();
|
2012-03-23 01:53:30 +00:00
|
|
|
self.parse_sess.span_diagnostic.span_bug(sp, msg);
|
|
|
|
}
|
|
|
|
fn bug(msg: str) -> ! {
|
|
|
|
self.print_backtrace();
|
|
|
|
self.parse_sess.span_diagnostic.handler().bug(msg);
|
|
|
|
}
|
|
|
|
fn next_id() -> ast::node_id {
|
2012-04-18 06:34:48 +00:00
|
|
|
ret parse::next_node_id(self.parse_sess);
|
2012-01-13 08:32:05 +00:00
|
|
|
}
|
|
|
|
}
|
2012-03-23 01:53:30 +00:00
|
|
|
let imp : ctxt_repr = {
|
|
|
|
parse_sess: parse_sess,
|
|
|
|
cfg: cfg,
|
2012-05-18 17:00:49 +00:00
|
|
|
mut backtrace: none,
|
2012-06-29 23:26:56 +00:00
|
|
|
mut mod_path: ~[]
|
2012-03-23 01:53:30 +00:00
|
|
|
};
|
2012-02-05 01:37:24 +00:00
|
|
|
ret imp as ext_ctxt
|
2011-06-04 19:41:45 +00:00
|
|
|
}
|
2011-06-21 00:26:17 +00:00
|
|
|
|
2011-09-12 09:27:30 +00:00
|
|
|
fn expr_to_str(cx: ext_ctxt, expr: @ast::expr, error: str) -> str {
|
2011-07-27 12:19:39 +00:00
|
|
|
alt expr.node {
|
|
|
|
ast::expr_lit(l) {
|
|
|
|
alt l.node {
|
2012-06-10 07:49:59 +00:00
|
|
|
ast::lit_str(s) { ret *s; }
|
2011-07-27 12:19:39 +00:00
|
|
|
_ { cx.span_fatal(l.span, error); }
|
2011-06-21 00:26:17 +00:00
|
|
|
}
|
2011-07-27 12:19:39 +00:00
|
|
|
}
|
|
|
|
_ { cx.span_fatal(expr.span, error); }
|
2011-06-21 00:26:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-12 09:27:30 +00:00
|
|
|
fn expr_to_ident(cx: ext_ctxt, expr: @ast::expr, error: str) -> ast::ident {
|
2011-07-27 12:19:39 +00:00
|
|
|
alt expr.node {
|
|
|
|
ast::expr_path(p) {
|
2012-04-23 11:04:46 +00:00
|
|
|
if vec::len(p.types) > 0u || vec::len(p.idents) != 1u {
|
2011-06-21 00:26:17 +00:00
|
|
|
cx.span_fatal(expr.span, error);
|
2012-04-23 11:04:46 +00:00
|
|
|
} else { ret p.idents[0]; }
|
2011-07-27 12:19:39 +00:00
|
|
|
}
|
|
|
|
_ { cx.span_fatal(expr.span, error); }
|
2011-06-21 00:26:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-14 22:32:32 +00:00
|
|
|
fn get_mac_args_no_max(cx: ext_ctxt, sp: span, arg: ast::mac_arg,
|
2012-06-29 23:26:56 +00:00
|
|
|
min: uint, name: str) -> ~[@ast::expr] {
|
2012-05-14 22:32:32 +00:00
|
|
|
ret get_mac_args(cx, sp, arg, min, none, name);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn get_mac_args(cx: ext_ctxt, sp: span, arg: ast::mac_arg,
|
2012-06-29 23:26:56 +00:00
|
|
|
min: uint, max: option<uint>, name: str) -> ~[@ast::expr] {
|
2012-05-14 22:32:32 +00:00
|
|
|
alt arg {
|
|
|
|
some(expr) {
|
|
|
|
alt expr.node {
|
|
|
|
ast::expr_vec(elts, _) {
|
|
|
|
let elts_len = vec::len(elts);
|
|
|
|
alt max {
|
|
|
|
some(max) if ! (min <= elts_len && elts_len <= max) {
|
|
|
|
cx.span_fatal(sp,
|
|
|
|
#fmt["#%s takes between %u and %u arguments.",
|
|
|
|
name, min, max]);
|
|
|
|
}
|
|
|
|
none if ! (min <= elts_len) {
|
|
|
|
cx.span_fatal(sp, #fmt["#%s needs at least %u arguments.",
|
|
|
|
name, min]);
|
|
|
|
}
|
|
|
|
_ { ret elts; /* we're good */}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ {
|
|
|
|
cx.span_fatal(sp, #fmt["#%s: malformed invocation", name])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
none {cx.span_fatal(sp, #fmt["#%s: missing arguments", name])}
|
2012-02-01 07:20:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-01 06:50:12 +00:00
|
|
|
fn get_mac_body(cx: ext_ctxt, sp: span, args: ast::mac_body)
|
|
|
|
-> ast::mac_body_
|
|
|
|
{
|
|
|
|
alt (args) {
|
|
|
|
some(body) {body}
|
|
|
|
none {cx.span_fatal(sp, "missing macro body")}
|
|
|
|
}
|
|
|
|
}
|
2011-06-21 00:26:17 +00:00
|
|
|
|
2011-06-04 19:41:45 +00:00
|
|
|
//
|
|
|
|
// Local Variables:
|
|
|
|
// mode: rust
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|
|
|
|
//
|