]> git.lizzy.rs Git - rust.git/blob - src/imports.rs
Move the empty path_list handling into rewrite_use_list()
[rust.git] / src / imports.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 use std::cmp::{self, Ordering};
12
13 use syntax::{ast, ptr};
14 use syntax::codemap::{BytePos, Span};
15
16 use Shape;
17 use codemap::SpanUtils;
18 use config::IndentStyle;
19 use lists::{definitive_tactic, itemize_list, write_list, DefinitiveListTactic, ListFormatting,
20             ListItem, Separator, SeparatorTactic};
21 use rewrite::{Rewrite, RewriteContext};
22 use types::{rewrite_path, PathContext};
23 use utils;
24 use visitor::FmtVisitor;
25
26 fn path_of(a: &ast::ViewPath_) -> &ast::Path {
27     match *a {
28         ast::ViewPath_::ViewPathSimple(_, ref p) => p,
29         ast::ViewPath_::ViewPathGlob(ref p) => p,
30         ast::ViewPath_::ViewPathList(ref p, _) => p,
31     }
32 }
33
34 fn compare_path_segments(a: &ast::PathSegment, b: &ast::PathSegment) -> Ordering {
35     a.identifier.name.as_str().cmp(&b.identifier.name.as_str())
36 }
37
38 fn compare_paths(a: &ast::Path, b: &ast::Path) -> Ordering {
39     for segment in a.segments.iter().zip(b.segments.iter()) {
40         let ord = compare_path_segments(segment.0, segment.1);
41         if ord != Ordering::Equal {
42             return ord;
43         }
44     }
45     a.segments.len().cmp(&b.segments.len())
46 }
47
48 fn compare_path_list_items(a: &ast::PathListItem, b: &ast::PathListItem) -> Ordering {
49     let a_name_str = &*a.node.name.name.as_str();
50     let b_name_str = &*b.node.name.name.as_str();
51     let name_ordering = if a_name_str == "self" {
52         if b_name_str == "self" {
53             Ordering::Equal
54         } else {
55             Ordering::Less
56         }
57     } else {
58         if b_name_str == "self" {
59             Ordering::Greater
60         } else {
61             a_name_str.cmp(&b_name_str)
62         }
63     };
64     if name_ordering == Ordering::Equal {
65         match a.node.rename {
66             Some(a_rename) => match b.node.rename {
67                 Some(b_rename) => a_rename.name.as_str().cmp(&b_rename.name.as_str()),
68                 None => Ordering::Greater,
69             },
70             None => Ordering::Less,
71         }
72     } else {
73         name_ordering
74     }
75 }
76
77 fn compare_path_list_item_lists(
78     a_items: &Vec<ast::PathListItem>,
79     b_items: &Vec<ast::PathListItem>,
80 ) -> Ordering {
81     let mut a = a_items.clone();
82     let mut b = b_items.clone();
83     a.sort_by(|a, b| compare_path_list_items(a, b));
84     b.sort_by(|a, b| compare_path_list_items(a, b));
85     for comparison_pair in a.iter().zip(b.iter()) {
86         let ord = compare_path_list_items(comparison_pair.0, comparison_pair.1);
87         if ord != Ordering::Equal {
88             return ord;
89         }
90     }
91     a.len().cmp(&b.len())
92 }
93
94 fn compare_view_path_types(a: &ast::ViewPath_, b: &ast::ViewPath_) -> Ordering {
95     use syntax::ast::ViewPath_::*;
96     match (a, b) {
97         (&ViewPathSimple(..), &ViewPathSimple(..)) => Ordering::Equal,
98         (&ViewPathSimple(..), _) => Ordering::Less,
99         (&ViewPathGlob(_), &ViewPathSimple(..)) => Ordering::Greater,
100         (&ViewPathGlob(_), &ViewPathGlob(_)) => Ordering::Equal,
101         (&ViewPathGlob(_), &ViewPathList(..)) => Ordering::Less,
102         (&ViewPathList(_, ref a_items), &ViewPathList(_, ref b_items)) => {
103             compare_path_list_item_lists(a_items, b_items)
104         }
105         (&ViewPathList(..), _) => Ordering::Greater,
106     }
107 }
108
109 fn compare_view_paths(a: &ast::ViewPath_, b: &ast::ViewPath_) -> Ordering {
110     match compare_paths(path_of(a), path_of(b)) {
111         Ordering::Equal => compare_view_path_types(a, b),
112         cmp => cmp,
113     }
114 }
115
116 fn compare_use_items(a: &ast::Item, b: &ast::Item) -> Option<Ordering> {
117     match (&a.node, &b.node) {
118         (&ast::ItemKind::Use(ref a_vp), &ast::ItemKind::Use(ref b_vp)) => {
119             Some(compare_view_paths(&a_vp.node, &b_vp.node))
120         }
121         _ => None,
122     }
123 }
124
125 // TODO (some day) remove unused imports, expand globs, compress many single
126 // imports into a list import.
127
128 fn rewrite_view_path_prefix(
129     path: &ast::Path,
130     context: &RewriteContext,
131     shape: Shape,
132 ) -> Option<String> {
133     let path_str = if path.segments.last().unwrap().identifier.to_string() == "self" &&
134         path.segments.len() > 1
135     {
136         let path = &ast::Path {
137             span: path.span.clone(),
138             segments: path.segments[..path.segments.len() - 1].to_owned(),
139         };
140         try_opt!(rewrite_path(
141             context,
142             PathContext::Import,
143             None,
144             path,
145             shape,
146         ))
147     } else {
148         try_opt!(rewrite_path(
149             context,
150             PathContext::Import,
151             None,
152             path,
153             shape,
154         ))
155     };
156     Some(path_str)
157 }
158
159 impl Rewrite for ast::ViewPath {
160     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
161         match self.node {
162             ast::ViewPath_::ViewPathList(ref path, ref path_list) => {
163                 rewrite_use_list(shape, path, path_list, self.span, context)
164             }
165             ast::ViewPath_::ViewPathGlob(ref path) => {
166                 // 4 = "::*".len()
167                 let prefix_shape = try_opt!(shape.sub_width(3));
168                 let path_str = try_opt!(rewrite_view_path_prefix(path, context, prefix_shape));
169                 Some(format!("{}::*", path_str))
170             }
171             ast::ViewPath_::ViewPathSimple(ident, ref path) => {
172                 let ident_str = ident.to_string();
173                 // 4 = " as ".len()
174                 let prefix_shape = try_opt!(shape.sub_width(ident_str.len() + 4));
175                 let path_str = try_opt!(rewrite_view_path_prefix(path, context, prefix_shape));
176
177                 Some(if path.segments.last().unwrap().identifier == ident {
178                     path_str
179                 } else {
180                     format!("{} as {}", path_str, ident_str)
181                 })
182             }
183         }
184     }
185 }
186
187 impl<'a> FmtVisitor<'a> {
188     pub fn format_imports(&mut self, use_items: &[ptr::P<ast::Item>]) {
189         // Find the location immediately before the first use item in the run. This must not lie
190         // before the current `self.last_pos`
191         let pos_before_first_use_item = use_items
192             .first()
193             .map(|p_i| {
194                 cmp::max(
195                     self.last_pos,
196                     p_i.attrs
197                         .iter()
198                         .map(|attr| attr.span.lo)
199                         .min()
200                         .unwrap_or(p_i.span.lo),
201                 )
202             })
203             .unwrap_or(self.last_pos);
204         // Construct a list of pairs, each containing a `use` item and the start of span before
205         // that `use` item.
206         let mut last_pos_of_prev_use_item = pos_before_first_use_item;
207         let mut ordered_use_items = use_items
208             .iter()
209             .map(|p_i| {
210                 let new_item = (&*p_i, last_pos_of_prev_use_item);
211                 last_pos_of_prev_use_item = p_i.span.hi;
212                 new_item
213             })
214             .collect::<Vec<_>>();
215         let pos_after_last_use_item = last_pos_of_prev_use_item;
216         // Order the imports by view-path & other import path properties
217         ordered_use_items.sort_by(|a, b| compare_use_items(a.0, b.0).unwrap());
218         // First, output the span before the first import
219         let prev_span_str = self.snippet(utils::mk_sp(self.last_pos, pos_before_first_use_item));
220         // Look for purely trailing space at the start of the prefix snippet before a linefeed, or
221         // a prefix that's entirely horizontal whitespace.
222         let prefix_span_start = match prev_span_str.find('\n') {
223             Some(offset) if prev_span_str[..offset].trim().is_empty() => {
224                 self.last_pos + BytePos(offset as u32)
225             }
226             None if prev_span_str.trim().is_empty() => pos_before_first_use_item,
227             _ => self.last_pos,
228         };
229         // Look for indent (the line part preceding the use is all whitespace) and excise that
230         // from the prefix
231         let span_end = match prev_span_str.rfind('\n') {
232             Some(offset) if prev_span_str[offset..].trim().is_empty() => {
233                 self.last_pos + BytePos(offset as u32)
234             }
235             _ => pos_before_first_use_item,
236         };
237
238         self.last_pos = prefix_span_start;
239         self.format_missing(span_end);
240         for ordered in ordered_use_items {
241             // Fake out the formatter by setting `self.last_pos` to the appropriate location before
242             // each item before visiting it.
243             self.last_pos = ordered.1;
244             self.visit_item(ordered.0);
245         }
246         self.last_pos = pos_after_last_use_item;
247     }
248
249     pub fn format_import(
250         &mut self,
251         vis: &ast::Visibility,
252         vp: &ast::ViewPath,
253         span: Span,
254         attrs: &[ast::Attribute],
255     ) {
256         let vis = utils::format_visibility(vis);
257         // 4 = `use `, 1 = `;`
258         let rw = Shape::indented(self.block_indent, self.config)
259             .offset_left(vis.len() + 4)
260             .and_then(|shape| shape.sub_width(1))
261             .and_then(|shape| match vp.node {
262                 // If we have an empty path list with no attributes, we erase it
263                 ast::ViewPath_::ViewPathList(_, ref path_list)
264                     if path_list.is_empty() && attrs.is_empty() =>
265                 {
266                     Some("".into())
267                 }
268                 _ => vp.rewrite(&self.get_context(), shape),
269             });
270         match rw {
271             Some(ref s) if s.is_empty() => {
272                 // Format up to last newline
273                 let prev_span = utils::mk_sp(self.last_pos, source!(self, span).lo);
274                 let span_end = match self.snippet(prev_span).rfind('\n') {
275                     Some(offset) => self.last_pos + BytePos(offset as u32),
276                     None => source!(self, span).lo,
277                 };
278                 self.format_missing(span_end);
279                 self.last_pos = source!(self, span).hi;
280             }
281             Some(ref s) => {
282                 let s = format!("{}use {};", vis, s);
283                 self.format_missing_with_indent(source!(self, span).lo);
284                 self.buffer.push_str(&s);
285                 self.last_pos = source!(self, span).hi;
286             }
287             None => {
288                 self.format_missing_with_indent(source!(self, span).lo);
289                 self.format_missing(source!(self, span).hi);
290             }
291         }
292     }
293 }
294
295 fn rewrite_single_use_list(path_str: String, vpi: &ast::PathListItem) -> String {
296     let mut item_str = vpi.node.name.to_string();
297     if item_str == "self" {
298         item_str = "".to_owned();
299     }
300     let path_item_str = if path_str.is_empty() {
301         if item_str.is_empty() {
302             "self".to_owned()
303         } else {
304             item_str
305         }
306     } else if item_str.is_empty() {
307         path_str
308     } else {
309         format!("{}::{}", path_str, item_str)
310     };
311     append_alias(path_item_str, vpi)
312 }
313
314 fn rewrite_path_item(vpi: &&ast::PathListItem) -> Option<String> {
315     Some(append_alias(vpi.node.name.to_string(), vpi))
316 }
317
318 fn append_alias(path_item_str: String, vpi: &ast::PathListItem) -> String {
319     match vpi.node.rename {
320         Some(rename) => format!("{} as {}", path_item_str, rename),
321         None => path_item_str,
322     }
323 }
324
325 #[derive(Eq, PartialEq)]
326 enum ImportItem<'a> {
327     // `self` or `self as a`
328     SelfImport(&'a str),
329     // name_one, name_two, ...
330     SnakeCase(&'a str),
331     // NameOne, NameTwo, ...
332     CamelCase(&'a str),
333     // NAME_ONE, NAME_TWO, ...
334     AllCaps(&'a str),
335     // Failed to format the import item
336     Invalid,
337 }
338
339 impl<'a> ImportItem<'a> {
340     fn from_str(s: &str) -> ImportItem {
341         if s == "self" || s.starts_with("self as") {
342             ImportItem::SelfImport(s)
343         } else if s.chars().all(|c| c.is_lowercase() || c == '_' || c == ' ') {
344             ImportItem::SnakeCase(s)
345         } else if s.chars().all(|c| c.is_uppercase() || c == '_' || c == ' ') {
346             ImportItem::AllCaps(s)
347         } else {
348             ImportItem::CamelCase(s)
349         }
350     }
351
352     fn from_opt_str(s: Option<&String>) -> ImportItem {
353         s.map_or(ImportItem::Invalid, |s| ImportItem::from_str(s))
354     }
355
356     fn to_str(&self) -> Option<&str> {
357         match *self {
358             ImportItem::SelfImport(s) |
359             ImportItem::SnakeCase(s) |
360             ImportItem::CamelCase(s) |
361             ImportItem::AllCaps(s) => Some(s),
362             ImportItem::Invalid => None,
363         }
364     }
365
366     fn to_u32(&self) -> u32 {
367         match *self {
368             ImportItem::SelfImport(..) => 0,
369             ImportItem::SnakeCase(..) => 1,
370             ImportItem::CamelCase(..) => 2,
371             ImportItem::AllCaps(..) => 3,
372             ImportItem::Invalid => 4,
373         }
374     }
375 }
376
377 impl<'a> PartialOrd for ImportItem<'a> {
378     fn partial_cmp(&self, other: &ImportItem<'a>) -> Option<Ordering> {
379         Some(self.cmp(other))
380     }
381 }
382
383 impl<'a> Ord for ImportItem<'a> {
384     fn cmp(&self, other: &ImportItem<'a>) -> Ordering {
385         let res = self.to_u32().cmp(&other.to_u32());
386         if res != Ordering::Equal {
387             return res;
388         }
389         self.to_str().map_or(Ordering::Greater, |self_str| {
390             other
391                 .to_str()
392                 .map_or(Ordering::Less, |other_str| self_str.cmp(other_str))
393         })
394     }
395 }
396
397 // Pretty prints a multi-item import.
398 // If the path list is empty, it leaves the braces empty.
399 fn rewrite_use_list(
400     shape: Shape,
401     path: &ast::Path,
402     path_list: &[ast::PathListItem],
403     span: Span,
404     context: &RewriteContext,
405 ) -> Option<String> {
406     // Returns a different option to distinguish `::foo` and `foo`
407     let path_str = try_opt!(rewrite_path(
408         context,
409         PathContext::Import,
410         None,
411         path,
412         shape,
413     ));
414
415     match path_list.len() {
416         0 => {
417             return rewrite_path(context, PathContext::Import, None, path, shape)
418                 .map(|path_str| format!("{}::{{}}", path_str));
419         }
420         1 => return Some(rewrite_single_use_list(path_str, &path_list[0])),
421         _ => (),
422     }
423
424     let path_str = if path_str.is_empty() {
425         path_str
426     } else {
427         format!("{}::", path_str)
428     };
429
430     // 2 = "{}"
431     let remaining_width = shape.width.checked_sub(path_str.len() + 2).unwrap_or(0);
432
433     let mut items = {
434         // Dummy value, see explanation below.
435         let mut items = vec![ListItem::from_str("")];
436         let iter = itemize_list(
437             context.codemap,
438             path_list.iter(),
439             "}",
440             |vpi| vpi.span.lo,
441             |vpi| vpi.span.hi,
442             rewrite_path_item,
443             context.codemap.span_after(span, "{"),
444             span.hi,
445         );
446         items.extend(iter);
447         items
448     };
449
450     // We prefixed the item list with a dummy value so that we can
451     // potentially move "self" to the front of the vector without touching
452     // the rest of the items.
453     let has_self = move_self_to_front(&mut items);
454     let first_index = if has_self { 0 } else { 1 };
455
456     if context.config.reorder_imported_names() {
457         items[1..].sort_by(|a, b| {
458             let a = ImportItem::from_opt_str(a.item.as_ref());
459             let b = ImportItem::from_opt_str(b.item.as_ref());
460             a.cmp(&b)
461         });
462     }
463
464     let tactic = definitive_tactic(
465         &items[first_index..],
466         context.config.imports_layout(),
467         Separator::Comma,
468         remaining_width,
469     );
470
471     let nested_indent = match context.config.imports_indent() {
472         IndentStyle::Block => shape.indent.block_indent(context.config),
473         // 1 = `{`
474         IndentStyle::Visual => shape.visual_indent(path_str.len() + 1).indent,
475     };
476
477     let nested_shape = match context.config.imports_indent() {
478         IndentStyle::Block => Shape::indented(nested_indent, context.config),
479         IndentStyle::Visual => Shape::legacy(remaining_width, nested_indent),
480     };
481
482     let ends_with_newline = context.config.imports_indent() == IndentStyle::Block &&
483         tactic != DefinitiveListTactic::Horizontal;
484
485     let fmt = ListFormatting {
486         tactic: tactic,
487         separator: ",",
488         trailing_separator: if ends_with_newline {
489             context.config.trailing_comma()
490         } else {
491             SeparatorTactic::Never
492         },
493         shape: nested_shape,
494         ends_with_newline: ends_with_newline,
495         preserve_newline: true,
496         config: context.config,
497     };
498     let list_str = try_opt!(write_list(&items[first_index..], &fmt));
499
500     let result = if list_str.contains('\n') && context.config.imports_indent() == IndentStyle::Block
501     {
502         format!(
503             "{}{{\n{}{}\n{}}}",
504             path_str,
505             nested_shape.indent.to_string(context.config),
506             list_str,
507             shape.indent.to_string(context.config)
508         )
509     } else {
510         format!("{}{{{}}}", path_str, list_str)
511     };
512     Some(result)
513 }
514
515 // Returns true when self item was found.
516 fn move_self_to_front(items: &mut Vec<ListItem>) -> bool {
517     match items
518         .iter()
519         .position(|item| item.item.as_ref().map(|x| &x[..]) == Some("self"))
520     {
521         Some(pos) => {
522             items[0] = items.remove(pos);
523             true
524         }
525         None => false,
526     }
527 }