2012-01-26 17:03:20 -07:00
|
|
|
import driver::session;
|
|
|
|
|
|
|
|
import option::{none, some};
|
|
|
|
|
2012-02-01 16:19:45 -07:00
|
|
|
import syntax::ast::{crate, expr_, mac_invoc,
|
2012-01-27 01:50:57 -07:00
|
|
|
mac_qq, mac_aq, mac_var};
|
2012-01-26 17:03:20 -07:00
|
|
|
import syntax::fold::*;
|
2012-01-27 01:50:57 -07:00
|
|
|
import syntax::visit::*;
|
2012-01-26 17:03:20 -07:00
|
|
|
import syntax::ext::base::*;
|
|
|
|
import syntax::ext::build::*;
|
2012-02-01 02:58:28 -07:00
|
|
|
import syntax::parse::parser;
|
2012-02-01 08:01:21 -07:00
|
|
|
import syntax::parse::parser::{parser, parse_from_source_str};
|
2012-01-26 17:03:20 -07:00
|
|
|
|
2012-01-27 01:50:57 -07:00
|
|
|
import syntax::print::*;
|
|
|
|
import std::io::*;
|
|
|
|
|
2012-01-26 17:03:20 -07:00
|
|
|
import codemap::span;
|
|
|
|
|
2012-01-27 01:50:57 -07:00
|
|
|
type aq_ctxt = @{lo: uint,
|
2012-02-01 16:19:45 -07:00
|
|
|
mutable gather: [{lo: uint, hi: uint,
|
|
|
|
e: @ast::expr, constr: str}]};
|
|
|
|
enum fragment {
|
|
|
|
from_expr(@ast::expr),
|
|
|
|
from_ty(@ast::ty)
|
|
|
|
}
|
2012-01-27 01:50:57 -07:00
|
|
|
|
2012-02-01 08:01:21 -07:00
|
|
|
iface qq_helper {
|
|
|
|
fn span() -> span;
|
|
|
|
fn visit(aq_ctxt, vt<aq_ctxt>);
|
2012-02-01 16:19:45 -07:00
|
|
|
fn extract_mac() -> option<ast::mac_>;
|
2012-02-01 08:01:21 -07:00
|
|
|
fn mk_parse_fn(ext_ctxt,span) -> @ast::expr;
|
|
|
|
}
|
|
|
|
impl of qq_helper for @ast::expr {
|
|
|
|
fn span() -> span {self.span}
|
|
|
|
fn visit(cx: aq_ctxt, v: vt<aq_ctxt>) {visit_expr(self, cx, v);}
|
2012-02-01 16:19:45 -07:00
|
|
|
fn extract_mac() -> option<ast::mac_> {
|
|
|
|
alt (self.node) {
|
|
|
|
ast::expr_mac({node: mac, _}) {some(mac)}
|
|
|
|
_ {none}
|
|
|
|
}
|
|
|
|
}
|
2012-02-01 08:01:21 -07:00
|
|
|
fn mk_parse_fn(cx: ext_ctxt, sp: span) -> @ast::expr {
|
|
|
|
mk_path(cx, sp, ["syntax", "parse", "parser", "parse_expr"])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl of qq_helper for @ast::ty {
|
|
|
|
fn span() -> span {self.span}
|
|
|
|
fn visit(cx: aq_ctxt, v: vt<aq_ctxt>) {visit_ty(self, cx, v);}
|
2012-02-01 16:19:45 -07:00
|
|
|
fn extract_mac() -> option<ast::mac_> {
|
|
|
|
alt (self.node) {
|
|
|
|
ast::ty_mac({node: mac, _}) {some(mac)}
|
|
|
|
_ {none}
|
|
|
|
}
|
|
|
|
}
|
2012-02-01 08:01:21 -07:00
|
|
|
fn mk_parse_fn(cx: ext_ctxt, sp: span) -> @ast::expr {
|
|
|
|
mk_path(cx, sp, ["syntax", "ext", "qquote", "parse_ty"])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl of qq_helper for @ast::item {
|
|
|
|
fn span() -> span {self.span}
|
|
|
|
fn visit(cx: aq_ctxt, v: vt<aq_ctxt>) {visit_item(self, cx, v);}
|
2012-02-01 16:19:45 -07:00
|
|
|
fn extract_mac() -> option<ast::mac_> {fail}
|
2012-02-01 08:01:21 -07:00
|
|
|
fn mk_parse_fn(cx: ext_ctxt, sp: span) -> @ast::expr {
|
|
|
|
mk_path(cx, sp, ["syntax", "ext", "qquote", "parse_item"])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl of qq_helper for @ast::stmt {
|
|
|
|
fn span() -> span {self.span}
|
|
|
|
fn visit(cx: aq_ctxt, v: vt<aq_ctxt>) {visit_stmt(self, cx, v);}
|
2012-02-01 16:19:45 -07:00
|
|
|
fn extract_mac() -> option<ast::mac_> {fail}
|
2012-02-01 08:01:21 -07:00
|
|
|
fn mk_parse_fn(cx: ext_ctxt, sp: span) -> @ast::expr {
|
|
|
|
mk_path(cx, sp, ["syntax", "ext", "qquote", "parse_stmt"])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
impl of qq_helper for @ast::pat {
|
|
|
|
fn span() -> span {self.span}
|
|
|
|
fn visit(cx: aq_ctxt, v: vt<aq_ctxt>) {visit_pat(self, cx, v);}
|
2012-02-01 16:19:45 -07:00
|
|
|
fn extract_mac() -> option<ast::mac_> {fail}
|
2012-02-01 08:01:21 -07:00
|
|
|
fn mk_parse_fn(cx: ext_ctxt, sp: span) -> @ast::expr {
|
|
|
|
mk_path(cx, sp, ["syntax", "parse", "parser", "parse_pat"])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn gather_anti_quotes<N: qq_helper>(lo: uint, node: N) -> aq_ctxt
|
2012-01-27 01:50:57 -07:00
|
|
|
{
|
2012-02-01 16:19:45 -07:00
|
|
|
let v = @{visit_expr: visit_aq_expr,
|
|
|
|
visit_ty: visit_aq_ty
|
2012-01-27 01:50:57 -07:00
|
|
|
with *default_visitor()};
|
|
|
|
let cx = @{lo:lo, mutable gather: []};
|
2012-02-01 08:01:21 -07:00
|
|
|
node.visit(cx, mk_vt(v));
|
2012-01-27 01:50:57 -07:00
|
|
|
ret cx;
|
|
|
|
}
|
|
|
|
|
2012-02-01 16:19:45 -07:00
|
|
|
fn visit_aq<T:qq_helper>(node: T, constr: str, &&cx: aq_ctxt, v: vt<aq_ctxt>)
|
2012-01-27 01:50:57 -07:00
|
|
|
{
|
2012-02-01 16:19:45 -07:00
|
|
|
alt (node.extract_mac()) {
|
|
|
|
some(mac_aq(sp, e)) {
|
2012-01-27 01:50:57 -07:00
|
|
|
cx.gather += [{lo: sp.lo - cx.lo, hi: sp.hi - cx.lo,
|
2012-02-01 16:19:45 -07:00
|
|
|
e: e, constr: constr}];
|
2012-01-27 01:50:57 -07:00
|
|
|
}
|
2012-02-01 16:19:45 -07:00
|
|
|
_ {node.visit(cx, v);}
|
2012-01-27 01:50:57 -07:00
|
|
|
}
|
|
|
|
}
|
2012-02-01 16:19:45 -07:00
|
|
|
// FIXME: these are only here because I (kevina) couldn't figure out how to
|
|
|
|
// get bind to work in gather_anti_quotes
|
|
|
|
fn visit_aq_expr(node: @ast::expr, &&cx: aq_ctxt, v: vt<aq_ctxt>) {
|
|
|
|
visit_aq(node,"from_expr",cx,v);
|
|
|
|
}
|
|
|
|
fn visit_aq_ty(node: @ast::ty, &&cx: aq_ctxt, v: vt<aq_ctxt>) {
|
|
|
|
visit_aq(node,"from_ty",cx,v);
|
|
|
|
}
|
2012-01-27 01:50:57 -07:00
|
|
|
|
2012-01-28 18:20:43 -07:00
|
|
|
fn is_space(c: char) -> bool {
|
|
|
|
syntax::parse::lexer::is_whitespace(c)
|
|
|
|
}
|
|
|
|
|
2012-02-01 08:01:21 -07:00
|
|
|
fn expand_ast(ecx: ext_ctxt, _sp: span,
|
|
|
|
arg: ast::mac_arg, body: ast::mac_body)
|
2012-02-01 03:40:49 -07:00
|
|
|
-> @ast::expr
|
2012-02-01 02:58:28 -07:00
|
|
|
{
|
2012-02-01 08:01:21 -07:00
|
|
|
let what = "expr";
|
|
|
|
option::may(arg) {|arg|
|
|
|
|
let args: [@ast::expr] =
|
|
|
|
alt arg.node {
|
|
|
|
ast::expr_vec(elts, _) { elts }
|
|
|
|
_ {
|
|
|
|
ecx.span_fatal
|
|
|
|
(_sp, "#ast requires arguments of the form `[...]`.")
|
|
|
|
}
|
|
|
|
};
|
|
|
|
if vec::len::<@ast::expr>(args) != 1u {
|
|
|
|
ecx.span_fatal(_sp, "#ast requires exactly one arg");
|
|
|
|
}
|
|
|
|
alt (args[0].node) {
|
|
|
|
ast::expr_path(@{node: {idents: id, _},_}) if vec::len(id) == 1u
|
|
|
|
{what = id[0]}
|
|
|
|
_ {ecx.span_fatal(args[0].span, "expected an identifier");}
|
|
|
|
}
|
|
|
|
}
|
2012-02-01 02:58:28 -07:00
|
|
|
let body = get_mac_body(ecx,_sp,body);
|
2012-02-01 08:01:21 -07:00
|
|
|
fn finish<T: qq_helper>(ecx: ext_ctxt, body: ast::mac_body_,
|
|
|
|
f: fn (p: parser) -> T)
|
|
|
|
-> @ast::expr
|
|
|
|
{
|
|
|
|
let cm = ecx.session().parse_sess.cm;
|
|
|
|
let str = @codemap::span_to_snippet(body.span, cm);
|
|
|
|
let (fname, ss) = codemap::get_substr_info
|
|
|
|
(cm, body.span.lo, body.span.hi);
|
|
|
|
let node = parse_from_source_str
|
|
|
|
(f, fname, some(ss), str,
|
|
|
|
ecx.session().opts.cfg, ecx.session().parse_sess);
|
|
|
|
ret expand_qquote(ecx, node.span(), some(*str), node);
|
|
|
|
}
|
|
|
|
|
|
|
|
ret alt what {
|
|
|
|
"expr" {finish(ecx, body, parser::parse_expr)}
|
|
|
|
"ty" {finish(ecx, body, parse_ty)}
|
|
|
|
"item" {finish(ecx, body, parse_item)}
|
|
|
|
"stmt" {finish(ecx, body, parse_stmt)}
|
|
|
|
"pat" {finish(ecx, body, parser::parse_pat)}
|
|
|
|
_ {ecx.span_fatal(_sp, "unsupported ast type")}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parse_ty(p: parser) -> @ast::ty {
|
|
|
|
parser::parse_ty(p, false)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parse_stmt(p: parser) -> @ast::stmt {
|
|
|
|
parser::parse_stmt(p, [])
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parse_item(p: parser) -> @ast::item {
|
|
|
|
alt (parser::parse_item(p, [])) {
|
|
|
|
some(item) {item}
|
|
|
|
none {fail; /* FIXME: Error message, somehow */}
|
|
|
|
}
|
2012-02-01 02:58:28 -07:00
|
|
|
}
|
|
|
|
|
2012-02-01 08:01:21 -07:00
|
|
|
fn expand_qquote<N: qq_helper>
|
|
|
|
(ecx: ext_ctxt, sp: span, maybe_str: option::t<str>, node: N)
|
2012-02-01 03:40:49 -07:00
|
|
|
-> @ast::expr
|
2012-02-01 02:58:28 -07:00
|
|
|
{
|
|
|
|
let str = alt(maybe_str) {
|
|
|
|
some(s) {s}
|
|
|
|
none {codemap::span_to_snippet(sp, ecx.session().parse_sess.cm)}
|
|
|
|
};
|
2012-02-01 08:01:21 -07:00
|
|
|
let qcx = gather_anti_quotes(sp.lo, node);
|
2012-01-27 01:50:57 -07:00
|
|
|
let cx = qcx;
|
|
|
|
let prev = 0u;
|
|
|
|
for {lo: lo, _} in cx.gather {
|
|
|
|
assert lo > prev;
|
|
|
|
prev = lo;
|
|
|
|
}
|
|
|
|
let str2 = "";
|
2012-01-28 18:20:43 -07:00
|
|
|
enum state {active, skip(uint), blank};
|
|
|
|
let state = active;
|
2012-01-27 01:50:57 -07:00
|
|
|
let i = 0u, j = 0u;
|
|
|
|
let g_len = vec::len(cx.gather);
|
|
|
|
str::chars_iter(str) {|ch|
|
2012-01-28 18:20:43 -07:00
|
|
|
if (j < g_len && i == cx.gather[j].lo) {
|
2012-01-27 01:50:57 -07:00
|
|
|
assert ch == '$';
|
2012-01-28 18:20:43 -07:00
|
|
|
let repl = #fmt("$%u ", j);
|
|
|
|
state = skip(str::char_len(repl));
|
|
|
|
str2 += repl;
|
|
|
|
}
|
|
|
|
alt state {
|
|
|
|
active {str::push_char(str2, ch);}
|
|
|
|
skip(1u) {state = blank;}
|
|
|
|
skip(sk) {state = skip (sk-1u);}
|
|
|
|
blank if is_space(ch) {str::push_char(str2, ch);}
|
|
|
|
blank {str::push_char(str2, ' ');}
|
2012-01-27 01:50:57 -07:00
|
|
|
}
|
|
|
|
i += 1u;
|
2012-01-28 18:20:43 -07:00
|
|
|
if (j < g_len && i == cx.gather[j].hi) {
|
2012-01-27 01:50:57 -07:00
|
|
|
assert ch == ')';
|
2012-01-28 18:20:43 -07:00
|
|
|
state = active;
|
2012-01-27 01:50:57 -07:00
|
|
|
j += 1u;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let cx = ecx;
|
2012-01-26 17:03:20 -07:00
|
|
|
let session_call = bind mk_call_(cx,sp,
|
|
|
|
mk_access(cx,sp,["ext_cx"], "session"),
|
|
|
|
[]);
|
2012-01-27 01:50:57 -07:00
|
|
|
let pcall = mk_call(cx,sp,
|
2012-01-26 17:03:20 -07:00
|
|
|
["syntax", "parse", "parser",
|
2012-02-01 08:01:21 -07:00
|
|
|
"parse_from_source_str"],
|
|
|
|
[node.mk_parse_fn(cx,sp),
|
|
|
|
mk_str(cx,sp, "<anon>"),
|
|
|
|
mk_path(cx,sp, ["option","none"]),
|
2012-01-26 17:03:20 -07:00
|
|
|
mk_unary(cx,sp, ast::box(ast::imm),
|
2012-01-27 01:50:57 -07:00
|
|
|
mk_str(cx,sp, str2)),
|
2012-01-26 17:03:20 -07:00
|
|
|
mk_access_(cx,sp,
|
|
|
|
mk_access_(cx,sp, session_call(), "opts"),
|
|
|
|
"cfg"),
|
|
|
|
mk_access_(cx,sp, session_call(), "parse_sess")]
|
|
|
|
);
|
2012-01-27 01:50:57 -07:00
|
|
|
let rcall = pcall;
|
|
|
|
if (g_len > 0u) {
|
|
|
|
rcall = mk_call(cx,sp,
|
|
|
|
["syntax", "ext", "qquote", "replace"],
|
|
|
|
[pcall,
|
2012-02-01 16:19:45 -07:00
|
|
|
mk_vec_e(cx,sp, vec::map(qcx.gather) {|g|
|
|
|
|
mk_call(cx,sp,
|
|
|
|
["syntax", "ext", "qquote", g.constr],
|
|
|
|
[g.e])
|
|
|
|
})]);
|
2012-01-27 01:50:57 -07:00
|
|
|
}
|
|
|
|
|
2012-01-28 18:09:37 -07:00
|
|
|
ret rcall;
|
2012-01-26 17:03:20 -07:00
|
|
|
}
|
|
|
|
|
2012-02-01 16:19:45 -07:00
|
|
|
fn replace(e: @ast::expr, repls: [fragment]) -> @ast::expr {
|
2012-01-26 18:10:33 -07:00
|
|
|
let aft = default_ast_fold();
|
|
|
|
let f_pre = {fold_expr: bind replace_expr(repls, _, _, _,
|
2012-02-01 16:19:45 -07:00
|
|
|
aft.fold_expr),
|
|
|
|
fold_ty: bind replace_ty(repls, _, _, _,
|
|
|
|
aft.fold_ty)
|
2012-01-26 18:10:33 -07:00
|
|
|
with *aft};
|
|
|
|
let f = make_fold(f_pre);
|
|
|
|
ret f.fold_expr(e);
|
|
|
|
}
|
|
|
|
|
2012-02-01 16:19:45 -07:00
|
|
|
fn replace_expr(repls: [fragment],
|
2012-01-26 18:10:33 -07:00
|
|
|
e: ast::expr_, s: span, fld: ast_fold,
|
|
|
|
orig: fn@(ast::expr_, span, ast_fold)->(ast::expr_, span))
|
|
|
|
-> (ast::expr_, span)
|
|
|
|
{
|
|
|
|
alt e {
|
2012-02-01 16:19:45 -07:00
|
|
|
ast::expr_mac({node: mac_var(i), _}) {
|
|
|
|
alt (repls[i]) {
|
|
|
|
from_expr(r) {(r.node, r.span)}
|
|
|
|
_ {fail /* fixme error message */}}}
|
|
|
|
_ {orig(e,s,fld)}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn replace_ty(repls: [fragment],
|
|
|
|
e: ast::ty_, s: span, fld: ast_fold,
|
|
|
|
orig: fn@(ast::ty_, span, ast_fold)->(ast::ty_, span))
|
|
|
|
-> (ast::ty_, span)
|
|
|
|
{
|
|
|
|
alt e {
|
|
|
|
ast::ty_mac({node: mac_var(i), _}) {
|
|
|
|
alt (repls[i]) {
|
|
|
|
from_ty(r) {(r.node, r.span)}
|
|
|
|
_ {fail /* fixme error message */}}}
|
2012-01-26 18:10:33 -07:00
|
|
|
_ {orig(e,s,fld)}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-01-27 01:50:57 -07:00
|
|
|
fn print_expr(expr: @ast::expr) {
|
|
|
|
let stdout = std::io::stdout();
|
|
|
|
let pp = pprust::rust_printer(stdout);
|
|
|
|
pprust::print_expr(pp, expr);
|
|
|
|
pp::eof(pp.s);
|
|
|
|
stdout.write_str("\n");
|
|
|
|
}
|
|
|
|
|
2012-01-26 17:03:20 -07:00
|
|
|
// Local Variables:
|
|
|
|
// mode: rust
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|