]> git.lizzy.rs Git - rust.git/blob - src/chains.rs
Merge pull request #2298 from davidalber/fix-2269
[rust.git] / src / chains.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 of chained expressions, i.e. expressions which are chained by
12 //! dots: struct and enum field access, method calls, and try shorthand (?).
13 //!
14 //! Instead of walking these subexpressions one-by-one, as is our usual strategy
15 //! for expression formatting, we collect maximal sequences of these expressions
16 //! and handle them simultaneously.
17 //!
18 //! Whenever possible, the entire chain is put on a single line. If that fails,
19 //! we put each subexpression on a separate, much like the (default) function
20 //! argument function argument strategy.
21 //!
22 //! Depends on config options: `chain_indent` is the indent to use for
23 //! blocks in the parent/root/base of the chain (and the rest of the chain's
24 //! alignment).
25 //! E.g., `let foo = { aaaa; bbb; ccc }.bar.baz();`, we would layout for the
26 //! following values of `chain_indent`:
27 //! Block:
28 //! ```
29 //! let foo = {
30 //!     aaaa;
31 //!     bbb;
32 //!     ccc
33 //! }.bar
34 //!     .baz();
35 //! ```
36 //! Visual:
37 //! ```
38 //! let foo = {
39 //!               aaaa;
40 //!               bbb;
41 //!               ccc
42 //!           }
43 //!           .bar
44 //!           .baz();
45 //! ```
46 //!
47 //! If the first item in the chain is a block expression, we align the dots with
48 //! the braces.
49 //! Block:
50 //! ```
51 //! let a = foo.bar
52 //!     .baz()
53 //!     .qux
54 //! ```
55 //! Visual:
56 //! ```
57 //! let a = foo.bar
58 //!            .baz()
59 //!            .qux
60 //! ```
61
62 use shape::Shape;
63 use config::IndentStyle;
64 use expr::rewrite_call;
65 use macros::convert_try_mac;
66 use rewrite::{Rewrite, RewriteContext};
67 use utils::{first_line_width, last_line_extendable, last_line_width, mk_sp,
68             trimmed_last_line_width, wrap_str};
69
70 use std::cmp::min;
71 use std::iter;
72 use syntax::{ast, ptr};
73 use syntax::codemap::Span;
74
75 pub fn rewrite_chain(expr: &ast::Expr, context: &RewriteContext, shape: Shape) -> Option<String> {
76     debug!("rewrite_chain {:?}", shape);
77     let total_span = expr.span;
78     let (parent, subexpr_list) = make_subexpr_list(expr, context);
79
80     // Bail out if the chain is just try sugar, i.e., an expression followed by
81     // any number of `?`s.
82     if chain_only_try(&subexpr_list) {
83         return rewrite_try(&parent, subexpr_list.len(), context, shape);
84     }
85     let suffix_try_num = subexpr_list.iter().take_while(|e| is_try(e)).count();
86     let prefix_try_num = subexpr_list.iter().rev().take_while(|e| is_try(e)).count();
87
88     // Parent is the first item in the chain, e.g., `foo` in `foo.bar.baz()`.
89     let parent_shape = if is_block_expr(context, &parent, "\n") {
90         match context.config.indent_style() {
91             IndentStyle::Visual => shape.visual_indent(0),
92             IndentStyle::Block => shape,
93         }
94     } else {
95         shape
96     };
97     let parent_rewrite = parent
98         .rewrite(context, parent_shape)
99         .map(|parent_rw| parent_rw + &repeat_try(prefix_try_num))?;
100     let parent_rewrite_contains_newline = parent_rewrite.contains('\n');
101     let is_small_parent = parent_rewrite.len() <= context.config.tab_spaces();
102
103     // Decide how to layout the rest of the chain. `extend` is true if we can
104     // put the first non-parent item on the same line as the parent.
105     let (nested_shape, extend) = if !parent_rewrite_contains_newline && is_continuable(&parent) {
106         (
107             chain_indent(context, shape.add_offset(parent_rewrite.len())),
108             context.config.indent_style() == IndentStyle::Visual || is_small_parent,
109         )
110     } else if is_block_expr(context, &parent, &parent_rewrite) {
111         match context.config.indent_style() {
112             // Try to put the first child on the same line with parent's last line
113             IndentStyle::Block => (parent_shape.block_indent(context.config.tab_spaces()), true),
114             // The parent is a block, so align the rest of the chain with the closing
115             // brace.
116             IndentStyle::Visual => (parent_shape, false),
117         }
118     } else {
119         (
120             chain_indent(context, shape.add_offset(parent_rewrite.len())),
121             false,
122         )
123     };
124
125     let other_child_shape = nested_shape.with_max_width(context.config);
126
127     let first_child_shape = if extend {
128         let overhead = last_line_width(&parent_rewrite);
129         let offset = trimmed_last_line_width(&parent_rewrite) + prefix_try_num;
130         match context.config.indent_style() {
131             IndentStyle::Visual => parent_shape.offset_left(overhead)?,
132             IndentStyle::Block => parent_shape.offset_left(offset)?,
133         }
134     } else {
135         other_child_shape
136     };
137     debug!(
138         "child_shapes {:?} {:?}",
139         first_child_shape, other_child_shape
140     );
141
142     let child_shape_iter = Some(first_child_shape)
143         .into_iter()
144         .chain(iter::repeat(other_child_shape));
145     let subexpr_num = subexpr_list.len();
146     let last_subexpr = &subexpr_list[suffix_try_num];
147     let subexpr_list = &subexpr_list[suffix_try_num..subexpr_num - prefix_try_num];
148     let iter = subexpr_list.iter().skip(1).rev().zip(child_shape_iter);
149     let mut rewrites = iter.map(|(e, shape)| rewrite_chain_subexpr(e, total_span, context, shape))
150         .collect::<Option<Vec<_>>>()?;
151
152     // Total of all items excluding the last.
153     let extend_last_subexpr = if is_small_parent {
154         rewrites.len() == 1 && last_line_extendable(&rewrites[0])
155     } else {
156         rewrites.is_empty() && last_line_extendable(&parent_rewrite)
157     };
158     let almost_total = if extend_last_subexpr {
159         last_line_width(&parent_rewrite)
160     } else {
161         rewrites.iter().fold(0, |a, b| a + b.len()) + parent_rewrite.len()
162     } + suffix_try_num;
163     let one_line_budget = if rewrites.is_empty() {
164         shape.width
165     } else {
166         min(shape.width, context.config.width_heuristics().chain_width)
167     };
168     let all_in_one_line = !parent_rewrite_contains_newline
169         && rewrites.iter().all(|s| !s.contains('\n'))
170         && almost_total < one_line_budget;
171     let last_shape = if rewrites.is_empty() {
172         first_child_shape
173     } else {
174         other_child_shape
175     }.sub_width(shape.rhs_overhead(context.config) + suffix_try_num)?;
176
177     // Rewrite the last child. The last child of a chain requires special treatment. We need to
178     // know whether 'overflowing' the last child make a better formatting:
179     //
180     // A chain with overflowing the last child:
181     // ```
182     // parent.child1.child2.last_child(
183     //     a,
184     //     b,
185     //     c,
186     // )
187     // ```
188     //
189     // A chain without overflowing the last child (in vertical layout):
190     // ```
191     // parent
192     //     .child1
193     //     .child2
194     //     .last_child(a, b, c)
195     // ```
196     //
197     // In particular, overflowing is effective when the last child is a method with a multi-lined
198     // block-like argument (e.g. closure):
199     // ```
200     // parent.child1.child2.last_child(|a, b, c| {
201     //     let x = foo(a, b, c);
202     //     let y = bar(a, b, c);
203     //
204     //     // ...
205     //
206     //     result
207     // })
208     // ```
209
210     // `rewrite_last` rewrites the last child on its own line. We use a closure here instead of
211     // directly calling `rewrite_chain_subexpr()` to avoid exponential blowup.
212     let rewrite_last = || rewrite_chain_subexpr(last_subexpr, total_span, context, last_shape);
213     let (last_subexpr_str, fits_single_line) = if all_in_one_line || extend_last_subexpr {
214         // First we try to 'overflow' the last child and see if it looks better than using
215         // vertical layout.
216         parent_shape.offset_left(almost_total).map(|shape| {
217             if let Some(rw) = rewrite_chain_subexpr(last_subexpr, total_span, context, shape) {
218                 // We allow overflowing here only if both of the following conditions match:
219                 // 1. The entire chain fits in a single line expect the last child.
220                 // 2. `last_child_str.lines().count() >= 5`.
221                 let line_count = rw.lines().count();
222                 let fits_single_line = almost_total + first_line_width(&rw) <= one_line_budget;
223                 if fits_single_line && line_count >= 5 {
224                     (Some(rw), true)
225                 } else {
226                     // We could not know whether overflowing is better than using vertical layout,
227                     // just by looking at the overflowed rewrite. Now we rewrite the last child
228                     // on its own line, and compare two rewrites to choose which is better.
229                     match rewrite_last() {
230                         Some(ref new_rw) if !fits_single_line => (Some(new_rw.clone()), false),
231                         Some(ref new_rw) if new_rw.lines().count() >= line_count => {
232                             (Some(rw), fits_single_line)
233                         }
234                         new_rw @ Some(..) => (new_rw, false),
235                         _ => (Some(rw), fits_single_line),
236                     }
237                 }
238             } else {
239                 (rewrite_last(), false)
240             }
241         })?
242     } else {
243         (rewrite_last(), false)
244     };
245     rewrites.push(last_subexpr_str?);
246
247     let connector = if fits_single_line && !parent_rewrite_contains_newline {
248         // Yay, we can put everything on one line.
249         String::new()
250     } else {
251         // Use new lines.
252         if context.force_one_line_chain {
253             return None;
254         }
255         format!("\n{}", nested_shape.indent.to_string(context.config))
256     };
257
258     let first_connector = if is_small_parent || fits_single_line
259         || last_line_extendable(&parent_rewrite)
260         || context.config.indent_style() == IndentStyle::Visual
261     {
262         ""
263     } else {
264         connector.as_str()
265     };
266
267     let result = if is_small_parent && rewrites.len() > 1 {
268         let second_connector = if fits_single_line || rewrites[1] == "?"
269             || last_line_extendable(&rewrites[0])
270             || context.config.indent_style() == IndentStyle::Visual
271         {
272             ""
273         } else {
274             &connector
275         };
276         format!(
277             "{}{}{}{}{}",
278             parent_rewrite,
279             first_connector,
280             rewrites[0],
281             second_connector,
282             join_rewrites(&rewrites[1..], &connector)
283         )
284     } else {
285         format!(
286             "{}{}{}",
287             parent_rewrite,
288             first_connector,
289             join_rewrites(&rewrites, &connector)
290         )
291     };
292     let result = format!("{}{}", result, repeat_try(suffix_try_num));
293     if context.config.indent_style() == IndentStyle::Visual {
294         wrap_str(result, context.config.max_width(), shape)
295     } else {
296         Some(result)
297     }
298 }
299
300 // True if the chain is only `?`s.
301 fn chain_only_try(exprs: &[ast::Expr]) -> bool {
302     exprs.iter().all(|e| {
303         if let ast::ExprKind::Try(_) = e.node {
304             true
305         } else {
306             false
307         }
308     })
309 }
310
311 // Try to rewrite and replace the last non-try child. Return `true` if
312 // replacing succeeds.
313 fn repeat_try(try_count: usize) -> String {
314     iter::repeat("?").take(try_count).collect::<String>()
315 }
316
317 fn rewrite_try(
318     expr: &ast::Expr,
319     try_count: usize,
320     context: &RewriteContext,
321     shape: Shape,
322 ) -> Option<String> {
323     let sub_expr = expr.rewrite(context, shape.sub_width(try_count)?)?;
324     Some(format!("{}{}", sub_expr, repeat_try(try_count)))
325 }
326
327 fn join_rewrites(rewrites: &[String], connector: &str) -> String {
328     let mut rewrite_iter = rewrites.iter();
329     let mut result = rewrite_iter.next().unwrap().clone();
330
331     for rewrite in rewrite_iter {
332         if rewrite != "?" {
333             result.push_str(connector);
334         }
335         result.push_str(&rewrite[..]);
336     }
337
338     result
339 }
340
341 // States whether an expression's last line exclusively consists of closing
342 // parens, braces, and brackets in its idiomatic formatting.
343 fn is_block_expr(context: &RewriteContext, expr: &ast::Expr, repr: &str) -> bool {
344     match expr.node {
345         ast::ExprKind::Mac(..) | ast::ExprKind::Call(..) => {
346             context.use_block_indent() && repr.contains('\n')
347         }
348         ast::ExprKind::Struct(..)
349         | ast::ExprKind::While(..)
350         | ast::ExprKind::WhileLet(..)
351         | ast::ExprKind::If(..)
352         | ast::ExprKind::IfLet(..)
353         | ast::ExprKind::Block(..)
354         | ast::ExprKind::Loop(..)
355         | ast::ExprKind::ForLoop(..)
356         | ast::ExprKind::Match(..) => repr.contains('\n'),
357         ast::ExprKind::Paren(ref expr)
358         | ast::ExprKind::Binary(_, _, ref expr)
359         | ast::ExprKind::Index(_, ref expr)
360         | ast::ExprKind::Unary(_, ref expr) => is_block_expr(context, expr, repr),
361         _ => false,
362     }
363 }
364
365 // Returns the root of the chain and a Vec of the prefixes of the rest of the chain.
366 // E.g., for input `a.b.c` we return (`a`, [`a.b.c`, `a.b`])
367 fn make_subexpr_list(expr: &ast::Expr, context: &RewriteContext) -> (ast::Expr, Vec<ast::Expr>) {
368     let mut subexpr_list = vec![expr.clone()];
369
370     while let Some(subexpr) = pop_expr_chain(subexpr_list.last().unwrap(), context) {
371         subexpr_list.push(subexpr.clone());
372     }
373
374     let parent = subexpr_list.pop().unwrap();
375     (parent, subexpr_list)
376 }
377
378 fn chain_indent(context: &RewriteContext, shape: Shape) -> Shape {
379     match context.config.indent_style() {
380         IndentStyle::Visual => shape.visual_indent(0),
381         IndentStyle::Block => shape
382             .block_indent(context.config.tab_spaces())
383             .with_max_width(context.config),
384     }
385 }
386
387 // Returns the expression's subexpression, if it exists. When the subexpr
388 // is a try! macro, we'll convert it to shorthand when the option is set.
389 fn pop_expr_chain(expr: &ast::Expr, context: &RewriteContext) -> Option<ast::Expr> {
390     match expr.node {
391         ast::ExprKind::MethodCall(_, ref expressions) => {
392             Some(convert_try(&expressions[0], context))
393         }
394         ast::ExprKind::TupField(ref subexpr, _)
395         | ast::ExprKind::Field(ref subexpr, _)
396         | ast::ExprKind::Try(ref subexpr) => Some(convert_try(subexpr, context)),
397         _ => None,
398     }
399 }
400
401 fn convert_try(expr: &ast::Expr, context: &RewriteContext) -> ast::Expr {
402     match expr.node {
403         ast::ExprKind::Mac(ref mac) if context.config.use_try_shorthand() => {
404             if let Some(subexpr) = convert_try_mac(mac, context) {
405                 subexpr
406             } else {
407                 expr.clone()
408             }
409         }
410         _ => expr.clone(),
411     }
412 }
413
414 // Rewrite the last element in the chain `expr`. E.g., given `a.b.c` we rewrite
415 // `.c`.
416 fn rewrite_chain_subexpr(
417     expr: &ast::Expr,
418     span: Span,
419     context: &RewriteContext,
420     shape: Shape,
421 ) -> Option<String> {
422     let rewrite_element = |expr_str: String| {
423         if expr_str.len() <= shape.width {
424             Some(expr_str)
425         } else {
426             None
427         }
428     };
429
430     match expr.node {
431         ast::ExprKind::MethodCall(ref segment, ref expressions) => {
432             let types = match segment.parameters {
433                 Some(ref params) => match **params {
434                     ast::PathParameters::AngleBracketed(ref data) => &data.types[..],
435                     _ => &[],
436                 },
437                 _ => &[],
438             };
439             rewrite_method_call(segment.identifier, types, expressions, span, context, shape)
440         }
441         ast::ExprKind::Field(_, ref field) => rewrite_element(format!(".{}", field.node)),
442         ast::ExprKind::TupField(ref expr, ref field) => {
443             let space = match expr.node {
444                 ast::ExprKind::TupField(..) => " ",
445                 _ => "",
446             };
447             rewrite_element(format!("{}.{}", space, field.node))
448         }
449         ast::ExprKind::Try(_) => rewrite_element(String::from("?")),
450         _ => unreachable!(),
451     }
452 }
453
454 // Determines if we can continue formatting a given expression on the same line.
455 fn is_continuable(expr: &ast::Expr) -> bool {
456     match expr.node {
457         ast::ExprKind::Path(..) => true,
458         _ => false,
459     }
460 }
461
462 fn is_try(expr: &ast::Expr) -> bool {
463     match expr.node {
464         ast::ExprKind::Try(..) => true,
465         _ => false,
466     }
467 }
468
469 fn rewrite_method_call(
470     method_name: ast::Ident,
471     types: &[ptr::P<ast::Ty>],
472     args: &[ptr::P<ast::Expr>],
473     span: Span,
474     context: &RewriteContext,
475     shape: Shape,
476 ) -> Option<String> {
477     let (lo, type_str) = if types.is_empty() {
478         (args[0].span.hi(), String::new())
479     } else {
480         let type_list = types
481             .iter()
482             .map(|ty| ty.rewrite(context, shape))
483             .collect::<Option<Vec<_>>>()?;
484
485         let type_str =
486             if context.config.spaces_within_parens_and_brackets() && !type_list.is_empty() {
487                 format!("::< {} >", type_list.join(", "))
488             } else {
489                 format!("::<{}>", type_list.join(", "))
490             };
491
492         (types.last().unwrap().span.hi(), type_str)
493     };
494
495     let callee_str = format!(".{}{}", method_name, type_str);
496     let span = mk_sp(lo, span.hi());
497
498     rewrite_call(context, &callee_str, &args[1..], span, shape)
499 }