1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489
//! A data structure for tracking source positions in language implementations, inspired by the
//! [CodeMap type in rustc's libsyntax](https://github.com/rust-lang/rust/blob/master/src/libsyntax/codemap.rs).
//!
//! The `CodeMap` tracks all source files and maps positions within them to linear indexes as if all
//! source files were concatenated. This allows a source position to be represented by a small
//! 32-bit `Pos` indexing into the `CodeMap`, under the assumption that the total amount of parsed
//! source code will not exceed 4GiB. The `CodeMap` can look up the source file, line, and column
//! of a `Pos` or `Span`, as well as provide source code snippets for error reporting.
//!
//! # Example
//! ```
//! use codemap::CodeMap;
//! let mut codemap = CodeMap::new();
//! let file = codemap.add_file("test.rs".to_string(), "fn test(){\n println!(\"Hello\");\n}\n".to_string());
//! let string_literal_span = file.span.subspan(24, 31);
//!
//! let location = codemap.look_up_span(string_literal_span);
//! assert_eq!(location.file.name(), "test.rs");
//! assert_eq!(location.begin.line, 1);
//! assert_eq!(location.begin.column, 13);
//! assert_eq!(location.end.line, 1);
//! assert_eq!(location.end.column, 20);
//! ```
use std::cmp::{self, Ordering};
use std::fmt;
use std::hash::{Hash, Hasher};
use std::ops::{Add, Deref, Sub};
use std::sync::Arc;
/// A small, `Copy`, value representing a position in a `CodeMap`'s file.
#[derive(Copy, Clone, Hash, Eq, PartialEq, Ord, PartialOrd, Debug)]
pub struct Pos(u32);
impl Add<u64> for Pos {
type Output = Pos;
fn add(self, other: u64) -> Pos {
Pos(self.0 + other as u32)
}
}
impl Sub<Pos> for Pos {
type Output = u64;
fn sub(self, other: Pos) -> u64 {
(self.0 - other.0) as u64
}
}
/// A range of text within a CodeMap.
#[derive(Copy, Clone, Hash, Eq, PartialEq, Debug)]
pub struct Span {
/// The position in the codemap representing the first byte of the span.
low: Pos,
/// The position after the last byte of the span.
high: Pos,
}
impl Span {
/// Makes a span from offsets relative to the start of this span.
///
/// # Panics
/// * If `end < begin`
/// * If `end` is beyond the length of the span
pub fn subspan(&self, begin: u64, end: u64) -> Span {
assert!(end >= begin);
assert!(self.low + end <= self.high);
Span {
low: self.low + begin,
high: self.low + end,
}
}
/// Checks if a span is contained within this span.
pub fn contains(&self, other: Span) -> bool {
self.low <= other.low && self.high >= other.high
}
/// The position in the codemap representing the first byte of the span.
pub fn low(&self) -> Pos {
self.low
}
/// The position after the last byte of the span.
pub fn high(&self) -> Pos {
self.high
}
/// The length in bytes of the text of the span
pub fn len(&self) -> u64 {
self.high - self.low
}
/// Create a span that encloses both `self` and `other`.
pub fn merge(&self, other: Span) -> Span {
Span {
low: cmp::min(self.low, other.low),
high: cmp::max(self.high, other.high),
}
}
}
/// Associate a Span with a value of arbitrary type (e.g. an AST node).
#[derive(Clone, PartialEq, Eq, Hash, Debug, Copy)]
pub struct Spanned<T> {
pub node: T,
pub span: Span,
}
impl<T> Spanned<T> {
/// Maps a `Spanned<T>` to `Spanned<U>` by applying the function to the node,
/// leaving the span untouched.
pub fn map_node<U, F: FnOnce(T) -> U>(self, op: F) -> Spanned<U> {
Spanned {
node: op(self.node),
span: self.span
}
}
}
impl<T> Deref for Spanned<T> {
type Target = T;
fn deref(&self) -> &T {
&self.node
}
}
/// A data structure recording source code files for position lookup.
#[derive(Default, Debug)]
pub struct CodeMap {
files: Vec<Arc<File>>,
}
impl CodeMap {
/// Creates an empty `CodeMap`.
pub fn new() -> CodeMap {
Default::default()
}
/// Adds a file with the given name and contents.
///
/// Use the returned `File` and its `.span` property to create `Spans`
/// representing substrings of the file.
pub fn add_file(&mut self, name: String, source: String) -> Arc<File> {
let low = self.end_pos() + 1;
let high = low + source.len() as u64;
let mut lines = vec![low];
lines.extend(
source
.match_indices('\n')
.map(|(p, _)| low + (p + 1) as u64),
);
let file = Arc::new(File {
span: Span { low, high },
name,
source,
lines,
});
self.files.push(file.clone());
file
}
fn end_pos(&self) -> Pos {
self.files.last().map(|x| x.span.high).unwrap_or(Pos(0))
}
/// Looks up the `File` that contains the specified position.
pub fn find_file(&self, pos: Pos) -> &Arc<File> {
self.files
.binary_search_by(|file| {
if file.span.high < pos {
Ordering::Less
} else if file.span.low > pos {
Ordering::Greater
} else {
Ordering::Equal
}
})
.ok()
.map(|i| &self.files[i])
.expect("Mapping unknown source location")
}
/// Gets the file, line, and column represented by a `Pos`.
pub fn look_up_pos(&self, pos: Pos) -> Loc {
let file = self.find_file(pos);
let position = file.find_line_col(pos);
Loc {
file: file.clone(),
position,
}
}
/// Gets the file and its line and column ranges represented by a `Span`.
pub fn look_up_span(&self, span: Span) -> SpanLoc {
let file = self.find_file(span.low);
let begin = file.find_line_col(span.low);
let end = file.find_line_col(span.high);
SpanLoc {
file: file.clone(),
begin,
end,
}
}
}
/// A `CodeMap`'s record of a source file.
pub struct File {
/// The span representing the entire file.
pub span: Span,
/// The filename as it would be displayed in an error message.
name: String,
/// Contents of the file.
source: String,
/// Byte positions of line beginnings.
lines: Vec<Pos>,
}
impl File {
/// Gets the name of the file
pub fn name(&self) -> &str {
&self.name
}
/// Gets the line number of a Pos.
///
/// The lines are 0-indexed (first line is numbered 0)
///
/// # Panics
///
/// * If `pos` is not within this file's span
pub fn find_line(&self, pos: Pos) -> usize {
assert!(pos >= self.span.low);
assert!(pos <= self.span.high);
match self.lines.binary_search(&pos) {
Ok(i) => i,
Err(i) => i - 1,
}
}
/// Gets the line and column of a Pos.
///
/// # Panics
///
/// * If `pos` is not with this file's span
/// * If `pos` points to a byte in the middle of a UTF-8 character
pub fn find_line_col(&self, pos: Pos) -> LineCol {
let line = self.find_line(pos);
let line_span = self.line_span(line);
let byte_col = pos - line_span.low;
let column = self.source_slice(line_span)[..byte_col as usize]
.chars()
.count();
LineCol { line, column }
}
/// Gets the full source text of the file
pub fn source(&self) -> &str {
&self.source
}
/// Gets the source text of a Span.
///
/// # Panics
///
/// * If `span` is not entirely within this file.
pub fn source_slice(&self, span: Span) -> &str {
assert!(self.span.contains(span));
&self.source[((span.low - self.span.low) as usize)..((span.high - self.span.low) as usize)]
}
/// Gets the span representing a line by line number.
///
/// The line number is 0-indexed (first line is numbered 0). The returned span includes the
/// line terminator.
///
/// # Panics
///
/// * If the line number is out of range
pub fn line_span(&self, line: usize) -> Span {
assert!(line < self.lines.len());
Span {
low: self.lines[line],
high: *self.lines.get(line + 1).unwrap_or(&self.span.high),
}
}
/// Gets the source text of a line.
///
/// The string returned does not include the terminating \r or \n characters.
///
/// # Panics
///
/// * If the line number is out of range
pub fn source_line(&self, line: usize) -> &str {
self.source_slice(self.line_span(line))
.trim_end_matches(&['\n', '\r'][..])
}
/// Gets the number of lines in the file
pub fn num_lines(&self) -> usize {
self.lines.len()
}
}
impl fmt::Debug for File {
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
write!(f, "File({:?})", self.name)
}
}
impl PartialEq for File {
/// Compares by identity
fn eq(&self, other: &File) -> bool {
self as *const _ == other as *const _
}
}
impl Eq for File {}
impl Hash for File {
fn hash<H: Hasher>(&self, hasher: &mut H) {
self.span.hash(hasher);
}
}
/// A line and column.
#[derive(Copy, Clone, Hash, Eq, PartialEq, Debug)]
pub struct LineCol {
/// The line number within the file (0-indexed).
pub line: usize,
/// The column within the line (0-indexed).
pub column: usize,
}
/// A file, and a line and column within it.
#[derive(Clone, Eq, PartialEq, Debug)]
pub struct Loc {
pub file: Arc<File>,
pub position: LineCol,
}
impl fmt::Display for Loc {
/// Formats the location as `filename:line:column`, with a 1-indexed
/// line and column.
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
write!(
f,
"{}:{}:{}",
self.file.name,
self.position.line + 1,
self.position.column + 1
)
}
}
/// A file, and a line and column range within it.
#[derive(Clone, Eq, PartialEq, Debug)]
pub struct SpanLoc {
pub file: Arc<File>,
pub begin: LineCol,
pub end: LineCol,
}
impl fmt::Display for SpanLoc {
/// Formats the span as `filename:start_line:start_column: end_line:end_column`,
/// or if the span is zero-length, `filename:line:column`, with a 1-indexed line and column.
fn fmt(&self, f: &mut fmt::Formatter) -> Result<(), fmt::Error> {
if self.begin == self.end {
write!(
f,
"{}:{}:{}",
self.file.name,
self.begin.line + 1,
self.begin.column + 1
)
} else {
write!(
f,
"{}:{}:{}: {}:{}",
self.file.name,
self.begin.line + 1,
self.begin.column + 1,
self.end.line + 1,
self.end.column + 1
)
}
}
}
#[test]
fn test_codemap() {
let mut codemap = CodeMap::new();
let f1 = codemap.add_file("test1.rs".to_string(), "abcd\nefghij\nqwerty".to_string());
let f2 = codemap.add_file("test2.rs".to_string(), "foo\nbar".to_string());
assert_eq!(codemap.find_file(f1.span.low()).name(), "test1.rs");
assert_eq!(codemap.find_file(f1.span.high()).name(), "test1.rs");
assert_eq!(codemap.find_file(f2.span.low()).name(), "test2.rs");
assert_eq!(codemap.find_file(f2.span.high()).name(), "test2.rs");
let x = f1.span.subspan(5, 10);
let f = codemap.find_file(x.low);
assert_eq!(f.name, "test1.rs");
assert_eq!(
f.find_line_col(f.span.low()),
LineCol { line: 0, column: 0 }
);
assert_eq!(
f.find_line_col(f.span.low() + 4),
LineCol { line: 0, column: 4 }
);
assert_eq!(
f.find_line_col(f.span.low() + 5),
LineCol { line: 1, column: 0 }
);
assert_eq!(
f.find_line_col(f.span.low() + 16),
LineCol { line: 2, column: 4 }
);
let x = f2.span.subspan(4, 7);
assert_eq!(codemap.find_file(x.low()).name(), "test2.rs");
assert_eq!(codemap.find_file(x.high()).name(), "test2.rs");
}
#[test]
fn test_issue2() {
let mut codemap = CodeMap::new();
let content = "a \nxyz\r\n";
let file = codemap.add_file("<test>".to_owned(), content.to_owned());
let span = file.span.subspan(2, 3);
assert_eq!(
codemap.look_up_span(span),
SpanLoc {
file: file.clone(),
begin: LineCol { line: 0, column: 2 },
end: LineCol { line: 1, column: 0 }
}
);
assert_eq!(file.source_line(0), "a ");
assert_eq!(file.source_line(1), "xyz");
assert_eq!(file.source_line(2), "");
}
#[test]
fn test_multibyte() {
let mut codemap = CodeMap::new();
let content = "65°00′N 18°00′W 汉语\n🔬";
let file = codemap.add_file("<test>".to_owned(), content.to_owned());
assert_eq!(
codemap.look_up_pos(file.span.low() + 21),
Loc {
file: file.clone(),
position: LineCol {
line: 0,
column: 15
}
}
);
assert_eq!(
codemap.look_up_pos(file.span.low() + 28),
Loc {
file: file.clone(),
position: LineCol {
line: 0,
column: 18
}
}
);
assert_eq!(
codemap.look_up_pos(file.span.low() + 33),
Loc {
file: file.clone(),
position: LineCol { line: 1, column: 1 }
}
);
}