]> git.lizzy.rs Git - rust.git/blob - src/items.rs
Handle special-case macros
[rust.git] / src / items.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 // Formatting top-level items - functions, structs, enums, traits, impls.
12
13 use std::borrow::Cow;
14 use std::cmp::min;
15
16 use syntax::{abi, ast, ptr, symbol};
17 use syntax::ast::{CrateSugar, ImplItem};
18 use syntax::codemap::{BytePos, Span};
19 use syntax::visit;
20
21 use spanned::Spanned;
22 use codemap::{LineRangeUtils, SpanUtils};
23 use comment::{combine_strs_with_missing_comments, contains_comment, recover_comment_removed,
24               recover_missing_comment_in_span, rewrite_missing_comment, FindUncommented};
25 use config::{BraceStyle, Config, Density, IndentStyle};
26 use expr::{choose_rhs, format_expr, is_empty_block, is_simple_block_stmt, rewrite_assign_rhs,
27            rewrite_call_inner, ExprType};
28 use lists::{definitive_tactic, itemize_list, write_list, DefinitiveListTactic, ListFormatting,
29             ListItem, ListTactic, Separator, SeparatorPlace, SeparatorTactic};
30 use rewrite::{Rewrite, RewriteContext};
31 use shape::{Indent, Shape};
32 use types::join_bounds;
33 use utils::{colon_spaces, contains_skip, end_typaram, first_line_width, format_abi,
34             format_constness, format_defaultness, format_mutability, format_unsafety,
35             format_visibility, is_attributes_extendable, last_line_contains_single_line_comment,
36             last_line_used_width, last_line_width, mk_sp, semicolon_for_expr, starts_with_newline,
37             stmt_expr, trim_newlines, trimmed_last_line_width};
38 use vertical::rewrite_with_alignment;
39 use visitor::FmtVisitor;
40
41 fn type_annotation_separator(config: &Config) -> &str {
42     colon_spaces(config.space_before_colon(), config.space_after_colon())
43 }
44
45 // Statements of the form
46 // let pat: ty = init;
47 impl Rewrite for ast::Local {
48     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
49         debug!(
50             "Local::rewrite {:?} {} {:?}",
51             self,
52             shape.width,
53             shape.indent
54         );
55
56         skip_out_of_file_lines_range!(context, self.span);
57
58         if contains_skip(&self.attrs) {
59             return None;
60         }
61
62         let attrs_str = self.attrs.rewrite(context, shape)?;
63         let mut result = if attrs_str.is_empty() {
64             "let ".to_owned()
65         } else {
66             combine_strs_with_missing_comments(
67                 context,
68                 &attrs_str,
69                 "let ",
70                 mk_sp(
71                     self.attrs.last().map(|a| a.span.hi()).unwrap(),
72                     self.span.lo(),
73                 ),
74                 shape,
75                 false,
76             )?
77         };
78
79         // 4 = "let ".len()
80         let pat_shape = shape.offset_left(4)?;
81         // 1 = ;
82         let pat_shape = pat_shape.sub_width(1)?;
83         let pat_str = self.pat.rewrite(context, pat_shape)?;
84         result.push_str(&pat_str);
85
86         // String that is placed within the assignment pattern and expression.
87         let infix = {
88             let mut infix = String::with_capacity(32);
89
90             if let Some(ref ty) = self.ty {
91                 let separator = type_annotation_separator(context.config);
92                 let indent = shape.indent + last_line_width(&result) + separator.len();
93                 // 1 = ;
94                 let budget = shape.width.checked_sub(indent.width() + 1)?;
95                 let rewrite = ty.rewrite(context, Shape::legacy(budget, indent))?;
96
97                 infix.push_str(separator);
98                 infix.push_str(&rewrite);
99             }
100
101             if self.init.is_some() {
102                 infix.push_str(" =");
103             }
104
105             infix
106         };
107
108         result.push_str(&infix);
109
110         if let Some(ref ex) = self.init {
111             // 1 = trailing semicolon;
112             let nested_shape = shape.sub_width(1)?;
113
114             result = rewrite_assign_rhs(context, result, &**ex, nested_shape)?;
115         }
116
117         result.push(';');
118         Some(result)
119     }
120 }
121
122 // TODO convert to using rewrite style rather than visitor
123 // TODO format modules in this style
124 #[allow(dead_code)]
125 struct Item<'a> {
126     keyword: &'static str,
127     abi: Cow<'static, str>,
128     vis: Option<&'a ast::Visibility>,
129     body: Vec<BodyElement<'a>>,
130     span: Span,
131 }
132
133 impl<'a> Item<'a> {
134     fn from_foreign_mod(fm: &'a ast::ForeignMod, span: Span, config: &Config) -> Item<'a> {
135         Item {
136             keyword: "",
137             abi: format_abi(fm.abi, config.force_explicit_abi(), true),
138             vis: None,
139             body: fm.items
140                 .iter()
141                 .map(|i| BodyElement::ForeignItem(i))
142                 .collect(),
143             span: span,
144         }
145     }
146 }
147
148 enum BodyElement<'a> {
149     // Stmt(&'a ast::Stmt),
150     // Field(&'a ast::Field),
151     // Variant(&'a ast::Variant),
152     // Item(&'a ast::Item),
153     ForeignItem(&'a ast::ForeignItem),
154 }
155
156 /// Represents a fn's signature.
157 pub struct FnSig<'a> {
158     decl: &'a ast::FnDecl,
159     generics: &'a ast::Generics,
160     abi: abi::Abi,
161     constness: ast::Constness,
162     defaultness: ast::Defaultness,
163     unsafety: ast::Unsafety,
164     visibility: ast::Visibility,
165 }
166
167 impl<'a> FnSig<'a> {
168     pub fn new(
169         decl: &'a ast::FnDecl,
170         generics: &'a ast::Generics,
171         vis: ast::Visibility,
172     ) -> FnSig<'a> {
173         FnSig {
174             decl: decl,
175             generics: generics,
176             abi: abi::Abi::Rust,
177             constness: ast::Constness::NotConst,
178             defaultness: ast::Defaultness::Final,
179             unsafety: ast::Unsafety::Normal,
180             visibility: vis,
181         }
182     }
183
184     pub fn from_method_sig(
185         method_sig: &'a ast::MethodSig,
186         generics: &'a ast::Generics,
187     ) -> FnSig<'a> {
188         FnSig {
189             unsafety: method_sig.unsafety,
190             constness: method_sig.constness.node,
191             defaultness: ast::Defaultness::Final,
192             abi: method_sig.abi,
193             decl: &*method_sig.decl,
194             generics: generics,
195             visibility: ast::Visibility::Inherited,
196         }
197     }
198
199     pub fn from_fn_kind(
200         fn_kind: &'a visit::FnKind,
201         generics: &'a ast::Generics,
202         decl: &'a ast::FnDecl,
203         defualtness: ast::Defaultness,
204     ) -> FnSig<'a> {
205         match *fn_kind {
206             visit::FnKind::ItemFn(_, unsafety, constness, abi, visibility, _) => FnSig {
207                 decl: decl,
208                 generics: generics,
209                 abi: abi,
210                 constness: constness.node,
211                 defaultness: defualtness,
212                 unsafety: unsafety,
213                 visibility: visibility.clone(),
214             },
215             visit::FnKind::Method(_, method_sig, vis, _) => {
216                 let mut fn_sig = FnSig::from_method_sig(method_sig, generics);
217                 fn_sig.defaultness = defualtness;
218                 if let Some(vis) = vis {
219                     fn_sig.visibility = vis.clone();
220                 }
221                 fn_sig
222             }
223             _ => unreachable!(),
224         }
225     }
226
227     fn to_str(&self, context: &RewriteContext) -> String {
228         let mut result = String::with_capacity(128);
229         // Vis defaultness constness unsafety abi.
230         result.push_str(&*format_visibility(&self.visibility));
231         result.push_str(format_defaultness(self.defaultness));
232         result.push_str(format_constness(self.constness));
233         result.push_str(format_unsafety(self.unsafety));
234         result.push_str(&format_abi(
235             self.abi,
236             context.config.force_explicit_abi(),
237             false,
238         ));
239         result
240     }
241 }
242
243 impl<'a> FmtVisitor<'a> {
244     fn format_item(&mut self, item: Item) {
245         self.buffer.push_str(&item.abi);
246
247         let snippet = self.snippet(item.span);
248         let brace_pos = snippet.find_uncommented("{").unwrap();
249
250         self.buffer.push_str("{");
251         if !item.body.is_empty() || contains_comment(&snippet[brace_pos..]) {
252             // FIXME: this skips comments between the extern keyword and the opening
253             // brace.
254             self.last_pos = item.span.lo() + BytePos(brace_pos as u32 + 1);
255             self.block_indent = self.block_indent.block_indent(self.config);
256
257             if item.body.is_empty() {
258                 self.format_missing_no_indent(item.span.hi() - BytePos(1));
259                 self.block_indent = self.block_indent.block_unindent(self.config);
260
261                 self.buffer
262                     .push_str(&self.block_indent.to_string(self.config));
263             } else {
264                 for item in &item.body {
265                     self.format_body_element(item);
266                 }
267
268                 self.block_indent = self.block_indent.block_unindent(self.config);
269                 self.format_missing_with_indent(item.span.hi() - BytePos(1));
270             }
271         }
272
273         self.buffer.push_str("}");
274         self.last_pos = item.span.hi();
275     }
276
277     fn format_body_element(&mut self, element: &BodyElement) {
278         match *element {
279             BodyElement::ForeignItem(item) => self.format_foreign_item(item),
280         }
281     }
282
283     pub fn format_foreign_mod(&mut self, fm: &ast::ForeignMod, span: Span) {
284         let item = Item::from_foreign_mod(fm, span, self.config);
285         self.format_item(item);
286     }
287
288
289     fn format_foreign_item(&mut self, item: &ast::ForeignItem) {
290         let rewrite = item.rewrite(&self.get_context(), self.shape());
291         self.push_rewrite(item.span(), rewrite);
292         self.last_pos = item.span.hi();
293     }
294
295     pub fn rewrite_fn(
296         &mut self,
297         indent: Indent,
298         ident: ast::Ident,
299         fn_sig: &FnSig,
300         span: Span,
301         block: &ast::Block,
302     ) -> Option<String> {
303         let context = self.get_context();
304
305         let mut newline_brace = newline_for_brace(self.config, &fn_sig.generics.where_clause);
306
307         let (mut result, force_newline_brace) =
308             rewrite_fn_base(&context, indent, ident, fn_sig, span, newline_brace, true)?;
309
310         // 2 = ` {`
311         if self.config.brace_style() == BraceStyle::AlwaysNextLine || force_newline_brace
312             || last_line_width(&result) + 2 > self.shape().width
313         {
314             newline_brace = true;
315         } else if !result.contains('\n') {
316             newline_brace = false;
317         }
318
319         // Prepare for the function body by possibly adding a newline and
320         // indent.
321         // FIXME we'll miss anything between the end of the signature and the
322         // start of the body, but we need more spans from the compiler to solve
323         // this.
324         if newline_brace {
325             result.push('\n');
326             result.push_str(&indent.to_string(self.config));
327         } else {
328             result.push(' ');
329         }
330
331         self.single_line_fn(&result, block).or_else(|| Some(result))
332     }
333
334     pub fn rewrite_required_fn(
335         &mut self,
336         indent: Indent,
337         ident: ast::Ident,
338         sig: &ast::MethodSig,
339         generics: &ast::Generics,
340         span: Span,
341     ) -> Option<String> {
342         // Drop semicolon or it will be interpreted as comment.
343         let span = mk_sp(span.lo(), span.hi() - BytePos(1));
344         let context = self.get_context();
345
346         let (mut result, _) = rewrite_fn_base(
347             &context,
348             indent,
349             ident,
350             &FnSig::from_method_sig(sig, generics),
351             span,
352             false,
353             false,
354         )?;
355
356         // Re-attach semicolon
357         result.push(';');
358
359         Some(result)
360     }
361
362     fn single_line_fn(&self, fn_str: &str, block: &ast::Block) -> Option<String> {
363         if fn_str.contains('\n') {
364             return None;
365         }
366
367         let codemap = self.get_context().codemap;
368
369         if self.config.empty_item_single_line() && is_empty_block(block, codemap)
370             && self.block_indent.width() + fn_str.len() + 2 <= self.config.max_width()
371         {
372             return Some(format!("{}{{}}", fn_str));
373         }
374
375         if self.config.fn_single_line() && is_simple_block_stmt(block, codemap) {
376             let rewrite = {
377                 if let Some(stmt) = block.stmts.first() {
378                     match stmt_expr(stmt) {
379                         Some(e) => {
380                             let suffix = if semicolon_for_expr(&self.get_context(), e) {
381                                 ";"
382                             } else {
383                                 ""
384                             };
385
386                             format_expr(e, ExprType::Statement, &self.get_context(), self.shape())
387                                 .map(|s| s + suffix)
388                                 .or_else(|| Some(self.snippet(e.span)))
389                         }
390                         None => stmt.rewrite(&self.get_context(), self.shape()),
391                     }
392                 } else {
393                     None
394                 }
395             };
396
397             if let Some(res) = rewrite {
398                 let width = self.block_indent.width() + fn_str.len() + res.len() + 4;
399                 if !res.contains('\n') && width <= self.config.max_width() {
400                     return Some(format!("{}{{ {} }}", fn_str, res));
401                 }
402             }
403         }
404
405         None
406     }
407
408     pub fn visit_static(&mut self, static_parts: &StaticParts) {
409         let rewrite = rewrite_static(&self.get_context(), static_parts, self.block_indent);
410         self.push_rewrite(static_parts.span, rewrite);
411     }
412
413     pub fn visit_struct(&mut self, struct_parts: &StructParts) {
414         let is_tuple = struct_parts.def.is_tuple();
415         let rewrite = format_struct(&self.get_context(), struct_parts, self.block_indent, None)
416             .map(|s| if is_tuple { s + ";" } else { s });
417         self.push_rewrite(struct_parts.span, rewrite);
418     }
419
420     pub fn visit_enum(
421         &mut self,
422         ident: ast::Ident,
423         vis: &ast::Visibility,
424         enum_def: &ast::EnumDef,
425         generics: &ast::Generics,
426         span: Span,
427     ) {
428         let enum_header = format_header("enum ", ident, vis);
429         self.buffer.push_str(&enum_header);
430
431         let enum_snippet = self.snippet(span);
432         let brace_pos = enum_snippet.find_uncommented("{").unwrap();
433         let body_start = span.lo() + BytePos(brace_pos as u32 + 1);
434         let generics_str = format_generics(
435             &self.get_context(),
436             generics,
437             self.config.brace_style(),
438             if enum_def.variants.is_empty() {
439                 BracePos::ForceSameLine
440             } else {
441                 BracePos::Auto
442             },
443             self.block_indent,
444             mk_sp(span.lo(), body_start),
445             last_line_width(&enum_header),
446         ).unwrap();
447         self.buffer.push_str(&generics_str);
448
449         self.last_pos = body_start;
450
451         self.block_indent = self.block_indent.block_indent(self.config);
452         let variant_list = self.format_variant_list(enum_def, body_start, span.hi() - BytePos(1));
453         match variant_list {
454             Some(ref body_str) => self.buffer.push_str(body_str),
455             None => self.format_missing_no_indent(span.hi() - BytePos(1)),
456         }
457         self.block_indent = self.block_indent.block_unindent(self.config);
458
459         if variant_list.is_some() || contains_comment(&enum_snippet[brace_pos..]) {
460             self.buffer
461                 .push_str(&self.block_indent.to_string(self.config));
462         }
463         self.buffer.push_str("}");
464         self.last_pos = span.hi();
465     }
466
467     // Format the body of an enum definition
468     fn format_variant_list(
469         &self,
470         enum_def: &ast::EnumDef,
471         body_lo: BytePos,
472         body_hi: BytePos,
473     ) -> Option<String> {
474         if enum_def.variants.is_empty() {
475             return None;
476         }
477         let mut result = String::with_capacity(1024);
478         result.push('\n');
479         let indentation = self.block_indent.to_string(self.config);
480         result.push_str(&indentation);
481
482         let itemize_list_with = |one_line_width: usize| {
483             itemize_list(
484                 self.codemap,
485                 enum_def.variants.iter(),
486                 "}",
487                 ",",
488                 |f| if !f.node.attrs.is_empty() {
489                     f.node.attrs[0].span.lo()
490                 } else {
491                     f.span.lo()
492                 },
493                 |f| f.span.hi(),
494                 |f| self.format_variant(f, one_line_width),
495                 body_lo,
496                 body_hi,
497                 false,
498             ).collect()
499         };
500         let mut items: Vec<_> =
501             itemize_list_with(self.config.width_heuristics().struct_variant_width);
502         // If one of the variants use multiple lines, use multi-lined formatting for all variants.
503         let has_multiline_variant = items.iter().any(|item| item.inner_as_ref().contains('\n'));
504         let has_single_line_variant = items.iter().any(|item| !item.inner_as_ref().contains('\n'));
505         if has_multiline_variant && has_single_line_variant {
506             items = itemize_list_with(0);
507         }
508
509         let shape = self.shape().sub_width(2).unwrap();
510         let fmt = ListFormatting {
511             tactic: DefinitiveListTactic::Vertical,
512             separator: ",",
513             trailing_separator: self.config.trailing_comma(),
514             separator_place: SeparatorPlace::Back,
515             shape: shape,
516             ends_with_newline: true,
517             preserve_newline: true,
518             config: self.config,
519         };
520
521         let list = write_list(&items, &fmt)?;
522         result.push_str(&list);
523         result.push('\n');
524         Some(result)
525     }
526
527     // Variant of an enum.
528     fn format_variant(&self, field: &ast::Variant, one_line_width: usize) -> Option<String> {
529         if contains_skip(&field.node.attrs) {
530             let lo = field.node.attrs[0].span.lo();
531             let span = mk_sp(lo, field.span.hi());
532             return Some(self.snippet(span));
533         }
534
535         let context = self.get_context();
536         // 1 = ','
537         let shape = self.shape().sub_width(1)?;
538         let attrs_str = field.node.attrs.rewrite(&context, shape)?;
539         let lo = field
540             .node
541             .attrs
542             .last()
543             .map_or(field.span.lo(), |attr| attr.span.hi());
544         let span = mk_sp(lo, field.span.lo());
545
546         let variant_body = match field.node.data {
547             ast::VariantData::Tuple(..) | ast::VariantData::Struct(..) => format_struct(
548                 &context,
549                 &StructParts::from_variant(field),
550                 self.block_indent,
551                 Some(one_line_width),
552             )?,
553             ast::VariantData::Unit(..) => {
554                 if let Some(ref expr) = field.node.disr_expr {
555                     let lhs = format!("{} =", field.node.name);
556                     rewrite_assign_rhs(&context, lhs, &**expr, shape)?
557                 } else {
558                     field.node.name.to_string()
559                 }
560             }
561         };
562
563         let attrs_extendable = attrs_str.is_empty()
564             || (context.config.same_line_attributes() && is_attributes_extendable(&attrs_str));
565         combine_strs_with_missing_comments(
566             &context,
567             &attrs_str,
568             &variant_body,
569             span,
570             shape,
571             attrs_extendable,
572         )
573     }
574 }
575
576 pub fn format_impl(
577     context: &RewriteContext,
578     item: &ast::Item,
579     offset: Indent,
580     where_span_end: Option<BytePos>,
581 ) -> Option<String> {
582     if let ast::ItemKind::Impl(_, _, _, ref generics, _, ref self_ty, ref items) = item.node {
583         let mut result = String::with_capacity(128);
584         let ref_and_type = format_impl_ref_and_type(context, item, offset)?;
585         let indent_str = offset.to_string(context.config);
586         let sep = format!("\n{}", &indent_str);
587         result.push_str(&ref_and_type);
588
589         let where_budget = if result.contains('\n') {
590             context.config.max_width()
591         } else {
592             context.budget(last_line_width(&result))
593         };
594         let option = WhereClauseOption::snuggled(&ref_and_type);
595         let where_clause_str = rewrite_where_clause(
596             context,
597             &generics.where_clause,
598             context.config.brace_style(),
599             Shape::legacy(where_budget, offset.block_only()),
600             Density::Vertical,
601             "{",
602             where_span_end,
603             self_ty.span.hi(),
604             option,
605             false,
606         )?;
607
608         // If there is no where clause, we may have missing comments between the trait name and
609         // the opening brace.
610         if generics.where_clause.predicates.is_empty() {
611             if let Some(hi) = where_span_end {
612                 match recover_missing_comment_in_span(
613                     mk_sp(self_ty.span.hi(), hi),
614                     Shape::indented(offset, context.config),
615                     context,
616                     last_line_width(&result),
617                 ) {
618                     Some(ref missing_comment) if !missing_comment.is_empty() => {
619                         result.push_str(missing_comment);
620                     }
621                     _ => (),
622                 }
623             }
624         }
625
626         if is_impl_single_line(context, items, &result, &where_clause_str, item)? {
627             result.push_str(&where_clause_str);
628             if where_clause_str.contains('\n') || last_line_contains_single_line_comment(&result) {
629                 result.push_str(&format!("{}{{{}}}", &sep, &sep));
630             } else {
631                 result.push_str(" {}");
632             }
633             return Some(result);
634         }
635
636         if !where_clause_str.is_empty() && !where_clause_str.contains('\n') {
637             result.push('\n');
638             let width = offset.block_indent + context.config.tab_spaces() - 1;
639             let where_indent = Indent::new(0, width);
640             result.push_str(&where_indent.to_string(context.config));
641         }
642         result.push_str(&where_clause_str);
643
644         match context.config.brace_style() {
645             _ if last_line_contains_single_line_comment(&result) => result.push_str(&sep),
646             BraceStyle::AlwaysNextLine => result.push_str(&sep),
647             BraceStyle::PreferSameLine => result.push(' '),
648             BraceStyle::SameLineWhere => {
649                 if !where_clause_str.is_empty() {
650                     result.push_str(&sep);
651                 } else {
652                     result.push(' ');
653                 }
654             }
655         }
656
657         result.push('{');
658
659         let snippet = context.snippet(item.span);
660         let open_pos = snippet.find_uncommented("{")? + 1;
661
662         if !items.is_empty() || contains_comment(&snippet[open_pos..]) {
663             let mut visitor = FmtVisitor::from_codemap(context.parse_session, context.config);
664             visitor.block_indent = offset.block_only().block_indent(context.config);
665             visitor.last_pos = item.span.lo() + BytePos(open_pos as u32);
666
667             visitor.visit_attrs(&item.attrs, ast::AttrStyle::Inner);
668             for item in items {
669                 visitor.visit_impl_item(item);
670             }
671
672             visitor.format_missing(item.span.hi() - BytePos(1));
673
674             let inner_indent_str = visitor.block_indent.to_string(context.config);
675             let outer_indent_str = offset.block_only().to_string(context.config);
676
677             result.push('\n');
678             result.push_str(&inner_indent_str);
679             result.push_str(trim_newlines(visitor.buffer.to_string().trim()));
680             result.push('\n');
681             result.push_str(&outer_indent_str);
682         }
683
684         if result.ends_with('{') {
685             result.push_str(&sep);
686         }
687         result.push('}');
688
689         Some(result)
690     } else {
691         unreachable!();
692     }
693 }
694
695 fn is_impl_single_line(
696     context: &RewriteContext,
697     items: &[ImplItem],
698     result: &str,
699     where_clause_str: &str,
700     item: &ast::Item,
701 ) -> Option<bool> {
702     let snippet = context.snippet(item.span);
703     let open_pos = snippet.find_uncommented("{")? + 1;
704
705     Some(
706         context.config.empty_item_single_line() && items.is_empty() && !result.contains('\n')
707             && result.len() + where_clause_str.len() <= context.config.max_width()
708             && !contains_comment(&snippet[open_pos..]),
709     )
710 }
711
712 fn format_impl_ref_and_type(
713     context: &RewriteContext,
714     item: &ast::Item,
715     offset: Indent,
716 ) -> Option<String> {
717     if let ast::ItemKind::Impl(
718         unsafety,
719         polarity,
720         defaultness,
721         ref generics,
722         ref trait_ref,
723         ref self_ty,
724         _,
725     ) = item.node
726     {
727         let mut result = String::with_capacity(128);
728
729         result.push_str(&format_visibility(&item.vis));
730         result.push_str(format_defaultness(defaultness));
731         result.push_str(format_unsafety(unsafety));
732         result.push_str("impl");
733
734         let lo = context.codemap.span_after(item.span, "impl");
735         let hi = match *trait_ref {
736             Some(ref tr) => tr.path.span.lo(),
737             None => self_ty.span.lo(),
738         };
739         let shape = generics_shape_from_config(
740             context.config,
741             Shape::indented(offset + last_line_width(&result), context.config),
742             0,
743         )?;
744         let one_line_budget = shape.width.checked_sub(last_line_width(&result) + 2)?;
745         let generics_str =
746             rewrite_generics_inner(context, generics, shape, one_line_budget, mk_sp(lo, hi))?;
747
748         let polarity_str = if polarity == ast::ImplPolarity::Negative {
749             "!"
750         } else {
751             ""
752         };
753
754         if let Some(ref trait_ref) = *trait_ref {
755             let result_len = result.len();
756             if let Some(trait_ref_str) = rewrite_trait_ref(
757                 context,
758                 trait_ref,
759                 offset,
760                 &generics_str,
761                 true,
762                 polarity_str,
763                 result_len,
764             ) {
765                 result.push_str(&trait_ref_str);
766             } else {
767                 let generics_str =
768                     rewrite_generics_inner(context, generics, shape, 0, mk_sp(lo, hi))?;
769                 result.push_str(&rewrite_trait_ref(
770                     context,
771                     trait_ref,
772                     offset,
773                     &generics_str,
774                     false,
775                     polarity_str,
776                     result_len,
777                 )?);
778             }
779         } else {
780             result.push_str(&generics_str);
781         }
782
783         // Try to put the self type in a single line.
784         // ` for`
785         let trait_ref_overhead = if trait_ref.is_some() { 4 } else { 0 };
786         let curly_brace_overhead = if generics.where_clause.predicates.is_empty() {
787             // If there is no where clause adapt budget for type formatting to take space and curly
788             // brace into account.
789             match context.config.brace_style() {
790                 BraceStyle::AlwaysNextLine => 0,
791                 _ => 2,
792             }
793         } else {
794             0
795         };
796         let used_space = last_line_width(&result) + trait_ref_overhead + curly_brace_overhead;
797         // 1 = space before the type.
798         let budget = context.budget(used_space + 1);
799         if let Some(self_ty_str) = self_ty.rewrite(context, Shape::legacy(budget, offset)) {
800             if !self_ty_str.contains('\n') {
801                 if trait_ref.is_some() {
802                     result.push_str(" for ");
803                 } else {
804                     result.push(' ');
805                 }
806                 result.push_str(&self_ty_str);
807                 return Some(result);
808             }
809         }
810
811         // Couldn't fit the self type on a single line, put it on a new line.
812         result.push('\n');
813         // Add indentation of one additional tab.
814         let new_line_offset = offset.block_indent(context.config);
815         result.push_str(&new_line_offset.to_string(context.config));
816         if trait_ref.is_some() {
817             result.push_str("for ");
818         }
819         let budget = context.budget(last_line_width(&result));
820         let type_offset = match context.config.indent_style() {
821             IndentStyle::Visual => new_line_offset + trait_ref_overhead,
822             IndentStyle::Block => new_line_offset,
823         };
824         result.push_str(&*self_ty.rewrite(context, Shape::legacy(budget, type_offset))?);
825         Some(result)
826     } else {
827         unreachable!();
828     }
829 }
830
831 fn rewrite_trait_ref(
832     context: &RewriteContext,
833     trait_ref: &ast::TraitRef,
834     offset: Indent,
835     generics_str: &str,
836     retry: bool,
837     polarity_str: &str,
838     result_len: usize,
839 ) -> Option<String> {
840     // 1 = space between generics and trait_ref
841     let used_space = 1 + polarity_str.len() + last_line_used_width(generics_str, result_len);
842     let shape = Shape::indented(offset + used_space, context.config);
843     if let Some(trait_ref_str) = trait_ref.rewrite(context, shape) {
844         if !(retry && trait_ref_str.contains('\n')) {
845             return Some(format!(
846                 "{} {}{}",
847                 generics_str,
848                 polarity_str,
849                 &trait_ref_str
850             ));
851         }
852     }
853     // We could not make enough space for trait_ref, so put it on new line.
854     if !retry {
855         let offset = offset.block_indent(context.config);
856         let shape = Shape::indented(offset, context.config);
857         let trait_ref_str = trait_ref.rewrite(context, shape)?;
858         Some(format!(
859             "{}\n{}{}{}",
860             generics_str,
861             &offset.to_string(context.config),
862             polarity_str,
863             &trait_ref_str
864         ))
865     } else {
866         None
867     }
868 }
869
870 pub struct StructParts<'a> {
871     prefix: &'a str,
872     ident: ast::Ident,
873     vis: &'a ast::Visibility,
874     def: &'a ast::VariantData,
875     generics: Option<&'a ast::Generics>,
876     span: Span,
877 }
878
879 impl<'a> StructParts<'a> {
880     fn format_header(&self) -> String {
881         format_header(self.prefix, self.ident, self.vis)
882     }
883
884     fn from_variant(variant: &'a ast::Variant) -> Self {
885         StructParts {
886             prefix: "",
887             ident: variant.node.name,
888             vis: &ast::Visibility::Inherited,
889             def: &variant.node.data,
890             generics: None,
891             span: variant.span,
892         }
893     }
894
895     pub fn from_item(item: &'a ast::Item) -> Self {
896         let (prefix, def, generics) = match item.node {
897             ast::ItemKind::Struct(ref def, ref generics) => ("struct ", def, generics),
898             ast::ItemKind::Union(ref def, ref generics) => ("union ", def, generics),
899             _ => unreachable!(),
900         };
901         StructParts {
902             prefix: prefix,
903             ident: item.ident,
904             vis: &item.vis,
905             def: def,
906             generics: Some(generics),
907             span: item.span,
908         }
909     }
910 }
911
912 fn format_struct(
913     context: &RewriteContext,
914     struct_parts: &StructParts,
915     offset: Indent,
916     one_line_width: Option<usize>,
917 ) -> Option<String> {
918     match *struct_parts.def {
919         ast::VariantData::Unit(..) => format_unit_struct(context, struct_parts, offset),
920         ast::VariantData::Tuple(ref fields, _) => {
921             format_tuple_struct(context, struct_parts, fields, offset)
922         }
923         ast::VariantData::Struct(ref fields, _) => {
924             format_struct_struct(context, struct_parts, fields, offset, one_line_width)
925         }
926     }
927 }
928
929 pub fn format_trait(context: &RewriteContext, item: &ast::Item, offset: Indent) -> Option<String> {
930     if let ast::ItemKind::Trait(_, unsafety, ref generics, ref type_param_bounds, ref trait_items) =
931         item.node
932     {
933         let mut result = String::with_capacity(128);
934         let header = format!(
935             "{}{}trait {}",
936             format_visibility(&item.vis),
937             format_unsafety(unsafety),
938             item.ident
939         );
940
941         result.push_str(&header);
942
943         let body_lo = context.codemap.span_after(item.span, "{");
944
945         let shape = Shape::indented(offset, context.config);
946         let generics_str =
947             rewrite_generics(context, generics, shape, mk_sp(item.span.lo(), body_lo))?;
948         result.push_str(&generics_str);
949
950         // FIXME(#2055): rustfmt fails to format when there are comments between trait bounds.
951         if !type_param_bounds.is_empty() {
952             let ident_hi = context.codemap.span_after(item.span, &format!("{}", item.ident));
953             let bound_hi = type_param_bounds.last().unwrap().span().hi();
954             let snippet = context.snippet(mk_sp(ident_hi, bound_hi));
955             if contains_comment(&snippet) {
956                 return None;
957             }
958         }
959         let trait_bound_str = rewrite_trait_bounds(
960             context,
961             type_param_bounds,
962             Shape::indented(offset, context.config),
963         )?;
964         // If the trait, generics, and trait bound cannot fit on the same line,
965         // put the trait bounds on an indented new line
966         if offset.width() + last_line_width(&result) + trait_bound_str.len()
967             > context.config.comment_width()
968         {
969             result.push('\n');
970             let trait_indent = offset.block_only().block_indent(context.config);
971             result.push_str(&trait_indent.to_string(context.config));
972         }
973         result.push_str(&trait_bound_str);
974
975         let where_density =
976             if context.config.indent_style() == IndentStyle::Block && result.is_empty() {
977                 Density::Compressed
978             } else {
979                 Density::Tall
980             };
981
982         let where_budget = context.budget(last_line_width(&result));
983         let pos_before_where = if type_param_bounds.is_empty() {
984             generics.where_clause.span.lo()
985         } else {
986             type_param_bounds[type_param_bounds.len() - 1].span().hi()
987         };
988         let option = WhereClauseOption::snuggled(&generics_str);
989         let where_clause_str = rewrite_where_clause(
990             context,
991             &generics.where_clause,
992             context.config.brace_style(),
993             Shape::legacy(where_budget, offset.block_only()),
994             where_density,
995             "{",
996             None,
997             pos_before_where,
998             option,
999             false,
1000         )?;
1001         // If the where clause cannot fit on the same line,
1002         // put the where clause on a new line
1003         if !where_clause_str.contains('\n')
1004             && last_line_width(&result) + where_clause_str.len() + offset.width()
1005                 > context.config.comment_width()
1006         {
1007             result.push('\n');
1008             let width = offset.block_indent + context.config.tab_spaces() - 1;
1009             let where_indent = Indent::new(0, width);
1010             result.push_str(&where_indent.to_string(context.config));
1011         }
1012         result.push_str(&where_clause_str);
1013
1014         if generics.where_clause.predicates.is_empty() {
1015             let item_snippet = context.snippet(item.span);
1016             if let Some(lo) = item_snippet.chars().position(|c| c == '/') {
1017                 // 1 = `{`
1018                 let comment_hi = body_lo - BytePos(1);
1019                 let comment_lo = item.span.lo() + BytePos(lo as u32);
1020                 if comment_lo < comment_hi {
1021                     match recover_missing_comment_in_span(
1022                         mk_sp(comment_lo, comment_hi),
1023                         Shape::indented(offset, context.config),
1024                         context,
1025                         last_line_width(&result),
1026                     ) {
1027                         Some(ref missing_comment) if !missing_comment.is_empty() => {
1028                             result.push_str(missing_comment);
1029                         }
1030                         _ => (),
1031                     }
1032                 }
1033             }
1034         }
1035
1036         match context.config.brace_style() {
1037             _ if last_line_contains_single_line_comment(&result) => {
1038                 result.push('\n');
1039                 result.push_str(&offset.to_string(context.config));
1040             }
1041             BraceStyle::AlwaysNextLine => {
1042                 result.push('\n');
1043                 result.push_str(&offset.to_string(context.config));
1044             }
1045             BraceStyle::PreferSameLine => result.push(' '),
1046             BraceStyle::SameLineWhere => {
1047                 if !where_clause_str.is_empty()
1048                     && (!trait_items.is_empty() || result.contains('\n'))
1049                 {
1050                     result.push('\n');
1051                     result.push_str(&offset.to_string(context.config));
1052                 } else {
1053                     result.push(' ');
1054                 }
1055             }
1056         }
1057         result.push('{');
1058
1059         let snippet = context.snippet(item.span);
1060         let open_pos = snippet.find_uncommented("{")? + 1;
1061
1062         if !trait_items.is_empty() || contains_comment(&snippet[open_pos..]) {
1063             let mut visitor = FmtVisitor::from_codemap(context.parse_session, context.config);
1064             visitor.block_indent = offset.block_only().block_indent(context.config);
1065             visitor.last_pos = item.span.lo() + BytePos(open_pos as u32);
1066
1067             for item in trait_items {
1068                 visitor.visit_trait_item(item);
1069             }
1070
1071             visitor.format_missing(item.span.hi() - BytePos(1));
1072
1073             let inner_indent_str = visitor.block_indent.to_string(context.config);
1074             let outer_indent_str = offset.block_only().to_string(context.config);
1075
1076             result.push('\n');
1077             result.push_str(&inner_indent_str);
1078             result.push_str(trim_newlines(visitor.buffer.to_string().trim()));
1079             result.push('\n');
1080             result.push_str(&outer_indent_str);
1081         } else if result.contains('\n') {
1082             result.push('\n');
1083         }
1084
1085         result.push('}');
1086         Some(result)
1087     } else {
1088         unreachable!();
1089     }
1090 }
1091
1092 fn format_unit_struct(context: &RewriteContext, p: &StructParts, offset: Indent) -> Option<String> {
1093     let header_str = format_header(p.prefix, p.ident, p.vis);
1094     let generics_str = if let Some(generics) = p.generics {
1095         let hi = if generics.where_clause.predicates.is_empty() {
1096             generics.span.hi()
1097         } else {
1098             generics.where_clause.span.hi()
1099         };
1100         format_generics(
1101             context,
1102             generics,
1103             context.config.brace_style(),
1104             BracePos::None,
1105             offset,
1106             mk_sp(generics.span.lo(), hi),
1107             last_line_width(&header_str),
1108         )?
1109     } else {
1110         String::new()
1111     };
1112     Some(format!("{}{};", header_str, generics_str))
1113 }
1114
1115 pub fn format_struct_struct(
1116     context: &RewriteContext,
1117     struct_parts: &StructParts,
1118     fields: &[ast::StructField],
1119     offset: Indent,
1120     one_line_width: Option<usize>,
1121 ) -> Option<String> {
1122     let mut result = String::with_capacity(1024);
1123     let span = struct_parts.span;
1124
1125     let header_str = struct_parts.format_header();
1126     result.push_str(&header_str);
1127
1128     let header_hi = span.lo() + BytePos(header_str.len() as u32);
1129     let body_lo = context.codemap.span_after(span, "{");
1130
1131     let generics_str = match struct_parts.generics {
1132         Some(g) => format_generics(
1133             context,
1134             g,
1135             context.config.brace_style(),
1136             if fields.is_empty() {
1137                 BracePos::ForceSameLine
1138             } else {
1139                 BracePos::Auto
1140             },
1141             offset,
1142             mk_sp(header_hi, body_lo),
1143             last_line_width(&result),
1144         )?,
1145         None => {
1146             // 3 = ` {}`, 2 = ` {`.
1147             let overhead = if fields.is_empty() { 3 } else { 2 };
1148             if (context.config.brace_style() == BraceStyle::AlwaysNextLine && !fields.is_empty())
1149                 || context.config.max_width() < overhead + result.len()
1150             {
1151                 format!("\n{}{{", offset.block_only().to_string(context.config))
1152             } else {
1153                 " {".to_owned()
1154             }
1155         }
1156     };
1157     // 1 = `}`
1158     let overhead = if fields.is_empty() { 1 } else { 0 };
1159     let total_width = result.len() + generics_str.len() + overhead;
1160     if !generics_str.is_empty() && !generics_str.contains('\n')
1161         && total_width > context.config.max_width()
1162     {
1163         result.push('\n');
1164         result.push_str(&offset.to_string(context.config));
1165         result.push_str(generics_str.trim_left());
1166     } else {
1167         result.push_str(&generics_str);
1168     }
1169
1170     if fields.is_empty() {
1171         let snippet = context.snippet(mk_sp(body_lo, span.hi() - BytePos(1)));
1172         if snippet.trim().is_empty() {
1173             // `struct S {}`
1174         } else if snippet.trim_right_matches(&[' ', '\t'][..]).ends_with('\n') {
1175             // fix indent
1176             result.push_str(snippet.trim_right());
1177             result.push('\n');
1178             result.push_str(&offset.to_string(context.config));
1179         } else {
1180             result.push_str(&snippet);
1181         }
1182         result.push('}');
1183         return Some(result);
1184     }
1185
1186     // 3 = ` ` and ` }`
1187     let one_line_budget = context.budget(result.len() + 3 + offset.width());
1188     let one_line_budget =
1189         one_line_width.map_or(0, |one_line_width| min(one_line_width, one_line_budget));
1190
1191     let items_str = rewrite_with_alignment(
1192         fields,
1193         context,
1194         Shape::indented(offset, context.config).sub_width(1)?,
1195         mk_sp(body_lo, span.hi()),
1196         one_line_budget,
1197     )?;
1198
1199     if !items_str.contains('\n') && !result.contains('\n') && items_str.len() <= one_line_budget {
1200         Some(format!("{} {} }}", result, items_str))
1201     } else {
1202         Some(format!(
1203             "{}\n{}{}\n{}}}",
1204             result,
1205             offset
1206                 .block_indent(context.config)
1207                 .to_string(context.config),
1208             items_str,
1209             offset.to_string(context.config)
1210         ))
1211     }
1212 }
1213
1214 /// Returns a bytepos that is after that of `(` in `pub(..)`. If the given visibility does not
1215 /// contain `pub(..)`, then return the `lo` of the `defualt_span`. Yeah, but for what? Well, we need
1216 /// to bypass the `(` in the visibility when creating a span of tuple's body or fn's args.
1217 fn get_bytepos_after_visibility(
1218     context: &RewriteContext,
1219     vis: &ast::Visibility,
1220     default_span: Span,
1221     terminator: &str,
1222 ) -> BytePos {
1223     match *vis {
1224         ast::Visibility::Crate(s, CrateSugar::PubCrate) => context
1225             .codemap
1226             .span_after(mk_sp(s.hi(), default_span.hi()), terminator),
1227         ast::Visibility::Crate(s, CrateSugar::JustCrate) => s.hi(),
1228         ast::Visibility::Restricted { ref path, .. } => path.span.hi(),
1229         _ => default_span.lo(),
1230     }
1231 }
1232
1233 fn format_tuple_struct(
1234     context: &RewriteContext,
1235     struct_parts: &StructParts,
1236     fields: &[ast::StructField],
1237     offset: Indent,
1238 ) -> Option<String> {
1239     let mut result = String::with_capacity(1024);
1240     let span = struct_parts.span;
1241
1242     let header_str = struct_parts.format_header();
1243     result.push_str(&header_str);
1244
1245     let body_lo = if fields.is_empty() {
1246         let lo = get_bytepos_after_visibility(context, struct_parts.vis, span, ")");
1247         context.codemap.span_after(mk_sp(lo, span.hi()), "(")
1248     } else {
1249         fields[0].span.lo()
1250     };
1251     let body_hi = if fields.is_empty() {
1252         context.codemap.span_after(mk_sp(body_lo, span.hi()), ")")
1253     } else {
1254         // This is a dirty hack to work around a missing `)` from the span of the last field.
1255         let last_arg_span = fields[fields.len() - 1].span;
1256         if context.snippet(last_arg_span).ends_with(')') {
1257             last_arg_span.hi()
1258         } else {
1259             context
1260                 .codemap
1261                 .span_after(mk_sp(last_arg_span.hi(), span.hi()), ")")
1262         }
1263     };
1264
1265     let where_clause_str = match struct_parts.generics {
1266         Some(generics) => {
1267             let budget = context.budget(last_line_width(&header_str));
1268             let shape = Shape::legacy(budget, offset);
1269             let g_span = mk_sp(span.lo(), body_lo);
1270             let generics_str = rewrite_generics(context, generics, shape, g_span)?;
1271             result.push_str(&generics_str);
1272
1273             let where_budget = context.budget(last_line_width(&result));
1274             let option = WhereClauseOption::new(true, false);
1275             rewrite_where_clause(
1276                 context,
1277                 &generics.where_clause,
1278                 context.config.brace_style(),
1279                 Shape::legacy(where_budget, offset.block_only()),
1280                 Density::Compressed,
1281                 ";",
1282                 None,
1283                 body_hi,
1284                 option,
1285                 false,
1286             )?
1287         }
1288         None => "".to_owned(),
1289     };
1290
1291     if fields.is_empty() {
1292         // 3 = `();`
1293         let used_width = last_line_used_width(&result, offset.width()) + 3;
1294         if used_width > context.config.max_width() {
1295             result.push('\n');
1296             result.push_str(&offset
1297                 .block_indent(context.config)
1298                 .to_string(context.config))
1299         }
1300         result.push('(');
1301         let snippet = context.snippet(mk_sp(
1302             body_lo,
1303             context.codemap.span_before(mk_sp(body_lo, span.hi()), ")"),
1304         ));
1305         if snippet.is_empty() {
1306             // `struct S ()`
1307         } else if snippet.trim_right_matches(&[' ', '\t'][..]).ends_with('\n') {
1308             result.push_str(snippet.trim_right());
1309             result.push('\n');
1310             result.push_str(&offset.to_string(context.config));
1311         } else {
1312             result.push_str(&snippet);
1313         }
1314         result.push(')');
1315     } else {
1316         let shape = Shape::indented(offset, context.config).sub_width(1)?;
1317         let fields = &fields.iter().collect::<Vec<_>>()[..];
1318         let one_line_width = context.config.width_heuristics().fn_call_width;
1319         result = rewrite_call_inner(context, &result, fields, span, shape, one_line_width, false)?;
1320     }
1321
1322     if !where_clause_str.is_empty() && !where_clause_str.contains('\n')
1323         && (result.contains('\n')
1324             || offset.block_indent + result.len() + where_clause_str.len() + 1
1325                 > context.config.max_width())
1326     {
1327         // We need to put the where clause on a new line, but we didn't
1328         // know that earlier, so the where clause will not be indented properly.
1329         result.push('\n');
1330         result.push_str(&(offset.block_only() + (context.config.tab_spaces() - 1))
1331             .to_string(context.config));
1332     }
1333     result.push_str(&where_clause_str);
1334
1335     Some(result)
1336 }
1337
1338 pub fn rewrite_type_alias(
1339     context: &RewriteContext,
1340     indent: Indent,
1341     ident: ast::Ident,
1342     ty: &ast::Ty,
1343     generics: &ast::Generics,
1344     vis: &ast::Visibility,
1345     span: Span,
1346 ) -> Option<String> {
1347     let mut result = String::with_capacity(128);
1348
1349     result.push_str(&format_visibility(vis));
1350     result.push_str("type ");
1351     result.push_str(&ident.to_string());
1352
1353     // 2 = `= `
1354     let shape = Shape::indented(indent + result.len(), context.config).sub_width(2)?;
1355     let g_span = mk_sp(context.codemap.span_after(span, "type"), ty.span.lo());
1356     let generics_str = rewrite_generics(context, generics, shape, g_span)?;
1357     result.push_str(&generics_str);
1358
1359     let where_budget = context.budget(last_line_width(&result));
1360     let option = WhereClauseOption::snuggled(&result);
1361     let where_clause_str = rewrite_where_clause(
1362         context,
1363         &generics.where_clause,
1364         context.config.brace_style(),
1365         Shape::legacy(where_budget, indent),
1366         Density::Vertical,
1367         "=",
1368         Some(span.hi()),
1369         generics.span.hi(),
1370         option,
1371         false,
1372     )?;
1373     result.push_str(&where_clause_str);
1374     if where_clause_str.is_empty() {
1375         result.push_str(" = ");
1376     } else {
1377         result.push_str(&format!("\n{}= ", indent.to_string(context.config)));
1378     }
1379
1380     let line_width = last_line_width(&result);
1381     // This checked_sub may fail as the extra space after '=' is not taken into account
1382     // In that case the budget is set to 0 which will make ty.rewrite retry on a new line
1383     let budget = context.budget(indent.width() + line_width + ";".len());
1384     let type_indent = indent + line_width;
1385     // Try to fit the type on the same line
1386     let ty_str = ty.rewrite(context, Shape::legacy(budget, type_indent))
1387         .or_else(|| {
1388             // The line was too short, try to put the type on the next line
1389
1390             // Remove the space after '='
1391             result.pop();
1392             let type_indent = indent.block_indent(context.config);
1393             result.push('\n');
1394             result.push_str(&type_indent.to_string(context.config));
1395             let budget = context.budget(type_indent.width() + ";".len());
1396             ty.rewrite(context, Shape::legacy(budget, type_indent))
1397         })?;
1398     result.push_str(&ty_str);
1399     result.push_str(";");
1400     Some(result)
1401 }
1402
1403 fn type_annotation_spacing(config: &Config) -> (&str, &str) {
1404     (
1405         if config.space_before_colon() { " " } else { "" },
1406         if config.space_after_colon() { " " } else { "" },
1407     )
1408 }
1409
1410 pub fn rewrite_struct_field_prefix(
1411     context: &RewriteContext,
1412     field: &ast::StructField,
1413 ) -> Option<String> {
1414     let vis = format_visibility(&field.vis);
1415     let type_annotation_spacing = type_annotation_spacing(context.config);
1416     Some(match field.ident {
1417         Some(name) => format!("{}{}{}:", vis, name, type_annotation_spacing.0),
1418         None => format!("{}", vis),
1419     })
1420 }
1421
1422 impl Rewrite for ast::StructField {
1423     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
1424         rewrite_struct_field(context, self, shape, 0)
1425     }
1426 }
1427
1428 pub fn rewrite_struct_field(
1429     context: &RewriteContext,
1430     field: &ast::StructField,
1431     shape: Shape,
1432     lhs_max_width: usize,
1433 ) -> Option<String> {
1434     if contains_skip(&field.attrs) {
1435         return Some(context.snippet(mk_sp(field.attrs[0].span.lo(), field.span.hi())));
1436     }
1437
1438     let type_annotation_spacing = type_annotation_spacing(context.config);
1439     let prefix = rewrite_struct_field_prefix(context, field)?;
1440
1441     let attrs_str = field.attrs.rewrite(context, shape)?;
1442     let attrs_extendable = attrs_str.is_empty()
1443         || (context.config.same_line_attributes() && is_attributes_extendable(&attrs_str));
1444     let missing_span = if field.attrs.is_empty() {
1445         mk_sp(field.span.lo(), field.span.lo())
1446     } else {
1447         mk_sp(field.attrs.last().unwrap().span.hi(), field.span.lo())
1448     };
1449     let mut spacing = String::from(if field.ident.is_some() {
1450         type_annotation_spacing.1
1451     } else {
1452         ""
1453     });
1454     // Try to put everything on a single line.
1455     let attr_prefix = combine_strs_with_missing_comments(
1456         context,
1457         &attrs_str,
1458         &prefix,
1459         missing_span,
1460         shape,
1461         attrs_extendable,
1462     )?;
1463     let overhead = last_line_width(&attr_prefix);
1464     let lhs_offset = lhs_max_width.checked_sub(overhead).unwrap_or(0);
1465     for _ in 0..lhs_offset {
1466         spacing.push(' ');
1467     }
1468     // In this extreme case we will be missing a space betweeen an attribute and a field.
1469     if prefix.is_empty() && !attrs_str.is_empty() && attrs_extendable && spacing.is_empty() {
1470         spacing.push(' ');
1471     }
1472     let ty_shape = shape.offset_left(overhead + spacing.len())?;
1473     let mut orig_ty = field.ty.rewrite(context, ty_shape);
1474     if let Some(ref ty) = orig_ty {
1475         if !ty.contains('\n') {
1476             return Some(attr_prefix + &spacing + ty);
1477         }
1478     }
1479
1480     // We must use multiline. We are going to put attributes and a field on different lines.
1481     // 1 = " "
1482     let rhs_shape = shape.offset_left(last_line_width(&prefix) + 1)?;
1483     orig_ty = field.ty.rewrite(context, rhs_shape);
1484     let field_str = if prefix.is_empty() {
1485         orig_ty?
1486     } else {
1487         prefix + &choose_rhs(context, &*field.ty, rhs_shape, orig_ty)?
1488     };
1489     combine_strs_with_missing_comments(context, &attrs_str, &field_str, missing_span, shape, false)
1490 }
1491
1492 pub struct StaticParts<'a> {
1493     prefix: &'a str,
1494     vis: &'a ast::Visibility,
1495     ident: ast::Ident,
1496     ty: &'a ast::Ty,
1497     mutability: ast::Mutability,
1498     expr_opt: Option<&'a ptr::P<ast::Expr>>,
1499     defaultness: Option<ast::Defaultness>,
1500     span: Span,
1501 }
1502
1503 impl<'a> StaticParts<'a> {
1504     pub fn from_item(item: &'a ast::Item) -> Self {
1505         let (prefix, ty, mutability, expr) = match item.node {
1506             ast::ItemKind::Static(ref ty, mutability, ref expr) => ("static", ty, mutability, expr),
1507             ast::ItemKind::Const(ref ty, ref expr) => {
1508                 ("const", ty, ast::Mutability::Immutable, expr)
1509             }
1510             _ => unreachable!(),
1511         };
1512         StaticParts {
1513             prefix: prefix,
1514             vis: &item.vis,
1515             ident: item.ident,
1516             ty: ty,
1517             mutability: mutability,
1518             expr_opt: Some(expr),
1519             defaultness: None,
1520             span: item.span,
1521         }
1522     }
1523
1524     pub fn from_trait_item(ti: &'a ast::TraitItem) -> Self {
1525         let (ty, expr_opt) = match ti.node {
1526             ast::TraitItemKind::Const(ref ty, ref expr_opt) => (ty, expr_opt),
1527             _ => unreachable!(),
1528         };
1529         StaticParts {
1530             prefix: "const",
1531             vis: &ast::Visibility::Inherited,
1532             ident: ti.ident,
1533             ty: ty,
1534             mutability: ast::Mutability::Immutable,
1535             expr_opt: expr_opt.as_ref(),
1536             defaultness: None,
1537             span: ti.span,
1538         }
1539     }
1540
1541     pub fn from_impl_item(ii: &'a ast::ImplItem) -> Self {
1542         let (ty, expr) = match ii.node {
1543             ast::ImplItemKind::Const(ref ty, ref expr) => (ty, expr),
1544             _ => unreachable!(),
1545         };
1546         StaticParts {
1547             prefix: "const",
1548             vis: &ii.vis,
1549             ident: ii.ident,
1550             ty: ty,
1551             mutability: ast::Mutability::Immutable,
1552             expr_opt: Some(expr),
1553             defaultness: Some(ii.defaultness),
1554             span: ii.span,
1555         }
1556     }
1557 }
1558
1559 fn rewrite_static(
1560     context: &RewriteContext,
1561     static_parts: &StaticParts,
1562     offset: Indent,
1563 ) -> Option<String> {
1564     let colon = colon_spaces(
1565         context.config.space_before_colon(),
1566         context.config.space_after_colon(),
1567     );
1568     let prefix = format!(
1569         "{}{}{} {}{}{}",
1570         format_visibility(static_parts.vis),
1571         static_parts.defaultness.map_or("", format_defaultness),
1572         static_parts.prefix,
1573         format_mutability(static_parts.mutability),
1574         static_parts.ident,
1575         colon,
1576     );
1577     // 2 = " =".len()
1578     let ty_shape =
1579         Shape::indented(offset.block_only(), context.config).offset_left(prefix.len() + 2)?;
1580     let ty_str = static_parts.ty.rewrite(context, ty_shape)?;
1581
1582     if let Some(expr) = static_parts.expr_opt {
1583         let lhs = format!("{}{} =", prefix, ty_str);
1584         // 1 = ;
1585         let remaining_width = context.budget(offset.block_indent + 1);
1586         rewrite_assign_rhs(
1587             context,
1588             lhs,
1589             &**expr,
1590             Shape::legacy(remaining_width, offset.block_only()),
1591         ).and_then(|res| recover_comment_removed(res, static_parts.span, context))
1592             .map(|s| if s.ends_with(';') { s } else { s + ";" })
1593     } else {
1594         Some(format!("{}{};", prefix, ty_str))
1595     }
1596 }
1597
1598 pub fn rewrite_associated_type(
1599     ident: ast::Ident,
1600     ty_opt: Option<&ptr::P<ast::Ty>>,
1601     ty_param_bounds_opt: Option<&ast::TyParamBounds>,
1602     context: &RewriteContext,
1603     indent: Indent,
1604 ) -> Option<String> {
1605     let prefix = format!("type {}", ident);
1606
1607     let type_bounds_str = if let Some(bounds) = ty_param_bounds_opt {
1608         // 2 = ": ".len()
1609         let shape = Shape::indented(indent, context.config).offset_left(prefix.len() + 2)?;
1610         let bound_str = bounds
1611             .iter()
1612             .map(|ty_bound| ty_bound.rewrite(context, shape))
1613             .collect::<Option<Vec<_>>>()?;
1614         if !bounds.is_empty() {
1615             format!(": {}", join_bounds(context, shape, &bound_str))
1616         } else {
1617             String::new()
1618         }
1619     } else {
1620         String::new()
1621     };
1622
1623     if let Some(ty) = ty_opt {
1624         // 1 = `;`
1625         let shape = Shape::indented(indent, context.config).sub_width(1)?;
1626         let lhs = format!("{}{} =", prefix, type_bounds_str);
1627         rewrite_assign_rhs(context, lhs, &**ty, shape).map(|s| s + ";")
1628     } else {
1629         Some(format!("{}{};", prefix, type_bounds_str))
1630     }
1631 }
1632
1633 pub fn rewrite_associated_impl_type(
1634     ident: ast::Ident,
1635     defaultness: ast::Defaultness,
1636     ty_opt: Option<&ptr::P<ast::Ty>>,
1637     ty_param_bounds_opt: Option<&ast::TyParamBounds>,
1638     context: &RewriteContext,
1639     indent: Indent,
1640 ) -> Option<String> {
1641     let result = rewrite_associated_type(ident, ty_opt, ty_param_bounds_opt, context, indent)?;
1642
1643     match defaultness {
1644         ast::Defaultness::Default => Some(format!("default {}", result)),
1645         _ => Some(result),
1646     }
1647 }
1648
1649 impl Rewrite for ast::FunctionRetTy {
1650     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
1651         match *self {
1652             ast::FunctionRetTy::Default(_) => Some(String::new()),
1653             ast::FunctionRetTy::Ty(ref ty) => {
1654                 let inner_width = shape.width.checked_sub(3)?;
1655                 ty.rewrite(context, Shape::legacy(inner_width, shape.indent + 3))
1656                     .map(|r| format!("-> {}", r))
1657             }
1658         }
1659     }
1660 }
1661
1662 fn is_empty_infer(context: &RewriteContext, ty: &ast::Ty) -> bool {
1663     match ty.node {
1664         ast::TyKind::Infer => {
1665             let original = context.snippet(ty.span);
1666             original != "_"
1667         }
1668         _ => false,
1669     }
1670 }
1671
1672 impl Rewrite for ast::Arg {
1673     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
1674         if is_named_arg(self) {
1675             let mut result = self.pat
1676                 .rewrite(context, Shape::legacy(shape.width, shape.indent))?;
1677
1678             if !is_empty_infer(context, &*self.ty) {
1679                 if context.config.space_before_colon() {
1680                     result.push_str(" ");
1681                 }
1682                 result.push_str(":");
1683                 if context.config.space_after_colon() {
1684                     result.push_str(" ");
1685                 }
1686                 let overhead = last_line_width(&result);
1687                 let max_width = shape.width.checked_sub(overhead)?;
1688                 let ty_str = self.ty
1689                     .rewrite(context, Shape::legacy(max_width, shape.indent))?;
1690                 result.push_str(&ty_str);
1691             }
1692
1693             Some(result)
1694         } else {
1695             self.ty.rewrite(context, shape)
1696         }
1697     }
1698 }
1699
1700 fn rewrite_explicit_self(
1701     explicit_self: &ast::ExplicitSelf,
1702     args: &[ast::Arg],
1703     context: &RewriteContext,
1704 ) -> Option<String> {
1705     match explicit_self.node {
1706         ast::SelfKind::Region(lt, m) => {
1707             let mut_str = format_mutability(m);
1708             match lt {
1709                 Some(ref l) => {
1710                     let lifetime_str = l.rewrite(
1711                         context,
1712                         Shape::legacy(context.config.max_width(), Indent::empty()),
1713                     )?;
1714                     Some(format!("&{} {}self", lifetime_str, mut_str))
1715                 }
1716                 None => Some(format!("&{}self", mut_str)),
1717             }
1718         }
1719         ast::SelfKind::Explicit(ref ty, _) => {
1720             assert!(!args.is_empty(), "&[ast::Arg] shouldn't be empty.");
1721
1722             let mutability = explicit_self_mutability(&args[0]);
1723             let type_str = ty.rewrite(
1724                 context,
1725                 Shape::legacy(context.config.max_width(), Indent::empty()),
1726             )?;
1727
1728             Some(format!(
1729                 "{}self: {}",
1730                 format_mutability(mutability),
1731                 type_str
1732             ))
1733         }
1734         ast::SelfKind::Value(_) => {
1735             assert!(!args.is_empty(), "&[ast::Arg] shouldn't be empty.");
1736
1737             let mutability = explicit_self_mutability(&args[0]);
1738
1739             Some(format!("{}self", format_mutability(mutability)))
1740         }
1741     }
1742 }
1743
1744 // Hacky solution caused by absence of `Mutability` in `SelfValue` and
1745 // `SelfExplicit` variants of `ast::ExplicitSelf_`.
1746 fn explicit_self_mutability(arg: &ast::Arg) -> ast::Mutability {
1747     if let ast::PatKind::Ident(ast::BindingMode::ByValue(mutability), _, _) = arg.pat.node {
1748         mutability
1749     } else {
1750         unreachable!()
1751     }
1752 }
1753
1754 pub fn span_lo_for_arg(arg: &ast::Arg) -> BytePos {
1755     if is_named_arg(arg) {
1756         arg.pat.span.lo()
1757     } else {
1758         arg.ty.span.lo()
1759     }
1760 }
1761
1762 pub fn span_hi_for_arg(context: &RewriteContext, arg: &ast::Arg) -> BytePos {
1763     match arg.ty.node {
1764         ast::TyKind::Infer if context.snippet(arg.ty.span) == "_" => arg.ty.span.hi(),
1765         ast::TyKind::Infer if is_named_arg(arg) => arg.pat.span.hi(),
1766         _ => arg.ty.span.hi(),
1767     }
1768 }
1769
1770 pub fn is_named_arg(arg: &ast::Arg) -> bool {
1771     if let ast::PatKind::Ident(_, ident, _) = arg.pat.node {
1772         ident.node != symbol::keywords::Invalid.ident()
1773     } else {
1774         true
1775     }
1776 }
1777
1778 // Return type is (result, force_new_line_for_brace)
1779 fn rewrite_fn_base(
1780     context: &RewriteContext,
1781     indent: Indent,
1782     ident: ast::Ident,
1783     fn_sig: &FnSig,
1784     span: Span,
1785     newline_brace: bool,
1786     has_body: bool,
1787 ) -> Option<(String, bool)> {
1788     let mut force_new_line_for_brace = false;
1789
1790     let where_clause = &fn_sig.generics.where_clause;
1791
1792     let mut result = String::with_capacity(1024);
1793     result.push_str(&fn_sig.to_str(context));
1794
1795     // fn foo
1796     result.push_str("fn ");
1797     result.push_str(&ident.to_string());
1798
1799     // Generics.
1800     let overhead = if has_body && !newline_brace {
1801         // 4 = `() {`
1802         4
1803     } else {
1804         // 2 = `()`
1805         2
1806     };
1807     let used_width = last_line_used_width(&result, indent.width());
1808     let one_line_budget = context.budget(used_width + overhead);
1809     let shape = Shape {
1810         width: one_line_budget,
1811         indent: indent,
1812         offset: used_width,
1813     };
1814     let fd = fn_sig.decl;
1815     let g_span = mk_sp(span.lo(), fd.output.span().lo());
1816     let generics_str = rewrite_generics(context, fn_sig.generics, shape, g_span)?;
1817     result.push_str(&generics_str);
1818
1819     let snuggle_angle_bracket = generics_str
1820         .lines()
1821         .last()
1822         .map_or(false, |l| l.trim_left().len() == 1);
1823
1824     // Note that the width and indent don't really matter, we'll re-layout the
1825     // return type later anyway.
1826     let ret_str = fd.output
1827         .rewrite(context, Shape::indented(indent, context.config))?;
1828
1829     let multi_line_ret_str = ret_str.contains('\n');
1830     let ret_str_len = if multi_line_ret_str { 0 } else { ret_str.len() };
1831
1832     // Args.
1833     let (one_line_budget, multi_line_budget, mut arg_indent) = compute_budgets_for_args(
1834         context,
1835         &result,
1836         indent,
1837         ret_str_len,
1838         newline_brace,
1839         has_body,
1840         multi_line_ret_str,
1841     )?;
1842
1843     debug!(
1844         "rewrite_fn_base: one_line_budget: {}, multi_line_budget: {}, arg_indent: {:?}",
1845         one_line_budget,
1846         multi_line_budget,
1847         arg_indent
1848     );
1849
1850     // Check if vertical layout was forced.
1851     if one_line_budget == 0 {
1852         if snuggle_angle_bracket {
1853             result.push('(');
1854         } else {
1855             result.push_str("(");
1856             if context.config.indent_style() == IndentStyle::Visual {
1857                 result.push('\n');
1858                 result.push_str(&arg_indent.to_string(context.config));
1859             }
1860         }
1861     } else {
1862         result.push('(');
1863     }
1864     if context.config.spaces_within_parens_and_brackets() && !fd.inputs.is_empty()
1865         && result.ends_with('(')
1866     {
1867         result.push(' ')
1868     }
1869
1870     // Skip `pub(crate)`.
1871     let lo_after_visibility = get_bytepos_after_visibility(context, &fn_sig.visibility, span, ")");
1872     // A conservative estimation, to goal is to be over all parens in generics
1873     let args_start = fn_sig
1874         .generics
1875         .ty_params
1876         .last()
1877         .map_or(lo_after_visibility, |tp| end_typaram(tp));
1878     let args_end = if fd.inputs.is_empty() {
1879         context
1880             .codemap
1881             .span_after(mk_sp(args_start, span.hi()), ")")
1882     } else {
1883         let last_span = mk_sp(fd.inputs[fd.inputs.len() - 1].span().hi(), span.hi());
1884         context.codemap.span_after(last_span, ")")
1885     };
1886     let args_span = mk_sp(
1887         context
1888             .codemap
1889             .span_after(mk_sp(args_start, span.hi()), "("),
1890         args_end,
1891     );
1892     let arg_str = rewrite_args(
1893         context,
1894         &fd.inputs,
1895         fd.get_self().as_ref(),
1896         one_line_budget,
1897         multi_line_budget,
1898         indent,
1899         arg_indent,
1900         args_span,
1901         fd.variadic,
1902         generics_str.contains('\n'),
1903     )?;
1904
1905     let put_args_in_block = match context.config.indent_style() {
1906         IndentStyle::Block => arg_str.contains('\n') || arg_str.len() > one_line_budget,
1907         _ => false,
1908     } && !fd.inputs.is_empty();
1909
1910     let mut args_last_line_contains_comment = false;
1911     if put_args_in_block {
1912         arg_indent = indent.block_indent(context.config);
1913         result.push('\n');
1914         result.push_str(&arg_indent.to_string(context.config));
1915         result.push_str(&arg_str);
1916         result.push('\n');
1917         result.push_str(&indent.to_string(context.config));
1918         result.push(')');
1919     } else {
1920         result.push_str(&arg_str);
1921         let used_width = last_line_used_width(&result, indent.width()) + first_line_width(&ret_str);
1922         // Put the closing brace on the next line if it overflows the max width.
1923         // 1 = `)`
1924         if fd.inputs.is_empty() && used_width + 1 > context.config.max_width() {
1925             result.push('\n');
1926         }
1927         if context.config.spaces_within_parens_and_brackets() && !fd.inputs.is_empty() {
1928             result.push(' ')
1929         }
1930         // If the last line of args contains comment, we cannot put the closing paren
1931         // on the same line.
1932         if arg_str
1933             .lines()
1934             .last()
1935             .map_or(false, |last_line| last_line.contains("//"))
1936         {
1937             args_last_line_contains_comment = true;
1938             result.push('\n');
1939             result.push_str(&arg_indent.to_string(context.config));
1940         }
1941         result.push(')');
1942     }
1943
1944     // Return type.
1945     if let ast::FunctionRetTy::Ty(..) = fd.output {
1946         let ret_should_indent = match context.config.indent_style() {
1947             // If our args are block layout then we surely must have space.
1948             IndentStyle::Block if put_args_in_block || fd.inputs.is_empty() => false,
1949             _ if args_last_line_contains_comment => false,
1950             _ if result.contains('\n') || multi_line_ret_str => true,
1951             _ => {
1952                 // If the return type would push over the max width, then put the return type on
1953                 // a new line. With the +1 for the signature length an additional space between
1954                 // the closing parenthesis of the argument and the arrow '->' is considered.
1955                 let mut sig_length = result.len() + indent.width() + ret_str_len + 1;
1956
1957                 // If there is no where clause, take into account the space after the return type
1958                 // and the brace.
1959                 if where_clause.predicates.is_empty() {
1960                     sig_length += 2;
1961                 }
1962
1963                 sig_length > context.config.max_width()
1964             }
1965         };
1966         let ret_indent = if ret_should_indent {
1967             let indent = if arg_str.is_empty() {
1968                 // Aligning with non-existent args looks silly.
1969                 force_new_line_for_brace = true;
1970                 indent + 4
1971             } else {
1972                 // FIXME: we might want to check that using the arg indent
1973                 // doesn't blow our budget, and if it does, then fallback to
1974                 // the where clause indent.
1975                 arg_indent
1976             };
1977
1978             result.push('\n');
1979             result.push_str(&indent.to_string(context.config));
1980             indent
1981         } else {
1982             result.push(' ');
1983             Indent::new(indent.block_indent, last_line_width(&result))
1984         };
1985
1986         if multi_line_ret_str || ret_should_indent {
1987             // Now that we know the proper indent and width, we need to
1988             // re-layout the return type.
1989             let ret_str = fd.output
1990                 .rewrite(context, Shape::indented(ret_indent, context.config))?;
1991             result.push_str(&ret_str);
1992         } else {
1993             result.push_str(&ret_str);
1994         }
1995
1996         // Comment between return type and the end of the decl.
1997         let snippet_lo = fd.output.span().hi();
1998         if where_clause.predicates.is_empty() {
1999             let snippet_hi = span.hi();
2000             let snippet = context.snippet(mk_sp(snippet_lo, snippet_hi));
2001             // Try to preserve the layout of the original snippet.
2002             let original_starts_with_newline = snippet
2003                 .find(|c| c != ' ')
2004                 .map_or(false, |i| starts_with_newline(&snippet[i..]));
2005             let original_ends_with_newline = snippet
2006                 .rfind(|c| c != ' ')
2007                 .map_or(false, |i| snippet[i..].ends_with('\n'));
2008             let snippet = snippet.trim();
2009             if !snippet.is_empty() {
2010                 result.push(if original_starts_with_newline {
2011                     '\n'
2012                 } else {
2013                     ' '
2014                 });
2015                 result.push_str(snippet);
2016                 if original_ends_with_newline {
2017                     force_new_line_for_brace = true;
2018                 }
2019             }
2020         }
2021     }
2022
2023     let pos_before_where = match fd.output {
2024         ast::FunctionRetTy::Default(..) => args_span.hi(),
2025         ast::FunctionRetTy::Ty(ref ty) => ty.span.hi(),
2026     };
2027
2028     let is_args_multi_lined = arg_str.contains('\n');
2029
2030     let option = WhereClauseOption::new(!has_body, put_args_in_block && ret_str.is_empty());
2031     let where_clause_str = rewrite_where_clause(
2032         context,
2033         where_clause,
2034         context.config.brace_style(),
2035         Shape::indented(indent, context.config),
2036         Density::Tall,
2037         "{",
2038         Some(span.hi()),
2039         pos_before_where,
2040         option,
2041         is_args_multi_lined,
2042     )?;
2043     // If there are neither where clause nor return type, we may be missing comments between
2044     // args and `{`.
2045     if where_clause_str.is_empty() {
2046         if let ast::FunctionRetTy::Default(ret_span) = fd.output {
2047             match recover_missing_comment_in_span(
2048                 mk_sp(args_span.hi(), ret_span.hi()),
2049                 shape,
2050                 context,
2051                 last_line_width(&result),
2052             ) {
2053                 Some(ref missing_comment) if !missing_comment.is_empty() => {
2054                     result.push_str(missing_comment);
2055                     force_new_line_for_brace = true;
2056                 }
2057                 _ => (),
2058             }
2059         }
2060     }
2061
2062     result.push_str(&where_clause_str);
2063
2064     force_new_line_for_brace |= last_line_contains_single_line_comment(&result);
2065     force_new_line_for_brace |= is_args_multi_lined && context.config.where_single_line();
2066     Some((result, force_new_line_for_brace))
2067 }
2068
2069 #[derive(Copy, Clone)]
2070 struct WhereClauseOption {
2071     suppress_comma: bool, // Force no trailing comma
2072     snuggle: bool,        // Do not insert newline before `where`
2073     compress_where: bool, // Try single line where clause instead of vertical layout
2074 }
2075
2076 impl WhereClauseOption {
2077     pub fn new(suppress_comma: bool, snuggle: bool) -> WhereClauseOption {
2078         WhereClauseOption {
2079             suppress_comma: suppress_comma,
2080             snuggle: snuggle,
2081             compress_where: false,
2082         }
2083     }
2084
2085     pub fn snuggled(current: &str) -> WhereClauseOption {
2086         WhereClauseOption {
2087             suppress_comma: false,
2088             snuggle: trimmed_last_line_width(current) == 1,
2089             compress_where: false,
2090         }
2091     }
2092 }
2093
2094 fn rewrite_args(
2095     context: &RewriteContext,
2096     args: &[ast::Arg],
2097     explicit_self: Option<&ast::ExplicitSelf>,
2098     one_line_budget: usize,
2099     multi_line_budget: usize,
2100     indent: Indent,
2101     arg_indent: Indent,
2102     span: Span,
2103     variadic: bool,
2104     generics_str_contains_newline: bool,
2105 ) -> Option<String> {
2106     let mut arg_item_strs = args.iter()
2107         .map(|arg| arg.rewrite(context, Shape::legacy(multi_line_budget, arg_indent)))
2108         .collect::<Option<Vec<_>>>()?;
2109
2110     // Account for sugary self.
2111     // FIXME: the comment for the self argument is dropped. This is blocked
2112     // on rust issue #27522.
2113     let min_args = explicit_self
2114         .and_then(|explicit_self| rewrite_explicit_self(explicit_self, args, context))
2115         .map_or(1, |self_str| {
2116             arg_item_strs[0] = self_str;
2117             2
2118         });
2119
2120     // Comments between args.
2121     let mut arg_items = Vec::new();
2122     if min_args == 2 {
2123         arg_items.push(ListItem::from_str(""));
2124     }
2125
2126     // FIXME(#21): if there are no args, there might still be a comment, but
2127     // without spans for the comment or parens, there is no chance of
2128     // getting it right. You also don't get to put a comment on self, unless
2129     // it is explicit.
2130     if args.len() >= min_args || variadic {
2131         let comment_span_start = if min_args == 2 {
2132             let second_arg_start = if arg_has_pattern(&args[1]) {
2133                 args[1].pat.span.lo()
2134             } else {
2135                 args[1].ty.span.lo()
2136             };
2137             let reduced_span = mk_sp(span.lo(), second_arg_start);
2138
2139             context.codemap.span_after_last(reduced_span, ",")
2140         } else {
2141             span.lo()
2142         };
2143
2144         enum ArgumentKind<'a> {
2145             Regular(&'a ast::Arg),
2146             Variadic(BytePos),
2147         }
2148
2149         let variadic_arg = if variadic {
2150             let variadic_span = mk_sp(args.last().unwrap().ty.span.hi(), span.hi());
2151             let variadic_start = context.codemap.span_after(variadic_span, "...") - BytePos(3);
2152             Some(ArgumentKind::Variadic(variadic_start))
2153         } else {
2154             None
2155         };
2156
2157         let more_items = itemize_list(
2158             context.codemap,
2159             args[min_args - 1..]
2160                 .iter()
2161                 .map(ArgumentKind::Regular)
2162                 .chain(variadic_arg),
2163             ")",
2164             ",",
2165             |arg| match *arg {
2166                 ArgumentKind::Regular(arg) => span_lo_for_arg(arg),
2167                 ArgumentKind::Variadic(start) => start,
2168             },
2169             |arg| match *arg {
2170                 ArgumentKind::Regular(arg) => arg.ty.span.hi(),
2171                 ArgumentKind::Variadic(start) => start + BytePos(3),
2172             },
2173             |arg| match *arg {
2174                 ArgumentKind::Regular(..) => None,
2175                 ArgumentKind::Variadic(..) => Some("...".to_owned()),
2176             },
2177             comment_span_start,
2178             span.hi(),
2179             false,
2180         );
2181
2182         arg_items.extend(more_items);
2183     }
2184
2185     let fits_in_one_line = !generics_str_contains_newline
2186         && (arg_items.is_empty()
2187             || arg_items.len() == 1 && arg_item_strs[0].len() <= one_line_budget);
2188
2189     for (item, arg) in arg_items.iter_mut().zip(arg_item_strs) {
2190         item.item = Some(arg);
2191     }
2192
2193     let last_line_ends_with_comment = arg_items
2194         .iter()
2195         .last()
2196         .and_then(|item| item.post_comment.as_ref())
2197         .map_or(false, |s| s.trim().starts_with("//"));
2198
2199     let (indent, trailing_comma) = match context.config.indent_style() {
2200         IndentStyle::Block if fits_in_one_line => {
2201             (indent.block_indent(context.config), SeparatorTactic::Never)
2202         }
2203         IndentStyle::Block => (
2204             indent.block_indent(context.config),
2205             context.config.trailing_comma(),
2206         ),
2207         IndentStyle::Visual if last_line_ends_with_comment => {
2208             (arg_indent, context.config.trailing_comma())
2209         }
2210         IndentStyle::Visual => (arg_indent, SeparatorTactic::Never),
2211     };
2212
2213     let tactic = definitive_tactic(
2214         &arg_items,
2215         context.config.fn_args_density().to_list_tactic(),
2216         Separator::Comma,
2217         one_line_budget,
2218     );
2219     let budget = match tactic {
2220         DefinitiveListTactic::Horizontal => one_line_budget,
2221         _ => multi_line_budget,
2222     };
2223
2224     debug!("rewrite_args: budget: {}, tactic: {:?}", budget, tactic);
2225
2226     let fmt = ListFormatting {
2227         tactic: tactic,
2228         separator: ",",
2229         trailing_separator: if variadic {
2230             SeparatorTactic::Never
2231         } else {
2232             trailing_comma
2233         },
2234         separator_place: SeparatorPlace::Back,
2235         shape: Shape::legacy(budget, indent),
2236         ends_with_newline: tactic.ends_with_newline(context.config.indent_style()),
2237         preserve_newline: true,
2238         config: context.config,
2239     };
2240
2241     write_list(&arg_items, &fmt)
2242 }
2243
2244 fn arg_has_pattern(arg: &ast::Arg) -> bool {
2245     if let ast::PatKind::Ident(_, ident, _) = arg.pat.node {
2246         ident.node != symbol::keywords::Invalid.ident()
2247     } else {
2248         true
2249     }
2250 }
2251
2252 fn compute_budgets_for_args(
2253     context: &RewriteContext,
2254     result: &str,
2255     indent: Indent,
2256     ret_str_len: usize,
2257     newline_brace: bool,
2258     has_braces: bool,
2259     force_vertical_layout: bool,
2260 ) -> Option<((usize, usize, Indent))> {
2261     debug!(
2262         "compute_budgets_for_args {} {:?}, {}, {}",
2263         result.len(),
2264         indent,
2265         ret_str_len,
2266         newline_brace
2267     );
2268     // Try keeping everything on the same line.
2269     if !result.contains('\n') && !force_vertical_layout {
2270         // 2 = `()`, 3 = `() `, space is before ret_string.
2271         let overhead = if ret_str_len == 0 { 2 } else { 3 };
2272         let mut used_space = indent.width() + result.len() + ret_str_len + overhead;
2273         if has_braces {
2274             if !newline_brace {
2275                 // 2 = `{}`
2276                 used_space += 2;
2277             }
2278         } else {
2279             // 1 = `;`
2280             used_space += 1;
2281         }
2282         let one_line_budget = context.budget(used_space);
2283
2284         if one_line_budget > 0 {
2285             // 4 = "() {".len()
2286             let (indent, multi_line_budget) = match context.config.indent_style() {
2287                 IndentStyle::Block => {
2288                     let indent = indent.block_indent(context.config);
2289                     (indent, context.budget(indent.width() + 1))
2290                 }
2291                 IndentStyle::Visual => {
2292                     let indent = indent + result.len() + 1;
2293                     let multi_line_overhead = indent.width() + if newline_brace { 2 } else { 4 };
2294                     (indent, context.budget(multi_line_overhead))
2295                 }
2296             };
2297
2298             return Some((one_line_budget, multi_line_budget, indent));
2299         }
2300     }
2301
2302     // Didn't work. we must force vertical layout and put args on a newline.
2303     let new_indent = indent.block_indent(context.config);
2304     let used_space = match context.config.indent_style() {
2305         // 1 = `,`
2306         IndentStyle::Block => new_indent.width() + 1,
2307         // Account for `)` and possibly ` {`.
2308         IndentStyle::Visual => new_indent.width() + if ret_str_len == 0 { 1 } else { 3 },
2309     };
2310     Some((0, context.budget(used_space), new_indent))
2311 }
2312
2313 fn newline_for_brace(config: &Config, where_clause: &ast::WhereClause) -> bool {
2314     let predicate_count = where_clause.predicates.len();
2315
2316     if config.where_single_line() && predicate_count == 1 {
2317         return false;
2318     }
2319     let brace_style = config.brace_style();
2320
2321     brace_style == BraceStyle::AlwaysNextLine
2322         || (brace_style == BraceStyle::SameLineWhere && predicate_count > 0)
2323 }
2324
2325 fn rewrite_generics(
2326     context: &RewriteContext,
2327     generics: &ast::Generics,
2328     shape: Shape,
2329     span: Span,
2330 ) -> Option<String> {
2331     let g_shape = generics_shape_from_config(context.config, shape, 0)?;
2332     let one_line_width = shape.width.checked_sub(2).unwrap_or(0);
2333     rewrite_generics_inner(context, generics, g_shape, one_line_width, span)
2334         .or_else(|| rewrite_generics_inner(context, generics, g_shape, 0, span))
2335 }
2336
2337 fn rewrite_generics_inner(
2338     context: &RewriteContext,
2339     generics: &ast::Generics,
2340     shape: Shape,
2341     one_line_width: usize,
2342     span: Span,
2343 ) -> Option<String> {
2344     // FIXME: convert bounds to where clauses where they get too big or if
2345     // there is a where clause at all.
2346
2347     // Wrapper type
2348     enum GenericsArg<'a> {
2349         Lifetime(&'a ast::LifetimeDef),
2350         TyParam(&'a ast::TyParam),
2351     }
2352     impl<'a> Rewrite for GenericsArg<'a> {
2353         fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
2354             match *self {
2355                 GenericsArg::Lifetime(lifetime) => lifetime.rewrite(context, shape),
2356                 GenericsArg::TyParam(ty) => ty.rewrite(context, shape),
2357             }
2358         }
2359     }
2360     impl<'a> Spanned for GenericsArg<'a> {
2361         fn span(&self) -> Span {
2362             match *self {
2363                 GenericsArg::Lifetime(lifetime) => lifetime.span(),
2364                 GenericsArg::TyParam(ty) => ty.span(),
2365             }
2366         }
2367     }
2368
2369     if generics.lifetimes.is_empty() && generics.ty_params.is_empty() {
2370         return Some(String::new());
2371     }
2372
2373     let generics_args = generics
2374         .lifetimes
2375         .iter()
2376         .map(|lt| GenericsArg::Lifetime(lt))
2377         .chain(generics.ty_params.iter().map(|ty| GenericsArg::TyParam(ty)));
2378     let items = itemize_list(
2379         context.codemap,
2380         generics_args,
2381         ">",
2382         ",",
2383         |arg| arg.span().lo(),
2384         |arg| arg.span().hi(),
2385         |arg| arg.rewrite(context, shape),
2386         context.codemap.span_after(span, "<"),
2387         span.hi(),
2388         false,
2389     );
2390     format_generics_item_list(context, items, shape, one_line_width)
2391 }
2392
2393 pub fn generics_shape_from_config(config: &Config, shape: Shape, offset: usize) -> Option<Shape> {
2394     match config.indent_style() {
2395         IndentStyle::Visual => shape.visual_indent(1 + offset).sub_width(offset + 2),
2396         IndentStyle::Block => {
2397             // 1 = ","
2398             shape
2399                 .block()
2400                 .block_indent(config.tab_spaces())
2401                 .with_max_width(config)
2402                 .sub_width(1)
2403         }
2404     }
2405 }
2406
2407 pub fn format_generics_item_list<I>(
2408     context: &RewriteContext,
2409     items: I,
2410     shape: Shape,
2411     one_line_budget: usize,
2412 ) -> Option<String>
2413 where
2414     I: Iterator<Item = ListItem>,
2415 {
2416     let item_vec = items.collect::<Vec<_>>();
2417
2418     let tactic = definitive_tactic(
2419         &item_vec,
2420         ListTactic::HorizontalVertical,
2421         Separator::Comma,
2422         one_line_budget,
2423     );
2424     let fmt = ListFormatting {
2425         tactic: tactic,
2426         separator: ",",
2427         trailing_separator: if context.config.indent_style() == IndentStyle::Visual {
2428             SeparatorTactic::Never
2429         } else {
2430             context.config.trailing_comma()
2431         },
2432         separator_place: SeparatorPlace::Back,
2433         shape: shape,
2434         ends_with_newline: tactic.ends_with_newline(context.config.indent_style()),
2435         preserve_newline: true,
2436         config: context.config,
2437     };
2438
2439     let list_str = write_list(&item_vec, &fmt)?;
2440
2441     Some(wrap_generics_with_angle_brackets(
2442         context,
2443         &list_str,
2444         shape.indent,
2445     ))
2446 }
2447
2448 pub fn wrap_generics_with_angle_brackets(
2449     context: &RewriteContext,
2450     list_str: &str,
2451     list_offset: Indent,
2452 ) -> String {
2453     if context.config.indent_style() == IndentStyle::Block
2454         && (list_str.contains('\n') || list_str.ends_with(','))
2455     {
2456         format!(
2457             "<\n{}{}\n{}>",
2458             list_offset.to_string(context.config),
2459             list_str,
2460             list_offset
2461                 .block_unindent(context.config)
2462                 .to_string(context.config)
2463         )
2464     } else if context.config.spaces_within_parens_and_brackets() {
2465         format!("< {} >", list_str)
2466     } else {
2467         format!("<{}>", list_str)
2468     }
2469 }
2470
2471 fn rewrite_trait_bounds(
2472     context: &RewriteContext,
2473     bounds: &[ast::TyParamBound],
2474     shape: Shape,
2475 ) -> Option<String> {
2476     if bounds.is_empty() {
2477         return Some(String::new());
2478     }
2479     let bound_str = bounds
2480         .iter()
2481         .map(|ty_bound| ty_bound.rewrite(context, shape))
2482         .collect::<Option<Vec<_>>>()?;
2483     Some(format!(": {}", join_bounds(context, shape, &bound_str)))
2484 }
2485
2486 fn rewrite_where_clause_rfc_style(
2487     context: &RewriteContext,
2488     where_clause: &ast::WhereClause,
2489     shape: Shape,
2490     terminator: &str,
2491     span_end: Option<BytePos>,
2492     span_end_before_where: BytePos,
2493     where_clause_option: WhereClauseOption,
2494     is_args_multi_line: bool,
2495 ) -> Option<String> {
2496     let block_shape = shape.block().with_max_width(context.config);
2497
2498     let (span_before, span_after) =
2499         missing_span_before_after_where(span_end_before_where, where_clause);
2500     let (comment_before, comment_after) =
2501         rewrite_comments_before_after_where(context, span_before, span_after, shape)?;
2502
2503     let starting_newline = if where_clause_option.snuggle && comment_before.is_empty() {
2504         " ".to_owned()
2505     } else {
2506         "\n".to_owned() + &block_shape.indent.to_string(context.config)
2507     };
2508
2509     let clause_shape = block_shape.block_left(context.config.tab_spaces())?;
2510     // 1 = `,`
2511     let clause_shape = clause_shape.sub_width(1)?;
2512     // each clause on one line, trailing comma (except if suppress_comma)
2513     let span_start = where_clause.predicates[0].span().lo();
2514     // If we don't have the start of the next span, then use the end of the
2515     // predicates, but that means we miss comments.
2516     let len = where_clause.predicates.len();
2517     let end_of_preds = where_clause.predicates[len - 1].span().hi();
2518     let span_end = span_end.unwrap_or(end_of_preds);
2519     let items = itemize_list(
2520         context.codemap,
2521         where_clause.predicates.iter(),
2522         terminator,
2523         ",",
2524         |pred| pred.span().lo(),
2525         |pred| pred.span().hi(),
2526         |pred| pred.rewrite(context, clause_shape),
2527         span_start,
2528         span_end,
2529         false,
2530     );
2531     let where_single_line = context.config.where_single_line() && len == 1 && !is_args_multi_line;
2532     let comma_tactic = if where_clause_option.suppress_comma || where_single_line {
2533         SeparatorTactic::Never
2534     } else {
2535         context.config.trailing_comma()
2536     };
2537
2538     // shape should be vertical only and only if we have `where_single_line` option enabled
2539     // and the number of items of the where clause is equal to 1
2540     let shape_tactic = if where_single_line {
2541         DefinitiveListTactic::Horizontal
2542     } else {
2543         DefinitiveListTactic::Vertical
2544     };
2545
2546     let fmt = ListFormatting {
2547         tactic: shape_tactic,
2548         separator: ",",
2549         trailing_separator: comma_tactic,
2550         separator_place: SeparatorPlace::Back,
2551         shape: clause_shape,
2552         ends_with_newline: true,
2553         preserve_newline: true,
2554         config: context.config,
2555     };
2556     let preds_str = write_list(&items.collect::<Vec<_>>(), &fmt)?;
2557
2558     let comment_separator = |comment: &str, shape: Shape| if comment.is_empty() {
2559         String::new()
2560     } else {
2561         format!("\n{}", shape.indent.to_string(context.config))
2562     };
2563     let newline_before_where = comment_separator(&comment_before, shape);
2564     let newline_after_where = comment_separator(&comment_after, clause_shape);
2565
2566     // 6 = `where `
2567     let clause_sep = if where_clause_option.compress_where && comment_before.is_empty()
2568         && comment_after.is_empty() && !preds_str.contains('\n')
2569         && 6 + preds_str.len() <= shape.width || where_single_line
2570     {
2571         String::from(" ")
2572     } else {
2573         format!("\n{}", clause_shape.indent.to_string(context.config))
2574     };
2575     Some(format!(
2576         "{}{}{}where{}{}{}{}",
2577         starting_newline,
2578         comment_before,
2579         newline_before_where,
2580         newline_after_where,
2581         comment_after,
2582         clause_sep,
2583         preds_str
2584     ))
2585 }
2586
2587 fn rewrite_where_clause(
2588     context: &RewriteContext,
2589     where_clause: &ast::WhereClause,
2590     brace_style: BraceStyle,
2591     shape: Shape,
2592     density: Density,
2593     terminator: &str,
2594     span_end: Option<BytePos>,
2595     span_end_before_where: BytePos,
2596     where_clause_option: WhereClauseOption,
2597     is_args_multi_line: bool,
2598 ) -> Option<String> {
2599     if where_clause.predicates.is_empty() {
2600         return Some(String::new());
2601     }
2602
2603     if context.config.indent_style() == IndentStyle::Block {
2604         return rewrite_where_clause_rfc_style(
2605             context,
2606             where_clause,
2607             shape,
2608             terminator,
2609             span_end,
2610             span_end_before_where,
2611             where_clause_option,
2612             is_args_multi_line,
2613         );
2614     }
2615
2616     let extra_indent = Indent::new(context.config.tab_spaces(), 0);
2617
2618     let offset = match context.config.indent_style() {
2619         IndentStyle::Block => shape.indent + extra_indent.block_indent(context.config),
2620         // 6 = "where ".len()
2621         IndentStyle::Visual => shape.indent + extra_indent + 6,
2622     };
2623     // FIXME: if indent_style != Visual, then the budgets below might
2624     // be out by a char or two.
2625
2626     let budget = context.config.max_width() - offset.width();
2627     let span_start = where_clause.predicates[0].span().lo();
2628     // If we don't have the start of the next span, then use the end of the
2629     // predicates, but that means we miss comments.
2630     let len = where_clause.predicates.len();
2631     let end_of_preds = where_clause.predicates[len - 1].span().hi();
2632     let span_end = span_end.unwrap_or(end_of_preds);
2633     let items = itemize_list(
2634         context.codemap,
2635         where_clause.predicates.iter(),
2636         terminator,
2637         ",",
2638         |pred| pred.span().lo(),
2639         |pred| pred.span().hi(),
2640         |pred| pred.rewrite(context, Shape::legacy(budget, offset)),
2641         span_start,
2642         span_end,
2643         false,
2644     );
2645     let item_vec = items.collect::<Vec<_>>();
2646     // FIXME: we don't need to collect here
2647     let tactic = definitive_tactic(&item_vec, ListTactic::Vertical, Separator::Comma, budget);
2648
2649     let mut comma_tactic = context.config.trailing_comma();
2650     // Kind of a hack because we don't usually have trailing commas in where clauses.
2651     if comma_tactic == SeparatorTactic::Vertical || where_clause_option.suppress_comma {
2652         comma_tactic = SeparatorTactic::Never;
2653     }
2654
2655     let fmt = ListFormatting {
2656         tactic: tactic,
2657         separator: ",",
2658         trailing_separator: comma_tactic,
2659         separator_place: SeparatorPlace::Back,
2660         shape: Shape::legacy(budget, offset),
2661         ends_with_newline: tactic.ends_with_newline(context.config.indent_style()),
2662         preserve_newline: true,
2663         config: context.config,
2664     };
2665     let preds_str = write_list(&item_vec, &fmt)?;
2666
2667     let end_length = if terminator == "{" {
2668         // If the brace is on the next line we don't need to count it otherwise it needs two
2669         // characters " {"
2670         match brace_style {
2671             BraceStyle::AlwaysNextLine | BraceStyle::SameLineWhere => 0,
2672             BraceStyle::PreferSameLine => 2,
2673         }
2674     } else if terminator == "=" {
2675         2
2676     } else {
2677         terminator.len()
2678     };
2679     if density == Density::Tall || preds_str.contains('\n')
2680         || shape.indent.width() + " where ".len() + preds_str.len() + end_length > shape.width
2681     {
2682         Some(format!(
2683             "\n{}where {}",
2684             (shape.indent + extra_indent).to_string(context.config),
2685             preds_str
2686         ))
2687     } else {
2688         Some(format!(" where {}", preds_str))
2689     }
2690 }
2691
2692 fn missing_span_before_after_where(
2693     before_item_span_end: BytePos,
2694     where_clause: &ast::WhereClause,
2695 ) -> (Span, Span) {
2696     let missing_span_before = mk_sp(before_item_span_end, where_clause.span.lo());
2697     // 5 = `where`
2698     let pos_after_where = where_clause.span.lo() + BytePos(5);
2699     let missing_span_after = mk_sp(pos_after_where, where_clause.predicates[0].span().lo());
2700     (missing_span_before, missing_span_after)
2701 }
2702
2703 fn rewrite_comments_before_after_where(
2704     context: &RewriteContext,
2705     span_before_where: Span,
2706     span_after_where: Span,
2707     shape: Shape,
2708 ) -> Option<(String, String)> {
2709     let before_comment = rewrite_missing_comment(span_before_where, shape, context)?;
2710     let after_comment = rewrite_missing_comment(
2711         span_after_where,
2712         shape.block_indent(context.config.tab_spaces()),
2713         context,
2714     )?;
2715     Some((before_comment, after_comment))
2716 }
2717
2718 fn format_header(item_name: &str, ident: ast::Ident, vis: &ast::Visibility) -> String {
2719     format!("{}{}{}", format_visibility(vis), item_name, ident)
2720 }
2721
2722 #[derive(PartialEq, Eq)]
2723 enum BracePos {
2724     None,
2725     Auto,
2726     ForceSameLine,
2727 }
2728
2729 fn format_generics(
2730     context: &RewriteContext,
2731     generics: &ast::Generics,
2732     brace_style: BraceStyle,
2733     brace_pos: BracePos,
2734     offset: Indent,
2735     span: Span,
2736     used_width: usize,
2737 ) -> Option<String> {
2738     let shape = Shape::legacy(context.budget(used_width + offset.width()), offset);
2739     let mut result = rewrite_generics(context, generics, shape, span)?;
2740
2741     let same_line_brace = if !generics.where_clause.predicates.is_empty() || result.contains('\n') {
2742         let budget = context.budget(last_line_used_width(&result, offset.width()));
2743         let mut option = WhereClauseOption::snuggled(&result);
2744         if brace_pos == BracePos::None {
2745             option.suppress_comma = true;
2746         }
2747         // If the generics are not parameterized then generics.span.hi() == 0,
2748         // so we use span.lo(), which is the position after `struct Foo`.
2749         let span_end_before_where = if generics.is_parameterized() {
2750             generics.span.hi()
2751         } else {
2752             span.lo()
2753         };
2754         let where_clause_str = rewrite_where_clause(
2755             context,
2756             &generics.where_clause,
2757             brace_style,
2758             Shape::legacy(budget, offset.block_only()),
2759             Density::Tall,
2760             "{",
2761             Some(span.hi()),
2762             span_end_before_where,
2763             option,
2764             false,
2765         )?;
2766         result.push_str(&where_clause_str);
2767         brace_pos == BracePos::ForceSameLine || brace_style == BraceStyle::PreferSameLine
2768             || (generics.where_clause.predicates.is_empty()
2769                 && trimmed_last_line_width(&result) == 1)
2770     } else {
2771         brace_pos == BracePos::ForceSameLine || trimmed_last_line_width(&result) == 1
2772             || brace_style != BraceStyle::AlwaysNextLine
2773     };
2774     if brace_pos == BracePos::None {
2775         return Some(result);
2776     }
2777     let total_used_width = last_line_used_width(&result, used_width);
2778     let remaining_budget = context.budget(total_used_width);
2779     // If the same line brace if forced, it indicates that we are rewriting an item with empty body,
2780     // and hence we take the closer into account as well for one line budget.
2781     // We assume that the closer has the same length as the opener.
2782     let overhead = if brace_pos == BracePos::ForceSameLine {
2783         // 3 = ` {}`
2784         3
2785     } else {
2786         // 2 = ` {`
2787         2
2788     };
2789     let forbid_same_line_brace = overhead > remaining_budget;
2790     if !forbid_same_line_brace && same_line_brace {
2791         result.push(' ');
2792     } else {
2793         result.push('\n');
2794         result.push_str(&offset.block_only().to_string(context.config));
2795     }
2796     result.push('{');
2797
2798     Some(result)
2799 }
2800
2801 impl Rewrite for ast::ForeignItem {
2802     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
2803         let attrs_str = self.attrs.rewrite(context, shape)?;
2804         // Drop semicolon or it will be interpreted as comment.
2805         // FIXME: this may be a faulty span from libsyntax.
2806         let span = mk_sp(self.span.lo(), self.span.hi() - BytePos(1));
2807
2808         let item_str = match self.node {
2809             ast::ForeignItemKind::Fn(ref fn_decl, ref generics) => {
2810                 rewrite_fn_base(
2811                     context,
2812                     shape.indent,
2813                     self.ident,
2814                     &FnSig::new(fn_decl, generics, self.vis.clone()),
2815                     span,
2816                     false,
2817                     false,
2818                 ).map(|(s, _)| format!("{};", s))
2819             }
2820             ast::ForeignItemKind::Static(ref ty, is_mutable) => {
2821                 // FIXME(#21): we're dropping potential comments in between the
2822                 // function keywords here.
2823                 let vis = format_visibility(&self.vis);
2824                 let mut_str = if is_mutable { "mut " } else { "" };
2825                 let prefix = format!("{}static {}{}:", vis, mut_str, self.ident);
2826                 // 1 = ;
2827                 let shape = shape.sub_width(1)?;
2828                 ty.rewrite(context, shape).map(|ty_str| {
2829                     // 1 = space between prefix and type.
2830                     let sep = if prefix.len() + ty_str.len() + 1 <= shape.width {
2831                         String::from(" ")
2832                     } else {
2833                         let nested_indent = shape.indent.block_indent(context.config);
2834                         format!("\n{}", nested_indent.to_string(context.config))
2835                     };
2836                     format!("{}{}{};", prefix, sep, ty_str)
2837                 })
2838             }
2839             ast::ForeignItemKind::Ty => {
2840                 let vis = format_visibility(&self.vis);
2841                 Some(format!("{}type {};", vis, self.ident))
2842             }
2843         }?;
2844
2845         let missing_span = if self.attrs.is_empty() {
2846             mk_sp(self.span.lo(), self.span.lo())
2847         } else {
2848             mk_sp(self.attrs[self.attrs.len() - 1].span.hi(), self.span.lo())
2849         };
2850         combine_strs_with_missing_comments(
2851             context,
2852             &attrs_str,
2853             &item_str,
2854             missing_span,
2855             shape,
2856             false,
2857         )
2858     }
2859 }