2012-12-04 00:48:01 +00:00
|
|
|
// 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 23:14:11 +00: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.
|
|
|
|
|
|
|
|
*/
|
2012-11-13 00:45:24 +00:00
|
|
|
|
2013-12-31 00:24:48 +00:00
|
|
|
use std::cell::RefCell;
|
2013-06-25 00:40:33 +00:00
|
|
|
use std::cmp;
|
2014-03-16 18:56:24 +00:00
|
|
|
use std::rc::Rc;
|
2014-02-05 16:52:54 +00:00
|
|
|
use serialize::{Encodable, Decodable, Encoder, Decoder};
|
2012-05-15 20:40:18 +00:00
|
|
|
|
2013-01-26 00:57:39 +00:00
|
|
|
pub trait Pos {
|
2013-03-22 18:09:13 +00:00
|
|
|
fn from_uint(n: uint) -> Self;
|
|
|
|
fn to_uint(&self) -> uint;
|
2012-11-13 03:32:48 +00:00
|
|
|
}
|
|
|
|
|
2013-11-19 17:15:49 +00:00
|
|
|
/// A byte offset. Keep this small (currently 32-bits), as AST contains
|
|
|
|
/// a lot of them.
|
2014-02-28 09:23:06 +00:00
|
|
|
#[deriving(Clone, Eq, Hash, Ord, Show)]
|
2013-11-19 17:15:49 +00:00
|
|
|
pub struct BytePos(u32);
|
|
|
|
|
2012-11-16 23:14:11 +00: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.
|
2014-02-28 09:23:06 +00:00
|
|
|
#[deriving(Eq, Hash, Ord, Show)]
|
2013-03-08 02:04:21 +00:00
|
|
|
pub struct CharPos(uint);
|
2012-11-13 03:32:48 +00:00
|
|
|
|
2014-01-26 08:43:42 +00:00
|
|
|
// FIXME: Lots of boilerplate in these impls, but so far my attempts to fix
|
2012-11-16 23:14:11 +00:00
|
|
|
// have been unsuccessful
|
|
|
|
|
2013-02-27 01:12:00 +00:00
|
|
|
impl Pos for BytePos {
|
2013-11-19 17:15:49 +00:00
|
|
|
fn from_uint(n: uint) -> BytePos { BytePos(n as u32) }
|
2013-11-02 01:06:31 +00:00
|
|
|
fn to_uint(&self) -> uint { let BytePos(n) = *self; n as uint }
|
2012-11-13 03:32:48 +00:00
|
|
|
}
|
|
|
|
|
2013-02-27 01:12:00 +00:00
|
|
|
impl Add<BytePos, BytePos> for BytePos {
|
2013-03-22 18:09:13 +00:00
|
|
|
fn add(&self, rhs: &BytePos) -> BytePos {
|
2013-11-02 01:06:31 +00:00
|
|
|
BytePos((self.to_uint() + rhs.to_uint()) as u32)
|
2012-11-13 03:32:48 +00:00
|
|
|
}
|
2012-12-06 03:22:48 +00:00
|
|
|
}
|
|
|
|
|
2013-02-27 01:12:00 +00:00
|
|
|
impl Sub<BytePos, BytePos> for BytePos {
|
2013-03-22 18:09:13 +00:00
|
|
|
fn sub(&self, rhs: &BytePos) -> BytePos {
|
2013-11-02 01:06:31 +00:00
|
|
|
BytePos((self.to_uint() - rhs.to_uint()) as u32)
|
2012-11-13 03:32:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-27 01:12:00 +00:00
|
|
|
impl Pos for CharPos {
|
2013-03-22 18:09:13 +00:00
|
|
|
fn from_uint(n: uint) -> CharPos { CharPos(n) }
|
2013-11-02 01:06:31 +00:00
|
|
|
fn to_uint(&self) -> uint { let CharPos(n) = *self; n }
|
2012-11-13 03:32:48 +00:00
|
|
|
}
|
|
|
|
|
2013-02-27 01:12:00 +00:00
|
|
|
impl Add<CharPos,CharPos> for CharPos {
|
2013-03-22 18:09:13 +00:00
|
|
|
fn add(&self, rhs: &CharPos) -> CharPos {
|
2013-11-02 01:06:31 +00:00
|
|
|
CharPos(self.to_uint() + rhs.to_uint())
|
2012-11-13 03:32:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-27 01:12:00 +00:00
|
|
|
impl Sub<CharPos,CharPos> for CharPos {
|
2013-03-22 18:09:13 +00:00
|
|
|
fn sub(&self, rhs: &CharPos) -> CharPos {
|
2013-11-02 01:06:31 +00:00
|
|
|
CharPos(self.to_uint() - rhs.to_uint())
|
2012-11-28 19:36:04 +00:00
|
|
|
}
|
|
|
|
}
|
2012-11-13 02:35:17 +00:00
|
|
|
|
2012-11-16 23:14:11 +00: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.
|
|
|
|
*/
|
2014-02-28 09:23:06 +00:00
|
|
|
#[deriving(Clone, Show, Hash)]
|
2013-08-31 16:13:04 +00:00
|
|
|
pub struct Span {
|
2012-11-16 03:37:29 +00:00
|
|
|
lo: BytePos,
|
|
|
|
hi: BytePos,
|
2012-11-13 02:59:37 +00:00
|
|
|
expn_info: Option<@ExpnInfo>
|
2012-11-13 01:19:56 +00:00
|
|
|
}
|
2012-11-13 01:14:15 +00:00
|
|
|
|
2014-01-01 06:53:22 +00:00
|
|
|
pub static DUMMY_SP: Span = Span { lo: BytePos(0), hi: BytePos(0), expn_info: None };
|
|
|
|
|
2014-02-23 10:29:35 +00:00
|
|
|
#[deriving(Clone, Eq, Encodable, Decodable, Hash)]
|
2013-08-31 16:13:04 +00:00
|
|
|
pub struct Spanned<T> {
|
2013-07-02 19:47:32 +00:00
|
|
|
node: T,
|
2013-08-31 16:13:04 +00:00
|
|
|
span: Span,
|
2013-07-02 19:47:32 +00:00
|
|
|
}
|
2013-01-30 17:56:33 +00:00
|
|
|
|
2013-08-31 16:13:04 +00:00
|
|
|
impl cmp::Eq for Span {
|
|
|
|
fn eq(&self, other: &Span) -> bool {
|
2012-11-15 02:59:30 +00:00
|
|
|
return (*self).lo == (*other).lo && (*self).hi == (*other).hi;
|
|
|
|
}
|
2013-08-31 16:13:04 +00:00
|
|
|
fn ne(&self, other: &Span) -> bool { !(*self).eq(other) }
|
2012-11-13 01:14:15 +00:00
|
|
|
}
|
|
|
|
|
2013-08-31 16:13:04 +00:00
|
|
|
impl<S:Encoder> Encodable<S> for Span {
|
2012-12-18 03:31:04 +00:00
|
|
|
/* Note #1972 -- spans are encoded but not decoded */
|
2013-05-02 00:54:54 +00:00
|
|
|
fn encode(&self, s: &mut S) {
|
|
|
|
s.emit_nil()
|
|
|
|
}
|
2012-11-13 01:14:15 +00:00
|
|
|
}
|
|
|
|
|
2013-08-31 16:13:04 +00:00
|
|
|
impl<D:Decoder> Decodable<D> for Span {
|
|
|
|
fn decode(_d: &mut D) -> Span {
|
2014-01-01 06:53:22 +00:00
|
|
|
DUMMY_SP
|
2012-11-13 01:14:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-31 16:13:04 +00:00
|
|
|
pub fn spanned<T>(lo: BytePos, hi: BytePos, t: T) -> Spanned<T> {
|
2013-02-15 09:15:53 +00:00
|
|
|
respan(mk_sp(lo, hi), t)
|
2013-01-30 17:56:33 +00:00
|
|
|
}
|
|
|
|
|
2013-08-31 16:13:04 +00:00
|
|
|
pub fn respan<T>(sp: Span, t: T) -> Spanned<T> {
|
|
|
|
Spanned {node: t, span: sp}
|
2013-01-30 17:56:33 +00:00
|
|
|
}
|
|
|
|
|
2013-08-31 16:13:04 +00:00
|
|
|
pub fn dummy_spanned<T>(t: T) -> Spanned<T> {
|
2014-01-01 06:53:22 +00:00
|
|
|
respan(DUMMY_SP, t)
|
2013-01-30 17:56:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* assuming that we're not in macro expansion */
|
2013-08-31 16:13:04 +00:00
|
|
|
pub fn mk_sp(lo: BytePos, hi: BytePos) -> Span {
|
|
|
|
Span {lo: lo, hi: hi, expn_info: None}
|
2013-01-30 17:56:33 +00:00
|
|
|
}
|
|
|
|
|
2012-11-16 23:14:11 +00:00
|
|
|
/// A source code location used for error reporting
|
2012-11-16 03:37:29 +00:00
|
|
|
pub struct Loc {
|
2012-11-16 23:14:11 +00:00
|
|
|
/// Information about the original source
|
2014-03-16 18:56:24 +00:00
|
|
|
file: Rc<FileMap>,
|
2012-11-16 23:14:11 +00:00
|
|
|
/// The (1-based) line number
|
|
|
|
line: uint,
|
|
|
|
/// The (0-based) column offset
|
|
|
|
col: CharPos
|
2012-11-13 01:14:15 +00:00
|
|
|
}
|
|
|
|
|
2013-01-30 17:56:33 +00: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 {
|
2013-06-12 17:02:55 +00:00
|
|
|
filename: FileName,
|
2013-01-30 17:56:33 +00:00
|
|
|
line: uint,
|
|
|
|
col: CharPos,
|
2014-03-16 18:56:24 +00:00
|
|
|
file: Option<Rc<FileMap>>,
|
2013-01-30 17:56:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// used to be structural records. Better names, anyone?
|
2014-03-16 18:56:24 +00:00
|
|
|
pub struct FileMapAndLine {fm: Rc<FileMap>, line: uint}
|
|
|
|
pub struct FileMapAndBytePos {fm: Rc<FileMap>, pos: BytePos}
|
2013-12-07 02:41:11 +00:00
|
|
|
|
2014-02-28 09:23:06 +00:00
|
|
|
#[deriving(Clone, Hash, Show)]
|
2013-12-07 02:41:11 +00:00
|
|
|
pub enum MacroFormat {
|
|
|
|
// e.g. #[deriving(...)] <item>
|
|
|
|
MacroAttribute,
|
|
|
|
// e.g. `format!()`
|
|
|
|
MacroBang
|
|
|
|
}
|
|
|
|
|
2014-02-28 09:23:06 +00:00
|
|
|
#[deriving(Clone, Hash, Show)]
|
2013-12-07 02:41:11 +00:00
|
|
|
pub struct NameAndSpan {
|
2014-01-30 23:53:09 +00:00
|
|
|
name: ~str,
|
2013-12-07 02:41:11 +00:00
|
|
|
// the format with which the macro was invoked.
|
|
|
|
format: MacroFormat,
|
|
|
|
span: Option<Span>
|
|
|
|
}
|
2013-02-21 08:16:31 +00:00
|
|
|
|
2013-07-02 09:31:00 +00:00
|
|
|
/// Extra information for tracking macro expansion of spans
|
2014-02-28 09:23:06 +00:00
|
|
|
#[deriving(Hash, Show)]
|
2013-07-02 09:31:00 +00:00
|
|
|
pub struct ExpnInfo {
|
2013-08-31 16:13:04 +00:00
|
|
|
call_site: Span,
|
2013-02-21 08:16:31 +00:00
|
|
|
callee: NameAndSpan
|
|
|
|
}
|
2013-01-30 17:56:33 +00:00
|
|
|
|
2014-01-16 00:42:51 +00:00
|
|
|
pub type FileName = ~str;
|
2012-11-13 02:35:17 +00:00
|
|
|
|
2014-03-16 18:56:24 +00:00
|
|
|
pub struct FileLines {
|
|
|
|
file: Rc<FileMap>,
|
|
|
|
lines: Vec<uint>
|
|
|
|
}
|
2012-11-13 02:24:56 +00:00
|
|
|
|
2012-11-16 03:37:29 +00:00
|
|
|
/// 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 23:14:11 +00:00
|
|
|
/// A single source in the CodeMap
|
2012-11-13 02:59:37 +00:00
|
|
|
pub struct FileMap {
|
2012-11-16 23:14:11 +00: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>`
|
2012-11-13 02:59:37 +00:00
|
|
|
name: FileName,
|
2012-11-16 23:14:11 +00:00
|
|
|
/// The complete source code
|
2014-01-16 00:26:20 +00:00
|
|
|
src: ~str,
|
2012-11-16 23:14:11 +00:00
|
|
|
/// The start position of this source in the CodeMap
|
2012-11-16 22:10:17 +00:00
|
|
|
start_pos: BytePos,
|
2012-11-16 23:14:11 +00:00
|
|
|
/// Locations of lines beginnings in the source code
|
2014-02-28 21:09:09 +00:00
|
|
|
lines: RefCell<Vec<BytePos> >,
|
2012-11-16 23:14:11 +00:00
|
|
|
/// Locations of multi-byte characters in the source code
|
2014-02-28 21:09:09 +00:00
|
|
|
multibyte_chars: RefCell<Vec<MultiByteChar> >,
|
2012-11-12 23:12:20 +00:00
|
|
|
}
|
|
|
|
|
2013-05-31 22:17:22 +00:00
|
|
|
impl FileMap {
|
2013-01-30 17:56:33 +00: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
|
2014-03-03 10:44:43 +00:00
|
|
|
// WARNING: pos param here is the offset relative to start of CodeMap,
|
|
|
|
// and CodeMap will append a newline when adding a filemap without a newline at the end,
|
|
|
|
// so the safe way to call this is with value calculated as
|
|
|
|
// filemap.start_pos + newline_offset_relative_to_the_start_of_filemap.
|
2013-05-31 22:17:22 +00:00
|
|
|
pub fn next_line(&self, pos: BytePos) {
|
2013-01-30 17:56:33 +00:00
|
|
|
// the new charpos must be > the last one (or it's the first one).
|
2013-12-31 00:24:48 +00:00
|
|
|
let mut lines = self.lines.borrow_mut();;
|
2014-03-20 22:05:37 +00:00
|
|
|
let line_len = lines.len();
|
|
|
|
assert!(line_len == 0 || (*lines.get(line_len - 1) < pos))
|
|
|
|
lines.push(pos);
|
2012-11-13 02:24:56 +00:00
|
|
|
}
|
2011-07-05 09:48:19 +00:00
|
|
|
|
2013-01-30 17:56:33 +00:00
|
|
|
// get a line from the list of pre-computed line-beginnings
|
2013-01-23 19:43:58 +00:00
|
|
|
pub fn get_line(&self, line: int) -> ~str {
|
2013-12-31 00:24:48 +00:00
|
|
|
let mut lines = self.lines.borrow_mut();
|
2014-03-20 22:05:37 +00:00
|
|
|
let begin: BytePos = *lines.get(line as uint) - self.start_pos;
|
2013-04-08 20:50:34 +00:00
|
|
|
let begin = begin.to_uint();
|
2013-06-10 03:09:51 +00:00
|
|
|
let slice = self.src.slice_from(begin);
|
|
|
|
match slice.find('\n') {
|
|
|
|
Some(e) => slice.slice_to(e).to_owned(),
|
|
|
|
None => slice.to_owned()
|
|
|
|
}
|
2012-11-13 00:56:39 +00:00
|
|
|
}
|
2011-07-16 06:01:10 +00:00
|
|
|
|
2012-11-16 03:37:29 +00:00
|
|
|
pub fn record_multibyte_char(&self, pos: BytePos, bytes: uint) {
|
2013-03-29 01:39:09 +00:00
|
|
|
assert!(bytes >=2 && bytes <= 4);
|
2012-11-16 03:37:29 +00:00
|
|
|
let mbc = MultiByteChar {
|
|
|
|
pos: pos,
|
|
|
|
bytes: bytes,
|
|
|
|
};
|
2014-03-20 22:05:37 +00:00
|
|
|
self.multibyte_chars.borrow_mut().push(mbc);
|
2012-11-16 03:37:29 +00:00
|
|
|
}
|
2013-11-28 03:06:35 +00:00
|
|
|
|
|
|
|
pub fn is_real_file(&self) -> bool {
|
|
|
|
!(self.name.starts_with("<") && self.name.ends_with(">"))
|
|
|
|
}
|
2012-02-01 10:37:53 +00:00
|
|
|
}
|
|
|
|
|
2012-11-13 02:24:56 +00:00
|
|
|
pub struct CodeMap {
|
2014-03-16 18:56:24 +00:00
|
|
|
files: RefCell<Vec<Rc<FileMap>>>
|
2011-07-05 09:48:19 +00:00
|
|
|
}
|
|
|
|
|
2013-05-31 22:17:22 +00:00
|
|
|
impl CodeMap {
|
2013-03-22 02:07:54 +00:00
|
|
|
pub fn new() -> CodeMap {
|
2012-11-13 02:24:56 +00:00
|
|
|
CodeMap {
|
2014-02-28 21:09:09 +00:00
|
|
|
files: RefCell::new(Vec::new()),
|
2012-11-13 02:24:56 +00:00
|
|
|
}
|
2012-01-21 09:00:06 +00:00
|
|
|
}
|
2012-11-13 02:24:56 +00:00
|
|
|
|
2014-03-18 00:59:44 +00:00
|
|
|
pub fn new_filemap(&self, filename: FileName, src: ~str) -> Rc<FileMap> {
|
2013-12-31 00:30:33 +00:00
|
|
|
let mut files = self.files.borrow_mut();
|
2014-03-20 22:05:37 +00:00
|
|
|
let start_pos = match files.last() {
|
2013-12-23 14:08:23 +00:00
|
|
|
None => 0,
|
2014-03-20 22:05:37 +00:00
|
|
|
Some(last) => last.start_pos.to_uint() + last.src.len(),
|
2012-11-15 06:27:53 +00:00
|
|
|
};
|
2012-11-16 22:22:09 +00:00
|
|
|
|
2014-03-18 00:59:44 +00:00
|
|
|
// Remove utf-8 BOM if any.
|
|
|
|
// FIXME #12884: no efficient/safe way to remove from the start of a string
|
|
|
|
// and reuse the allocation.
|
|
|
|
let mut src = if src.starts_with("\ufeff") {
|
|
|
|
src.as_slice().slice_from(3).into_owned()
|
|
|
|
} else {
|
|
|
|
src
|
|
|
|
};
|
|
|
|
|
2014-03-03 10:44:43 +00:00
|
|
|
// Append '\n' in case it's not already there.
|
|
|
|
// This is a workaround to prevent CodeMap.lookup_filemap_idx from accidentally
|
|
|
|
// overflowing into the next filemap in case the last byte of span is also the last
|
|
|
|
// byte of filemap, which leads to incorrect results from CodeMap.span_to_*.
|
|
|
|
if src.len() > 0 && !src.ends_with("\n") {
|
|
|
|
src.push_char('\n');
|
|
|
|
}
|
|
|
|
|
2014-03-16 18:56:24 +00:00
|
|
|
let filemap = Rc::new(FileMap {
|
2014-01-15 18:58:29 +00:00
|
|
|
name: filename,
|
|
|
|
src: src,
|
2013-11-19 17:15:49 +00:00
|
|
|
start_pos: Pos::from_uint(start_pos),
|
2014-02-28 21:09:09 +00:00
|
|
|
lines: RefCell::new(Vec::new()),
|
|
|
|
multibyte_chars: RefCell::new(Vec::new()),
|
2014-03-16 18:56:24 +00:00
|
|
|
});
|
2012-11-16 22:22:09 +00:00
|
|
|
|
2014-03-20 22:05:37 +00:00
|
|
|
files.push(filemap.clone());
|
2012-11-16 22:22:09 +00:00
|
|
|
|
2014-03-16 18:56:24 +00:00
|
|
|
filemap
|
2012-11-16 22:22:09 +00:00
|
|
|
}
|
|
|
|
|
2013-08-31 16:13:04 +00:00
|
|
|
pub fn mk_substr_filename(&self, sp: Span) -> ~str {
|
2012-11-13 02:24:56 +00:00
|
|
|
let pos = self.lookup_char_pos(sp.lo);
|
2014-03-20 22:05:37 +00:00
|
|
|
format!("<{}:{}:{}>", pos.file.name, pos.line, pos.col.to_uint() + 1)
|
2011-07-05 09:48:19 +00:00
|
|
|
}
|
2012-01-25 21:22:10 +00:00
|
|
|
|
2012-11-16 23:14:11 +00:00
|
|
|
/// Lookup source information about a BytePos
|
2013-04-17 16:15:08 +00:00
|
|
|
pub fn lookup_char_pos(&self, pos: BytePos) -> Loc {
|
2014-03-16 18:56:24 +00:00
|
|
|
self.lookup_pos(pos)
|
2012-11-13 02:24:56 +00:00
|
|
|
}
|
2011-07-16 06:01:10 +00:00
|
|
|
|
2013-05-31 22:17:22 +00:00
|
|
|
pub fn lookup_char_pos_adj(&self, pos: BytePos) -> LocWithOpt {
|
2012-11-13 02:24:56 +00:00
|
|
|
let loc = self.lookup_char_pos(pos);
|
2014-01-15 18:58:29 +00:00
|
|
|
LocWithOpt {
|
2014-03-20 22:05:37 +00:00
|
|
|
filename: loc.file.name.to_str(),
|
2014-01-15 18:58:29 +00:00
|
|
|
line: loc.line,
|
|
|
|
col: loc.col,
|
|
|
|
file: Some(loc.file)
|
2012-11-13 02:24:56 +00:00
|
|
|
}
|
|
|
|
}
|
2011-07-05 09:48:19 +00:00
|
|
|
|
2013-08-31 16:13:04 +00:00
|
|
|
pub fn span_to_str(&self, sp: Span) -> ~str {
|
2014-03-20 22:05:37 +00:00
|
|
|
if self.files.borrow().len() == 0 && sp == DUMMY_SP {
|
2014-03-16 18:56:24 +00:00
|
|
|
return ~"no-location";
|
2012-12-05 23:13:24 +00:00
|
|
|
}
|
|
|
|
|
2012-11-13 02:24:56 +00:00
|
|
|
let lo = self.lookup_char_pos_adj(sp.lo);
|
|
|
|
let hi = self.lookup_char_pos_adj(sp.hi);
|
2013-09-28 04:01:58 +00:00
|
|
|
return format!("{}:{}:{}: {}:{}", lo.filename,
|
2013-12-28 22:23:44 +00:00
|
|
|
lo.line, lo.col.to_uint() + 1, hi.line, hi.col.to_uint() + 1)
|
2012-02-10 18:28:43 +00:00
|
|
|
}
|
|
|
|
|
2013-08-31 16:13:04 +00:00
|
|
|
pub fn span_to_filename(&self, sp: Span) -> FileName {
|
2014-03-20 22:05:37 +00:00
|
|
|
self.lookup_char_pos(sp.lo).file.name.to_str()
|
2012-11-13 02:24:56 +00:00
|
|
|
}
|
2011-07-05 09:48:19 +00:00
|
|
|
|
2014-03-16 18:56:24 +00:00
|
|
|
pub fn span_to_lines(&self, sp: Span) -> FileLines {
|
2012-11-13 02:24:56 +00:00
|
|
|
let lo = self.lookup_char_pos(sp.lo);
|
|
|
|
let hi = self.lookup_char_pos(sp.hi);
|
2014-02-28 21:09:09 +00:00
|
|
|
let mut lines = Vec::new();
|
2013-08-03 16:45:23 +00:00
|
|
|
for i in range(lo.line - 1u, hi.line as uint) {
|
2012-11-13 02:24:56 +00:00
|
|
|
lines.push(i);
|
|
|
|
};
|
2014-03-16 18:56:24 +00:00
|
|
|
FileLines {file: lo.file, lines: lines}
|
2012-11-13 02:24:56 +00:00
|
|
|
}
|
2012-02-10 18:28:43 +00:00
|
|
|
|
2013-08-31 16:13:04 +00:00
|
|
|
pub fn span_to_snippet(&self, sp: Span) -> Option<~str> {
|
2012-11-13 02:24:56 +00:00
|
|
|
let begin = self.lookup_byte_offset(sp.lo);
|
|
|
|
let end = self.lookup_byte_offset(sp.hi);
|
2013-08-04 02:14:01 +00:00
|
|
|
|
|
|
|
// 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
|
2014-03-20 22:05:37 +00:00
|
|
|
if begin.fm.start_pos != end.fm.start_pos {
|
2013-08-04 02:14:01 +00:00
|
|
|
None
|
|
|
|
} else {
|
2014-03-20 22:05:37 +00:00
|
|
|
Some(begin.fm.src.slice( begin.pos.to_uint(), end.pos.to_uint()).to_owned())
|
2013-08-04 02:14:01 +00:00
|
|
|
}
|
2012-11-13 02:24:56 +00:00
|
|
|
}
|
2012-05-11 00:18:04 +00:00
|
|
|
|
2014-03-16 18:56:24 +00:00
|
|
|
pub fn get_filemap(&self, filename: &str) -> Rc<FileMap> {
|
2014-03-20 22:05:37 +00:00
|
|
|
for fm in self.files.borrow().iter() {
|
|
|
|
if filename == fm.name {
|
2014-03-16 18:56:24 +00:00
|
|
|
return fm.clone();
|
2013-12-31 00:30:33 +00:00
|
|
|
}
|
|
|
|
}
|
2014-03-16 18:56:24 +00:00
|
|
|
fail!("asking for {} which we don't know about", filename);
|
2012-11-13 02:24:56 +00:00
|
|
|
}
|
2012-01-25 21:22:10 +00:00
|
|
|
|
2013-04-17 16:15:08 +00:00
|
|
|
fn lookup_filemap_idx(&self, pos: BytePos) -> uint {
|
2013-12-31 00:30:33 +00:00
|
|
|
let files = self.files.borrow();
|
2014-03-20 22:05:37 +00:00
|
|
|
let files = files;
|
2013-03-16 18:11:31 +00:00
|
|
|
let len = files.len();
|
2012-11-13 02:24:56 +00:00
|
|
|
let mut a = 0u;
|
|
|
|
let mut b = len;
|
|
|
|
while b - a > 1u {
|
|
|
|
let m = (a + b) / 2u;
|
2014-03-20 22:05:37 +00:00
|
|
|
if files.get(m).start_pos > pos {
|
2012-11-13 03:32:48 +00:00
|
|
|
b = m;
|
|
|
|
} else {
|
|
|
|
a = m;
|
|
|
|
}
|
2012-11-13 02:24:56 +00:00
|
|
|
}
|
2014-02-19 01:24:07 +00:00
|
|
|
// There can be filemaps with length 0. These have the same start_pos as the previous
|
|
|
|
// filemap, but are not the filemaps we want (because they are length 0, they cannot
|
|
|
|
// contain what we are looking for). So, rewind until we find a useful filemap.
|
|
|
|
loop {
|
2014-03-20 22:05:37 +00:00
|
|
|
let lines = files.get(a).lines.borrow();
|
|
|
|
let lines = lines;
|
2014-02-19 01:24:07 +00:00
|
|
|
if lines.len() > 0 {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if a == 0 {
|
|
|
|
fail!("position {} does not resolve to a source location", pos.to_uint());
|
|
|
|
}
|
|
|
|
a -= 1;
|
|
|
|
}
|
2014-01-19 08:21:14 +00:00
|
|
|
if a >= len {
|
2013-10-21 20:08:31 +00:00
|
|
|
fail!("position {} does not resolve to a source location", pos.to_uint())
|
2012-11-13 02:24:56 +00:00
|
|
|
}
|
2012-11-16 03:37:29 +00:00
|
|
|
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
2014-03-16 18:56:24 +00:00
|
|
|
fn lookup_line(&self, pos: BytePos) -> FileMapAndLine {
|
2012-11-16 03:37:29 +00:00
|
|
|
let idx = self.lookup_filemap_idx(pos);
|
2013-12-31 00:30:33 +00:00
|
|
|
|
|
|
|
let files = self.files.borrow();
|
2014-03-20 22:05:37 +00:00
|
|
|
let f = files.get(idx).clone();
|
2012-11-16 03:37:29 +00:00
|
|
|
let mut a = 0u;
|
2014-03-16 18:56:24 +00:00
|
|
|
{
|
2014-03-20 22:05:37 +00:00
|
|
|
let mut lines = f.lines.borrow_mut();
|
|
|
|
let mut b = lines.len();
|
2014-03-16 18:56:24 +00:00
|
|
|
while b - a > 1u {
|
|
|
|
let m = (a + b) / 2u;
|
2014-03-20 22:05:37 +00:00
|
|
|
if *lines.get(m) > pos { b = m; } else { a = m; }
|
2014-03-16 18:56:24 +00:00
|
|
|
}
|
2012-11-13 02:24:56 +00:00
|
|
|
}
|
2014-03-16 18:56:24 +00:00
|
|
|
FileMapAndLine {fm: f, line: a}
|
2012-11-13 02:24:56 +00:00
|
|
|
}
|
2012-01-25 21:22:10 +00:00
|
|
|
|
2013-04-17 16:15:08 +00:00
|
|
|
fn lookup_pos(&self, pos: BytePos) -> Loc {
|
2013-01-30 17:56:33 +00:00
|
|
|
let FileMapAndLine {fm: f, line: a} = self.lookup_line(pos);
|
2012-11-16 03:37:29 +00:00
|
|
|
let line = a + 1u; // Line numbers start at 1
|
2014-02-27 23:53:36 +00:00
|
|
|
let chpos = self.bytepos_to_file_charpos(pos);
|
2014-03-20 22:05:37 +00:00
|
|
|
let linebpos = *f.lines.borrow().get(a);
|
2014-02-27 23:53:36 +00:00
|
|
|
let linechpos = self.bytepos_to_file_charpos(linebpos);
|
2013-10-21 20:08:31 +00:00
|
|
|
debug!("codemap: byte pos {:?} is on the line at byte pos {:?}",
|
2012-11-16 03:37:29 +00:00
|
|
|
pos, linebpos);
|
2013-10-21 20:08:31 +00:00
|
|
|
debug!("codemap: char pos {:?} is on the line at char pos {:?}",
|
2012-11-16 03:37:29 +00:00
|
|
|
chpos, linechpos);
|
2013-10-21 20:08:31 +00:00
|
|
|
debug!("codemap: byte is on line: {:?}", line);
|
2013-03-29 01:39:09 +00:00
|
|
|
assert!(chpos >= linechpos);
|
2014-03-16 18:56:24 +00:00
|
|
|
Loc {
|
2012-11-13 03:32:48 +00:00
|
|
|
file: f,
|
2012-11-16 03:37:29 +00:00
|
|
|
line: line,
|
|
|
|
col: chpos - linechpos
|
2014-03-16 18:56:24 +00:00
|
|
|
}
|
2012-11-13 02:24:56 +00:00
|
|
|
}
|
2012-01-25 21:22:10 +00:00
|
|
|
|
2014-03-16 18:56:24 +00:00
|
|
|
fn lookup_byte_offset(&self, bpos: BytePos) -> FileMapAndBytePos {
|
2012-11-16 03:37:29 +00:00
|
|
|
let idx = self.lookup_filemap_idx(bpos);
|
2014-03-20 22:05:37 +00:00
|
|
|
let fm = self.files.borrow().get(idx).clone();
|
|
|
|
let offset = bpos - fm.start_pos;
|
2014-03-16 18:56:24 +00:00
|
|
|
FileMapAndBytePos {fm: fm, pos: offset}
|
2012-11-16 03:37:29 +00:00
|
|
|
}
|
|
|
|
|
2014-02-27 23:53:36 +00:00
|
|
|
// Converts an absolute BytePos to a CharPos relative to the filemap.
|
|
|
|
fn bytepos_to_file_charpos(&self, bpos: BytePos) -> CharPos {
|
2013-10-21 20:08:31 +00:00
|
|
|
debug!("codemap: converting {:?} to char pos", bpos);
|
2012-11-16 03:37:29 +00:00
|
|
|
let idx = self.lookup_filemap_idx(bpos);
|
2013-12-31 00:30:33 +00:00
|
|
|
let files = self.files.borrow();
|
2014-03-20 22:05:37 +00:00
|
|
|
let map = files.get(idx);
|
2012-11-16 03:37:29 +00:00
|
|
|
|
|
|
|
// The number of extra bytes due to multibyte chars in the FileMap
|
|
|
|
let mut total_extra_bytes = 0;
|
|
|
|
|
2014-03-20 22:05:37 +00:00
|
|
|
for mbc in map.multibyte_chars.borrow().iter() {
|
2013-10-21 20:08:31 +00:00
|
|
|
debug!("codemap: {:?}-byte char at {:?}", mbc.bytes, mbc.pos);
|
2012-11-16 03:37:29 +00:00
|
|
|
if mbc.pos < bpos {
|
2014-02-23 06:08:46 +00:00
|
|
|
// every character is at least one byte, so we only
|
|
|
|
// count the actual extra bytes.
|
|
|
|
total_extra_bytes += mbc.bytes - 1;
|
2012-11-16 03:37:29 +00:00
|
|
|
// We should never see a byte position in the middle of a
|
|
|
|
// character
|
2014-02-23 06:08:46 +00:00
|
|
|
assert!(bpos.to_uint() >= mbc.pos.to_uint() + mbc.bytes);
|
2012-11-16 03:37:29 +00:00
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-03-20 22:05:37 +00:00
|
|
|
assert!(map.start_pos.to_uint() + total_extra_bytes <= bpos.to_uint());
|
|
|
|
CharPos(bpos.to_uint() - map.start_pos.to_uint() - total_extra_bytes)
|
2012-11-16 03:37:29 +00:00
|
|
|
}
|
2011-07-11 06:27:03 +00:00
|
|
|
}
|
2012-01-26 09:52:08 +00:00
|
|
|
|
2013-01-30 17:56:33 +00:00
|
|
|
#[cfg(test)]
|
|
|
|
mod test {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn t1 () {
|
|
|
|
let cm = CodeMap::new();
|
2014-01-31 02:46:19 +00:00
|
|
|
let fm = cm.new_filemap(~"blork.rs",~"first line.\nsecond line");
|
2013-01-30 17:56:33 +00:00
|
|
|
fm.next_line(BytePos(0));
|
2013-03-13 22:30:37 +00:00
|
|
|
assert_eq!(&fm.get_line(0),&~"first line.");
|
2013-01-30 17:56:33 +00:00
|
|
|
// TESTING BROKEN BEHAVIOR:
|
|
|
|
fm.next_line(BytePos(10));
|
2013-03-13 22:30:37 +00:00
|
|
|
assert_eq!(&fm.get_line(1),&~".");
|
2013-01-30 17:56:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[should_fail]
|
|
|
|
fn t2 () {
|
|
|
|
let cm = CodeMap::new();
|
2014-01-31 02:46:19 +00:00
|
|
|
let fm = cm.new_filemap(~"blork.rs",~"first line.\nsecond line");
|
2013-01-30 17:56:33 +00:00
|
|
|
// TESTING *REALLY* BROKEN BEHAVIOR:
|
|
|
|
fm.next_line(BytePos(0));
|
|
|
|
fm.next_line(BytePos(10));
|
|
|
|
fm.next_line(BytePos(2));
|
|
|
|
}
|
2014-02-19 01:24:07 +00:00
|
|
|
|
2014-02-27 23:53:36 +00:00
|
|
|
fn init_code_map() -> CodeMap {
|
2014-02-19 01:24:07 +00:00
|
|
|
let cm = CodeMap::new();
|
|
|
|
let fm1 = cm.new_filemap(~"blork.rs",~"first line.\nsecond line");
|
|
|
|
let fm2 = cm.new_filemap(~"empty.rs",~"");
|
|
|
|
let fm3 = cm.new_filemap(~"blork2.rs",~"first line.\nsecond line");
|
|
|
|
|
|
|
|
fm1.next_line(BytePos(0));
|
|
|
|
fm1.next_line(BytePos(12));
|
2014-03-03 10:44:43 +00:00
|
|
|
fm2.next_line(BytePos(24));
|
|
|
|
fm3.next_line(BytePos(24));
|
|
|
|
fm3.next_line(BytePos(34));
|
2014-02-19 01:24:07 +00:00
|
|
|
|
|
|
|
cm
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn t3() {
|
|
|
|
// Test lookup_byte_offset
|
|
|
|
let cm = init_code_map();
|
|
|
|
|
|
|
|
let fmabp1 = cm.lookup_byte_offset(BytePos(22));
|
|
|
|
assert_eq!(fmabp1.fm.name, ~"blork.rs");
|
|
|
|
assert_eq!(fmabp1.pos, BytePos(22));
|
|
|
|
|
2014-03-03 10:44:43 +00:00
|
|
|
let fmabp2 = cm.lookup_byte_offset(BytePos(24));
|
2014-02-19 01:24:07 +00:00
|
|
|
assert_eq!(fmabp2.fm.name, ~"blork2.rs");
|
|
|
|
assert_eq!(fmabp2.pos, BytePos(0));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn t4() {
|
2014-02-27 23:53:36 +00:00
|
|
|
// Test bytepos_to_file_charpos
|
2014-02-19 01:24:07 +00:00
|
|
|
let cm = init_code_map();
|
|
|
|
|
2014-02-27 23:53:36 +00:00
|
|
|
let cp1 = cm.bytepos_to_file_charpos(BytePos(22));
|
2014-02-19 01:24:07 +00:00
|
|
|
assert_eq!(cp1, CharPos(22));
|
|
|
|
|
2014-03-03 10:44:43 +00:00
|
|
|
let cp2 = cm.bytepos_to_file_charpos(BytePos(24));
|
2014-02-27 23:53:36 +00:00
|
|
|
assert_eq!(cp2, CharPos(0));
|
2014-02-19 01:24:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn t5() {
|
|
|
|
// Test zero-length filemaps.
|
|
|
|
let cm = init_code_map();
|
|
|
|
|
|
|
|
let loc1 = cm.lookup_char_pos(BytePos(22));
|
|
|
|
assert_eq!(loc1.file.name, ~"blork.rs");
|
|
|
|
assert_eq!(loc1.line, 2);
|
|
|
|
assert_eq!(loc1.col, CharPos(10));
|
|
|
|
|
2014-03-03 10:44:43 +00:00
|
|
|
let loc2 = cm.lookup_char_pos(BytePos(24));
|
2014-02-19 01:24:07 +00:00
|
|
|
assert_eq!(loc2.file.name, ~"blork2.rs");
|
|
|
|
assert_eq!(loc2.line, 1);
|
|
|
|
assert_eq!(loc2.col, CharPos(0));
|
|
|
|
}
|
2014-02-27 23:53:36 +00:00
|
|
|
|
|
|
|
fn init_code_map_mbc() -> CodeMap {
|
|
|
|
let cm = CodeMap::new();
|
|
|
|
// € is a three byte utf8 char.
|
|
|
|
let fm1 = cm.new_filemap(~"blork.rs",~"fir€st €€€€ line.\nsecond line");
|
|
|
|
let fm2 = cm.new_filemap(~"blork2.rs",~"first line€€.\n€ second line");
|
|
|
|
|
|
|
|
fm1.next_line(BytePos(0));
|
|
|
|
fm1.next_line(BytePos(22));
|
2014-03-03 10:44:43 +00:00
|
|
|
fm2.next_line(BytePos(40));
|
|
|
|
fm2.next_line(BytePos(58));
|
2014-02-27 23:53:36 +00:00
|
|
|
|
|
|
|
fm1.record_multibyte_char(BytePos(3), 3);
|
|
|
|
fm1.record_multibyte_char(BytePos(9), 3);
|
|
|
|
fm1.record_multibyte_char(BytePos(12), 3);
|
|
|
|
fm1.record_multibyte_char(BytePos(15), 3);
|
|
|
|
fm1.record_multibyte_char(BytePos(18), 3);
|
2014-03-03 10:44:43 +00:00
|
|
|
fm2.record_multibyte_char(BytePos(50), 3);
|
|
|
|
fm2.record_multibyte_char(BytePos(53), 3);
|
|
|
|
fm2.record_multibyte_char(BytePos(58), 3);
|
2014-02-27 23:53:36 +00:00
|
|
|
|
|
|
|
cm
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn t6() {
|
|
|
|
// Test bytepos_to_file_charpos in the presence of multi-byte chars
|
|
|
|
let cm = init_code_map_mbc();
|
|
|
|
|
|
|
|
let cp1 = cm.bytepos_to_file_charpos(BytePos(3));
|
|
|
|
assert_eq!(cp1, CharPos(3));
|
|
|
|
|
|
|
|
let cp2 = cm.bytepos_to_file_charpos(BytePos(6));
|
|
|
|
assert_eq!(cp2, CharPos(4));
|
|
|
|
|
2014-03-03 10:44:43 +00:00
|
|
|
let cp3 = cm.bytepos_to_file_charpos(BytePos(56));
|
2014-02-27 23:53:36 +00:00
|
|
|
assert_eq!(cp3, CharPos(12));
|
|
|
|
|
2014-03-03 10:44:43 +00:00
|
|
|
let cp4 = cm.bytepos_to_file_charpos(BytePos(61));
|
2014-02-27 23:53:36 +00:00
|
|
|
assert_eq!(cp4, CharPos(15));
|
|
|
|
}
|
2014-03-03 10:44:43 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn t7() {
|
|
|
|
// Test span_to_lines for a span ending at the end of filemap
|
|
|
|
let cm = init_code_map();
|
|
|
|
let span = Span {lo: BytePos(12), hi: BytePos(23), expn_info: None};
|
|
|
|
let file_lines = cm.span_to_lines(span);
|
|
|
|
|
|
|
|
assert_eq!(file_lines.file.name, ~"blork.rs");
|
|
|
|
assert_eq!(file_lines.lines.len(), 1);
|
|
|
|
assert_eq!(*file_lines.lines.get(0), 1u);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn t8() {
|
|
|
|
// Test span_to_snippet for a span ending at the end of filemap
|
|
|
|
let cm = init_code_map();
|
|
|
|
let span = Span {lo: BytePos(12), hi: BytePos(23), expn_info: None};
|
|
|
|
let snippet = cm.span_to_snippet(span);
|
|
|
|
|
|
|
|
assert_eq!(snippet, Some(~"second line"));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn t9() {
|
|
|
|
// Test span_to_str for a span ending at the end of filemap
|
|
|
|
let cm = init_code_map();
|
|
|
|
let span = Span {lo: BytePos(12), hi: BytePos(23), expn_info: None};
|
|
|
|
let sstr = cm.span_to_str(span);
|
|
|
|
|
|
|
|
assert_eq!(sstr, ~"blork.rs:2:1: 2:12");
|
|
|
|
}
|
2013-01-30 17:56:33 +00:00
|
|
|
}
|