]> git.lizzy.rs Git - rust.git/blob - src/libsyntax_pos/lib.rs
Rollup merge of #61420 - felixrabe:patch-2, r=dtolnay
[rust.git] / src / libsyntax_pos / lib.rs
1 //! The source positions and related helper functions.
2 //!
3 //! ## Note
4 //!
5 //! This API is completely unstable and subject to change.
6
7 #![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
8
9 #![deny(rust_2018_idioms)]
10 #![deny(internal)]
11
12 #![feature(const_fn)]
13 #![feature(crate_visibility_modifier)]
14 #![feature(custom_attribute)]
15 #![feature(nll)]
16 #![feature(non_exhaustive)]
17 #![feature(optin_builtin_traits)]
18 #![feature(rustc_attrs)]
19 #![feature(proc_macro_hygiene)]
20 #![feature(specialization)]
21 #![feature(step_trait)]
22
23 use serialize::{Encodable, Decodable, Encoder, Decoder};
24
25 #[allow(unused_extern_crates)]
26 extern crate serialize as rustc_serialize; // used by deriving
27
28 pub mod edition;
29 use edition::Edition;
30 pub mod hygiene;
31 pub use hygiene::{Mark, SyntaxContext, ExpnInfo, ExpnFormat, CompilerDesugaringKind};
32
33 mod span_encoding;
34 pub use span_encoding::{Span, DUMMY_SP};
35
36 pub mod symbol;
37 pub use symbol::{Symbol, sym};
38
39 mod analyze_source_file;
40
41 use rustc_data_structures::stable_hasher::StableHasher;
42 use rustc_data_structures::sync::{Lrc, Lock};
43
44 use std::borrow::Cow;
45 use std::cell::Cell;
46 use std::cmp::{self, Ordering};
47 use std::fmt;
48 use std::hash::{Hasher, Hash};
49 use std::ops::{Add, Sub};
50 use std::path::PathBuf;
51
52 pub struct Globals {
53     symbol_interner: Lock<symbol::Interner>,
54     span_interner: Lock<span_encoding::SpanInterner>,
55     hygiene_data: Lock<hygiene::HygieneData>,
56     edition: Edition,
57 }
58
59 impl Globals {
60     pub fn new(edition: Edition) -> Globals {
61         Globals {
62             symbol_interner: Lock::new(symbol::Interner::fresh()),
63             span_interner: Lock::new(span_encoding::SpanInterner::default()),
64             hygiene_data: Lock::new(hygiene::HygieneData::new()),
65             edition,
66         }
67     }
68 }
69
70 scoped_tls::scoped_thread_local!(pub static GLOBALS: Globals);
71
72 /// Differentiates between real files and common virtual files.
73 #[derive(Debug, Eq, PartialEq, Clone, Ord, PartialOrd, Hash, RustcDecodable, RustcEncodable)]
74 pub enum FileName {
75     Real(PathBuf),
76     /// A macro. This includes the full name of the macro, so that there are no clashes.
77     Macros(String),
78     /// Call to `quote!`.
79     QuoteExpansion(u64),
80     /// Command line.
81     Anon(u64),
82     /// Hack in `src/libsyntax/parse.rs`.
83     // FIXME(jseyfried)
84     MacroExpansion(u64),
85     ProcMacroSourceCode(u64),
86     /// Strings provided as `--cfg [cfgspec]` stored in a `crate_cfg`.
87     CfgSpec(u64),
88     /// Strings provided as crate attributes in the CLI.
89     CliCrateAttr(u64),
90     /// Custom sources for explicit parser calls from plugins and drivers.
91     Custom(String),
92     DocTest(PathBuf, isize),
93 }
94
95 impl std::fmt::Display for FileName {
96     fn fmt(&self, fmt: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
97         use FileName::*;
98         match *self {
99             Real(ref path) => write!(fmt, "{}", path.display()),
100             Macros(ref name) => write!(fmt, "<{} macros>", name),
101             QuoteExpansion(_) => write!(fmt, "<quote expansion>"),
102             MacroExpansion(_) => write!(fmt, "<macro expansion>"),
103             Anon(_) => write!(fmt, "<anon>"),
104             ProcMacroSourceCode(_) =>
105                 write!(fmt, "<proc-macro source code>"),
106             CfgSpec(_) => write!(fmt, "<cfgspec>"),
107             CliCrateAttr(_) => write!(fmt, "<crate attribute>"),
108             Custom(ref s) => write!(fmt, "<{}>", s),
109             DocTest(ref path, _) => write!(fmt, "{}", path.display()),
110         }
111     }
112 }
113
114 impl From<PathBuf> for FileName {
115     fn from(p: PathBuf) -> Self {
116         assert!(!p.to_string_lossy().ends_with('>'));
117         FileName::Real(p)
118     }
119 }
120
121 impl FileName {
122     pub fn is_real(&self) -> bool {
123         use FileName::*;
124         match *self {
125             Real(_) => true,
126             Macros(_) |
127             Anon(_) |
128             MacroExpansion(_) |
129             ProcMacroSourceCode(_) |
130             CfgSpec(_) |
131             CliCrateAttr(_) |
132             Custom(_) |
133             QuoteExpansion(_) |
134             DocTest(_, _) => false,
135         }
136     }
137
138     pub fn is_macros(&self) -> bool {
139         use FileName::*;
140         match *self {
141             Real(_) |
142             Anon(_) |
143             MacroExpansion(_) |
144             ProcMacroSourceCode(_) |
145             CfgSpec(_) |
146             CliCrateAttr(_) |
147             Custom(_) |
148             QuoteExpansion(_) |
149             DocTest(_, _) => false,
150             Macros(_) => true,
151         }
152     }
153
154     pub fn quote_expansion_source_code(src: &str) -> FileName {
155         let mut hasher = StableHasher::new();
156         src.hash(&mut hasher);
157         FileName::QuoteExpansion(hasher.finish())
158     }
159
160     pub fn macro_expansion_source_code(src: &str) -> FileName {
161         let mut hasher = StableHasher::new();
162         src.hash(&mut hasher);
163         FileName::MacroExpansion(hasher.finish())
164     }
165
166     pub fn anon_source_code(src: &str) -> FileName {
167         let mut hasher = StableHasher::new();
168         src.hash(&mut hasher);
169         FileName::Anon(hasher.finish())
170     }
171
172     pub fn proc_macro_source_code(src: &str) -> FileName {
173         let mut hasher = StableHasher::new();
174         src.hash(&mut hasher);
175         FileName::ProcMacroSourceCode(hasher.finish())
176     }
177
178     pub fn cfg_spec_source_code(src: &str) -> FileName {
179         let mut hasher = StableHasher::new();
180         src.hash(&mut hasher);
181         FileName::QuoteExpansion(hasher.finish())
182     }
183
184     pub fn cli_crate_attr_source_code(src: &str) -> FileName {
185         let mut hasher = StableHasher::new();
186         src.hash(&mut hasher);
187         FileName::CliCrateAttr(hasher.finish())
188     }
189
190     pub fn doc_test_source_code(path: PathBuf, line: isize) -> FileName{
191         FileName::DocTest(path, line)
192     }
193 }
194
195 /// Spans represent a region of code, used for error reporting. Positions in spans
196 /// are *absolute* positions from the beginning of the source_map, not positions
197 /// relative to `SourceFile`s. Methods on the `SourceMap` can be used to relate spans back
198 /// to the original source.
199 /// You must be careful if the span crosses more than one file - you will not be
200 /// able to use many of the functions on spans in source_map and you cannot assume
201 /// that the length of the `span = hi - lo`; there may be space in the `BytePos`
202 /// range between files.
203 ///
204 /// `SpanData` is public because `Span` uses a thread-local interner and can't be
205 /// sent to other threads, but some pieces of performance infra run in a separate thread.
206 /// Using `Span` is generally preferred.
207 #[derive(Clone, Copy, Hash, PartialEq, Eq, Ord, PartialOrd)]
208 pub struct SpanData {
209     pub lo: BytePos,
210     pub hi: BytePos,
211     /// Information about where the macro came from, if this piece of
212     /// code was created by a macro expansion.
213     pub ctxt: SyntaxContext,
214 }
215
216 impl SpanData {
217     #[inline]
218     pub fn with_lo(&self, lo: BytePos) -> Span {
219         Span::new(lo, self.hi, self.ctxt)
220     }
221     #[inline]
222     pub fn with_hi(&self, hi: BytePos) -> Span {
223         Span::new(self.lo, hi, self.ctxt)
224     }
225     #[inline]
226     pub fn with_ctxt(&self, ctxt: SyntaxContext) -> Span {
227         Span::new(self.lo, self.hi, ctxt)
228     }
229 }
230
231 // The interner is pointed to by a thread local value which is only set on the main thread
232 // with parallelization is disabled. So we don't allow `Span` to transfer between threads
233 // to avoid panics and other errors, even though it would be memory safe to do so.
234 #[cfg(not(parallel_compiler))]
235 impl !Send for Span {}
236 #[cfg(not(parallel_compiler))]
237 impl !Sync for Span {}
238
239 impl PartialOrd for Span {
240     fn partial_cmp(&self, rhs: &Self) -> Option<Ordering> {
241         PartialOrd::partial_cmp(&self.data(), &rhs.data())
242     }
243 }
244 impl Ord for Span {
245     fn cmp(&self, rhs: &Self) -> Ordering {
246         Ord::cmp(&self.data(), &rhs.data())
247     }
248 }
249
250 /// A collection of spans. Spans have two orthogonal attributes:
251 ///
252 /// - They can be *primary spans*. In this case they are the locus of
253 ///   the error, and would be rendered with `^^^`.
254 /// - They can have a *label*. In this case, the label is written next
255 ///   to the mark in the snippet when we render.
256 #[derive(Clone, Debug, Hash, PartialEq, Eq, RustcEncodable, RustcDecodable)]
257 pub struct MultiSpan {
258     primary_spans: Vec<Span>,
259     span_labels: Vec<(Span, String)>,
260 }
261
262 impl Span {
263     #[inline]
264     pub fn lo(self) -> BytePos {
265         self.data().lo
266     }
267     #[inline]
268     pub fn with_lo(self, lo: BytePos) -> Span {
269         self.data().with_lo(lo)
270     }
271     #[inline]
272     pub fn hi(self) -> BytePos {
273         self.data().hi
274     }
275     #[inline]
276     pub fn with_hi(self, hi: BytePos) -> Span {
277         self.data().with_hi(hi)
278     }
279     #[inline]
280     pub fn ctxt(self) -> SyntaxContext {
281         self.data().ctxt
282     }
283     #[inline]
284     pub fn with_ctxt(self, ctxt: SyntaxContext) -> Span {
285         self.data().with_ctxt(ctxt)
286     }
287
288     /// Returns `true` if this is a dummy span with any hygienic context.
289     #[inline]
290     pub fn is_dummy(self) -> bool {
291         let span = self.data();
292         span.lo.0 == 0 && span.hi.0 == 0
293     }
294
295     /// Returns a new span representing an empty span at the beginning of this span
296     #[inline]
297     pub fn shrink_to_lo(self) -> Span {
298         let span = self.data();
299         span.with_hi(span.lo)
300     }
301     /// Returns a new span representing an empty span at the end of this span.
302     #[inline]
303     pub fn shrink_to_hi(self) -> Span {
304         let span = self.data();
305         span.with_lo(span.hi)
306     }
307
308     /// Returns `self` if `self` is not the dummy span, and `other` otherwise.
309     pub fn substitute_dummy(self, other: Span) -> Span {
310         if self.is_dummy() { other } else { self }
311     }
312
313     /// Returns `true` if `self` fully encloses `other`.
314     pub fn contains(self, other: Span) -> bool {
315         let span = self.data();
316         let other = other.data();
317         span.lo <= other.lo && other.hi <= span.hi
318     }
319
320     /// Returns `true` if `self` touches `other`.
321     pub fn overlaps(self, other: Span) -> bool {
322         let span = self.data();
323         let other = other.data();
324         span.lo < other.hi && other.lo < span.hi
325     }
326
327     /// Returns `true` if the spans are equal with regards to the source text.
328     ///
329     /// Use this instead of `==` when either span could be generated code,
330     /// and you only care that they point to the same bytes of source text.
331     pub fn source_equal(&self, other: &Span) -> bool {
332         let span = self.data();
333         let other = other.data();
334         span.lo == other.lo && span.hi == other.hi
335     }
336
337     /// Returns `Some(span)`, where the start is trimmed by the end of `other`.
338     pub fn trim_start(self, other: Span) -> Option<Span> {
339         let span = self.data();
340         let other = other.data();
341         if span.hi > other.hi {
342             Some(span.with_lo(cmp::max(span.lo, other.hi)))
343         } else {
344             None
345         }
346     }
347
348     /// Returns the source span -- this is either the supplied span, or the span for
349     /// the macro callsite that expanded to it.
350     pub fn source_callsite(self) -> Span {
351         self.ctxt().outer_expn_info().map(|info| info.call_site.source_callsite()).unwrap_or(self)
352     }
353
354     /// The `Span` for the tokens in the previous macro expansion from which `self` was generated,
355     /// if any.
356     pub fn parent(self) -> Option<Span> {
357         self.ctxt().outer_expn_info().map(|i| i.call_site)
358     }
359
360     /// Edition of the crate from which this span came.
361     pub fn edition(self) -> edition::Edition {
362         self.ctxt().outer_expn_info().map_or_else(|| {
363             Edition::from_session()
364         }, |einfo| einfo.edition)
365     }
366
367     #[inline]
368     pub fn rust_2015(&self) -> bool {
369         self.edition() == edition::Edition::Edition2015
370     }
371
372     #[inline]
373     pub fn rust_2018(&self) -> bool {
374         self.edition() >= edition::Edition::Edition2018
375     }
376
377     /// Returns the source callee.
378     ///
379     /// Returns `None` if the supplied span has no expansion trace,
380     /// else returns the `ExpnInfo` for the macro definition
381     /// corresponding to the source callsite.
382     pub fn source_callee(self) -> Option<ExpnInfo> {
383         fn source_callee(info: ExpnInfo) -> ExpnInfo {
384             match info.call_site.ctxt().outer_expn_info() {
385                 Some(info) => source_callee(info),
386                 None => info,
387             }
388         }
389         self.ctxt().outer_expn_info().map(source_callee)
390     }
391
392     /// Checks if a span is "internal" to a macro in which `#[unstable]`
393     /// items can be used (that is, a macro marked with
394     /// `#[allow_internal_unstable]`).
395     pub fn allows_unstable(&self, feature: Symbol) -> bool {
396         match self.ctxt().outer_expn_info() {
397             Some(info) => info
398                 .allow_internal_unstable
399                 .map_or(false, |features| features.iter().any(|&f|
400                     f == feature || f == sym::allow_internal_unstable_backcompat_hack
401                 )),
402             None => false,
403         }
404     }
405
406     /// Checks if this span arises from a compiler desugaring of kind `kind`.
407     pub fn is_compiler_desugaring(&self, kind: CompilerDesugaringKind) -> bool {
408         match self.ctxt().outer_expn_info() {
409             Some(info) => match info.format {
410                 ExpnFormat::CompilerDesugaring(k) => k == kind,
411                 _ => false,
412             },
413             None => false,
414         }
415     }
416
417     /// Returns the compiler desugaring that created this span, or `None`
418     /// if this span is not from a desugaring.
419     pub fn compiler_desugaring_kind(&self) -> Option<CompilerDesugaringKind> {
420         match self.ctxt().outer_expn_info() {
421             Some(info) => match info.format {
422                 ExpnFormat::CompilerDesugaring(k) => Some(k),
423                 _ => None
424             },
425             None => None
426         }
427     }
428
429     /// Checks if a span is "internal" to a macro in which `unsafe`
430     /// can be used without triggering the `unsafe_code` lint
431     //  (that is, a macro marked with `#[allow_internal_unsafe]`).
432     pub fn allows_unsafe(&self) -> bool {
433         match self.ctxt().outer_expn_info() {
434             Some(info) => info.allow_internal_unsafe,
435             None => false,
436         }
437     }
438
439     pub fn macro_backtrace(mut self) -> Vec<MacroBacktrace> {
440         let mut prev_span = DUMMY_SP;
441         let mut result = vec![];
442         while let Some(info) = self.ctxt().outer_expn_info() {
443             // Don't print recursive invocations.
444             if !info.call_site.source_equal(&prev_span) {
445                 let (pre, post) = match info.format {
446                     ExpnFormat::MacroAttribute(..) => ("#[", "]"),
447                     ExpnFormat::MacroBang(..) => ("", "!"),
448                     ExpnFormat::CompilerDesugaring(..) => ("desugaring of `", "`"),
449                 };
450                 result.push(MacroBacktrace {
451                     call_site: info.call_site,
452                     macro_decl_name: format!("{}{}{}", pre, info.format.name(), post),
453                     def_site_span: info.def_site,
454                 });
455             }
456
457             prev_span = self;
458             self = info.call_site;
459         }
460         result
461     }
462
463     /// Returns a `Span` that would enclose both `self` and `end`.
464     pub fn to(self, end: Span) -> Span {
465         let span_data = self.data();
466         let end_data = end.data();
467         // FIXME(jseyfried): `self.ctxt` should always equal `end.ctxt` here (cf. issue #23480).
468         // Return the macro span on its own to avoid weird diagnostic output. It is preferable to
469         // have an incomplete span than a completely nonsensical one.
470         if span_data.ctxt != end_data.ctxt {
471             if span_data.ctxt == SyntaxContext::empty() {
472                 return end;
473             } else if end_data.ctxt == SyntaxContext::empty() {
474                 return self;
475             }
476             // Both spans fall within a macro.
477             // FIXME(estebank): check if it is the *same* macro.
478         }
479         Span::new(
480             cmp::min(span_data.lo, end_data.lo),
481             cmp::max(span_data.hi, end_data.hi),
482             if span_data.ctxt == SyntaxContext::empty() { end_data.ctxt } else { span_data.ctxt },
483         )
484     }
485
486     /// Returns a `Span` between the end of `self` to the beginning of `end`.
487     pub fn between(self, end: Span) -> Span {
488         let span = self.data();
489         let end = end.data();
490         Span::new(
491             span.hi,
492             end.lo,
493             if end.ctxt == SyntaxContext::empty() { end.ctxt } else { span.ctxt },
494         )
495     }
496
497     /// Returns a `Span` between the beginning of `self` to the beginning of `end`.
498     pub fn until(self, end: Span) -> Span {
499         let span = self.data();
500         let end = end.data();
501         Span::new(
502             span.lo,
503             end.lo,
504             if end.ctxt == SyntaxContext::empty() { end.ctxt } else { span.ctxt },
505         )
506     }
507
508     pub fn from_inner_byte_pos(self, start: usize, end: usize) -> Span {
509         let span = self.data();
510         Span::new(span.lo + BytePos::from_usize(start),
511                   span.lo + BytePos::from_usize(end),
512                   span.ctxt)
513     }
514
515     #[inline]
516     pub fn apply_mark(self, mark: Mark) -> Span {
517         let span = self.data();
518         span.with_ctxt(span.ctxt.apply_mark(mark))
519     }
520
521     #[inline]
522     pub fn remove_mark(&mut self) -> Mark {
523         let mut span = self.data();
524         let mark = span.ctxt.remove_mark();
525         *self = Span::new(span.lo, span.hi, span.ctxt);
526         mark
527     }
528
529     #[inline]
530     pub fn adjust(&mut self, expansion: Mark) -> Option<Mark> {
531         let mut span = self.data();
532         let mark = span.ctxt.adjust(expansion);
533         *self = Span::new(span.lo, span.hi, span.ctxt);
534         mark
535     }
536
537     #[inline]
538     pub fn glob_adjust(&mut self, expansion: Mark, glob_ctxt: SyntaxContext)
539                        -> Option<Option<Mark>> {
540         let mut span = self.data();
541         let mark = span.ctxt.glob_adjust(expansion, glob_ctxt);
542         *self = Span::new(span.lo, span.hi, span.ctxt);
543         mark
544     }
545
546     #[inline]
547     pub fn reverse_glob_adjust(&mut self, expansion: Mark, glob_ctxt: SyntaxContext)
548                                -> Option<Option<Mark>> {
549         let mut span = self.data();
550         let mark = span.ctxt.reverse_glob_adjust(expansion, glob_ctxt);
551         *self = Span::new(span.lo, span.hi, span.ctxt);
552         mark
553     }
554
555     #[inline]
556     pub fn modern(self) -> Span {
557         let span = self.data();
558         span.with_ctxt(span.ctxt.modern())
559     }
560
561     #[inline]
562     pub fn modern_and_legacy(self) -> Span {
563         let span = self.data();
564         span.with_ctxt(span.ctxt.modern_and_legacy())
565     }
566 }
567
568 #[derive(Clone, Debug)]
569 pub struct SpanLabel {
570     /// The span we are going to include in the final snippet.
571     pub span: Span,
572
573     /// Is this a primary span? This is the "locus" of the message,
574     /// and is indicated with a `^^^^` underline, versus `----`.
575     pub is_primary: bool,
576
577     /// What label should we attach to this span (if any)?
578     pub label: Option<String>,
579 }
580
581 impl Default for Span {
582     fn default() -> Self {
583         DUMMY_SP
584     }
585 }
586
587 impl serialize::UseSpecializedEncodable for Span {
588     fn default_encode<S: Encoder>(&self, s: &mut S) -> Result<(), S::Error> {
589         let span = self.data();
590         s.emit_struct("Span", 2, |s| {
591             s.emit_struct_field("lo", 0, |s| {
592                 span.lo.encode(s)
593             })?;
594
595             s.emit_struct_field("hi", 1, |s| {
596                 span.hi.encode(s)
597             })
598         })
599     }
600 }
601
602 impl serialize::UseSpecializedDecodable for Span {
603     fn default_decode<D: Decoder>(d: &mut D) -> Result<Span, D::Error> {
604         d.read_struct("Span", 2, |d| {
605             let lo = d.read_struct_field("lo", 0, Decodable::decode)?;
606             let hi = d.read_struct_field("hi", 1, Decodable::decode)?;
607             Ok(Span::new(lo, hi, NO_EXPANSION))
608         })
609     }
610 }
611
612 pub fn default_span_debug(span: Span, f: &mut fmt::Formatter<'_>) -> fmt::Result {
613     f.debug_struct("Span")
614         .field("lo", &span.lo())
615         .field("hi", &span.hi())
616         .field("ctxt", &span.ctxt())
617         .finish()
618 }
619
620 impl fmt::Debug for Span {
621     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
622         SPAN_DEBUG.with(|span_debug| span_debug.get()(*self, f))
623     }
624 }
625
626 impl fmt::Debug for SpanData {
627     fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
628         SPAN_DEBUG.with(|span_debug| span_debug.get()(Span::new(self.lo, self.hi, self.ctxt), f))
629     }
630 }
631
632 impl MultiSpan {
633     #[inline]
634     pub fn new() -> MultiSpan {
635         MultiSpan {
636             primary_spans: vec![],
637             span_labels: vec![]
638         }
639     }
640
641     pub fn from_span(primary_span: Span) -> MultiSpan {
642         MultiSpan {
643             primary_spans: vec![primary_span],
644             span_labels: vec![]
645         }
646     }
647
648     pub fn from_spans(vec: Vec<Span>) -> MultiSpan {
649         MultiSpan {
650             primary_spans: vec,
651             span_labels: vec![]
652         }
653     }
654
655     pub fn push_span_label(&mut self, span: Span, label: String) {
656         self.span_labels.push((span, label));
657     }
658
659     /// Selects the first primary span (if any).
660     pub fn primary_span(&self) -> Option<Span> {
661         self.primary_spans.first().cloned()
662     }
663
664     /// Returns all primary spans.
665     pub fn primary_spans(&self) -> &[Span] {
666         &self.primary_spans
667     }
668
669     /// Returns `true` if any of the primary spans are displayable.
670     pub fn has_primary_spans(&self) -> bool {
671         self.primary_spans.iter().any(|sp| !sp.is_dummy())
672     }
673
674     /// Returns `true` if this contains only a dummy primary span with any hygienic context.
675     pub fn is_dummy(&self) -> bool {
676         let mut is_dummy = true;
677         for span in &self.primary_spans {
678             if !span.is_dummy() {
679                 is_dummy = false;
680             }
681         }
682         is_dummy
683     }
684
685     /// Replaces all occurrences of one Span with another. Used to move `Span`s in areas that don't
686     /// display well (like std macros). Returns whether replacements occurred.
687     pub fn replace(&mut self, before: Span, after: Span) -> bool {
688         let mut replacements_occurred = false;
689         for primary_span in &mut self.primary_spans {
690             if *primary_span == before {
691                 *primary_span = after;
692                 replacements_occurred = true;
693             }
694         }
695         for span_label in &mut self.span_labels {
696             if span_label.0 == before {
697                 span_label.0 = after;
698                 replacements_occurred = true;
699             }
700         }
701         replacements_occurred
702     }
703
704     /// Returns the strings to highlight. We always ensure that there
705     /// is an entry for each of the primary spans -- for each primary
706     /// span `P`, if there is at least one label with span `P`, we return
707     /// those labels (marked as primary). But otherwise we return
708     /// `SpanLabel` instances with empty labels.
709     pub fn span_labels(&self) -> Vec<SpanLabel> {
710         let is_primary = |span| self.primary_spans.contains(&span);
711
712         let mut span_labels = self.span_labels.iter().map(|&(span, ref label)|
713             SpanLabel {
714                 span,
715                 is_primary: is_primary(span),
716                 label: Some(label.clone())
717             }
718         ).collect::<Vec<_>>();
719
720         for &span in &self.primary_spans {
721             if !span_labels.iter().any(|sl| sl.span == span) {
722                 span_labels.push(SpanLabel {
723                     span,
724                     is_primary: true,
725                     label: None
726                 });
727             }
728         }
729
730         span_labels
731     }
732
733     /// Returns `true` if any of the span labels is displayable.
734     pub fn has_span_labels(&self) -> bool {
735         self.span_labels.iter().any(|(sp, _)| !sp.is_dummy())
736     }
737 }
738
739 impl From<Span> for MultiSpan {
740     fn from(span: Span) -> MultiSpan {
741         MultiSpan::from_span(span)
742     }
743 }
744
745 impl From<Vec<Span>> for MultiSpan {
746     fn from(spans: Vec<Span>) -> MultiSpan {
747         MultiSpan::from_spans(spans)
748     }
749 }
750
751 pub const NO_EXPANSION: SyntaxContext = SyntaxContext::empty();
752
753 /// Identifies an offset of a multi-byte character in a `SourceFile`.
754 #[derive(Copy, Clone, RustcEncodable, RustcDecodable, Eq, PartialEq, Debug)]
755 pub struct MultiByteChar {
756     /// The absolute offset of the character in the `SourceMap`.
757     pub pos: BytePos,
758     /// The number of bytes, `>= 2`.
759     pub bytes: u8,
760 }
761
762 /// Identifies an offset of a non-narrow character in a `SourceFile`.
763 #[derive(Copy, Clone, RustcEncodable, RustcDecodable, Eq, PartialEq, Debug)]
764 pub enum NonNarrowChar {
765     /// Represents a zero-width character.
766     ZeroWidth(BytePos),
767     /// Represents a wide (full-width) character.
768     Wide(BytePos),
769     /// Represents a tab character, represented visually with a width of 4 characters.
770     Tab(BytePos),
771 }
772
773 impl NonNarrowChar {
774     fn new(pos: BytePos, width: usize) -> Self {
775         match width {
776             0 => NonNarrowChar::ZeroWidth(pos),
777             2 => NonNarrowChar::Wide(pos),
778             4 => NonNarrowChar::Tab(pos),
779             _ => panic!("width {} given for non-narrow character", width),
780         }
781     }
782
783     /// Returns the absolute offset of the character in the `SourceMap`.
784     pub fn pos(&self) -> BytePos {
785         match *self {
786             NonNarrowChar::ZeroWidth(p) |
787             NonNarrowChar::Wide(p) |
788             NonNarrowChar::Tab(p) => p,
789         }
790     }
791
792     /// Returns the width of the character, 0 (zero-width) or 2 (wide).
793     pub fn width(&self) -> usize {
794         match *self {
795             NonNarrowChar::ZeroWidth(_) => 0,
796             NonNarrowChar::Wide(_) => 2,
797             NonNarrowChar::Tab(_) => 4,
798         }
799     }
800 }
801
802 impl Add<BytePos> for NonNarrowChar {
803     type Output = Self;
804
805     fn add(self, rhs: BytePos) -> Self {
806         match self {
807             NonNarrowChar::ZeroWidth(pos) => NonNarrowChar::ZeroWidth(pos + rhs),
808             NonNarrowChar::Wide(pos) => NonNarrowChar::Wide(pos + rhs),
809             NonNarrowChar::Tab(pos) => NonNarrowChar::Tab(pos + rhs),
810         }
811     }
812 }
813
814 impl Sub<BytePos> for NonNarrowChar {
815     type Output = Self;
816
817     fn sub(self, rhs: BytePos) -> Self {
818         match self {
819             NonNarrowChar::ZeroWidth(pos) => NonNarrowChar::ZeroWidth(pos - rhs),
820             NonNarrowChar::Wide(pos) => NonNarrowChar::Wide(pos - rhs),
821             NonNarrowChar::Tab(pos) => NonNarrowChar::Tab(pos - rhs),
822         }
823     }
824 }
825
826 /// The state of the lazy external source loading mechanism of a `SourceFile`.
827 #[derive(PartialEq, Eq, Clone)]
828 pub enum ExternalSource {
829     /// The external source has been loaded already.
830     Present(String),
831     /// No attempt has been made to load the external source.
832     AbsentOk,
833     /// A failed attempt has been made to load the external source.
834     AbsentErr,
835     /// No external source has to be loaded, since the `SourceFile` represents a local crate.
836     Unneeded,
837 }
838
839 impl ExternalSource {
840     pub fn is_absent(&self) -> bool {
841         match *self {
842             ExternalSource::Present(_) => false,
843             _ => true,
844         }
845     }
846
847     pub fn get_source(&self) -> Option<&str> {
848         match *self {
849             ExternalSource::Present(ref src) => Some(src),
850             _ => None,
851         }
852     }
853 }
854
855 /// A single source in the `SourceMap`.
856 #[derive(Clone)]
857 pub struct SourceFile {
858     /// The name of the file that the source came from, source that doesn't
859     /// originate from files has names between angle brackets by convention
860     /// (e.g., `<anon>`).
861     pub name: FileName,
862     /// `true` if the `name` field above has been modified by `--remap-path-prefix`.
863     pub name_was_remapped: bool,
864     /// The unmapped path of the file that the source came from.
865     /// Set to `None` if the `SourceFile` was imported from an external crate.
866     pub unmapped_path: Option<FileName>,
867     /// Indicates which crate this `SourceFile` was imported from.
868     pub crate_of_origin: u32,
869     /// The complete source code.
870     pub src: Option<Lrc<String>>,
871     /// The source code's hash.
872     pub src_hash: u128,
873     /// The external source code (used for external crates, which will have a `None`
874     /// value as `self.src`.
875     pub external_src: Lock<ExternalSource>,
876     /// The start position of this source in the `SourceMap`.
877     pub start_pos: BytePos,
878     /// The end position of this source in the `SourceMap`.
879     pub end_pos: BytePos,
880     /// Locations of lines beginnings in the source code.
881     pub lines: Vec<BytePos>,
882     /// Locations of multi-byte characters in the source code.
883     pub multibyte_chars: Vec<MultiByteChar>,
884     /// Width of characters that are not narrow in the source code.
885     pub non_narrow_chars: Vec<NonNarrowChar>,
886     /// A hash of the filename, used for speeding up hashing in incremental compilation.
887     pub name_hash: u128,
888 }
889
890 impl Encodable for SourceFile {
891     fn encode<S: Encoder>(&self, s: &mut S) -> Result<(), S::Error> {
892         s.emit_struct("SourceFile", 8, |s| {
893             s.emit_struct_field("name", 0, |s| self.name.encode(s))?;
894             s.emit_struct_field("name_was_remapped", 1, |s| self.name_was_remapped.encode(s))?;
895             s.emit_struct_field("src_hash", 2, |s| self.src_hash.encode(s))?;
896             s.emit_struct_field("start_pos", 4, |s| self.start_pos.encode(s))?;
897             s.emit_struct_field("end_pos", 5, |s| self.end_pos.encode(s))?;
898             s.emit_struct_field("lines", 6, |s| {
899                 let lines = &self.lines[..];
900                 // Store the length.
901                 s.emit_u32(lines.len() as u32)?;
902
903                 if !lines.is_empty() {
904                     // In order to preserve some space, we exploit the fact that
905                     // the lines list is sorted and individual lines are
906                     // probably not that long. Because of that we can store lines
907                     // as a difference list, using as little space as possible
908                     // for the differences.
909                     let max_line_length = if lines.len() == 1 {
910                         0
911                     } else {
912                         lines.windows(2)
913                              .map(|w| w[1] - w[0])
914                              .map(|bp| bp.to_usize())
915                              .max()
916                              .unwrap()
917                     };
918
919                     let bytes_per_diff: u8 = match max_line_length {
920                         0 ..= 0xFF => 1,
921                         0x100 ..= 0xFFFF => 2,
922                         _ => 4
923                     };
924
925                     // Encode the number of bytes used per diff.
926                     bytes_per_diff.encode(s)?;
927
928                     // Encode the first element.
929                     lines[0].encode(s)?;
930
931                     let diff_iter = (&lines[..]).windows(2)
932                                                 .map(|w| (w[1] - w[0]));
933
934                     match bytes_per_diff {
935                         1 => for diff in diff_iter { (diff.0 as u8).encode(s)? },
936                         2 => for diff in diff_iter { (diff.0 as u16).encode(s)? },
937                         4 => for diff in diff_iter { diff.0.encode(s)? },
938                         _ => unreachable!()
939                     }
940                 }
941
942                 Ok(())
943             })?;
944             s.emit_struct_field("multibyte_chars", 7, |s| {
945                 self.multibyte_chars.encode(s)
946             })?;
947             s.emit_struct_field("non_narrow_chars", 8, |s| {
948                 self.non_narrow_chars.encode(s)
949             })?;
950             s.emit_struct_field("name_hash", 9, |s| {
951                 self.name_hash.encode(s)
952             })
953         })
954     }
955 }
956
957 impl Decodable for SourceFile {
958     fn decode<D: Decoder>(d: &mut D) -> Result<SourceFile, D::Error> {
959
960         d.read_struct("SourceFile", 8, |d| {
961             let name: FileName = d.read_struct_field("name", 0, |d| Decodable::decode(d))?;
962             let name_was_remapped: bool =
963                 d.read_struct_field("name_was_remapped", 1, |d| Decodable::decode(d))?;
964             let src_hash: u128 =
965                 d.read_struct_field("src_hash", 2, |d| Decodable::decode(d))?;
966             let start_pos: BytePos =
967                 d.read_struct_field("start_pos", 4, |d| Decodable::decode(d))?;
968             let end_pos: BytePos = d.read_struct_field("end_pos", 5, |d| Decodable::decode(d))?;
969             let lines: Vec<BytePos> = d.read_struct_field("lines", 6, |d| {
970                 let num_lines: u32 = Decodable::decode(d)?;
971                 let mut lines = Vec::with_capacity(num_lines as usize);
972
973                 if num_lines > 0 {
974                     // Read the number of bytes used per diff.
975                     let bytes_per_diff: u8 = Decodable::decode(d)?;
976
977                     // Read the first element.
978                     let mut line_start: BytePos = Decodable::decode(d)?;
979                     lines.push(line_start);
980
981                     for _ in 1..num_lines {
982                         let diff = match bytes_per_diff {
983                             1 => d.read_u8()? as u32,
984                             2 => d.read_u16()? as u32,
985                             4 => d.read_u32()?,
986                             _ => unreachable!()
987                         };
988
989                         line_start = line_start + BytePos(diff);
990
991                         lines.push(line_start);
992                     }
993                 }
994
995                 Ok(lines)
996             })?;
997             let multibyte_chars: Vec<MultiByteChar> =
998                 d.read_struct_field("multibyte_chars", 7, |d| Decodable::decode(d))?;
999             let non_narrow_chars: Vec<NonNarrowChar> =
1000                 d.read_struct_field("non_narrow_chars", 8, |d| Decodable::decode(d))?;
1001             let name_hash: u128 =
1002                 d.read_struct_field("name_hash", 9, |d| Decodable::decode(d))?;
1003             Ok(SourceFile {
1004                 name,
1005                 name_was_remapped,
1006                 unmapped_path: None,
1007                 // `crate_of_origin` has to be set by the importer.
1008                 // This value matches up with rustc::hir::def_id::INVALID_CRATE.
1009                 // That constant is not available here unfortunately :(
1010                 crate_of_origin: std::u32::MAX - 1,
1011                 start_pos,
1012                 end_pos,
1013                 src: None,
1014                 src_hash,
1015                 external_src: Lock::new(ExternalSource::AbsentOk),
1016                 lines,
1017                 multibyte_chars,
1018                 non_narrow_chars,
1019                 name_hash,
1020             })
1021         })
1022     }
1023 }
1024
1025 impl fmt::Debug for SourceFile {
1026     fn fmt(&self, fmt: &mut fmt::Formatter<'_>) -> fmt::Result {
1027         write!(fmt, "SourceFile({})", self.name)
1028     }
1029 }
1030
1031 impl SourceFile {
1032     pub fn new(name: FileName,
1033                name_was_remapped: bool,
1034                unmapped_path: FileName,
1035                mut src: String,
1036                start_pos: BytePos) -> SourceFile {
1037         remove_bom(&mut src);
1038
1039         let src_hash = {
1040             let mut hasher: StableHasher<u128> = StableHasher::new();
1041             hasher.write(src.as_bytes());
1042             hasher.finish()
1043         };
1044         let name_hash = {
1045             let mut hasher: StableHasher<u128> = StableHasher::new();
1046             name.hash(&mut hasher);
1047             hasher.finish()
1048         };
1049         let end_pos = start_pos.to_usize() + src.len();
1050
1051         let (lines, multibyte_chars, non_narrow_chars) =
1052             analyze_source_file::analyze_source_file(&src[..], start_pos);
1053
1054         SourceFile {
1055             name,
1056             name_was_remapped,
1057             unmapped_path: Some(unmapped_path),
1058             crate_of_origin: 0,
1059             src: Some(Lrc::new(src)),
1060             src_hash,
1061             external_src: Lock::new(ExternalSource::Unneeded),
1062             start_pos,
1063             end_pos: Pos::from_usize(end_pos),
1064             lines,
1065             multibyte_chars,
1066             non_narrow_chars,
1067             name_hash,
1068         }
1069     }
1070
1071     /// Returns the `BytePos` of the beginning of the current line.
1072     pub fn line_begin_pos(&self, pos: BytePos) -> BytePos {
1073         let line_index = self.lookup_line(pos).unwrap();
1074         self.lines[line_index]
1075     }
1076
1077     /// Add externally loaded source.
1078     /// If the hash of the input doesn't match or no input is supplied via None,
1079     /// it is interpreted as an error and the corresponding enum variant is set.
1080     /// The return value signifies whether some kind of source is present.
1081     pub fn add_external_src<F>(&self, get_src: F) -> bool
1082         where F: FnOnce() -> Option<String>
1083     {
1084         if *self.external_src.borrow() == ExternalSource::AbsentOk {
1085             let src = get_src();
1086             let mut external_src = self.external_src.borrow_mut();
1087             // Check that no-one else have provided the source while we were getting it
1088             if *external_src == ExternalSource::AbsentOk {
1089                 if let Some(src) = src {
1090                     let mut hasher: StableHasher<u128> = StableHasher::new();
1091                     hasher.write(src.as_bytes());
1092
1093                     if hasher.finish() == self.src_hash {
1094                         *external_src = ExternalSource::Present(src);
1095                         return true;
1096                     }
1097                 } else {
1098                     *external_src = ExternalSource::AbsentErr;
1099                 }
1100
1101                 false
1102             } else {
1103                 self.src.is_some() || external_src.get_source().is_some()
1104             }
1105         } else {
1106             self.src.is_some() || self.external_src.borrow().get_source().is_some()
1107         }
1108     }
1109
1110     /// Gets a line from the list of pre-computed line-beginnings.
1111     /// The line number here is 0-based.
1112     pub fn get_line(&self, line_number: usize) -> Option<Cow<'_, str>> {
1113         fn get_until_newline(src: &str, begin: usize) -> &str {
1114             // We can't use `lines.get(line_number+1)` because we might
1115             // be parsing when we call this function and thus the current
1116             // line is the last one we have line info for.
1117             let slice = &src[begin..];
1118             match slice.find('\n') {
1119                 Some(e) => &slice[..e],
1120                 None => slice
1121             }
1122         }
1123
1124         let begin = {
1125             let line = if let Some(line) = self.lines.get(line_number) {
1126                 line
1127             } else {
1128                 return None;
1129             };
1130             let begin: BytePos = *line - self.start_pos;
1131             begin.to_usize()
1132         };
1133
1134         if let Some(ref src) = self.src {
1135             Some(Cow::from(get_until_newline(src, begin)))
1136         } else if let Some(src) = self.external_src.borrow().get_source() {
1137             Some(Cow::Owned(String::from(get_until_newline(src, begin))))
1138         } else {
1139             None
1140         }
1141     }
1142
1143     pub fn is_real_file(&self) -> bool {
1144         self.name.is_real()
1145     }
1146
1147     pub fn is_imported(&self) -> bool {
1148         self.src.is_none()
1149     }
1150
1151     pub fn byte_length(&self) -> u32 {
1152         self.end_pos.0 - self.start_pos.0
1153     }
1154     pub fn count_lines(&self) -> usize {
1155         self.lines.len()
1156     }
1157
1158     /// Finds the line containing the given position. The return value is the
1159     /// index into the `lines` array of this `SourceFile`, not the 1-based line
1160     /// number. If the source_file is empty or the position is located before the
1161     /// first line, `None` is returned.
1162     pub fn lookup_line(&self, pos: BytePos) -> Option<usize> {
1163         if self.lines.len() == 0 {
1164             return None;
1165         }
1166
1167         let line_index = lookup_line(&self.lines[..], pos);
1168         assert!(line_index < self.lines.len() as isize);
1169         if line_index >= 0 {
1170             Some(line_index as usize)
1171         } else {
1172             None
1173         }
1174     }
1175
1176     pub fn line_bounds(&self, line_index: usize) -> (BytePos, BytePos) {
1177         if self.start_pos == self.end_pos {
1178             return (self.start_pos, self.end_pos);
1179         }
1180
1181         assert!(line_index < self.lines.len());
1182         if line_index == (self.lines.len() - 1) {
1183             (self.lines[line_index], self.end_pos)
1184         } else {
1185             (self.lines[line_index], self.lines[line_index + 1])
1186         }
1187     }
1188
1189     #[inline]
1190     pub fn contains(&self, byte_pos: BytePos) -> bool {
1191         byte_pos >= self.start_pos && byte_pos <= self.end_pos
1192     }
1193 }
1194
1195 /// Removes UTF-8 BOM, if any.
1196 fn remove_bom(src: &mut String) {
1197     if src.starts_with("\u{feff}") {
1198         src.drain(..3);
1199     }
1200 }
1201
1202 // _____________________________________________________________________________
1203 // Pos, BytePos, CharPos
1204 //
1205
1206 pub trait Pos {
1207     fn from_usize(n: usize) -> Self;
1208     fn to_usize(&self) -> usize;
1209     fn from_u32(n: u32) -> Self;
1210     fn to_u32(&self) -> u32;
1211 }
1212
1213 /// A byte offset. Keep this small (currently 32-bits), as AST contains
1214 /// a lot of them.
1215 #[derive(Clone, Copy, PartialEq, Eq, Hash, PartialOrd, Ord, Debug)]
1216 pub struct BytePos(pub u32);
1217
1218 /// A character offset. Because of multibyte UTF-8 characters, a byte offset
1219 /// is not equivalent to a character offset. The `SourceMap` will convert `BytePos`
1220 /// values to `CharPos` values as necessary.
1221 #[derive(Copy, Clone, PartialEq, Eq, Hash, PartialOrd, Ord, Debug)]
1222 pub struct CharPos(pub usize);
1223
1224 // FIXME: lots of boilerplate in these impls, but so far my attempts to fix
1225 // have been unsuccessful.
1226
1227 impl Pos for BytePos {
1228     #[inline(always)]
1229     fn from_usize(n: usize) -> BytePos { BytePos(n as u32) }
1230
1231     #[inline(always)]
1232     fn to_usize(&self) -> usize { self.0 as usize }
1233
1234     #[inline(always)]
1235     fn from_u32(n: u32) -> BytePos { BytePos(n) }
1236
1237     #[inline(always)]
1238     fn to_u32(&self) -> u32 { self.0 }
1239 }
1240
1241 impl Add for BytePos {
1242     type Output = BytePos;
1243
1244     #[inline(always)]
1245     fn add(self, rhs: BytePos) -> BytePos {
1246         BytePos((self.to_usize() + rhs.to_usize()) as u32)
1247     }
1248 }
1249
1250 impl Sub for BytePos {
1251     type Output = BytePos;
1252
1253     #[inline(always)]
1254     fn sub(self, rhs: BytePos) -> BytePos {
1255         BytePos((self.to_usize() - rhs.to_usize()) as u32)
1256     }
1257 }
1258
1259 impl Encodable for BytePos {
1260     fn encode<S: Encoder>(&self, s: &mut S) -> Result<(), S::Error> {
1261         s.emit_u32(self.0)
1262     }
1263 }
1264
1265 impl Decodable for BytePos {
1266     fn decode<D: Decoder>(d: &mut D) -> Result<BytePos, D::Error> {
1267         Ok(BytePos(d.read_u32()?))
1268     }
1269 }
1270
1271 impl Pos for CharPos {
1272     #[inline(always)]
1273     fn from_usize(n: usize) -> CharPos { CharPos(n) }
1274
1275     #[inline(always)]
1276     fn to_usize(&self) -> usize { self.0 }
1277
1278     #[inline(always)]
1279     fn from_u32(n: u32) -> CharPos { CharPos(n as usize) }
1280
1281     #[inline(always)]
1282     fn to_u32(&self) -> u32 { self.0 as u32}
1283 }
1284
1285 impl Add for CharPos {
1286     type Output = CharPos;
1287
1288     #[inline(always)]
1289     fn add(self, rhs: CharPos) -> CharPos {
1290         CharPos(self.to_usize() + rhs.to_usize())
1291     }
1292 }
1293
1294 impl Sub for CharPos {
1295     type Output = CharPos;
1296
1297     #[inline(always)]
1298     fn sub(self, rhs: CharPos) -> CharPos {
1299         CharPos(self.to_usize() - rhs.to_usize())
1300     }
1301 }
1302
1303 // _____________________________________________________________________________
1304 // Loc, SourceFileAndLine, SourceFileAndBytePos
1305 //
1306
1307 /// A source code location used for error reporting.
1308 #[derive(Debug, Clone)]
1309 pub struct Loc {
1310     /// Information about the original source.
1311     pub file: Lrc<SourceFile>,
1312     /// The (1-based) line number.
1313     pub line: usize,
1314     /// The (0-based) column offset.
1315     pub col: CharPos,
1316     /// The (0-based) column offset when displayed.
1317     pub col_display: usize,
1318 }
1319
1320 // Used to be structural records.
1321 #[derive(Debug)]
1322 pub struct SourceFileAndLine { pub sf: Lrc<SourceFile>, pub line: usize }
1323 #[derive(Debug)]
1324 pub struct SourceFileAndBytePos { pub sf: Lrc<SourceFile>, pub pos: BytePos }
1325
1326 #[derive(Copy, Clone, Debug, PartialEq, Eq)]
1327 pub struct LineInfo {
1328     /// Index of line, starting from 0.
1329     pub line_index: usize,
1330
1331     /// Column in line where span begins, starting from 0.
1332     pub start_col: CharPos,
1333
1334     /// Column in line where span ends, starting from 0, exclusive.
1335     pub end_col: CharPos,
1336 }
1337
1338 pub struct FileLines {
1339     pub file: Lrc<SourceFile>,
1340     pub lines: Vec<LineInfo>
1341 }
1342
1343 thread_local!(pub static SPAN_DEBUG: Cell<fn(Span, &mut fmt::Formatter<'_>) -> fmt::Result> =
1344                 Cell::new(default_span_debug));
1345
1346 #[derive(Debug)]
1347 pub struct MacroBacktrace {
1348     /// span where macro was applied to generate this code
1349     pub call_site: Span,
1350
1351     /// name of macro that was applied (e.g., "foo!" or "#[derive(Eq)]")
1352     pub macro_decl_name: String,
1353
1354     /// span where macro was defined (if known)
1355     pub def_site_span: Option<Span>,
1356 }
1357
1358 // _____________________________________________________________________________
1359 // SpanLinesError, SpanSnippetError, DistinctSources, MalformedSourceMapPositions
1360 //
1361
1362 pub type FileLinesResult = Result<FileLines, SpanLinesError>;
1363
1364 #[derive(Clone, PartialEq, Eq, Debug)]
1365 pub enum SpanLinesError {
1366     IllFormedSpan(Span),
1367     DistinctSources(DistinctSources),
1368 }
1369
1370 #[derive(Clone, PartialEq, Eq, Debug)]
1371 pub enum SpanSnippetError {
1372     IllFormedSpan(Span),
1373     DistinctSources(DistinctSources),
1374     MalformedForSourcemap(MalformedSourceMapPositions),
1375     SourceNotAvailable { filename: FileName }
1376 }
1377
1378 #[derive(Clone, PartialEq, Eq, Debug)]
1379 pub struct DistinctSources {
1380     pub begin: (FileName, BytePos),
1381     pub end: (FileName, BytePos)
1382 }
1383
1384 #[derive(Clone, PartialEq, Eq, Debug)]
1385 pub struct MalformedSourceMapPositions {
1386     pub name: FileName,
1387     pub source_len: usize,
1388     pub begin_pos: BytePos,
1389     pub end_pos: BytePos
1390 }
1391
1392 // Given a slice of line start positions and a position, returns the index of
1393 // the line the position is on. Returns -1 if the position is located before
1394 // the first line.
1395 fn lookup_line(lines: &[BytePos], pos: BytePos) -> isize {
1396     match lines.binary_search(&pos) {
1397         Ok(line) => line as isize,
1398         Err(line) => line as isize - 1
1399     }
1400 }
1401
1402 #[cfg(test)]
1403 mod tests {
1404     use super::{lookup_line, BytePos};
1405
1406     #[test]
1407     fn test_lookup_line() {
1408
1409         let lines = &[BytePos(3), BytePos(17), BytePos(28)];
1410
1411         assert_eq!(lookup_line(lines, BytePos(0)), -1);
1412         assert_eq!(lookup_line(lines, BytePos(3)),  0);
1413         assert_eq!(lookup_line(lines, BytePos(4)),  0);
1414
1415         assert_eq!(lookup_line(lines, BytePos(16)), 0);
1416         assert_eq!(lookup_line(lines, BytePos(17)), 1);
1417         assert_eq!(lookup_line(lines, BytePos(18)), 1);
1418
1419         assert_eq!(lookup_line(lines, BytePos(28)), 2);
1420         assert_eq!(lookup_line(lines, BytePos(29)), 2);
1421     }
1422 }