]> git.lizzy.rs Git - rust.git/blob - src/macros.rs
Merge pull request #2210 from topecongiro/issue-2178
[rust.git] / src / macros.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 // Format list-like macro invocations. These are invocations whose token trees
12 // can be interpreted as expressions and separated by commas.
13 // Note that these token trees do not actually have to be interpreted as
14 // expressions by the compiler. An example of an invocation we would reformat is
15 // foo!( x, y, z ). The token x may represent an identifier in the code, but we
16 // interpreted as an expression.
17 // Macro uses which are not-list like, such as bar!(key => val), will not be
18 // reformatted.
19 // List-like invocations with parentheses will be formatted as function calls,
20 // and those with brackets will be formatted as array literals.
21
22 use syntax::ast;
23 use syntax::codemap::BytePos;
24 use syntax::parse::new_parser_from_tts;
25 use syntax::parse::parser::Parser;
26 use syntax::parse::token::Token;
27 use syntax::symbol;
28 use syntax::tokenstream::TokenStream;
29 use syntax::util::ThinVec;
30
31 use codemap::SpanUtils;
32 use comment::{contains_comment, FindUncommented};
33 use expr::{rewrite_array, rewrite_call_inner};
34 use rewrite::{Rewrite, RewriteContext};
35 use shape::{Indent, Shape};
36 use utils::mk_sp;
37
38 const FORCED_BRACKET_MACROS: &[&str] = &["vec!"];
39
40 // FIXME: use the enum from libsyntax?
41 #[derive(Clone, Copy, PartialEq, Eq)]
42 enum MacroStyle {
43     Parens,
44     Brackets,
45     Braces,
46 }
47
48 #[derive(Debug, Clone, Copy, PartialEq, Eq)]
49 pub enum MacroPosition {
50     Item,
51     Statement,
52     Expression,
53 }
54
55 impl MacroStyle {
56     fn opener(&self) -> &'static str {
57         match *self {
58             MacroStyle::Parens => "(",
59             MacroStyle::Brackets => "[",
60             MacroStyle::Braces => "{",
61         }
62     }
63 }
64
65 pub enum MacroArg {
66     Expr(ast::Expr),
67     Ty(ast::Ty),
68     Pat(ast::Pat),
69 }
70
71 impl Rewrite for MacroArg {
72     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
73         match *self {
74             MacroArg::Expr(ref expr) => expr.rewrite(context, shape),
75             MacroArg::Ty(ref ty) => ty.rewrite(context, shape),
76             MacroArg::Pat(ref pat) => pat.rewrite(context, shape),
77         }
78     }
79 }
80
81 fn parse_macro_arg(parser: &mut Parser) -> Option<MacroArg> {
82     macro_rules! parse_macro_arg {
83         ($target:tt, $macro_arg:ident, $parser:ident) => {
84             let mut cloned_parser = (*parser).clone();
85             match cloned_parser.$parser() {
86                 Ok($target) => {
87                     if parser.sess.span_diagnostic.has_errors() {
88                         parser.sess.span_diagnostic.reset_err_count();
89                     } else {
90                         // Parsing succeeded.
91                         *parser = cloned_parser;
92                         return Some(MacroArg::$macro_arg((*$target).clone()));
93                     }
94                 }
95                 Err(mut e) => {
96                     e.cancel();
97                     parser.sess.span_diagnostic.reset_err_count();
98                 }
99             }
100         }
101     }
102
103     parse_macro_arg!(expr, Expr, parse_expr);
104     parse_macro_arg!(ty, Ty, parse_ty);
105     parse_macro_arg!(pat, Pat, parse_pat);
106
107     None
108 }
109
110 pub fn rewrite_macro(
111     mac: &ast::Mac,
112     extra_ident: Option<ast::Ident>,
113     context: &RewriteContext,
114     shape: Shape,
115     position: MacroPosition,
116 ) -> Option<String> {
117     let context = &mut context.clone();
118     context.inside_macro = true;
119     if context.config.use_try_shorthand() {
120         if let Some(expr) = convert_try_mac(mac, context) {
121             return expr.rewrite(context, shape);
122         }
123     }
124
125     let original_style = macro_style(mac, context);
126
127     let macro_name = match extra_ident {
128         None => format!("{}!", mac.node.path),
129         Some(ident) => {
130             if ident == symbol::keywords::Invalid.ident() {
131                 format!("{}!", mac.node.path)
132             } else {
133                 format!("{}! {}", mac.node.path, ident)
134             }
135         }
136     };
137
138     let style = if FORCED_BRACKET_MACROS.contains(&&macro_name[..]) {
139         MacroStyle::Brackets
140     } else {
141         original_style
142     };
143
144     let ts: TokenStream = mac.node.stream();
145     if ts.is_empty() && !contains_comment(&context.snippet(mac.span)) {
146         return match style {
147             MacroStyle::Parens if position == MacroPosition::Item => {
148                 Some(format!("{}();", macro_name))
149             }
150             MacroStyle::Parens => Some(format!("{}()", macro_name)),
151             MacroStyle::Brackets => Some(format!("{}[]", macro_name)),
152             MacroStyle::Braces => Some(format!("{}{{}}", macro_name)),
153         };
154     }
155
156     let mut parser = new_parser_from_tts(context.parse_session, ts.trees().collect());
157     let mut arg_vec = Vec::new();
158     let mut vec_with_semi = false;
159     let mut trailing_comma = false;
160
161     if MacroStyle::Braces != style {
162         loop {
163             match parse_macro_arg(&mut parser) {
164                 Some(arg) => arg_vec.push(arg),
165                 None => return Some(context.snippet(mac.span)),
166             }
167
168             match parser.token {
169                 Token::Eof => break,
170                 Token::Comma => (),
171                 Token::Semi => {
172                     // Try to parse `vec![expr; expr]`
173                     if FORCED_BRACKET_MACROS.contains(&&macro_name[..]) {
174                         parser.bump();
175                         if parser.token != Token::Eof {
176                             match parse_macro_arg(&mut parser) {
177                                 Some(arg) => {
178                                     arg_vec.push(arg);
179                                     parser.bump();
180                                     if parser.token == Token::Eof && arg_vec.len() == 2 {
181                                         vec_with_semi = true;
182                                         break;
183                                     }
184                                 }
185                                 None => return Some(context.snippet(mac.span)),
186                             }
187                         }
188                     }
189                     return Some(context.snippet(mac.span));
190                 }
191                 _ => return Some(context.snippet(mac.span)),
192             }
193
194             parser.bump();
195
196             if parser.token == Token::Eof {
197                 trailing_comma = true;
198                 break;
199             }
200         }
201     }
202
203     match style {
204         MacroStyle::Parens => {
205             // Format macro invocation as function call, forcing no trailing
206             // comma because not all macros support them.
207             rewrite_call_inner(
208                 context,
209                 &macro_name,
210                 &arg_vec.iter().map(|e| &*e).collect::<Vec<_>>()[..],
211                 mac.span,
212                 shape,
213                 context.config.width_heuristics().fn_call_width,
214                 trailing_comma,
215             ).map(|rw| match position {
216                 MacroPosition::Item => format!("{};", rw),
217                 _ => rw,
218             })
219         }
220         MacroStyle::Brackets => {
221             let mac_shape = shape.offset_left(macro_name.len())?;
222             // Handle special case: `vec![expr; expr]`
223             if vec_with_semi {
224                 let (lbr, rbr) = if context.config.spaces_within_parens_and_brackets() {
225                     ("[ ", " ]")
226                 } else {
227                     ("[", "]")
228                 };
229                 // 6 = `vec!` + `; `
230                 let total_overhead = lbr.len() + rbr.len() + 6;
231                 let nested_shape = mac_shape.block_indent(context.config.tab_spaces());
232                 let lhs = arg_vec[0].rewrite(context, nested_shape)?;
233                 let rhs = arg_vec[1].rewrite(context, nested_shape)?;
234                 if !lhs.contains('\n') && !rhs.contains('\n')
235                     && lhs.len() + rhs.len() + total_overhead <= shape.width
236                 {
237                     Some(format!("{}{}{}; {}{}", macro_name, lbr, lhs, rhs, rbr))
238                 } else {
239                     Some(format!(
240                         "{}{}\n{}{};\n{}{}\n{}{}",
241                         macro_name,
242                         lbr,
243                         nested_shape.indent.to_string(context.config),
244                         lhs,
245                         nested_shape.indent.to_string(context.config),
246                         rhs,
247                         shape.indent.to_string(context.config),
248                         rbr
249                     ))
250                 }
251             } else {
252                 // If we are rewriting `vec!` macro or other special macros,
253                 // then we can rewrite this as an usual array literal.
254                 // Otherwise, we must preserve the original existence of trailing comma.
255                 if FORCED_BRACKET_MACROS.contains(&macro_name.as_str()) {
256                     context.inside_macro = false;
257                     trailing_comma = false;
258                 }
259                 // Convert `MacroArg` into `ast::Expr`, as `rewrite_array` only accepts the latter.
260                 let sp = mk_sp(
261                     context
262                         .codemap
263                         .span_after(mac.span, original_style.opener()),
264                     mac.span.hi() - BytePos(1),
265                 );
266                 let arg_vec = &arg_vec.iter().map(|e| &*e).collect::<Vec<_>>()[..];
267                 let rewrite = rewrite_array(arg_vec, sp, context, mac_shape, trailing_comma)?;
268
269                 Some(format!("{}{}", macro_name, rewrite))
270             }
271         }
272         MacroStyle::Braces => {
273             // Skip macro invocations with braces, for now.
274             indent_macro_snippet(context, &context.snippet(mac.span), shape.indent)
275         }
276     }
277 }
278
279 /// Tries to convert a macro use into a short hand try expression. Returns None
280 /// when the macro is not an instance of try! (or parsing the inner expression
281 /// failed).
282 pub fn convert_try_mac(mac: &ast::Mac, context: &RewriteContext) -> Option<ast::Expr> {
283     if &format!("{}", mac.node.path)[..] == "try" {
284         let ts: TokenStream = mac.node.tts.clone().into();
285         let mut parser = new_parser_from_tts(context.parse_session, ts.trees().collect());
286
287         Some(ast::Expr {
288             id: ast::NodeId::new(0), // dummy value
289             node: ast::ExprKind::Try(parser.parse_expr().ok()?),
290             span: mac.span, // incorrect span, but shouldn't matter too much
291             attrs: ThinVec::new(),
292         })
293     } else {
294         None
295     }
296 }
297
298 fn macro_style(mac: &ast::Mac, context: &RewriteContext) -> MacroStyle {
299     let snippet = context.snippet(mac.span);
300     let paren_pos = snippet.find_uncommented("(").unwrap_or(usize::max_value());
301     let bracket_pos = snippet.find_uncommented("[").unwrap_or(usize::max_value());
302     let brace_pos = snippet.find_uncommented("{").unwrap_or(usize::max_value());
303
304     if paren_pos < bracket_pos && paren_pos < brace_pos {
305         MacroStyle::Parens
306     } else if bracket_pos < brace_pos {
307         MacroStyle::Brackets
308     } else {
309         MacroStyle::Braces
310     }
311 }
312
313 /// Indent each line according to the specified `indent`.
314 /// e.g.
315 /// ```rust
316 /// foo!{
317 /// x,
318 /// y,
319 /// foo(
320 ///     a,
321 ///     b,
322 ///     c,
323 /// ),
324 /// }
325 /// ```
326 /// will become
327 /// ```rust
328 /// foo!{
329 ///     x,
330 ///     y,
331 ///     foo(
332 ///         a,
333 ///         b,
334 ///         c,
335 //      ),
336 /// }
337 /// ```
338 fn indent_macro_snippet(
339     context: &RewriteContext,
340     macro_str: &str,
341     indent: Indent,
342 ) -> Option<String> {
343     let mut lines = macro_str.lines();
344     let first_line = lines.next().map(|s| s.trim_right())?;
345     let mut trimmed_lines = Vec::with_capacity(16);
346
347     let min_prefix_space_width = lines
348         .filter_map(|line| {
349             let prefix_space_width = if is_empty_line(line) {
350                 None
351             } else {
352                 Some(get_prefix_space_width(context, line))
353             };
354             trimmed_lines.push((line.trim(), prefix_space_width));
355             prefix_space_width
356         })
357         .min()?;
358
359     Some(
360         String::from(first_line) + "\n"
361             + &trimmed_lines
362                 .iter()
363                 .map(|&(line, prefix_space_width)| match prefix_space_width {
364                     Some(original_indent_width) => {
365                         let new_indent_width = indent.width()
366                             + original_indent_width
367                                 .checked_sub(min_prefix_space_width)
368                                 .unwrap_or(0);
369                         let new_indent = Indent::from_width(context.config, new_indent_width);
370                         format!("{}{}", new_indent.to_string(context.config), line.trim())
371                     }
372                     None => String::new(),
373                 })
374                 .collect::<Vec<_>>()
375                 .join("\n"),
376     )
377 }
378
379 fn get_prefix_space_width(context: &RewriteContext, s: &str) -> usize {
380     let mut width = 0;
381     for c in s.chars() {
382         match c {
383             ' ' => width += 1,
384             '\t' => width += context.config.tab_spaces(),
385             _ => return width,
386         }
387     }
388     width
389 }
390
391 fn is_empty_line(s: &str) -> bool {
392     s.is_empty() || s.chars().all(char::is_whitespace)
393 }