rust/src/libsyntax/codemap.rs

516 lines
15 KiB
Rust
Raw Normal View History

// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
2012-11-16 17:14:11 -06:00
/*!
The CodeMap tracks all the source code used within a single crate, mapping
from integer byte positions to the original source code location. Each bit of
source parsed during crate parsing (typically files, in-memory strings, or
various bits of macro expansion) cover a continuous range of bytes in the
CodeMap and are represented by FileMaps. Byte positions are stored in `spans`
and used pervasively in the compiler. They are absolute positions within the
CodeMap, which upon request can be converted to line and column information,
source code snippets, etc.
*/
2013-06-24 19:40:33 -05:00
use std::cmp;
use extra::serialize::{Encodable, Decodable, Encoder, Decoder};
2012-05-15 15:40:18 -05:00
pub trait Pos {
fn from_uint(n: uint) -> Self;
fn to_uint(&self) -> uint;
}
2013-11-19 11:15:49 -06:00
/// A byte offset. Keep this small (currently 32-bits), as AST contains
/// a lot of them.
#[deriving(Clone, Eq, IterBytes, Ord)]
2013-11-19 11:15:49 -06:00
pub struct BytePos(u32);
2012-11-16 17:14:11 -06:00
/// A character offset. Because of multibyte utf8 characters, a byte offset
/// is not equivalent to a character offset. The CodeMap will convert BytePos
/// values to CharPos values as necessary.
#[deriving(Eq,IterBytes, Ord)]
pub struct CharPos(uint);
2012-11-16 17:14:11 -06:00
// XXX: Lots of boilerplate in these impls, but so far my attempts to fix
// have been unsuccessful
impl Pos for BytePos {
2013-11-19 11:15:49 -06:00
fn from_uint(n: uint) -> BytePos { BytePos(n as u32) }
fn to_uint(&self) -> uint { **self as uint }
}
impl Add<BytePos, BytePos> for BytePos {
fn add(&self, rhs: &BytePos) -> BytePos {
2012-12-05 21:22:48 -06:00
BytePos(**self + **rhs)
}
2012-12-05 21:22:48 -06:00
}
impl Sub<BytePos, BytePos> for BytePos {
fn sub(&self, rhs: &BytePos) -> BytePos {
2012-12-05 21:22:48 -06:00
BytePos(**self - **rhs)
}
}
impl Pos for CharPos {
fn from_uint(n: uint) -> CharPos { CharPos(n) }
fn to_uint(&self) -> uint { **self }
}
impl Add<CharPos,CharPos> for CharPos {
fn add(&self, rhs: &CharPos) -> CharPos {
2012-12-05 21:22:48 -06:00
CharPos(**self + **rhs)
}
}
impl Sub<CharPos,CharPos> for CharPos {
fn sub(&self, rhs: &CharPos) -> CharPos {
2012-12-05 21:22:48 -06:00
CharPos(**self - **rhs)
}
}
2012-11-16 17:14:11 -06:00
/**
Spans represent a region of code, used for error reporting. Positions in spans
are *absolute* positions from the beginning of the codemap, not positions
relative to FileMaps. Methods on the CodeMap can be used to relate spans back
to the original source.
*/
2013-07-02 14:47:32 -05:00
#[deriving(Clone, IterBytes)]
pub struct Span {
lo: BytePos,
hi: BytePos,
expn_info: Option<@ExpnInfo>
}
2012-11-12 19:14:15 -06:00
2013-07-02 14:47:32 -05:00
#[deriving(Clone, Eq, Encodable, Decodable, IterBytes)]
pub struct Spanned<T> {
2013-07-02 14:47:32 -05:00
node: T,
span: Span,
2013-07-02 14:47:32 -05:00
}
2013-01-30 11:56:33 -06:00
impl cmp::Eq for Span {
fn eq(&self, other: &Span) -> bool {
return (*self).lo == (*other).lo && (*self).hi == (*other).hi;
}
fn ne(&self, other: &Span) -> bool { !(*self).eq(other) }
2012-11-12 19:14:15 -06:00
}
impl<S:Encoder> Encodable<S> for Span {
/* Note #1972 -- spans are encoded but not decoded */
fn encode(&self, s: &mut S) {
s.emit_nil()
}
2012-11-12 19:14:15 -06:00
}
impl<D:Decoder> Decodable<D> for Span {
fn decode(_d: &mut D) -> Span {
2013-01-30 11:56:33 -06:00
dummy_sp()
2012-11-12 19:14:15 -06:00
}
}
pub fn spanned<T>(lo: BytePos, hi: BytePos, t: T) -> Spanned<T> {
respan(mk_sp(lo, hi), t)
2013-01-30 11:56:33 -06:00
}
pub fn respan<T>(sp: Span, t: T) -> Spanned<T> {
Spanned {node: t, span: sp}
2013-01-30 11:56:33 -06:00
}
pub fn dummy_spanned<T>(t: T) -> Spanned<T> {
respan(dummy_sp(), t)
2013-01-30 11:56:33 -06:00
}
/* assuming that we're not in macro expansion */
pub fn mk_sp(lo: BytePos, hi: BytePos) -> Span {
Span {lo: lo, hi: hi, expn_info: None}
2013-01-30 11:56:33 -06:00
}
// make this a const, once the compiler supports it
pub fn dummy_sp() -> Span { return mk_sp(BytePos(0), BytePos(0)); }
2013-01-30 11:56:33 -06:00
2012-11-16 17:14:11 -06:00
/// A source code location used for error reporting
pub struct Loc {
2012-11-16 17:14:11 -06:00
/// Information about the original source
file: @FileMap,
/// The (1-based) line number
line: uint,
/// The (0-based) column offset
col: CharPos
2012-11-12 19:14:15 -06:00
}
2013-01-30 11:56:33 -06:00
/// A source code location used as the result of lookup_char_pos_adj
// Actually, *none* of the clients use the filename *or* file field;
// perhaps they should just be removed.
pub struct LocWithOpt {
filename: FileName,
2013-01-30 11:56:33 -06:00
line: uint,
col: CharPos,
file: Option<@FileMap>,
}
// used to be structural records. Better names, anyone?
pub struct FileMapAndLine {fm: @FileMap, line: uint}
pub struct FileMapAndBytePos {fm: @FileMap, pos: BytePos}
#[deriving(IterBytes)]
pub enum MacroFormat {
// e.g. #[deriving(...)] <item>
MacroAttribute,
// e.g. `format!()`
MacroBang
}
#[deriving(IterBytes)]
pub struct NameAndSpan {
name: @str,
// the format with which the macro was invoked.
format: MacroFormat,
span: Option<Span>
}
/// Extra information for tracking macro expansion of spans
#[deriving(IterBytes)]
pub struct ExpnInfo {
call_site: Span,
callee: NameAndSpan
}
2013-01-30 11:56:33 -06:00
pub type FileName = @str;
pub struct FileLines
{
file: @FileMap,
2012-11-12 20:24:56 -06:00
lines: ~[uint]
}
2013-03-29 12:35:23 -05:00
// represents the origin of a file:
pub enum FileSubstr {
2013-03-29 12:35:23 -05:00
// indicates that this is a normal standalone file:
FssNone,
2013-03-29 12:35:23 -05:00
// indicates that this "file" is actually a substring
// of another file that appears earlier in the codemap
FssInternal(Span),
}
/// Identifies an offset of a multi-byte character in a FileMap
pub struct MultiByteChar {
/// The absolute offset of the character in the CodeMap
pos: BytePos,
/// The number of bytes, >=2
bytes: uint,
}
2012-11-16 17:14:11 -06:00
/// A single source in the CodeMap
pub struct FileMap {
2012-11-16 17:14:11 -06:00
/// The name of the file that the source came from, source that doesn't
/// originate from files has names between angle brackets by convention,
/// e.g. `<anon>`
name: FileName,
2012-11-16 17:14:11 -06:00
/// Extra information used by qquote
substr: FileSubstr,
2012-11-16 17:14:11 -06:00
/// The complete source code
src: @str,
2012-11-16 17:14:11 -06:00
/// The start position of this source in the CodeMap
2012-11-16 16:10:17 -06:00
start_pos: BytePos,
2012-11-16 17:14:11 -06:00
/// Locations of lines beginnings in the source code
lines: @mut ~[BytePos],
2012-11-16 17:14:11 -06:00
/// Locations of multi-byte characters in the source code
2013-03-07 17:37:22 -06:00
multibyte_chars: @mut ~[MultiByteChar],
}
impl FileMap {
2013-01-30 11:56:33 -06:00
// EFFECT: register a start-of-line offset in the
// table of line-beginnings.
// UNCHECKED INVARIANT: these offsets must be added in the right
// order and must be in the right places; there is shared knowledge
// about what ends a line between this file and parse.rs
pub fn next_line(&self, pos: BytePos) {
2013-01-30 11:56:33 -06:00
// the new charpos must be > the last one (or it's the first one).
let lines = &mut *self.lines;
assert!((lines.len() == 0) || (lines[lines.len() - 1] < pos))
2013-03-15 14:24:24 -05:00
lines.push(pos);
2012-11-12 20:24:56 -06:00
}
2013-01-30 11:56:33 -06:00
// get a line from the list of pre-computed line-beginnings
pub fn get_line(&self, line: int) -> ~str {
let begin: BytePos = self.lines[line] - self.start_pos;
let begin = begin.to_uint();
let slice = self.src.slice_from(begin);
match slice.find('\n') {
Some(e) => slice.slice_to(e).to_owned(),
None => slice.to_owned()
}
}
pub fn record_multibyte_char(&self, pos: BytePos, bytes: uint) {
2013-03-28 20:39:09 -05:00
assert!(bytes >=2 && bytes <= 4);
let mbc = MultiByteChar {
pos: pos,
bytes: bytes,
};
self.multibyte_chars.push(mbc);
}
pub fn is_real_file(&self) -> bool {
!(self.name.starts_with("<") && self.name.ends_with(">"))
}
}
2012-11-12 20:24:56 -06:00
pub struct CodeMap {
2013-03-07 17:37:22 -06:00
files: @mut ~[@FileMap]
}
impl CodeMap {
pub fn new() -> CodeMap {
2012-11-12 20:24:56 -06:00
CodeMap {
2013-03-07 17:37:22 -06:00
files: @mut ~[],
2012-11-12 20:24:56 -06:00
}
}
2012-11-12 20:24:56 -06:00
2012-11-16 17:14:11 -06:00
/// Add a new FileMap to the CodeMap and return it
pub fn new_filemap(&self, filename: FileName, src: @str) -> @FileMap {
2012-11-16 17:14:11 -06:00
return self.new_filemap_w_substr(filename, FssNone, src);
}
pub fn new_filemap_w_substr(&self,
filename: FileName,
substr: FileSubstr,
src: @str)
-> @FileMap {
let files = &mut *self.files;
let start_pos = if files.len() == 0 {
0
} else {
let last_start = files.last().start_pos.to_uint();
let last_len = files.last().src.len();
last_start + last_len
};
let filemap = @FileMap {
name: filename, substr: substr, src: src,
2013-11-19 11:15:49 -06:00
start_pos: Pos::from_uint(start_pos),
lines: @mut ~[],
2013-03-07 17:37:22 -06:00
multibyte_chars: @mut ~[],
};
2013-03-15 14:24:24 -05:00
files.push(filemap);
return filemap;
}
pub fn mk_substr_filename(&self, sp: Span) -> ~str {
2012-11-12 20:24:56 -06:00
let pos = self.lookup_char_pos(sp.lo);
2013-09-27 23:01:58 -05:00
return format!("<{}:{}:{}>", pos.file.name,
pos.line, pos.col.to_uint());
}
2012-11-16 17:14:11 -06:00
/// Lookup source information about a BytePos
pub fn lookup_char_pos(&self, pos: BytePos) -> Loc {
return self.lookup_pos(pos);
2012-11-12 20:24:56 -06:00
}
pub fn lookup_char_pos_adj(&self, pos: BytePos) -> LocWithOpt {
2012-11-12 20:24:56 -06:00
let loc = self.lookup_char_pos(pos);
match (loc.file.substr) {
2013-01-30 11:56:33 -06:00
FssNone =>
LocWithOpt {
filename: loc.file.name,
2013-01-30 11:56:33 -06:00
line: loc.line,
col: loc.col,
file: Some(loc.file)},
FssInternal(sp) =>
self.lookup_char_pos_adj(
sp.lo + (pos - loc.file.start_pos)),
2012-11-12 20:24:56 -06:00
}
}
pub fn adjust_span(&self, sp: Span) -> Span {
let line = self.lookup_line(sp.lo);
2012-11-12 20:24:56 -06:00
match (line.fm.substr) {
FssNone => sp,
FssInternal(s) => {
self.adjust_span(Span {
2012-11-16 16:10:17 -06:00
lo: s.lo + (sp.lo - line.fm.start_pos),
hi: s.lo + (sp.hi - line.fm.start_pos),
expn_info: sp.expn_info
})
}
2012-11-12 20:24:56 -06:00
}
}
pub fn span_to_str(&self, sp: Span) -> ~str {
2013-05-02 13:32:37 -05:00
let files = &*self.files;
if files.len() == 0 && sp == dummy_sp() {
return ~"no-location";
}
2012-11-12 20:24:56 -06:00
let lo = self.lookup_char_pos_adj(sp.lo);
let hi = self.lookup_char_pos_adj(sp.hi);
2013-09-27 23:01:58 -05:00
return format!("{}:{}:{}: {}:{}", lo.filename,
lo.line, lo.col.to_uint(), hi.line, hi.col.to_uint())
}
pub fn span_to_filename(&self, sp: Span) -> FileName {
2012-11-12 20:24:56 -06:00
let lo = self.lookup_char_pos(sp.lo);
lo.file.name
2012-11-12 20:24:56 -06:00
}
pub fn span_to_lines(&self, sp: Span) -> @FileLines {
2012-11-12 20:24:56 -06:00
let lo = self.lookup_char_pos(sp.lo);
let hi = self.lookup_char_pos(sp.hi);
let mut lines = ~[];
for i in range(lo.line - 1u, hi.line as uint) {
2012-11-12 20:24:56 -06:00
lines.push(i);
};
return @FileLines {file: lo.file, lines: lines};
2012-11-12 20:24:56 -06:00
}
pub fn span_to_snippet(&self, sp: Span) -> Option<~str> {
2012-11-12 20:24:56 -06:00
let begin = self.lookup_byte_offset(sp.lo);
let end = self.lookup_byte_offset(sp.hi);
// FIXME #8256: this used to be an assert but whatever precondition
// it's testing isn't true for all spans in the AST, so to allow the
// caller to not have to fail (and it can't catch it since the CodeMap
// isn't sendable), return None
if begin.fm.start_pos != end.fm.start_pos {
None
} else {
Some(begin.fm.src.slice( begin.pos.to_uint(), end.pos.to_uint()).to_owned())
}
2012-11-12 20:24:56 -06:00
}
pub fn get_filemap(&self, filename: &str) -> @FileMap {
for fm in self.files.iter() { if filename == fm.name { return *fm; } }
2012-11-12 20:24:56 -06:00
//XXjdm the following triggers a mismatched type bug
// (or expected function, found _|_)
fail!(); // ("asking for " + filename + " which we don't know about");
2012-11-12 20:24:56 -06:00
}
}
impl CodeMap {
fn lookup_filemap_idx(&self, pos: BytePos) -> uint {
let files = &*self.files;
let len = files.len();
2012-11-12 20:24:56 -06:00
let mut a = 0u;
let mut b = len;
while b - a > 1u {
let m = (a + b) / 2u;
2012-11-16 16:10:17 -06:00
if self.files[m].start_pos > pos {
b = m;
} else {
a = m;
}
2012-11-12 20:24:56 -06:00
}
if (a >= len) {
fail!("position {} does not resolve to a source location", pos.to_uint())
2012-11-12 20:24:56 -06:00
}
return a;
}
2013-01-30 11:56:33 -06:00
fn lookup_line(&self, pos: BytePos) -> FileMapAndLine
{
let idx = self.lookup_filemap_idx(pos);
let f = self.files[idx];
let mut a = 0u;
let lines = &*f.lines;
let mut b = lines.len();
2012-11-12 20:24:56 -06:00
while b - a > 1u {
let m = (a + b) / 2u;
if lines[m] > pos { b = m; } else { a = m; }
2012-11-12 20:24:56 -06:00
}
2013-01-30 11:56:33 -06:00
return FileMapAndLine {fm: f, line: a};
2012-11-12 20:24:56 -06:00
}
fn lookup_pos(&self, pos: BytePos) -> Loc {
2013-01-30 11:56:33 -06:00
let FileMapAndLine {fm: f, line: a} = self.lookup_line(pos);
let line = a + 1u; // Line numbers start at 1
let chpos = self.bytepos_to_local_charpos(pos);
2012-11-16 16:10:17 -06:00
let linebpos = f.lines[a];
let linechpos = self.bytepos_to_local_charpos(linebpos);
debug!("codemap: byte pos {:?} is on the line at byte pos {:?}",
pos, linebpos);
debug!("codemap: char pos {:?} is on the line at char pos {:?}",
chpos, linechpos);
debug!("codemap: byte is on line: {:?}", line);
2013-03-28 20:39:09 -05:00
assert!(chpos >= linechpos);
return Loc {
file: f,
line: line,
col: chpos - linechpos
};
2012-11-12 20:24:56 -06:00
}
fn lookup_byte_offset(&self, bpos: BytePos)
2013-01-30 11:56:33 -06:00
-> FileMapAndBytePos {
let idx = self.lookup_filemap_idx(bpos);
let fm = self.files[idx];
2012-11-16 16:10:17 -06:00
let offset = bpos - fm.start_pos;
2013-01-30 11:56:33 -06:00
return FileMapAndBytePos {fm: fm, pos: offset};
}
// Converts an absolute BytePos to a CharPos relative to the file it is
// located in
fn bytepos_to_local_charpos(&self, bpos: BytePos) -> CharPos {
debug!("codemap: converting {:?} to char pos", bpos);
let idx = self.lookup_filemap_idx(bpos);
let map = self.files[idx];
// The number of extra bytes due to multibyte chars in the FileMap
let mut total_extra_bytes = 0;
for mbc in map.multibyte_chars.iter() {
debug!("codemap: {:?}-byte char at {:?}", mbc.bytes, mbc.pos);
if mbc.pos < bpos {
total_extra_bytes += mbc.bytes;
// We should never see a byte position in the middle of a
// character
2013-03-28 20:39:09 -05:00
assert!(bpos == mbc.pos
|| bpos.to_uint() >= mbc.pos.to_uint() + mbc.bytes);
} else {
break;
}
}
CharPos(bpos.to_uint() - total_extra_bytes)
}
}
2013-01-30 11:56:33 -06:00
#[cfg(test)]
mod test {
use super::*;
#[test]
fn t1 () {
let cm = CodeMap::new();
let fm = cm.new_filemap(@"blork.rs",@"first line.\nsecond line");
2013-01-30 11:56:33 -06:00
fm.next_line(BytePos(0));
assert_eq!(&fm.get_line(0),&~"first line.");
2013-01-30 11:56:33 -06:00
// TESTING BROKEN BEHAVIOR:
fm.next_line(BytePos(10));
assert_eq!(&fm.get_line(1),&~".");
2013-01-30 11:56:33 -06:00
}
#[test]
#[should_fail]
fn t2 () {
let cm = CodeMap::new();
let fm = cm.new_filemap(@"blork.rs",@"first line.\nsecond line");
2013-01-30 11:56:33 -06:00
// TESTING *REALLY* BROKEN BEHAVIOR:
fm.next_line(BytePos(0));
fm.next_line(BytePos(10));
fm.next_line(BytePos(2));
}
}