]> git.lizzy.rs Git - rust.git/blob - src/closures.rs
Merge pull request #3036 from topecongiro/issue-2932
[rust.git] / src / closures.rs
1 // Copyright 2017 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 use config::lists::*;
12 use syntax::parse::classify;
13 use syntax::source_map::Span;
14 use syntax::{ast, ptr};
15
16 use expr::{block_contains_comment, is_simple_block, is_unsafe_block, rewrite_cond, ToExpr};
17 use items::{span_hi_for_arg, span_lo_for_arg};
18 use lists::{definitive_tactic, itemize_list, write_list, ListFormatting, Separator};
19 use rewrite::{Rewrite, RewriteContext};
20 use shape::Shape;
21 use source_map::SpanUtils;
22 use utils::{last_line_width, left_most_sub_expr, stmt_expr};
23
24 // This module is pretty messy because of the rules around closures and blocks:
25 // FIXME - the below is probably no longer true in full.
26 //   * if there is a return type, then there must be braces,
27 //   * given a closure with braces, whether that is parsed to give an inner block
28 //     or not depends on if there is a return type and if there are statements
29 //     in that block,
30 //   * if the first expression in the body ends with a block (i.e., is a
31 //     statement without needing a semi-colon), then adding or removing braces
32 //     can change whether it is treated as an expression or statement.
33
34 pub fn rewrite_closure(
35     capture: ast::CaptureBy,
36     asyncness: ast::IsAsync,
37     movability: ast::Movability,
38     fn_decl: &ast::FnDecl,
39     body: &ast::Expr,
40     span: Span,
41     context: &RewriteContext,
42     shape: Shape,
43 ) -> Option<String> {
44     debug!("rewrite_closure {:?}", body);
45
46     let (prefix, extra_offset) = rewrite_closure_fn_decl(
47         capture, asyncness, movability, fn_decl, body, span, context, shape,
48     )?;
49     // 1 = space between `|...|` and body.
50     let body_shape = shape.offset_left(extra_offset)?;
51
52     if let ast::ExprKind::Block(ref block, _) = body.node {
53         // The body of the closure is an empty block.
54         if block.stmts.is_empty() && !block_contains_comment(block, context.source_map) {
55             return body
56                 .rewrite(context, shape)
57                 .map(|s| format!("{} {}", prefix, s));
58         }
59
60         let result = match fn_decl.output {
61             ast::FunctionRetTy::Default(_) => {
62                 try_rewrite_without_block(body, &prefix, context, shape, body_shape)
63             }
64             _ => None,
65         };
66
67         result.or_else(|| {
68             // Either we require a block, or tried without and failed.
69             rewrite_closure_block(block, &prefix, context, body_shape)
70         })
71     } else {
72         rewrite_closure_expr(body, &prefix, context, body_shape).or_else(|| {
73             // The closure originally had a non-block expression, but we can't fit on
74             // one line, so we'll insert a block.
75             rewrite_closure_with_block(body, &prefix, context, body_shape)
76         })
77     }
78 }
79
80 fn try_rewrite_without_block(
81     expr: &ast::Expr,
82     prefix: &str,
83     context: &RewriteContext,
84     shape: Shape,
85     body_shape: Shape,
86 ) -> Option<String> {
87     let expr = get_inner_expr(expr, prefix, context);
88
89     if is_block_closure_forced(context, expr) {
90         rewrite_closure_with_block(expr, prefix, context, shape)
91     } else {
92         rewrite_closure_expr(expr, prefix, context, body_shape)
93     }
94 }
95
96 fn get_inner_expr<'a>(
97     expr: &'a ast::Expr,
98     prefix: &str,
99     context: &RewriteContext,
100 ) -> &'a ast::Expr {
101     if let ast::ExprKind::Block(ref block, _) = expr.node {
102         if !needs_block(block, prefix, context) {
103             // block.stmts.len() == 1
104             if let Some(expr) = stmt_expr(&block.stmts[0]) {
105                 return get_inner_expr(expr, prefix, context);
106             }
107         }
108     }
109
110     expr
111 }
112
113 // Figure out if a block is necessary.
114 fn needs_block(block: &ast::Block, prefix: &str, context: &RewriteContext) -> bool {
115     is_unsafe_block(block)
116         || block.stmts.len() > 1
117         || block_contains_comment(block, context.source_map)
118         || prefix.contains('\n')
119 }
120
121 fn veto_block(e: &ast::Expr) -> bool {
122     match e.node {
123         ast::ExprKind::Call(..)
124         | ast::ExprKind::Binary(..)
125         | ast::ExprKind::Cast(..)
126         | ast::ExprKind::Type(..)
127         | ast::ExprKind::Assign(..)
128         | ast::ExprKind::AssignOp(..)
129         | ast::ExprKind::Field(..)
130         | ast::ExprKind::Index(..)
131         | ast::ExprKind::Range(..)
132         | ast::ExprKind::Try(..) => true,
133         _ => false,
134     }
135 }
136
137 // Rewrite closure with a single expression wrapping its body with block.
138 fn rewrite_closure_with_block(
139     body: &ast::Expr,
140     prefix: &str,
141     context: &RewriteContext,
142     shape: Shape,
143 ) -> Option<String> {
144     let left_most = left_most_sub_expr(body);
145     let veto_block = veto_block(body) && !classify::expr_requires_semi_to_be_stmt(left_most);
146     if veto_block {
147         return None;
148     }
149
150     let block = ast::Block {
151         stmts: vec![ast::Stmt {
152             id: ast::NodeId::new(0),
153             node: ast::StmtKind::Expr(ptr::P(body.clone())),
154             span: body.span,
155         }],
156         id: ast::NodeId::new(0),
157         rules: ast::BlockCheckMode::Default,
158         span: body.span,
159         recovered: false,
160     };
161     let block = ::expr::rewrite_block_with_visitor(context, "", &block, None, None, shape, false)?;
162     Some(format!("{} {}", prefix, block))
163 }
164
165 // Rewrite closure with a single expression without wrapping its body with block.
166 fn rewrite_closure_expr(
167     expr: &ast::Expr,
168     prefix: &str,
169     context: &RewriteContext,
170     shape: Shape,
171 ) -> Option<String> {
172     fn allow_multi_line(expr: &ast::Expr) -> bool {
173         match expr.node {
174             ast::ExprKind::Match(..)
175             | ast::ExprKind::Block(..)
176             | ast::ExprKind::TryBlock(..)
177             | ast::ExprKind::Loop(..)
178             | ast::ExprKind::Struct(..) => true,
179
180             ast::ExprKind::AddrOf(_, ref expr)
181             | ast::ExprKind::Box(ref expr)
182             | ast::ExprKind::Try(ref expr)
183             | ast::ExprKind::Unary(_, ref expr)
184             | ast::ExprKind::Cast(ref expr, _) => allow_multi_line(expr),
185
186             _ => false,
187         }
188     }
189
190     // When rewriting closure's body without block, we require it to fit in a single line
191     // unless it is a block-like expression or we are inside macro call.
192     let veto_multiline = (!allow_multi_line(expr) && !context.inside_macro())
193         || context.config.force_multiline_blocks();
194     expr.rewrite(context, shape)
195         .and_then(|rw| {
196             if veto_multiline && rw.contains('\n') {
197                 None
198             } else {
199                 Some(rw)
200             }
201         })
202         .map(|rw| format!("{} {}", prefix, rw))
203 }
204
205 // Rewrite closure whose body is block.
206 fn rewrite_closure_block(
207     block: &ast::Block,
208     prefix: &str,
209     context: &RewriteContext,
210     shape: Shape,
211 ) -> Option<String> {
212     Some(format!("{} {}", prefix, block.rewrite(context, shape)?))
213 }
214
215 // Return type is (prefix, extra_offset)
216 fn rewrite_closure_fn_decl(
217     capture: ast::CaptureBy,
218     asyncness: ast::IsAsync,
219     movability: ast::Movability,
220     fn_decl: &ast::FnDecl,
221     body: &ast::Expr,
222     span: Span,
223     context: &RewriteContext,
224     shape: Shape,
225 ) -> Option<(String, usize)> {
226     let is_async = if asyncness.is_async() { "async " } else { "" };
227     let mover = if capture == ast::CaptureBy::Value {
228         "move "
229     } else {
230         ""
231     };
232     let immovable = if movability == ast::Movability::Static {
233         "static "
234     } else {
235         ""
236     };
237     // 4 = "|| {".len(), which is overconservative when the closure consists of
238     // a single expression.
239     let nested_shape = shape
240         .shrink_left(is_async.len() + mover.len() + immovable.len())?
241         .sub_width(4)?;
242
243     // 1 = |
244     let argument_offset = nested_shape.indent + 1;
245     let arg_shape = nested_shape.offset_left(1)?.visual_indent(0);
246     let ret_str = fn_decl.output.rewrite(context, arg_shape)?;
247
248     let arg_items = itemize_list(
249         context.snippet_provider,
250         fn_decl.inputs.iter(),
251         "|",
252         ",",
253         |arg| span_lo_for_arg(arg),
254         |arg| span_hi_for_arg(context, arg),
255         |arg| arg.rewrite(context, arg_shape),
256         context.snippet_provider.span_after(span, "|"),
257         body.span.lo(),
258         false,
259     );
260     let item_vec = arg_items.collect::<Vec<_>>();
261     // 1 = space between arguments and return type.
262     let horizontal_budget = nested_shape.width.saturating_sub(ret_str.len() + 1);
263     let tactic = definitive_tactic(
264         &item_vec,
265         ListTactic::HorizontalVertical,
266         Separator::Comma,
267         horizontal_budget,
268     );
269     let arg_shape = match tactic {
270         DefinitiveListTactic::Horizontal => arg_shape.sub_width(ret_str.len() + 1)?,
271         _ => arg_shape,
272     };
273
274     let fmt = ListFormatting::new(arg_shape, context.config)
275         .tactic(tactic)
276         .preserve_newline(true);
277     let list_str = write_list(&item_vec, &fmt)?;
278     let mut prefix = format!("{}{}{}|{}|", is_async, immovable, mover, list_str);
279
280     if !ret_str.is_empty() {
281         if prefix.contains('\n') {
282             prefix.push('\n');
283             prefix.push_str(&argument_offset.to_string(context.config));
284         } else {
285             prefix.push(' ');
286         }
287         prefix.push_str(&ret_str);
288     }
289     // 1 = space between `|...|` and body.
290     let extra_offset = last_line_width(&prefix) + 1;
291
292     Some((prefix, extra_offset))
293 }
294
295 // Rewriting closure which is placed at the end of the function call's arg.
296 // Returns `None` if the reformatted closure 'looks bad'.
297 pub fn rewrite_last_closure(
298     context: &RewriteContext,
299     expr: &ast::Expr,
300     shape: Shape,
301 ) -> Option<String> {
302     if let ast::ExprKind::Closure(capture, asyncness, movability, ref fn_decl, ref body, _) =
303         expr.node
304     {
305         let body = match body.node {
306             ast::ExprKind::Block(ref block, _)
307                 if !is_unsafe_block(block)
308                     && is_simple_block(block, Some(&body.attrs), context.source_map) =>
309             {
310                 stmt_expr(&block.stmts[0]).unwrap_or(body)
311             }
312             _ => body,
313         };
314         let (prefix, extra_offset) = rewrite_closure_fn_decl(
315             capture, asyncness, movability, fn_decl, body, expr.span, context, shape,
316         )?;
317         // If the closure goes multi line before its body, do not overflow the closure.
318         if prefix.contains('\n') {
319             return None;
320         }
321
322         let body_shape = shape.offset_left(extra_offset)?;
323
324         // We force to use block for the body of the closure for certain kinds of expressions.
325         if is_block_closure_forced(context, body) {
326             return rewrite_closure_with_block(body, &prefix, context, body_shape).and_then(
327                 |body_str| {
328                     // If the expression can fit in a single line, we need not force block closure.
329                     if body_str.lines().count() <= 7 {
330                         match rewrite_closure_expr(body, &prefix, context, shape) {
331                             Some(ref single_line_body_str)
332                                 if !single_line_body_str.contains('\n') =>
333                             {
334                                 Some(single_line_body_str.clone())
335                             }
336                             _ => Some(body_str),
337                         }
338                     } else {
339                         Some(body_str)
340                     }
341                 },
342             );
343         }
344
345         // When overflowing the closure which consists of a single control flow expression,
346         // force to use block if its condition uses multi line.
347         let is_multi_lined_cond = rewrite_cond(context, body, body_shape)
348             .map(|cond| cond.contains('\n') || cond.len() > body_shape.width)
349             .unwrap_or(false);
350         if is_multi_lined_cond {
351             return rewrite_closure_with_block(body, &prefix, context, body_shape);
352         }
353
354         // Seems fine, just format the closure in usual manner.
355         return expr.rewrite(context, shape);
356     }
357     None
358 }
359
360 /// Returns true if the given vector of arguments has more than one `ast::ExprKind::Closure`.
361 pub fn args_have_many_closure<T>(args: &[&T]) -> bool
362 where
363     T: ToExpr,
364 {
365     args.iter()
366         .filter(|arg| {
367             arg.to_expr()
368                 .map(|e| match e.node {
369                     ast::ExprKind::Closure(..) => true,
370                     _ => false,
371                 })
372                 .unwrap_or(false)
373         })
374         .count()
375         > 1
376 }
377
378 fn is_block_closure_forced(context: &RewriteContext, expr: &ast::Expr) -> bool {
379     // If we are inside macro, we do not want to add or remove block from closure body.
380     if context.inside_macro() {
381         false
382     } else {
383         is_block_closure_forced_inner(expr)
384     }
385 }
386
387 fn is_block_closure_forced_inner(expr: &ast::Expr) -> bool {
388     match expr.node {
389         ast::ExprKind::If(..)
390         | ast::ExprKind::IfLet(..)
391         | ast::ExprKind::While(..)
392         | ast::ExprKind::WhileLet(..)
393         | ast::ExprKind::ForLoop(..) => true,
394         ast::ExprKind::AddrOf(_, ref expr)
395         | ast::ExprKind::Box(ref expr)
396         | ast::ExprKind::Try(ref expr)
397         | ast::ExprKind::Unary(_, ref expr)
398         | ast::ExprKind::Cast(ref expr, _) => is_block_closure_forced_inner(expr),
399         _ => false,
400     }
401 }