rust/src/comp/metadata/tydecode.rs

422 lines
12 KiB
Rust
Raw Normal View History

// Type decoding
2011-06-27 18:03:01 -05:00
import core::{vec, str, uint};
import option::{none, some};
import syntax::ast;
import syntax::ast::*;
import syntax::ast_util;
import syntax::ast_util::respan;
import middle::ty;
export parse_ty_data, parse_def_id;
export parse_bounds_data;
// Compact string representation for ty::t values. API ty_str &
// parse_from_str. Extra parameters are for converting to/from def_ids in the
// data buffer. Whatever format you choose should not contain pipe characters.
// Callback to translate defs to strs or back:
type conv_did = block(ast::def_id) -> ast::def_id;
type pstate = {data: @[u8], crate: int, mutable pos: uint, tcx: ty::ctxt};
fn peek(st: @pstate) -> u8 {
st.data[st.pos]
}
2011-07-27 07:19:39 -05:00
fn next(st: @pstate) -> u8 {
let ch = st.data[st.pos];
st.pos = st.pos + 1u;
ret ch;
}
fn parse_ident(st: @pstate, last: char) -> ast::ident {
2011-07-27 07:19:39 -05:00
fn is_last(b: char, c: char) -> bool { ret c == b; }
ret parse_ident_(st, bind is_last(last, _));
}
fn parse_ident_(st: @pstate, is_last: fn@(char) -> bool) ->
2011-07-27 07:19:39 -05:00
ast::ident {
2011-09-02 17:34:58 -05:00
let rslt = "";
2011-07-27 07:19:39 -05:00
while !is_last(peek(st) as char) {
rslt += str::unsafe_from_byte(next(st));
}
ret rslt;
}
fn parse_ty_data(data: @[u8], crate_num: int, pos: uint, tcx: ty::ctxt,
conv: conv_did) -> ty::t {
let st = @{data: data, crate: crate_num, mutable pos: pos, tcx: tcx};
parse_ty(st, conv)
}
fn parse_ret_ty(st: @pstate, conv: conv_did) -> (ast::ret_style, ty::t) {
2011-07-27 07:19:39 -05:00
alt peek(st) as char {
'!' { next(st); (ast::noreturn, ty::mk_bot(st.tcx)) }
_ { (ast::return_val, parse_ty(st, conv)) }
}
}
fn parse_constrs(st: @pstate, conv: conv_did) -> [@ty::constr] {
let rslt: [@ty::constr] = [];
2011-07-27 07:19:39 -05:00
alt peek(st) as char {
':' {
do {
next(st);
rslt += [parse_constr(st, conv, parse_constr_arg)];
2011-07-27 07:19:39 -05:00
} while peek(st) as char == ';'
}
_ { }
}
ret rslt;
}
// FIXME less copy-and-paste
fn parse_ty_constrs(st: @pstate, conv: conv_did) -> [@ty::type_constr] {
let rslt: [@ty::type_constr] = [];
2011-07-27 07:19:39 -05:00
alt peek(st) as char {
':' {
do {
next(st);
rslt += [parse_constr(st, conv, parse_ty_constr_arg)];
2011-07-27 07:19:39 -05:00
} while peek(st) as char == ';'
}
_ { }
}
ret rslt;
}
fn parse_path(st: @pstate) -> @ast::path {
let idents: [ast::ident] = [];
2011-07-27 07:19:39 -05:00
fn is_last(c: char) -> bool { ret c == '(' || c == ':'; }
idents += [parse_ident_(st, is_last)];
2011-07-27 07:19:39 -05:00
while true {
alt peek(st) as char {
':' { next(st); next(st); }
c {
if c == '(' {
ret @respan(ast_util::dummy_sp(),
{global: false, idents: idents, types: []});
} else { idents += [parse_ident_(st, is_last)]; }
2011-07-27 07:19:39 -05:00
}
}
}
fail "parse_path: ill-formed path";
}
fn parse_constr_arg(st: @pstate) -> ast::fn_constr_arg {
2011-07-27 07:19:39 -05:00
alt peek(st) as char {
'*' { st.pos += 1u; ret ast::carg_base; }
c {
/* how will we disambiguate between
an arg index and a lit argument? */
2011-07-27 07:19:39 -05:00
if c >= '0' && c <= '9' {
next(st);
2011-07-27 07:19:39 -05:00
// FIXME
ret ast::carg_ident((c as uint) - 48u);
} else {
#error("Lit args are unimplemented");
2011-07-27 07:19:39 -05:00
fail; // FIXME
}
/*
else {
auto lit = parse_lit(st, conv, ',');
args += [respan(st.span, ast::carg_lit(lit))];
}
*/
}
}
}
fn parse_ty_constr_arg(st: @pstate) -> ast::constr_arg_general_<@path> {
2011-07-27 07:19:39 -05:00
alt peek(st) as char {
'*' { st.pos += 1u; ret ast::carg_base; }
c { ret ast::carg_ident(parse_path(st)); }
}
}
fn parse_constr<T: copy>(st: @pstate, conv: conv_did,
pser: block(@pstate) -> ast::constr_arg_general_<T>)
-> @ty::constr_general<T> {
let sp = ast_util::dummy_sp(); // FIXME: use a real span
let args: [@sp_constr_arg<T>] = [];
let pth = parse_path(st);
2011-07-27 07:19:39 -05:00
let ignore: char = next(st) as char;
assert (ignore == '(');
let def = parse_def(st, conv);
let an_arg: constr_arg_general_<T>;
2011-07-27 07:19:39 -05:00
do {
an_arg = pser(st);
// FIXME use a real span
args += [@respan(sp, an_arg)];
ignore = next(st) as char;
2011-07-27 07:19:39 -05:00
} while ignore == ';'
assert (ignore == ')');
ret @respan(sp, {path: pth, args: args, id: def});
}
fn parse_ty_rust_fn(st: @pstate, conv: conv_did, p: ast::proto) -> ty::t {
ret ty::mk_fn(st.tcx, {proto: p with parse_ty_fn(st, conv)});
}
fn parse_proto(c: char) -> ast::proto {
alt c {
'~' { ast::proto_uniq }
'@' { ast::proto_box }
'*' { ast::proto_any }
'&' { ast::proto_block }
'n' { ast::proto_bare }
_ { fail "illegal fn type kind " + str::from_char(c); }
}
}
fn parse_ty(st: @pstate, conv: conv_did) -> ty::t {
2011-07-27 07:19:39 -05:00
alt next(st) as char {
'n' { ret ty::mk_nil(st.tcx); }
'z' { ret ty::mk_bot(st.tcx); }
'b' { ret ty::mk_bool(st.tcx); }
'i' { ret ty::mk_int(st.tcx); }
'u' { ret ty::mk_uint(st.tcx); }
'l' { ret ty::mk_float(st.tcx); }
'M' {
alt next(st) as char {
'b' { ret ty::mk_mach_uint(st.tcx, ast::ty_u8); }
'w' { ret ty::mk_mach_uint(st.tcx, ast::ty_u16); }
'l' { ret ty::mk_mach_uint(st.tcx, ast::ty_u32); }
'd' { ret ty::mk_mach_uint(st.tcx, ast::ty_u64); }
'B' { ret ty::mk_mach_int(st.tcx, ast::ty_i8); }
'W' { ret ty::mk_mach_int(st.tcx, ast::ty_i16); }
'L' { ret ty::mk_mach_int(st.tcx, ast::ty_i32); }
'D' { ret ty::mk_mach_int(st.tcx, ast::ty_i64); }
'f' { ret ty::mk_mach_float(st.tcx, ast::ty_f32); }
'F' { ret ty::mk_mach_float(st.tcx, ast::ty_f64); }
}
2011-07-27 07:19:39 -05:00
}
'c' { ret ty::mk_char(st.tcx); }
'S' { ret ty::mk_str(st.tcx); }
2011-07-27 07:19:39 -05:00
't' {
assert (next(st) as char == '[');
let def = parse_def(st, conv);
let params: [ty::t] = [];
while peek(st) as char != ']' { params += [parse_ty(st, conv)]; }
2011-07-27 07:19:39 -05:00
st.pos = st.pos + 1u;
ret ty::mk_tag(st.tcx, def, params);
}
'x' {
assert (next(st) as char == '[');
let def = parse_def(st, conv);
let params: [ty::t] = [];
while peek(st) as char != ']' { params += [parse_ty(st, conv)]; }
st.pos = st.pos + 1u;
ret ty::mk_iface(st.tcx, def, params);
}
'p' {
let did = parse_def(st, conv);
ret ty::mk_param(st.tcx, parse_int(st) as uint, did);
}
'@' { ret ty::mk_box(st.tcx, parse_mt(st, conv)); }
'~' { ret ty::mk_uniq(st.tcx, parse_mt(st, conv)); }
'*' { ret ty::mk_ptr(st.tcx, parse_mt(st, conv)); }
'I' { ret ty::mk_vec(st.tcx, parse_mt(st, conv)); }
2011-07-27 07:19:39 -05:00
'R' {
assert (next(st) as char == '[');
let fields: [ty::field] = [];
2011-07-27 07:19:39 -05:00
while peek(st) as char != ']' {
2011-09-02 17:34:58 -05:00
let name = "";
2011-07-27 07:19:39 -05:00
while peek(st) as char != '=' {
name += str::unsafe_from_byte(next(st));
}
st.pos = st.pos + 1u;
fields += [{ident: name, mt: parse_mt(st, conv)}];
}
2011-07-27 07:19:39 -05:00
st.pos = st.pos + 1u;
ret ty::mk_rec(st.tcx, fields);
}
'T' {
assert (next(st) as char == '[');
let params = [];
while peek(st) as char != ']' { params += [parse_ty(st, conv)]; }
st.pos = st.pos + 1u;
ret ty::mk_tup(st.tcx, params);
}
'f' {
let proto = parse_proto(next(st) as char);
parse_ty_rust_fn(st, conv, proto)
2011-07-27 07:19:39 -05:00
}
'N' {
let func = parse_ty_fn(st, conv);
ret ty::mk_native_fn(st.tcx, func.inputs, func.output);
2011-07-27 07:19:39 -05:00
}
'r' {
assert (next(st) as char == '[');
let def = parse_def(st, conv);
let inner = parse_ty(st, conv);
let params: [ty::t] = [];
while peek(st) as char != ']' { params += [parse_ty(st, conv)]; }
2011-07-27 07:19:39 -05:00
st.pos = st.pos + 1u;
ret ty::mk_res(st.tcx, def, inner, params);
}
'X' { ret ty::mk_var(st.tcx, parse_int(st)); }
'E' { let def = parse_def(st, conv); ret ty::mk_native(st.tcx, def); }
2011-07-27 07:19:39 -05:00
'Y' { ret ty::mk_type(st.tcx); }
'y' { ret ty::mk_send_type(st.tcx); }
'C' {
let ck = alt next(st) as char {
2012-01-10 08:49:15 -06:00
'&' { ty::ck_block }
'@' { ty::ck_box }
'~' { ty::ck_uniq }
};
ret ty::mk_opaque_closure_ptr(st.tcx, ck);
}
2011-07-27 07:19:39 -05:00
'#' {
let pos = parse_hex(st);
assert (next(st) as char == ':');
let len = parse_hex(st);
assert (next(st) as char == '#');
alt st.tcx.rcache.find({cnum: st.crate, pos: pos, len: len}) {
some(tt) { ret tt; }
none {
let ps = @{pos: pos with *st};
let tt = parse_ty(ps, conv);
2011-07-27 07:19:39 -05:00
st.tcx.rcache.insert({cnum: st.crate, pos: pos, len: len}, tt);
ret tt;
}
}
2011-07-27 07:19:39 -05:00
}
'A' {
assert (next(st) as char == '[');
let tt = parse_ty(st, conv);
let tcs = parse_ty_constrs(st, conv);
2011-07-27 07:19:39 -05:00
assert (next(st) as char == ']');
ret ty::mk_constr(st.tcx, tt, tcs);
}
'"' {
let name = "";
while peek(st) as char != '"' { str::push_byte(name, next(st)); }
st.pos = st.pos + 1u;
let inner = parse_ty(st, conv);
ty::mk_named(st.tcx, inner, @name)
}
c { #error("unexpected char in type string: %c", c); fail;}
}
}
fn parse_mt(st: @pstate, conv: conv_did) -> ty::mt {
let m;
2011-07-27 07:19:39 -05:00
alt peek(st) as char {
'm' { next(st); m = ast::mut; }
'?' { next(st); m = ast::maybe_mut; }
_ { m = ast::imm; }
}
ret {ty: parse_ty(st, conv), mut: m};
}
fn parse_def(st: @pstate, conv: conv_did) -> ast::def_id {
let def = [];
while peek(st) as char != '|' { def += [next(st)]; }
st.pos = st.pos + 1u;
ret conv(parse_def_id(def));
}
2011-07-27 07:19:39 -05:00
fn parse_int(st: @pstate) -> int {
let n = 0;
while true {
let cur = peek(st) as char;
if cur < '0' || cur > '9' { break; }
st.pos = st.pos + 1u;
n *= 10;
n += (cur as int) - ('0' as int);
}
ret n;
}
2011-07-27 07:19:39 -05:00
fn parse_hex(st: @pstate) -> uint {
let n = 0u;
while true {
let cur = peek(st) as char;
if (cur < '0' || cur > '9') && (cur < 'a' || cur > 'f') { break; }
st.pos = st.pos + 1u;
n *= 16u;
2011-07-27 07:19:39 -05:00
if '0' <= cur && cur <= '9' {
n += (cur as uint) - ('0' as uint);
} else { n += 10u + (cur as uint) - ('a' as uint); }
}
ret n;
}
fn parse_ty_fn(st: @pstate, conv: conv_did) -> ty::fn_ty {
assert (next(st) as char == '[');
let inputs: [ty::arg] = [];
2011-07-27 07:19:39 -05:00
while peek(st) as char != ']' {
let mode = alt peek(st) as char {
'&' { ast::by_mut_ref }
'-' { ast::by_move }
'+' { ast::by_copy }
'=' { ast::by_ref }
'#' { ast::by_val }
};
st.pos += 1u;
inputs += [{mode: mode, ty: parse_ty(st, conv)}];
}
st.pos += 1u; // eat the ']'
let cs = parse_constrs(st, conv);
let (ret_style, ret_ty) = parse_ret_ty(st, conv);
ret {proto: ast::proto_bare, inputs: inputs, output: ret_ty,
ret_style: ret_style, constraints: cs};
}
// Rust metadata parsing
fn parse_def_id(buf: [u8]) -> ast::def_id {
2011-07-27 07:19:39 -05:00
let colon_idx = 0u;
let len = vec::len(buf);
while colon_idx < len && buf[colon_idx] != ':' as u8 { colon_idx += 1u; }
2011-07-27 07:19:39 -05:00
if colon_idx == len {
#error("didn't find ':' when parsing def id");
fail;
}
let crate_part = vec::slice::<u8>(buf, 0u, colon_idx);
let def_part = vec::slice::<u8>(buf, colon_idx + 1u, len);
let crate_part_vec = [];
let def_part_vec = [];
for b: u8 in crate_part { crate_part_vec += [b]; }
for b: u8 in def_part { def_part_vec += [b]; }
2011-07-27 07:19:39 -05:00
let crate_num = uint::parse_buf(crate_part_vec, 10u) as int;
let def_num = uint::parse_buf(def_part_vec, 10u) as int;
ret {crate: crate_num, node: def_num};
}
fn parse_bounds_data(data: @[u8], start: uint,
crate_num: int, tcx: ty::ctxt, conv: conv_did)
-> @[ty::param_bound] {
let st = @{data: data, crate: crate_num, mutable pos: start, tcx: tcx};
parse_bounds(st, conv)
}
fn parse_bounds(st: @pstate, conv: conv_did) -> @[ty::param_bound] {
let bounds = [];
while true {
bounds += [alt next(st) as char {
'S' { ty::bound_send }
'C' { ty::bound_copy }
'I' { ty::bound_iface(parse_ty(st, conv)) }
'.' { break; }
}];
}
@bounds
}
//
// Local Variables:
// mode: rust
// fill-column: 78;
// indent-tabs-mode: nil
// c-basic-offset: 4
// buffer-file-coding-system: utf-8-unix
// End:
//