// 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 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. use std::cmp::Ordering; use syntax::{ast, ptr}; use syntax::codemap::{BytePos, Span}; use {Shape, Spanned}; use codemap::SpanUtils; use comment::combine_strs_with_missing_comments; use config::IndentStyle; use lists::{definitive_tactic, itemize_list, write_list, DefinitiveListTactic, ListFormatting, ListItem, Separator, SeparatorPlace, SeparatorTactic}; use rewrite::{Rewrite, RewriteContext}; use types::{rewrite_path, PathContext}; use utils::{format_visibility, mk_sp}; use visitor::{rewrite_extern_crate, FmtVisitor}; fn path_of(a: &ast::ViewPath_) -> &ast::Path { match *a { ast::ViewPath_::ViewPathSimple(_, ref p) | ast::ViewPath_::ViewPathGlob(ref p) | ast::ViewPath_::ViewPathList(ref p, _) => p, } } fn compare_path_segments(a: &ast::PathSegment, b: &ast::PathSegment) -> Ordering { a.identifier.name.as_str().cmp(&b.identifier.name.as_str()) } fn compare_paths(a: &ast::Path, b: &ast::Path) -> Ordering { for segment in a.segments.iter().zip(b.segments.iter()) { let ord = compare_path_segments(segment.0, segment.1); if ord != Ordering::Equal { return ord; } } a.segments.len().cmp(&b.segments.len()) } fn compare_path_list_items(a: &ast::PathListItem, b: &ast::PathListItem) -> Ordering { let a_name_str = &*a.node.name.name.as_str(); let b_name_str = &*b.node.name.name.as_str(); let name_ordering = if a_name_str == "self" { if b_name_str == "self" { Ordering::Equal } else { Ordering::Less } } else if b_name_str == "self" { Ordering::Greater } else { a_name_str.cmp(b_name_str) }; if name_ordering == Ordering::Equal { match a.node.rename { Some(a_rename) => match b.node.rename { Some(b_rename) => a_rename.name.as_str().cmp(&b_rename.name.as_str()), None => Ordering::Greater, }, None => Ordering::Less, } } else { name_ordering } } fn compare_path_list_item_lists( a_items: &Vec, b_items: &Vec, ) -> Ordering { let mut a = a_items.clone(); let mut b = b_items.clone(); a.sort_by(|a, b| compare_path_list_items(a, b)); b.sort_by(|a, b| compare_path_list_items(a, b)); for comparison_pair in a.iter().zip(b.iter()) { let ord = compare_path_list_items(comparison_pair.0, comparison_pair.1); if ord != Ordering::Equal { return ord; } } a.len().cmp(&b.len()) } fn compare_view_path_types(a: &ast::ViewPath_, b: &ast::ViewPath_) -> Ordering { use syntax::ast::ViewPath_::*; match (a, b) { (&ViewPathSimple(..), &ViewPathSimple(..)) => Ordering::Equal, (&ViewPathSimple(..), _) => Ordering::Less, (&ViewPathGlob(_), &ViewPathSimple(..)) => Ordering::Greater, (&ViewPathGlob(_), &ViewPathGlob(_)) => Ordering::Equal, (&ViewPathGlob(_), &ViewPathList(..)) => Ordering::Less, (&ViewPathList(_, ref a_items), &ViewPathList(_, ref b_items)) => { compare_path_list_item_lists(a_items, b_items) } (&ViewPathList(..), _) => Ordering::Greater, } } fn compare_view_paths(a: &ast::ViewPath_, b: &ast::ViewPath_) -> Ordering { match compare_paths(path_of(a), path_of(b)) { Ordering::Equal => compare_view_path_types(a, b), cmp => cmp, } } fn compare_use_items(context: &RewriteContext, a: &ast::Item, b: &ast::Item) -> Option { match (&a.node, &b.node) { (&ast::ItemKind::Use(ref a_vp), &ast::ItemKind::Use(ref b_vp)) => { Some(compare_view_paths(&a_vp.node, &b_vp.node)) } (&ast::ItemKind::ExternCrate(..), &ast::ItemKind::ExternCrate(..)) => { Some(context.snippet(a.span).cmp(&context.snippet(b.span))) } _ => None, } } // TODO (some day) remove unused imports, expand globs, compress many single // imports into a list import. fn rewrite_view_path_prefix( path: &ast::Path, context: &RewriteContext, shape: Shape, ) -> Option { let path_str = if path.segments.last().unwrap().identifier.to_string() == "self" && path.segments.len() > 1 { let path = &ast::Path { span: path.span, segments: path.segments[..path.segments.len() - 1].to_owned(), }; try_opt!(rewrite_path( context, PathContext::Import, None, path, shape, )) } else { try_opt!(rewrite_path( context, PathContext::Import, None, path, shape, )) }; Some(path_str) } impl Rewrite for ast::ViewPath { fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option { match self.node { ast::ViewPath_::ViewPathList(ref path, ref path_list) => { rewrite_use_list(shape, path, path_list, self.span, context) } ast::ViewPath_::ViewPathGlob(ref path) => { // 4 = "::*".len() let prefix_shape = try_opt!(shape.sub_width(3)); let path_str = try_opt!(rewrite_view_path_prefix(path, context, prefix_shape)); Some(format!("{}::*", path_str)) } ast::ViewPath_::ViewPathSimple(ident, ref path) => { let ident_str = ident.to_string(); // 4 = " as ".len() let prefix_shape = try_opt!(shape.sub_width(ident_str.len() + 4)); let path_str = try_opt!(rewrite_view_path_prefix(path, context, prefix_shape)); Some(if path.segments.last().unwrap().identifier == ident { path_str } else { format!("{} as {}", path_str, ident_str) }) } } } } // Rewrite `use foo;` WITHOUT attributes. fn rewrite_import( context: &RewriteContext, vis: &ast::Visibility, vp: &ast::ViewPath, attrs: &[ast::Attribute], shape: Shape, ) -> Option { let vis = format_visibility(vis); // 4 = `use `, 1 = `;` let rw = shape .offset_left(vis.len() + 4) .and_then(|shape| shape.sub_width(1)) .and_then(|shape| match vp.node { // If we have an empty path list with no attributes, we erase it ast::ViewPath_::ViewPathList(_, ref path_list) if path_list.is_empty() && attrs.is_empty() => { Some("".into()) } _ => vp.rewrite(context, shape), }); match rw { Some(ref s) if !s.is_empty() => Some(format!("{}use {};", vis, s)), _ => rw, } } fn rewrite_imports( context: &RewriteContext, use_items: &[ptr::P], shape: Shape, span: Span, ) -> Option { let items = itemize_list( context.codemap, use_items.iter(), "", |item| item.span().lo(), |item| item.span().hi(), |item| { let attrs_str = try_opt!(item.attrs.rewrite(context, shape)); let missed_span = if item.attrs.is_empty() { mk_sp(item.span.lo(), item.span.lo()) } else { mk_sp(item.attrs.last().unwrap().span.hi(), item.span.lo()) }; let item_str = match item.node { ast::ItemKind::Use(ref vp) => { try_opt!(rewrite_import(context, &item.vis, vp, &item.attrs, shape)) } ast::ItemKind::ExternCrate(..) => try_opt!(rewrite_extern_crate(context, item)), _ => return None, }; combine_strs_with_missing_comments( context, &attrs_str, &item_str, missed_span, shape, false, ) }, span.lo(), span.hi(), false, ); let mut item_pair_vec: Vec<_> = items.zip(use_items.iter()).collect(); item_pair_vec.sort_by(|a, b| compare_use_items(context, a.1, b.1).unwrap()); let item_vec: Vec<_> = item_pair_vec.into_iter().map(|pair| pair.0).collect(); let fmt = ListFormatting { tactic: DefinitiveListTactic::Vertical, separator: "", trailing_separator: SeparatorTactic::Never, separator_place: SeparatorPlace::Back, shape: shape, ends_with_newline: true, preserve_newline: false, config: context.config, }; write_list(&item_vec, &fmt) } impl<'a> FmtVisitor<'a> { pub fn format_imports(&mut self, use_items: &[ptr::P]) { if use_items.is_empty() { return; } let lo = use_items.first().unwrap().span().lo(); let hi = use_items.last().unwrap().span().hi(); let span = mk_sp(lo, hi); let rw = rewrite_imports(&self.get_context(), use_items, self.shape(), span); self.push_rewrite(span, rw); } pub fn format_import(&mut self, item: &ast::Item, vp: &ast::ViewPath) { let span = item.span; let shape = self.shape(); let rw = rewrite_import(&self.get_context(), &item.vis, vp, &item.attrs, shape); match rw { Some(ref s) if s.is_empty() => { // Format up to last newline let prev_span = mk_sp(self.last_pos, source!(self, span).lo()); let span_end = match self.snippet(prev_span).rfind('\n') { Some(offset) => self.last_pos + BytePos(offset as u32), None => source!(self, span).lo(), }; self.format_missing(span_end); self.last_pos = source!(self, span).hi(); } Some(ref s) => { self.format_missing_with_indent(source!(self, span).lo()); self.buffer.push_str(&s); self.last_pos = source!(self, span).hi(); } None => { self.format_missing_with_indent(source!(self, span).lo()); self.format_missing(source!(self, span).hi()); } } } } fn rewrite_single_use_list(path_str: String, vpi: &ast::PathListItem) -> String { let mut item_str = vpi.node.name.to_string(); if item_str == "self" { item_str = "".to_owned(); } let path_item_str = if path_str.is_empty() { if item_str.is_empty() { "self".to_owned() } else { item_str } } else if item_str.is_empty() { path_str } else { format!("{}::{}", path_str, item_str) }; append_alias(path_item_str, vpi) } fn rewrite_path_item(vpi: &&ast::PathListItem) -> Option { Some(append_alias(vpi.node.name.to_string(), vpi)) } fn append_alias(path_item_str: String, vpi: &ast::PathListItem) -> String { match vpi.node.rename { Some(rename) => format!("{} as {}", path_item_str, rename), None => path_item_str, } } #[derive(Eq, PartialEq)] enum ImportItem<'a> { // `self` or `self as a` SelfImport(&'a str), // name_one, name_two, ... SnakeCase(&'a str), // NameOne, NameTwo, ... CamelCase(&'a str), // NAME_ONE, NAME_TWO, ... AllCaps(&'a str), // Failed to format the import item Invalid, } impl<'a> ImportItem<'a> { fn from_str(s: &str) -> ImportItem { if s == "self" || s.starts_with("self as") { ImportItem::SelfImport(s) } else if s.chars().all(|c| c.is_lowercase() || c == '_' || c == ' ') { ImportItem::SnakeCase(s) } else if s.chars().all(|c| c.is_uppercase() || c == '_' || c == ' ') { ImportItem::AllCaps(s) } else { ImportItem::CamelCase(s) } } fn from_opt_str(s: Option<&String>) -> ImportItem { s.map_or(ImportItem::Invalid, |s| ImportItem::from_str(s)) } fn to_str(&self) -> Option<&str> { match *self { ImportItem::SelfImport(s) | ImportItem::SnakeCase(s) | ImportItem::CamelCase(s) | ImportItem::AllCaps(s) => Some(s), ImportItem::Invalid => None, } } fn to_u32(&self) -> u32 { match *self { ImportItem::SelfImport(..) => 0, ImportItem::SnakeCase(..) => 1, ImportItem::CamelCase(..) => 2, ImportItem::AllCaps(..) => 3, ImportItem::Invalid => 4, } } } impl<'a> PartialOrd for ImportItem<'a> { fn partial_cmp(&self, other: &ImportItem<'a>) -> Option { Some(self.cmp(other)) } } impl<'a> Ord for ImportItem<'a> { fn cmp(&self, other: &ImportItem<'a>) -> Ordering { let res = self.to_u32().cmp(&other.to_u32()); if res != Ordering::Equal { return res; } self.to_str().map_or(Ordering::Greater, |self_str| { other .to_str() .map_or(Ordering::Less, |other_str| self_str.cmp(other_str)) }) } } // Pretty prints a multi-item import. // If the path list is empty, it leaves the braces empty. fn rewrite_use_list( shape: Shape, path: &ast::Path, path_list: &[ast::PathListItem], span: Span, context: &RewriteContext, ) -> Option { // Returns a different option to distinguish `::foo` and `foo` let path_str = try_opt!(rewrite_path( context, PathContext::Import, None, path, shape, )); match path_list.len() { 0 => { return rewrite_path(context, PathContext::Import, None, path, shape) .map(|path_str| format!("{}::{{}}", path_str)); } 1 => return Some(rewrite_single_use_list(path_str, &path_list[0])), _ => (), } let path_str = if path_str.is_empty() { path_str } else { format!("{}::", path_str) }; // 2 = "{}" let remaining_width = shape.width.checked_sub(path_str.len() + 2).unwrap_or(0); let mut items = { // Dummy value, see explanation below. let mut items = vec![ListItem::from_str("")]; let iter = itemize_list( context.codemap, path_list.iter(), "}", |vpi| vpi.span.lo(), |vpi| vpi.span.hi(), rewrite_path_item, context.codemap.span_after(span, "{"), span.hi(), false, ); items.extend(iter); items }; // We prefixed the item list with a dummy value so that we can // potentially move "self" to the front of the vector without touching // the rest of the items. let has_self = move_self_to_front(&mut items); let first_index = if has_self { 0 } else { 1 }; if context.config.reorder_imported_names() { items[1..].sort_by(|a, b| { let a = ImportItem::from_opt_str(a.item.as_ref()); let b = ImportItem::from_opt_str(b.item.as_ref()); a.cmp(&b) }); } let tactic = definitive_tactic( &items[first_index..], context.config.imports_layout(), Separator::Comma, remaining_width, ); let nested_indent = match context.config.imports_indent() { IndentStyle::Block => shape.indent.block_indent(context.config), // 1 = `{` IndentStyle::Visual => shape.visual_indent(path_str.len() + 1).indent, }; let nested_shape = match context.config.imports_indent() { IndentStyle::Block => Shape::indented(nested_indent, context.config), IndentStyle::Visual => Shape::legacy(remaining_width, nested_indent), }; let ends_with_newline = context.config.imports_indent() == IndentStyle::Block && tactic != DefinitiveListTactic::Horizontal; let fmt = ListFormatting { tactic: tactic, separator: ",", trailing_separator: if ends_with_newline { context.config.trailing_comma() } else { SeparatorTactic::Never }, separator_place: SeparatorPlace::Back, shape: nested_shape, ends_with_newline: ends_with_newline, preserve_newline: true, config: context.config, }; let list_str = try_opt!(write_list(&items[first_index..], &fmt)); let result = if list_str.contains('\n') && context.config.imports_indent() == IndentStyle::Block { format!( "{}{{\n{}{}\n{}}}", path_str, nested_shape.indent.to_string(context.config), list_str, shape.indent.to_string(context.config) ) } else { format!("{}{{{}}}", path_str, list_str) }; Some(result) } // Returns true when self item was found. fn move_self_to_front(items: &mut Vec) -> bool { match items .iter() .position(|item| item.item.as_ref().map(|x| &x[..]) == Some("self")) { Some(pos) => { items[0] = items.remove(pos); true } None => false, } }