2015-04-21 21:01:19 +12:00
|
|
|
// Copyright 2015 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.
|
|
|
|
|
2015-09-07 21:34:37 +02:00
|
|
|
use std::cmp::Ordering;
|
|
|
|
|
2016-03-01 17:27:19 -05:00
|
|
|
use syntax::ast::{self, Visibility, Attribute, MetaItem, MetaItemKind};
|
2015-06-24 01:11:29 +02:00
|
|
|
use syntax::codemap::{CodeMap, Span, BytePos};
|
2015-11-22 16:07:38 +01:00
|
|
|
use syntax::abi;
|
2015-06-24 01:11:29 +02:00
|
|
|
|
2015-09-05 22:39:28 -07:00
|
|
|
use Indent;
|
2015-06-24 01:11:29 +02:00
|
|
|
use comment::FindUncommented;
|
2015-09-11 00:52:16 +02:00
|
|
|
use rewrite::{Rewrite, RewriteContext};
|
2015-04-21 21:01:19 +12:00
|
|
|
|
2015-06-23 15:58:58 +02:00
|
|
|
use SKIP_ANNOTATION;
|
2015-06-05 16:56:59 +02:00
|
|
|
|
2016-03-07 13:41:32 -05:00
|
|
|
pub trait CodeMapSpanUtils {
|
|
|
|
fn span_after(&self, original: Span, needle: &str) -> BytePos;
|
|
|
|
fn span_after_last(&self, original: Span, needle: &str) -> BytePos;
|
|
|
|
fn span_before(&self, original: Span, needle: &str) -> BytePos;
|
2015-08-14 14:09:19 +02:00
|
|
|
}
|
|
|
|
|
2016-03-07 13:41:32 -05:00
|
|
|
impl CodeMapSpanUtils for CodeMap {
|
|
|
|
#[inline]
|
|
|
|
fn span_after(&self, original: Span, needle: &str) -> BytePos {
|
|
|
|
let snippet = self.span_to_snippet(original).unwrap();
|
|
|
|
let offset = snippet.find_uncommented(needle).unwrap() + needle.len();
|
2015-06-24 01:11:29 +02:00
|
|
|
|
2016-03-07 13:41:32 -05:00
|
|
|
original.lo + BytePos(offset as u32)
|
|
|
|
}
|
2015-06-24 01:11:29 +02:00
|
|
|
|
2016-03-07 13:41:32 -05:00
|
|
|
#[inline]
|
|
|
|
fn span_after_last(&self, original: Span, needle: &str) -> BytePos {
|
|
|
|
let snippet = self.span_to_snippet(original).unwrap();
|
|
|
|
let mut offset = 0;
|
2016-01-12 01:09:08 +01:00
|
|
|
|
2016-03-07 13:41:32 -05:00
|
|
|
while let Some(additional_offset) = snippet[offset..].find_uncommented(needle) {
|
|
|
|
offset += additional_offset + needle.len();
|
|
|
|
}
|
2016-01-12 01:09:08 +01:00
|
|
|
|
2016-03-07 13:41:32 -05:00
|
|
|
original.lo + BytePos(offset as u32)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn span_before(&self, original: Span, needle: &str) -> BytePos {
|
|
|
|
let snippet = self.span_to_snippet(original).unwrap();
|
|
|
|
let offset = snippet.find_uncommented(needle).unwrap();
|
2015-12-27 14:25:37 +01:00
|
|
|
|
2016-03-07 13:41:32 -05:00
|
|
|
original.lo + BytePos(offset as u32)
|
2015-12-27 14:25:37 +01:00
|
|
|
}
|
2016-03-07 13:41:32 -05:00
|
|
|
}
|
2015-12-27 14:25:37 +01:00
|
|
|
|
2016-03-07 13:41:32 -05:00
|
|
|
// Computes the length of a string's last line, minus offset.
|
|
|
|
#[inline]
|
|
|
|
pub fn extra_offset(text: &str, offset: Indent) -> usize {
|
|
|
|
match text.rfind('\n') {
|
|
|
|
// 1 for newline character
|
|
|
|
Some(idx) => text.len() - idx - 1 - offset.width(),
|
|
|
|
None => text.len(),
|
|
|
|
}
|
2015-12-27 14:25:37 +01:00
|
|
|
}
|
|
|
|
|
2015-05-29 12:41:26 +02:00
|
|
|
#[inline]
|
2016-05-02 01:05:23 -04:00
|
|
|
pub fn format_visibility(vis: &Visibility) -> Option<&'static str> {
|
2016-05-01 23:01:46 -04:00
|
|
|
match *vis {
|
2016-05-02 01:05:23 -04:00
|
|
|
Visibility::Public => Some("pub "),
|
|
|
|
Visibility::Inherited => Some(""),
|
|
|
|
// FIXME(#970): Handle new visibility types.
|
2016-05-01 23:01:46 -04:00
|
|
|
Visibility::Crate(_) => None,
|
2016-05-02 01:05:23 -04:00
|
|
|
Visibility::Restricted { .. } => None,
|
2015-05-29 12:41:26 +02:00
|
|
|
}
|
|
|
|
}
|
2015-06-08 19:40:22 +02:00
|
|
|
|
2015-11-22 16:07:38 +01:00
|
|
|
#[inline]
|
|
|
|
pub fn format_unsafety(unsafety: ast::Unsafety) -> &'static str {
|
|
|
|
match unsafety {
|
|
|
|
ast::Unsafety::Unsafe => "unsafe ",
|
|
|
|
ast::Unsafety::Normal => "",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-07-24 19:54:38 +02:00
|
|
|
#[inline]
|
|
|
|
pub fn format_mutability(mutability: ast::Mutability) -> &'static str {
|
|
|
|
match mutability {
|
2016-03-01 17:27:19 -05:00
|
|
|
ast::Mutability::Mutable => "mut ",
|
|
|
|
ast::Mutability::Immutable => "",
|
2015-07-24 19:54:38 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-22 16:07:38 +01:00
|
|
|
#[inline]
|
2016-04-18 18:39:40 +02:00
|
|
|
pub fn format_abi(abi: abi::Abi, explicit_abi: bool) -> String {
|
|
|
|
if abi == abi::Abi::C && !explicit_abi {
|
|
|
|
"extern ".into()
|
|
|
|
} else {
|
|
|
|
format!("extern {} ", abi)
|
|
|
|
}
|
2015-11-22 16:07:38 +01:00
|
|
|
}
|
|
|
|
|
2015-08-14 20:00:22 +12:00
|
|
|
// The width of the first line in s.
|
|
|
|
#[inline]
|
|
|
|
pub fn first_line_width(s: &str) -> usize {
|
|
|
|
match s.find('\n') {
|
|
|
|
Some(n) => n,
|
|
|
|
None => s.len(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// The width of the last line in s.
|
|
|
|
#[inline]
|
|
|
|
pub fn last_line_width(s: &str) -> usize {
|
|
|
|
match s.rfind('\n') {
|
2015-08-17 09:41:45 +12:00
|
|
|
Some(n) => s.len() - n - 1,
|
2015-08-14 20:00:22 +12:00
|
|
|
None => s.len(),
|
|
|
|
}
|
|
|
|
}
|
2016-04-12 10:30:57 +12:00
|
|
|
#[inline]
|
|
|
|
pub fn trimmed_last_line_width(s: &str) -> usize {
|
|
|
|
match s.rfind('\n') {
|
|
|
|
Some(n) => s[(n + 1)..].trim().len(),
|
|
|
|
None => s.trim().len(),
|
|
|
|
}
|
|
|
|
}
|
2015-08-14 20:00:22 +12:00
|
|
|
|
|
|
|
#[inline]
|
2015-06-23 15:58:58 +02:00
|
|
|
fn is_skip(meta_item: &MetaItem) -> bool {
|
|
|
|
match meta_item.node {
|
2016-03-01 17:27:19 -05:00
|
|
|
MetaItemKind::Word(ref s) => *s == SKIP_ANNOTATION,
|
|
|
|
MetaItemKind::List(ref s, ref l) => *s == "cfg_attr" && l.len() == 2 && is_skip(&l[1]),
|
2015-06-23 15:58:58 +02:00
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn contains_skip(attrs: &[Attribute]) -> bool {
|
|
|
|
attrs.iter().any(|a| is_skip(&a.node.value))
|
|
|
|
}
|
|
|
|
|
2015-07-02 01:20:07 +02:00
|
|
|
// Find the end of a TyParam
|
2015-08-14 20:00:22 +12:00
|
|
|
#[inline]
|
2015-07-02 01:20:07 +02:00
|
|
|
pub fn end_typaram(typaram: &ast::TyParam) -> BytePos {
|
2015-09-11 00:52:16 +02:00
|
|
|
typaram.bounds
|
2016-04-22 19:03:36 +12:00
|
|
|
.last()
|
|
|
|
.map_or(typaram.span, |bound| {
|
|
|
|
match *bound {
|
|
|
|
ast::RegionTyParamBound(ref lt) => lt.span,
|
|
|
|
ast::TraitTyParamBound(ref prt, _) => prt.span,
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.hi
|
2015-07-02 01:20:07 +02:00
|
|
|
}
|
|
|
|
|
2015-11-17 22:53:06 -06:00
|
|
|
#[inline]
|
|
|
|
pub fn semicolon_for_expr(expr: &ast::Expr) -> bool {
|
|
|
|
match expr.node {
|
2016-03-01 17:27:19 -05:00
|
|
|
ast::ExprKind::Ret(..) |
|
|
|
|
ast::ExprKind::Again(..) |
|
|
|
|
ast::ExprKind::Break(..) => true,
|
2015-11-17 22:53:06 -06:00
|
|
|
_ => false,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn semicolon_for_stmt(stmt: &ast::Stmt) -> bool {
|
|
|
|
match stmt.node {
|
2016-03-01 17:27:19 -05:00
|
|
|
ast::StmtKind::Semi(ref expr, _) => {
|
2015-11-17 22:53:06 -06:00
|
|
|
match expr.node {
|
2016-03-01 17:27:19 -05:00
|
|
|
ast::ExprKind::While(..) |
|
|
|
|
ast::ExprKind::WhileLet(..) |
|
|
|
|
ast::ExprKind::Loop(..) |
|
|
|
|
ast::ExprKind::ForLoop(..) => false,
|
2015-11-17 22:53:06 -06:00
|
|
|
_ => true,
|
|
|
|
}
|
|
|
|
}
|
2016-03-01 17:27:19 -05:00
|
|
|
ast::StmtKind::Expr(..) => false,
|
2015-11-17 22:53:06 -06:00
|
|
|
_ => true,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-23 12:00:22 +13:00
|
|
|
#[inline]
|
|
|
|
pub fn trim_newlines(input: &str) -> &str {
|
2015-11-25 22:25:02 -06:00
|
|
|
match input.find(|c| c != '\n' && c != '\r') {
|
|
|
|
Some(start) => {
|
|
|
|
let end = input.rfind(|c| c != '\n' && c != '\r').unwrap_or(0) + 1;
|
|
|
|
&input[start..end]
|
|
|
|
}
|
|
|
|
None => "",
|
2015-11-24 14:37:31 -06:00
|
|
|
}
|
2015-11-23 12:00:22 +13:00
|
|
|
}
|
|
|
|
|
2015-06-08 19:40:22 +02:00
|
|
|
// Macro for deriving implementations of Decodable for enums
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! impl_enum_decodable {
|
|
|
|
( $e:ident, $( $x:ident ),* ) => {
|
2015-06-09 01:42:29 +02:00
|
|
|
impl ::rustc_serialize::Decodable for $e {
|
|
|
|
fn decode<D: ::rustc_serialize::Decoder>(d: &mut D) -> Result<Self, D::Error> {
|
2016-01-02 20:47:10 -05:00
|
|
|
use std::ascii::AsciiExt;
|
2015-06-08 19:40:22 +02:00
|
|
|
let s = try!(d.read_str());
|
2016-01-02 20:47:10 -05:00
|
|
|
$(
|
|
|
|
if stringify!($x).eq_ignore_ascii_case(&s) {
|
|
|
|
return Ok($e::$x);
|
|
|
|
}
|
|
|
|
)*
|
|
|
|
Err(d.error("Bad variant"))
|
2015-06-08 19:40:22 +02:00
|
|
|
}
|
|
|
|
}
|
2015-08-19 21:41:19 +02:00
|
|
|
|
|
|
|
impl ::std::str::FromStr for $e {
|
|
|
|
type Err = &'static str;
|
|
|
|
|
|
|
|
fn from_str(s: &str) -> Result<Self, Self::Err> {
|
2016-01-02 20:47:10 -05:00
|
|
|
use std::ascii::AsciiExt;
|
|
|
|
$(
|
|
|
|
if stringify!($x).eq_ignore_ascii_case(s) {
|
|
|
|
return Ok($e::$x);
|
|
|
|
}
|
|
|
|
)*
|
|
|
|
Err("Bad variant")
|
2015-08-19 21:41:19 +02:00
|
|
|
}
|
|
|
|
}
|
2015-09-14 00:29:15 -07:00
|
|
|
|
2015-09-14 13:43:55 -07:00
|
|
|
impl ::config::ConfigType for $e {
|
2016-04-15 01:11:04 -04:00
|
|
|
fn doc_hint() -> String {
|
2015-09-14 00:29:15 -07:00
|
|
|
let mut variants = Vec::new();
|
|
|
|
$(
|
|
|
|
variants.push(stringify!($x));
|
|
|
|
)*
|
2015-09-29 09:38:19 +10:00
|
|
|
format!("[{}]", variants.join("|"))
|
2015-09-14 00:29:15 -07:00
|
|
|
}
|
|
|
|
}
|
2015-06-08 19:40:22 +02:00
|
|
|
};
|
|
|
|
}
|
2015-06-09 01:42:29 +02:00
|
|
|
|
2015-06-22 02:53:28 +02:00
|
|
|
// Same as try!, but for Option
|
|
|
|
#[macro_export]
|
|
|
|
macro_rules! try_opt {
|
|
|
|
($expr:expr) => (match $expr {
|
|
|
|
Some(val) => val,
|
|
|
|
None => { return None; }
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-04-06 10:04:29 +05:30
|
|
|
macro_rules! msg {
|
|
|
|
($($arg:tt)*) => (
|
|
|
|
match writeln!(&mut ::std::io::stderr(), $($arg)* ) {
|
|
|
|
Ok(_) => {},
|
|
|
|
Err(x) => panic!("Unable to write to stderr: {}", x),
|
|
|
|
}
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-09-07 21:34:37 +02:00
|
|
|
// Wraps string-like values in an Option. Returns Some when the string adheres
|
|
|
|
// to the Rewrite constraints defined for the Rewrite trait and else otherwise.
|
2015-09-05 22:39:28 -07:00
|
|
|
pub fn wrap_str<S: AsRef<str>>(s: S, max_width: usize, width: usize, offset: Indent) -> Option<S> {
|
2015-09-07 21:34:37 +02:00
|
|
|
{
|
|
|
|
let snippet = s.as_ref();
|
2015-09-04 18:09:05 +02:00
|
|
|
|
2015-09-07 21:34:37 +02:00
|
|
|
if !snippet.contains('\n') && snippet.len() > width {
|
2015-09-04 18:09:05 +02:00
|
|
|
return None;
|
2015-09-07 21:34:37 +02:00
|
|
|
} else {
|
|
|
|
let mut lines = snippet.lines();
|
|
|
|
|
|
|
|
// The caller of this function has already placed `offset`
|
|
|
|
// characters on the first line.
|
2015-09-05 22:39:28 -07:00
|
|
|
let first_line_max_len = try_opt!(max_width.checked_sub(offset.width()));
|
2015-09-07 21:34:37 +02:00
|
|
|
if lines.next().unwrap().len() > first_line_max_len {
|
|
|
|
return None;
|
|
|
|
}
|
2015-09-04 18:09:05 +02:00
|
|
|
|
2015-09-07 21:34:37 +02:00
|
|
|
// The other lines must fit within the maximum width.
|
|
|
|
if lines.find(|line| line.len() > max_width).is_some() {
|
|
|
|
return None;
|
|
|
|
}
|
2015-09-04 18:09:05 +02:00
|
|
|
|
2015-09-07 21:34:37 +02:00
|
|
|
// `width` is the maximum length of the last line, excluding
|
|
|
|
// indentation.
|
|
|
|
// A special check for the last line, since the caller may
|
|
|
|
// place trailing characters on this line.
|
2015-09-05 22:39:28 -07:00
|
|
|
if snippet.lines().rev().next().unwrap().len() > offset.width() + width {
|
2015-09-07 21:34:37 +02:00
|
|
|
return None;
|
|
|
|
}
|
2015-09-04 18:09:05 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Some(s)
|
|
|
|
}
|
|
|
|
|
2015-09-11 00:52:16 +02:00
|
|
|
impl Rewrite for String {
|
2015-09-05 22:39:28 -07:00
|
|
|
fn rewrite(&self, context: &RewriteContext, width: usize, offset: Indent) -> Option<String> {
|
2015-09-11 00:53:21 +02:00
|
|
|
wrap_str(self, context.config.max_width, width, offset).map(ToOwned::to_owned)
|
2015-09-11 00:52:16 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-07 21:34:37 +02:00
|
|
|
// Binary search in integer range. Returns the first Ok value returned by the
|
|
|
|
// callback.
|
|
|
|
// The callback takes an integer and returns either an Ok, or an Err indicating
|
|
|
|
// whether the `guess' was too high (Ordering::Less), or too low.
|
|
|
|
// This function is guaranteed to try to the hi value first.
|
|
|
|
pub fn binary_search<C, T>(mut lo: usize, mut hi: usize, callback: C) -> Option<T>
|
|
|
|
where C: Fn(usize) -> Result<T, Ordering>
|
|
|
|
{
|
|
|
|
let mut middle = hi;
|
|
|
|
|
|
|
|
while lo <= hi {
|
|
|
|
match callback(middle) {
|
|
|
|
Ok(val) => return Some(val),
|
|
|
|
Err(Ordering::Less) => {
|
|
|
|
hi = middle - 1;
|
|
|
|
}
|
|
|
|
Err(..) => {
|
|
|
|
lo = middle + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
middle = (hi + lo) / 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn bin_search_test() {
|
|
|
|
let closure = |i| {
|
2015-09-11 00:53:21 +02:00
|
|
|
match i {
|
|
|
|
4 => Ok(()),
|
|
|
|
j if j > 4 => Err(Ordering::Less),
|
|
|
|
j if j < 4 => Err(Ordering::Greater),
|
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
};
|
2015-09-07 21:34:37 +02:00
|
|
|
|
|
|
|
assert_eq!(Some(()), binary_search(1, 10, &closure));
|
|
|
|
assert_eq!(None, binary_search(1, 3, &closure));
|
|
|
|
assert_eq!(Some(()), binary_search(0, 44, &closure));
|
|
|
|
assert_eq!(Some(()), binary_search(4, 125, &closure));
|
|
|
|
assert_eq!(None, binary_search(6, 100, &closure));
|
|
|
|
}
|
2016-04-14 08:36:59 +12:00
|
|
|
|
|
|
|
pub fn left_most_sub_expr(e: &ast::Expr) -> &ast::Expr {
|
|
|
|
match e.node {
|
|
|
|
ast::ExprKind::InPlace(ref e, _) |
|
|
|
|
ast::ExprKind::Call(ref e, _) |
|
|
|
|
ast::ExprKind::Binary(_, ref e, _) |
|
|
|
|
ast::ExprKind::Cast(ref e, _) |
|
|
|
|
ast::ExprKind::Type(ref e, _) |
|
|
|
|
ast::ExprKind::Assign(ref e, _) |
|
|
|
|
ast::ExprKind::AssignOp(_, ref e, _) |
|
|
|
|
ast::ExprKind::Field(ref e, _) |
|
|
|
|
ast::ExprKind::TupField(ref e, _) |
|
|
|
|
ast::ExprKind::Index(ref e, _) |
|
|
|
|
ast::ExprKind::Range(Some(ref e), _, _) => left_most_sub_expr(e),
|
|
|
|
// FIXME needs Try in Syntex
|
|
|
|
// ast::ExprKind::Try(ref f) => left_most_sub_expr(e),
|
|
|
|
_ => e,
|
|
|
|
}
|
|
|
|
}
|