2012-11-12 18:45:24 -06:00
|
|
|
/*! A codemap is a thing that maps uints to file/line/column positions
|
|
|
|
* in a crate. This to make it possible to represent the positions
|
|
|
|
* with single-word things, rather than passing records all over the
|
|
|
|
* compiler.
|
|
|
|
*/
|
|
|
|
|
2012-09-04 13:37:29 -05:00
|
|
|
use dvec::DVec;
|
2012-10-18 15:29:34 -05:00
|
|
|
use std::serialization::{Serializable,
|
|
|
|
Deserializable,
|
|
|
|
Serializer,
|
|
|
|
Deserializer};
|
2012-05-15 15:40:18 -05:00
|
|
|
|
2012-11-12 20:35:17 -06:00
|
|
|
pub type byte_pos = uint;
|
|
|
|
pub type char_pos = uint;
|
|
|
|
|
2012-11-12 19:26:02 -06:00
|
|
|
pub struct span {
|
2012-11-12 20:35:17 -06:00
|
|
|
lo: char_pos,
|
|
|
|
hi: char_pos,
|
2012-11-12 19:19:56 -06:00
|
|
|
expn_info: Option<@expn_info>
|
|
|
|
}
|
2012-11-12 19:14:15 -06:00
|
|
|
|
|
|
|
impl span : cmp::Eq {
|
|
|
|
pure fn eq(other: &span) -> bool {
|
|
|
|
return self.lo == (*other).lo && self.hi == (*other).hi;
|
|
|
|
}
|
|
|
|
pure fn ne(other: &span) -> bool { !self.eq(other) }
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<S: Serializer> span: Serializable<S> {
|
|
|
|
/* Note #1972 -- spans are serialized but not deserialized */
|
|
|
|
fn serialize(&self, _s: &S) { }
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<D: Deserializer> span: Deserializable<D> {
|
|
|
|
static fn deserialize(_d: &D) -> span {
|
|
|
|
ast_util::dummy_sp()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-12 20:35:17 -06:00
|
|
|
pub struct file_pos {
|
|
|
|
ch: char_pos, byte: byte_pos
|
2012-11-12 19:14:15 -06:00
|
|
|
}
|
|
|
|
|
2012-11-12 19:26:02 -06:00
|
|
|
pub struct loc {
|
2012-11-12 19:14:15 -06:00
|
|
|
file: @filemap, line: uint, col: uint
|
|
|
|
}
|
|
|
|
|
2012-09-19 20:00:26 -05:00
|
|
|
impl file_pos : cmp::Eq {
|
|
|
|
pure fn eq(other: &file_pos) -> bool {
|
|
|
|
self.ch == (*other).ch && self.byte == (*other).byte
|
|
|
|
}
|
|
|
|
pure fn ne(other: &file_pos) -> bool { !self.eq(other) }
|
|
|
|
}
|
2012-08-27 18:26:35 -05:00
|
|
|
|
2012-11-12 20:35:17 -06:00
|
|
|
pub enum expn_info {
|
|
|
|
expanded_from({call_site: span,
|
|
|
|
callie: {name: ~str, span: Option<span>}})
|
|
|
|
}
|
|
|
|
|
|
|
|
pub type filename = ~str;
|
|
|
|
|
|
|
|
pub type lookup_fn = pure fn(file_pos) -> uint;
|
|
|
|
|
2012-11-12 20:24:56 -06:00
|
|
|
pub struct file_lines {
|
|
|
|
file: @filemap,
|
|
|
|
lines: ~[uint]
|
|
|
|
}
|
|
|
|
|
2012-11-12 19:26:02 -06:00
|
|
|
pub enum file_substr {
|
|
|
|
pub fss_none,
|
|
|
|
pub fss_internal(span),
|
|
|
|
pub fss_external({filename: ~str, line: uint, col: uint})
|
2012-02-10 04:03:21 -06:00
|
|
|
}
|
2012-02-01 04:37:53 -06:00
|
|
|
|
2012-11-12 19:26:02 -06:00
|
|
|
pub struct filemap {
|
2012-11-12 18:47:17 -06:00
|
|
|
name: filename,
|
|
|
|
substr: file_substr,
|
|
|
|
src: @~str,
|
|
|
|
start_pos: file_pos,
|
|
|
|
mut lines: ~[file_pos]
|
2012-11-12 17:12:20 -06:00
|
|
|
}
|
|
|
|
|
2012-11-12 19:26:02 -06:00
|
|
|
pub impl filemap {
|
2012-11-12 18:44:53 -06:00
|
|
|
static fn new_w_substr(+filename: filename, +substr: file_substr,
|
|
|
|
src: @~str,
|
|
|
|
start_pos_ch: uint, start_pos_byte: uint)
|
|
|
|
-> filemap {
|
|
|
|
return filemap {
|
|
|
|
name: filename, substr: substr, src: src,
|
|
|
|
start_pos: file_pos {ch: start_pos_ch, byte: start_pos_byte},
|
|
|
|
mut lines: ~[file_pos {ch: start_pos_ch, byte: start_pos_byte}]
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
static fn new(+filename: filename, src: @~str,
|
2012-11-12 20:35:17 -06:00
|
|
|
start_pos_ch: char_pos, start_pos_byte: byte_pos)
|
2012-11-12 18:44:53 -06:00
|
|
|
-> filemap {
|
|
|
|
return filemap::new_w_substr(filename, fss_none, src,
|
|
|
|
start_pos_ch, start_pos_byte);
|
|
|
|
}
|
|
|
|
|
2012-11-12 20:35:17 -06:00
|
|
|
fn next_line(@self, chpos: char_pos, byte_pos: byte_pos) {
|
2012-11-12 20:24:56 -06:00
|
|
|
self.lines.push(file_pos {ch: chpos, byte: byte_pos + self.start_pos.byte});
|
|
|
|
}
|
2011-07-05 04:48:19 -05:00
|
|
|
|
2012-11-12 20:24:56 -06:00
|
|
|
pub fn get_line(@self, line: int) -> ~str unsafe {
|
|
|
|
let begin: uint = self.lines[line].byte - self.start_pos.byte;
|
|
|
|
let end = match str::find_char_from(*self.src, '\n', begin) {
|
|
|
|
Some(e) => e,
|
|
|
|
None => str::len(*self.src)
|
|
|
|
};
|
|
|
|
str::slice(*self.src, begin, end)
|
2012-11-12 18:56:39 -06:00
|
|
|
}
|
2011-07-16 01:01:10 -05:00
|
|
|
|
2012-02-01 04:37:53 -06:00
|
|
|
}
|
|
|
|
|
2012-11-12 20:24:56 -06:00
|
|
|
pub struct CodeMap {
|
|
|
|
files: DVec<@filemap>
|
2011-07-05 04:48:19 -05:00
|
|
|
}
|
|
|
|
|
2012-11-12 20:24:56 -06:00
|
|
|
pub impl CodeMap {
|
|
|
|
static pub fn new() -> CodeMap {
|
|
|
|
CodeMap {
|
|
|
|
files: DVec()
|
|
|
|
}
|
2012-01-21 03:00:06 -06:00
|
|
|
}
|
2012-11-12 20:24:56 -06:00
|
|
|
|
|
|
|
pub fn mk_substr_filename(@self, sp: span) -> ~str {
|
|
|
|
let pos = self.lookup_char_pos(sp.lo);
|
|
|
|
return fmt!("<%s:%u:%u>", pos.file.name, pos.line, pos.col);
|
2011-07-05 04:48:19 -05:00
|
|
|
}
|
2012-01-25 15:22:10 -06:00
|
|
|
|
2012-11-12 20:35:17 -06:00
|
|
|
pub fn lookup_char_pos(@self, pos: char_pos) -> loc {
|
2012-11-12 20:24:56 -06:00
|
|
|
pure fn lookup(pos: file_pos) -> uint { return pos.ch; }
|
|
|
|
return self.lookup_pos(pos, lookup);
|
|
|
|
}
|
2011-07-16 01:01:10 -05:00
|
|
|
|
2012-11-12 20:35:17 -06:00
|
|
|
pub fn lookup_byte_pos(@self, pos: byte_pos) -> loc {
|
2012-11-12 20:24:56 -06:00
|
|
|
pure fn lookup(pos: file_pos) -> uint { return pos.byte; }
|
|
|
|
return self.lookup_pos(pos, lookup);
|
|
|
|
}
|
2011-07-16 01:01:10 -05:00
|
|
|
|
2012-11-12 20:35:17 -06:00
|
|
|
pub fn lookup_char_pos_adj(@self, pos: char_pos)
|
2012-11-12 20:24:56 -06:00
|
|
|
-> {filename: ~str, line: uint, col: uint, file: Option<@filemap>}
|
|
|
|
{
|
|
|
|
let loc = self.lookup_char_pos(pos);
|
|
|
|
match (loc.file.substr) {
|
|
|
|
fss_none => {
|
|
|
|
{filename: /* FIXME (#2543) */ copy loc.file.name,
|
|
|
|
line: loc.line,
|
|
|
|
col: loc.col,
|
|
|
|
file: Some(loc.file)}
|
|
|
|
}
|
|
|
|
fss_internal(sp) => {
|
|
|
|
self.lookup_char_pos_adj(sp.lo + (pos - loc.file.start_pos.ch))
|
|
|
|
}
|
|
|
|
fss_external(eloc) => {
|
|
|
|
{filename: /* FIXME (#2543) */ copy eloc.filename,
|
|
|
|
line: eloc.line + loc.line - 1u,
|
|
|
|
col: if loc.line == 1u {eloc.col + loc.col} else {loc.col},
|
|
|
|
file: None}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-07-05 04:48:19 -05:00
|
|
|
|
2012-11-12 20:24:56 -06:00
|
|
|
pub fn adjust_span(@self, sp: span) -> span {
|
|
|
|
pure fn lookup(pos: file_pos) -> uint { return pos.ch; }
|
|
|
|
let line = self.lookup_line(sp.lo, lookup);
|
|
|
|
match (line.fm.substr) {
|
|
|
|
fss_none => sp,
|
|
|
|
fss_internal(s) => {
|
|
|
|
self.adjust_span(span {lo: s.lo + (sp.lo - line.fm.start_pos.ch),
|
|
|
|
hi: s.lo + (sp.hi - line.fm.start_pos.ch),
|
|
|
|
expn_info: sp.expn_info})}
|
|
|
|
fss_external(_) => sp
|
|
|
|
}
|
2012-02-10 12:28:43 -06:00
|
|
|
}
|
|
|
|
|
2012-11-12 20:24:56 -06:00
|
|
|
pub fn span_to_str(@self, sp: span) -> ~str {
|
|
|
|
let lo = self.lookup_char_pos_adj(sp.lo);
|
|
|
|
let hi = self.lookup_char_pos_adj(sp.hi);
|
|
|
|
return fmt!("%s:%u:%u: %u:%u", lo.filename,
|
|
|
|
lo.line, lo.col, hi.line, hi.col)
|
2012-02-10 12:28:43 -06:00
|
|
|
}
|
|
|
|
|
2012-11-12 20:24:56 -06:00
|
|
|
pub fn span_to_filename(@self, sp: span) -> filename {
|
|
|
|
let lo = self.lookup_char_pos(sp.lo);
|
|
|
|
return /* FIXME (#2543) */ copy lo.file.name;
|
|
|
|
}
|
2011-07-05 04:48:19 -05:00
|
|
|
|
2012-11-12 20:24:56 -06:00
|
|
|
pub fn span_to_lines(@self, sp: span) -> @file_lines {
|
|
|
|
let lo = self.lookup_char_pos(sp.lo);
|
|
|
|
let hi = self.lookup_char_pos(sp.hi);
|
|
|
|
let mut lines = ~[];
|
|
|
|
for uint::range(lo.line - 1u, hi.line as uint) |i| {
|
|
|
|
lines.push(i);
|
|
|
|
};
|
|
|
|
return @file_lines {file: lo.file, lines: lines};
|
|
|
|
}
|
2012-02-10 12:28:43 -06:00
|
|
|
|
2012-11-12 20:35:17 -06:00
|
|
|
fn lookup_byte_offset(@self, chpos: char_pos)
|
|
|
|
-> {fm: @filemap, pos: byte_pos} {
|
2012-11-12 20:24:56 -06:00
|
|
|
pure fn lookup(pos: file_pos) -> uint { return pos.ch; }
|
|
|
|
let {fm, line} = self.lookup_line(chpos, lookup);
|
|
|
|
let line_offset = fm.lines[line].byte - fm.start_pos.byte;
|
|
|
|
let col = chpos - fm.lines[line].ch;
|
|
|
|
let col_offset = str::count_bytes(*fm.src, line_offset, col);
|
|
|
|
{fm: fm, pos: line_offset + col_offset}
|
|
|
|
}
|
2011-07-11 01:27:03 -05:00
|
|
|
|
2012-11-12 20:24:56 -06:00
|
|
|
pub fn span_to_snippet(@self, sp: span) -> ~str {
|
|
|
|
let begin = self.lookup_byte_offset(sp.lo);
|
|
|
|
let end = self.lookup_byte_offset(sp.hi);
|
|
|
|
assert begin.fm.start_pos == end.fm.start_pos;
|
|
|
|
return str::slice(*begin.fm.src, begin.pos, end.pos);
|
|
|
|
}
|
2012-05-10 19:18:04 -05:00
|
|
|
|
2012-11-12 20:24:56 -06:00
|
|
|
pub fn get_filemap(@self, filename: ~str) -> @filemap {
|
|
|
|
for self.files.each |fm| { if fm.name == filename { return *fm; } }
|
|
|
|
//XXjdm the following triggers a mismatched type bug
|
|
|
|
// (or expected function, found _|_)
|
|
|
|
fail; // ("asking for " + filename + " which we don't know about");
|
|
|
|
}
|
2011-07-11 01:27:03 -05:00
|
|
|
|
2012-01-25 15:22:10 -06:00
|
|
|
}
|
|
|
|
|
2012-11-12 20:24:56 -06:00
|
|
|
priv impl CodeMap {
|
|
|
|
fn lookup_line(@self, pos: uint, lookup: lookup_fn)
|
|
|
|
-> {fm: @filemap, line: uint}
|
|
|
|
{
|
|
|
|
let len = self.files.len();
|
|
|
|
let mut a = 0u;
|
|
|
|
let mut b = len;
|
|
|
|
while b - a > 1u {
|
|
|
|
let m = (a + b) / 2u;
|
|
|
|
if lookup(self.files[m].start_pos) > pos { b = m; } else { a = m; }
|
|
|
|
}
|
|
|
|
if (a >= len) {
|
|
|
|
fail fmt!("position %u does not resolve to a source location", pos)
|
|
|
|
}
|
|
|
|
let f = self.files[a];
|
|
|
|
a = 0u;
|
|
|
|
b = vec::len(f.lines);
|
|
|
|
while b - a > 1u {
|
|
|
|
let m = (a + b) / 2u;
|
|
|
|
if lookup(f.lines[m]) > pos { b = m; } else { a = m; }
|
|
|
|
}
|
|
|
|
return {fm: f, line: a};
|
|
|
|
}
|
2012-01-25 15:22:10 -06:00
|
|
|
|
2012-11-12 20:24:56 -06:00
|
|
|
fn lookup_pos(@self, pos: uint, lookup: lookup_fn) -> loc {
|
|
|
|
let {fm: f, line: a} = self.lookup_line(pos, lookup);
|
|
|
|
return loc {file: f, line: a + 1u, col: pos - lookup(f.lines[a])};
|
|
|
|
}
|
2012-01-25 15:22:10 -06:00
|
|
|
|
2012-11-12 20:24:56 -06:00
|
|
|
fn span_to_str_no_adj(@self, sp: span) -> ~str {
|
|
|
|
let lo = self.lookup_char_pos(sp.lo);
|
|
|
|
let hi = self.lookup_char_pos(sp.hi);
|
|
|
|
return fmt!("%s:%u:%u: %u:%u", lo.file.name,
|
|
|
|
lo.line, lo.col, hi.line, hi.col)
|
|
|
|
}
|
2011-07-11 01:27:03 -05:00
|
|
|
}
|
2012-01-26 03:52:08 -06:00
|
|
|
|
2011-07-05 04:48:19 -05:00
|
|
|
//
|
|
|
|
// Local Variables:
|
|
|
|
// mode: rust
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
|
|
|
// End:
|
|
|
|
//
|