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
//! A library providing `SourceFiles`, a concatenated list of files with information for resolving
//! points and spans.

use std::path::Path;
use std::{fmt, fs, io};

/// A concatenated string of files, with sourcemap information.
#[derive(Debug, Default, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub struct SourceFile {
    /// The full contents of all the files
    pub contents: String,
    /// The names of the files (same length as `files`).
    file_names: Vec<String>,
    /// The number of lines in each file.
    file_lines: Vec<usize>,
    /// The length of each line in all source files
    line_lengths: Vec<usize>,
}

impl SourceFile {
    /// Create a new empty sourcefile. Equivalent to `Default::default`.
    pub fn new() -> Self {
        Default::default()
    }

    /// Concatenate a file to the end of `contents`, and record info needed to resolve spans.
    ///
    /// If the last line doesn't end with a newline character, it will still be a 'line' for the
    /// purposes of this calculation.
    pub fn add_file(&mut self, filename: impl AsRef<Path>) -> io::Result<()> {
        let filename = filename.as_ref();
        let file = fs::read_to_string(filename)?;

        // We should skip this file if it is completely empty.
        self.add_file_raw(filename.display(), file);
        Ok(())
    }

    pub fn add_file_raw(&mut self, name: impl fmt::Display, contents: impl Into<String>) {
        let contents = contents.into();
        // We should skip this file if it is completely empty (There are no offsets that index into this file).
        if contents.is_empty() {
            return;
        }

        let mut num_lines = 0;
        // We can't use str::lines because we won't know if 1 or 2 chars were lost (if there was a \r).
        let mut lines = contents.split('\n').peekable();
        while let Some(line) = lines.next() {
            if lines.peek().is_some() {
                // middle line
                num_lines += 1;
                self.line_lengths.push(line.len() + 1);
            } else if line.is_empty() {
                // last line is empty, skip it
            } else {
                // last line not empty, but no \n at the end.
                num_lines += 1;
                self.line_lengths.push(line.len());
            }
        }

        // Record the name
        self.file_names.push(name.to_string());
        // Record the number of lines
        self.file_lines.push(num_lines);
        self.contents += &contents;
    }

    /// Get the file, line, and col position of a byte offset.
    ///
    /// # Panics
    ///
    /// This function will panic if `offset` is not on a character boundary.
    pub fn resolve_offset<'a>(&'a self, offset: usize) -> Option<Position<'a>> {
        // If there isn't a single line, always return None.
        let mut line_acc = *self.line_lengths.get(0)?;
        let mut line_idx = 0;
        while line_acc <= offset {
            line_idx += 1;
            // If we have exhaused all the lines, return None
            line_acc += *self.line_lengths.get(line_idx)?;
        }
        // Go back to the start of the line (for working out the column).
        line_acc -= self.line_lengths[line_idx];

        // Can't panic - if we have a line we have a file
        let mut file_acc = self.file_lines[0];
        let mut file_idx = 0;
        while file_acc <= line_idx {
            file_idx += 1;
            file_acc += self.file_lines[file_idx];
        }
        // Go back to the start of the file (for working out the line).
        file_acc -= self.file_lines[file_idx];

        Some(Position::new(
            &self.file_names[file_idx],
            line_idx - file_acc,
            offset - line_acc,
        ))
    }

    /// Get the file, line, and col position of each end of a span.
    // TODO this could be more efficient by using the fact that end is after (and probably near to)
    // start.
    pub fn resolve_offset_span<'a>(&'a self, start: usize, end: usize) -> Option<Span<'a>> {
        if end < start {
            return None;
        }
        Some(Span {
            start: self.resolve_offset(start)?,
            end: self.resolve_offset(end)?,
        })
    }
}

/// A position in a source file.
#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub struct Position<'a> {
    /// Name of the file the position is in.
    pub filename: &'a str,
    /// 0-indexed line number of position.
    pub line: usize,
    /// 0-indexed column number of position.
    pub col: usize,
}

impl<'a> Position<'a> {
    /// Constructor for tests.
    fn new(filename: &'a str, line: usize, col: usize) -> Position<'a> {
        Position {
            filename: filename.as_ref(),
            line,
            col,
        }
    }
}

/// A span in a source file
#[derive(Debug, Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub struct Span<'a> {
    pub start: Position<'a>,
    pub end: Position<'a>,
}

#[cfg(test)]
mod tests {
    extern crate tempfile;

    use self::tempfile::NamedTempFile;
    use super::{Position, SourceFile, Span};
    use std::io::Write;

    #[test]
    fn empty() {
        let sourcefile = SourceFile::default();
        assert!(sourcefile.resolve_offset(0).is_none());
    }

    #[test]
    fn smoke() {
        test_files(
            &[
                "A file with\ntwo lines.\n",
                "Another file with\ntwo more lines.\n",
            ],
            &[
                (0, (0, 0, 0)),   // start
                (5, (0, 0, 5)),   // last char first line first file
                (11, (0, 0, 11)), // first char second line first file
                (12, (0, 1, 0)),  // ..
                (13, (0, 1, 1)),
                (13, (0, 1, 1)),
                (22, (0, 1, 10)),
                (23, (1, 0, 0)),
                (24, (1, 0, 1)),
                (40, (1, 0, 17)),
                (41, (1, 1, 0)),
                (42, (1, 1, 1)),
                (56, (1, 1, 15)),
                //(57, (1, 1, 16)), // should panic
            ],
            &[((0, 5), (0, 0, 0), (0, 0, 5))],
        )
    }

    fn test_files<'a>(
        files: &[impl AsRef<str>],
        offset_tests: &[(usize, (usize, usize, usize))],
        offset_span_tests: &[((usize, usize), (usize, usize, usize), (usize, usize, usize))],
    ) {
        let mut sourcefile = SourceFile::default();
        let mut file_handles = Vec::new(); // don't clean me up please
        for contents in files {
            let mut file = NamedTempFile::new().unwrap();
            write!(file, "{}", contents.as_ref()).unwrap();
            sourcefile.add_file(file.path()).unwrap();
            file_handles.push(file);
        }

        for &(offset, (file_idx, line, col)) in offset_tests {
            let filename = format!("{}", file_handles[file_idx].path().display());
            let pos = sourcefile.resolve_offset(offset);
            assert_eq!(pos.unwrap(), Position::new(&filename, line, col));
        }

        for &(
            (start, end),
            (file_idx_start, line_start, col_start),
            (file_idx_end, line_end, col_end),
        ) in offset_span_tests
        {
            let start_filename = format!("{}", file_handles[file_idx_start].path().display());
            let end_filename = format!("{}", file_handles[file_idx_end].path().display());
            assert_eq!(
                sourcefile.resolve_offset_span(start, end).unwrap(),
                Span {
                    start: Position::new(&start_filename, line_start, col_start),
                    end: Position::new(&end_filename, line_end, col_end),
                }
            );
        }
    }

    #[test]
    fn test_raw() {
        let mut sourcefile = SourceFile::new();
        sourcefile.add_file_raw("test", " ");
        assert_eq!(*sourcefile.line_lengths.last().unwrap(), 1);
    }
}