rust/src/utils.rs

509 lines
15 KiB
Rust
Raw Normal View History

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.
use std::borrow::Cow;
2015-09-07 21:34:37 +02:00
use std::cmp::Ordering;
use syntax::abi;
use syntax::ast::{self, Attribute, MetaItem, MetaItemKind, NestedMetaItem, NestedMetaItemKind,
Path, Visibility};
use syntax::codemap::{BytePos, Span, NO_EXPANSION};
2015-06-24 01:11:29 +02:00
2017-02-21 14:43:43 +13:00
use Shape;
2015-09-11 00:52:16 +02:00
use rewrite::{Rewrite, RewriteContext};
2015-04-21 21:01:19 +12:00
// When we get scoped annotations, we should have rustfmt::skip.
const SKIP_ANNOTATION: &'static str = "rustfmt_skip";
// Computes the length of a string's last line, minus offset.
2017-02-21 14:43:43 +13:00
pub fn extra_offset(text: &str, shape: Shape) -> usize {
match text.rfind('\n') {
// 1 for newline character
2017-07-11 21:53:10 +09:00
Some(idx) => text.len()
.checked_sub(idx + 1 + shape.used_width())
.unwrap_or(0),
None => text.len(),
}
}
// Uses Cow to avoid allocating in the common cases.
pub fn format_visibility(vis: &Visibility) -> Cow<'static, str> {
match *vis {
Visibility::Public => Cow::from("pub "),
Visibility::Inherited => Cow::from(""),
Visibility::Crate(_) => Cow::from("pub(crate) "),
Visibility::Restricted { ref path, .. } => {
let Path { ref segments, .. } = **path;
2017-05-25 16:23:07 +12:00
let mut segments_iter = segments.iter().map(|seg| seg.identifier.name.to_string());
if path.is_global() {
2017-06-16 08:49:49 +09:00
segments_iter
.next()
.expect("Non-global path in pub(restricted)?");
}
2017-05-12 22:25:26 +09:00
let is_keyword = |s: &str| s == "self" || s == "super";
2017-05-17 18:57:18 +12:00
let path = segments_iter.collect::<Vec<_>>().join("::");
2017-05-12 22:25:26 +09:00
let in_str = if is_keyword(&path) { "" } else { "in " };
2017-05-12 22:25:26 +09:00
Cow::from(format!("pub({}{}) ", in_str, path))
}
2015-05-29 12:41:26 +02:00
}
}
#[inline]
pub fn format_constness(constness: ast::Constness) -> &'static str {
match constness {
ast::Constness::Const => "const ",
ast::Constness::NotConst => "",
}
}
2017-07-27 09:43:35 +09:00
#[inline]
pub fn format_defaultness(defaultness: ast::Defaultness) -> &'static str {
match defaultness {
ast::Defaultness::Default => "default ",
ast::Defaultness::Final => "",
}
}
#[inline]
pub fn format_unsafety(unsafety: ast::Unsafety) -> &'static str {
match unsafety {
ast::Unsafety::Unsafe => "unsafe ",
ast::Unsafety::Normal => "",
}
}
#[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 => "",
}
}
#[inline]
pub fn format_abi(abi: abi::Abi, explicit_abi: bool) -> String {
if abi == abi::Abi::C && !explicit_abi {
"extern ".into()
} else {
format!("extern {} ", abi)
}
}
#[inline]
pub fn filter_attributes(attrs: &[ast::Attribute], style: ast::AttrStyle) -> Vec<ast::Attribute> {
attrs
.iter()
.filter(|a| a.style == style)
.cloned()
.collect::<Vec<_>>()
}
#[inline]
pub fn inner_attributes(attrs: &[ast::Attribute]) -> Vec<ast::Attribute> {
filter_attributes(attrs, ast::AttrStyle::Inner)
}
#[inline]
pub fn outer_attributes(attrs: &[ast::Attribute]) -> Vec<ast::Attribute> {
filter_attributes(attrs, ast::AttrStyle::Outer)
}
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(),
}
}
2017-06-15 16:26:41 +09:00
// The total used width of the last line.
#[inline]
pub fn last_line_used_width(s: &str, offset: usize) -> usize {
if s.contains('\n') {
last_line_width(s)
} else {
offset + s.len()
}
}
#[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]
pub fn last_line_extendable(s: &str) -> bool {
s.lines().last().map_or(false, |s| {
s.ends_with("\"#") ||
s.trim()
.chars()
.all(|c| c == ')' || c == ']' || c == '}' || c == '?')
})
}
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 {
MetaItemKind::Word => meta_item.name == SKIP_ANNOTATION,
MetaItemKind::List(ref l) => {
meta_item.name == "cfg_attr" && l.len() == 2 && is_skip_nested(&l[1])
}
2015-06-23 15:58:58 +02:00
_ => false,
}
}
#[inline]
fn is_skip_nested(meta_item: &NestedMetaItem) -> bool {
match meta_item.node {
NestedMetaItemKind::MetaItem(ref mi) => is_skip(mi),
NestedMetaItemKind::Literal(_) => false,
}
}
2015-06-23 15:58:58 +02:00
#[inline]
pub fn contains_skip(attrs: &[Attribute]) -> bool {
2017-06-16 08:49:49 +09:00
attrs
.iter()
.any(|a| a.meta().map_or(false, |a| is_skip(&a)))
2015-06-23 15:58:58 +02:00
}
// Find the end of a TyParam
2015-08-14 20:00:22 +12:00
#[inline]
pub fn end_typaram(typaram: &ast::TyParam) -> BytePos {
2017-03-28 10:58:41 +13:00
typaram
.bounds
.last()
.map_or(typaram.span, |bound| match *bound {
ast::RegionTyParamBound(ref lt) => lt.span,
ast::TraitTyParamBound(ref prt, _) => prt.span,
})
.hi
}
#[inline]
pub fn semicolon_for_expr(context: &RewriteContext, expr: &ast::Expr) -> bool {
match expr.node {
ast::ExprKind::Ret(..) | ast::ExprKind::Continue(..) | ast::ExprKind::Break(..) => {
context.config.trailing_semicolon()
}
_ => false,
}
}
#[inline]
pub fn semicolon_for_stmt(context: &RewriteContext, stmt: &ast::Stmt) -> bool {
match stmt.node {
2017-07-11 21:53:10 +09:00
ast::StmtKind::Semi(ref expr) => match expr.node {
ast::ExprKind::While(..) |
ast::ExprKind::WhileLet(..) |
ast::ExprKind::Loop(..) |
ast::ExprKind::ForLoop(..) => false,
ast::ExprKind::Break(..) | ast::ExprKind::Continue(..) | ast::ExprKind::Ret(..) => {
context.config.trailing_semicolon()
}
2017-07-11 21:53:10 +09:00
_ => true,
},
2016-03-01 17:27:19 -05:00
ast::StmtKind::Expr(..) => false,
_ => true,
}
}
#[inline]
pub fn stmt_expr(stmt: &ast::Stmt) -> Option<&ast::Expr> {
match stmt.node {
ast::StmtKind::Expr(ref expr) => Some(expr),
_ => None,
}
}
#[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) => {
2017-03-28 11:25:59 +13:00
let end = input.rfind(|c| c != '\n' && c != '\r').unwrap_or(0) + 1;
2015-11-25 22:25:02 -06:00
&input[start..end]
}
None => "",
}
}
// Macro for deriving implementations of Serialize/Deserialize for enums
#[macro_export]
macro_rules! impl_enum_serialize_and_deserialize {
( $e:ident, $( $x:ident ),* ) => {
impl ::serde::ser::Serialize for $e {
fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
where S: ::serde::ser::Serializer
{
use serde::ser::Error;
// We don't know whether the user of the macro has given us all options.
#[allow(unreachable_patterns)]
match *self {
$(
$e::$x => serializer.serialize_str(stringify!($x)),
)*
_ => {
Err(S::Error::custom(format!("Cannot serialize {:?}", self)))
}
}
}
}
impl<'de> ::serde::de::Deserialize<'de> for $e {
fn deserialize<D>(d: D) -> Result<Self, D::Error>
2017-05-03 17:11:34 +02:00
where D: ::serde::Deserializer<'de> {
use std::ascii::AsciiExt;
use serde::de::{Error, Visitor};
use std::marker::PhantomData;
use std::fmt;
struct StringOnly<T>(PhantomData<T>);
impl<'de, T> Visitor<'de> for StringOnly<T>
2017-05-03 17:11:34 +02:00
where T: ::serde::Deserializer<'de> {
type Value = String;
fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
formatter.write_str("string")
}
2017-05-03 17:16:58 +02:00
fn visit_str<E>(self, value: &str) -> Result<String, E> {
Ok(String::from(value))
}
}
2017-05-08 13:13:49 +09:00
let s = d.deserialize_string(StringOnly::<D>(PhantomData))?;
$(
if stringify!($x).eq_ignore_ascii_case(&s) {
return Ok($e::$x);
}
)*
2017-05-03 17:11:34 +02:00
static ALLOWED: &'static[&str] = &[$(stringify!($x),)*];
Err(D::Error::unknown_variant(&s, ALLOWED))
}
}
impl ::std::str::FromStr for $e {
type Err = &'static str;
fn from_str(s: &str) -> Result<Self, Self::Err> {
use std::ascii::AsciiExt;
$(
if stringify!($x).eq_ignore_ascii_case(s) {
return Ok($e::$x);
}
)*
Err("Bad variant")
}
}
impl ::config::ConfigType for $e {
fn doc_hint() -> String {
let mut variants = Vec::new();
$(
variants.push(stringify!($x));
)*
2015-09-29 09:38:19 +10:00
format!("[{}]", variants.join("|"))
}
}
};
}
// 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),
}
)
}
// For format_missing and last_pos, need to use the source callsite (if applicable).
// Required as generated code spans aren't guaranteed to follow on from the last span.
macro_rules! source {
($this:ident, $sp: expr) => {
$sp.source_callsite()
}
}
pub fn mk_sp(lo: BytePos, hi: BytePos) -> Span {
Span {
lo,
hi,
ctxt: NO_EXPANSION,
}
}
2016-04-06 10:04:29 +05:30
2017-07-29 12:51:45 +09:00
// Return true if the given span does not intersect with file lines.
macro_rules! out_of_file_lines_range {
($self:ident, $span:expr) => {
!$self.config
.file_lines()
.intersects(&$self.codemap.lookup_line_range($span))
}
}
macro_rules! skip_out_of_file_lines_range {
($self:ident, $span:expr) => {
if out_of_file_lines_range!($self, $span) {
return None;
}
}
}
macro_rules! skip_out_of_file_lines_range_visitor {
($self:ident, $span:expr) => {
if out_of_file_lines_range!($self, $span) {
$self.push_rewrite($span, None);
2017-07-29 12:51:45 +09:00
return;
}
}
}
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.
pub fn wrap_str<S: AsRef<str>>(s: S, max_width: usize, shape: Shape) -> Option<S> {
2015-09-07 21:34:37 +02:00
{
let snippet = s.as_ref();
2015-09-04 18:09:05 +02:00
if !snippet.is_empty() {
if !snippet.contains('\n') && snippet.len() > shape.width {
2015-09-07 21:34:37 +02:00
return None;
} else {
let mut lines = snippet.lines();
if lines.next().unwrap().len() > shape.width {
return None;
}
2015-09-04 18:09:05 +02:00
// The other lines must fit within the maximum width.
if lines.any(|line| line.len() > max_width) {
return None;
}
2015-09-04 18:09:05 +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.
if snippet.lines().rev().next().unwrap().len() > shape.used_width() + shape.width {
return None;
}
2015-09-07 21:34:37 +02:00
}
2015-09-04 18:09:05 +02:00
}
}
Some(s)
}
2015-09-11 00:52:16 +02:00
impl Rewrite for String {
fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
2017-05-25 16:08:08 +09:00
wrap_str(self, context.config.max_width(), shape).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>,
2015-09-07 21:34:37 +02:00
{
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
}
#[inline]
2017-03-28 23:16:52 +09:00
pub fn colon_spaces(before: bool, after: bool) -> &'static str {
match (before, after) {
(true, true) => " : ",
(true, false) => " :",
(false, true) => ": ",
(false, false) => ":",
}
}
#[inline]
pub fn paren_overhead(context: &RewriteContext) -> usize {
if context.config.spaces_within_parens() {
4
} else {
2
}
}
2015-09-07 21:34:37 +02:00
#[test]
fn bin_search_test() {
let closure = |i| match i {
4 => Ok(()),
j if j > 4 => Err(Ordering::Less),
j if j < 4 => Err(Ordering::Greater),
_ => unreachable!(),
2015-09-11 00:53:21 +02:00
};
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));
}
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), _, _) |
ast::ExprKind::Try(ref e) => left_most_sub_expr(e),
_ => e,
}
}