]> git.lizzy.rs Git - rust.git/blob - src/macros.rs
Do not insert spaces around braces with empty body or multiple lines
[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 std::collections::HashMap;
23
24 use config::lists::*;
25 use syntax::codemap::{BytePos, Span};
26 use syntax::parse::new_parser_from_tts;
27 use syntax::parse::parser::Parser;
28 use syntax::parse::token::{BinOpToken, DelimToken, Token};
29 use syntax::print::pprust;
30 use syntax::symbol;
31 use syntax::tokenstream::{Cursor, ThinTokenStream, TokenStream, TokenTree};
32 use syntax::util::ThinVec;
33 use syntax::{ast, ptr};
34
35 use codemap::SpanUtils;
36 use comment::{
37     contains_comment, remove_trailing_white_spaces, CharClasses, FindUncommented, FullCodeCharKind,
38     LineClasses,
39 };
40 use expr::rewrite_array;
41 use lists::{itemize_list, write_list, ListFormatting};
42 use overflow;
43 use rewrite::{Rewrite, RewriteContext};
44 use shape::{Indent, Shape};
45 use spanned::Spanned;
46 use utils::{format_visibility, mk_sp, wrap_str};
47
48 const FORCED_BRACKET_MACROS: &[&str] = &["vec!"];
49
50 #[derive(Debug, Clone, Copy, PartialEq, Eq)]
51 pub enum MacroPosition {
52     Item,
53     Statement,
54     Expression,
55     Pat,
56 }
57
58 #[derive(Debug)]
59 pub enum MacroArg {
60     Expr(ptr::P<ast::Expr>),
61     Ty(ptr::P<ast::Ty>),
62     Pat(ptr::P<ast::Pat>),
63     Item(ptr::P<ast::Item>),
64 }
65
66 impl Rewrite for ast::Item {
67     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
68         let mut visitor = ::visitor::FmtVisitor::from_context(context);
69         visitor.block_indent = shape.indent;
70         visitor.last_pos = self.span().lo();
71         visitor.visit_item(self);
72         Some(visitor.buffer)
73     }
74 }
75
76 impl Rewrite for MacroArg {
77     fn rewrite(&self, context: &RewriteContext, shape: Shape) -> Option<String> {
78         match *self {
79             MacroArg::Expr(ref expr) => expr.rewrite(context, shape),
80             MacroArg::Ty(ref ty) => ty.rewrite(context, shape),
81             MacroArg::Pat(ref pat) => pat.rewrite(context, shape),
82             MacroArg::Item(ref item) => item.rewrite(context, shape),
83         }
84     }
85 }
86
87 fn parse_macro_arg(parser: &mut Parser) -> Option<MacroArg> {
88     macro_rules! parse_macro_arg {
89         ($macro_arg:ident, $parser:ident, $f:expr) => {
90             let mut cloned_parser = (*parser).clone();
91             match cloned_parser.$parser() {
92                 Ok(x) => {
93                     if parser.sess.span_diagnostic.has_errors() {
94                         parser.sess.span_diagnostic.reset_err_count();
95                     } else {
96                         // Parsing succeeded.
97                         *parser = cloned_parser;
98                         return Some(MacroArg::$macro_arg($f(x)?));
99                     }
100                 }
101                 Err(mut e) => {
102                     e.cancel();
103                     parser.sess.span_diagnostic.reset_err_count();
104                 }
105             }
106         };
107     }
108
109     parse_macro_arg!(Expr, parse_expr, |x: ptr::P<ast::Expr>| Some(x));
110     parse_macro_arg!(Ty, parse_ty, |x: ptr::P<ast::Ty>| Some(x));
111     parse_macro_arg!(Pat, parse_pat, |x: ptr::P<ast::Pat>| Some(x));
112     // `parse_item` returns `Option<ptr::P<ast::Item>>`.
113     parse_macro_arg!(Item, parse_item, |x: Option<ptr::P<ast::Item>>| x);
114
115     None
116 }
117
118 /// Rewrite macro name without using pretty-printer if possible.
119 fn rewrite_macro_name(path: &ast::Path, extra_ident: Option<ast::Ident>) -> String {
120     let name = if path.segments.len() == 1 {
121         // Avoid using pretty-printer in the common case.
122         format!("{}!", path.segments[0].ident)
123     } else {
124         format!("{}!", path)
125     };
126     match extra_ident {
127         Some(ident) if ident != symbol::keywords::Invalid.ident() => format!("{} {}", name, ident),
128         _ => name,
129     }
130 }
131
132 pub fn rewrite_macro(
133     mac: &ast::Mac,
134     extra_ident: Option<ast::Ident>,
135     context: &RewriteContext,
136     shape: Shape,
137     position: MacroPosition,
138 ) -> Option<String> {
139     context.inside_macro.replace(true);
140     let result = rewrite_macro_inner(mac, extra_ident, context, shape, position);
141     context.inside_macro.replace(false);
142     result
143 }
144
145 pub fn rewrite_macro_inner(
146     mac: &ast::Mac,
147     extra_ident: Option<ast::Ident>,
148     context: &RewriteContext,
149     shape: Shape,
150     position: MacroPosition,
151 ) -> Option<String> {
152     if context.config.use_try_shorthand() {
153         if let Some(expr) = convert_try_mac(mac, context) {
154             context.inside_macro.replace(false);
155             return expr.rewrite(context, shape);
156         }
157     }
158
159     let original_style = macro_style(mac, context);
160
161     let macro_name = rewrite_macro_name(&mac.node.path, extra_ident);
162
163     let style = if FORCED_BRACKET_MACROS.contains(&&macro_name[..]) {
164         DelimToken::Bracket
165     } else {
166         original_style
167     };
168
169     let ts: TokenStream = mac.node.stream();
170     let has_comment = contains_comment(context.snippet(mac.span));
171     if ts.is_empty() && !has_comment {
172         return match style {
173             DelimToken::Paren if position == MacroPosition::Item => {
174                 Some(format!("{}();", macro_name))
175             }
176             DelimToken::Paren => Some(format!("{}()", macro_name)),
177             DelimToken::Bracket => Some(format!("{}[]", macro_name)),
178             DelimToken::Brace => Some(format!("{}{{}}", macro_name)),
179             _ => unreachable!(),
180         };
181     }
182     // Format well-known macros which cannot be parsed as a valid AST.
183     // TODO: Maybe add more macros?
184     if macro_name == "lazy_static!" && !has_comment {
185         if let success @ Some(..) = format_lazy_static(context, shape, &ts) {
186             return success;
187         }
188     }
189
190     let mut parser = new_parser_from_tts(context.parse_session, ts.trees().collect());
191     let mut arg_vec = Vec::new();
192     let mut vec_with_semi = false;
193     let mut trailing_comma = false;
194
195     if DelimToken::Brace != style {
196         loop {
197             match parse_macro_arg(&mut parser) {
198                 Some(arg) => arg_vec.push(arg),
199                 None => return Some(context.snippet(mac.span).to_owned()),
200             }
201
202             match parser.token {
203                 Token::Eof => break,
204                 Token::Comma => (),
205                 Token::Semi => {
206                     // Try to parse `vec![expr; expr]`
207                     if FORCED_BRACKET_MACROS.contains(&&macro_name[..]) {
208                         parser.bump();
209                         if parser.token != Token::Eof {
210                             match parse_macro_arg(&mut parser) {
211                                 Some(arg) => {
212                                     arg_vec.push(arg);
213                                     parser.bump();
214                                     if parser.token == Token::Eof && arg_vec.len() == 2 {
215                                         vec_with_semi = true;
216                                         break;
217                                     }
218                                 }
219                                 None => return Some(context.snippet(mac.span).to_owned()),
220                             }
221                         }
222                     }
223                     return Some(context.snippet(mac.span).to_owned());
224                 }
225                 _ => return Some(context.snippet(mac.span).to_owned()),
226             }
227
228             parser.bump();
229
230             if parser.token == Token::Eof {
231                 trailing_comma = true;
232                 break;
233             }
234         }
235     }
236
237     match style {
238         DelimToken::Paren => {
239             // Format macro invocation as function call, preserve the trailing
240             // comma because not all macros support them.
241             overflow::rewrite_with_parens(
242                 context,
243                 &macro_name,
244                 &arg_vec.iter().map(|e| &*e).collect::<Vec<_>>(),
245                 shape,
246                 mac.span,
247                 context.config.width_heuristics().fn_call_width,
248                 if trailing_comma {
249                     Some(SeparatorTactic::Always)
250                 } else {
251                     Some(SeparatorTactic::Never)
252                 },
253             ).map(|rw| match position {
254                 MacroPosition::Item => format!("{};", rw),
255                 _ => rw,
256             })
257         }
258         DelimToken::Bracket => {
259             // Handle special case: `vec![expr; expr]`
260             if vec_with_semi {
261                 let mac_shape = shape.offset_left(macro_name.len())?;
262                 // 8 = `vec![]` + `; `
263                 let total_overhead = 8;
264                 let nested_shape = mac_shape.block_indent(context.config.tab_spaces());
265                 let lhs = arg_vec[0].rewrite(context, nested_shape)?;
266                 let rhs = arg_vec[1].rewrite(context, nested_shape)?;
267                 if !lhs.contains('\n')
268                     && !rhs.contains('\n')
269                     && lhs.len() + rhs.len() + total_overhead <= shape.width
270                 {
271                     Some(format!("{}[{}; {}]", macro_name, lhs, rhs))
272                 } else {
273                     Some(format!(
274                         "{}[{}{};{}{}{}]",
275                         macro_name,
276                         nested_shape.indent.to_string_with_newline(context.config),
277                         lhs,
278                         nested_shape.indent.to_string_with_newline(context.config),
279                         rhs,
280                         shape.indent.to_string_with_newline(context.config),
281                     ))
282                 }
283             } else {
284                 // If we are rewriting `vec!` macro or other special macros,
285                 // then we can rewrite this as an usual array literal.
286                 // Otherwise, we must preserve the original existence of trailing comma.
287                 let macro_name = &macro_name.as_str();
288                 let mut force_trailing_comma = if trailing_comma {
289                     Some(SeparatorTactic::Always)
290                 } else {
291                     Some(SeparatorTactic::Never)
292                 };
293                 if FORCED_BRACKET_MACROS.contains(macro_name) {
294                     context.inside_macro.replace(false);
295                     if context.use_block_indent() {
296                         force_trailing_comma = Some(SeparatorTactic::Vertical);
297                     };
298                 }
299                 // Convert `MacroArg` into `ast::Expr`, as `rewrite_array` only accepts the latter.
300                 let arg_vec = &arg_vec.iter().map(|e| &*e).collect::<Vec<_>>();
301                 let rewrite = rewrite_array(
302                     macro_name,
303                     arg_vec,
304                     mac.span,
305                     context,
306                     shape,
307                     force_trailing_comma,
308                     Some(original_style),
309                 )?;
310                 let comma = match position {
311                     MacroPosition::Item => ";",
312                     _ => "",
313                 };
314
315                 Some(format!("{}{}", rewrite, comma))
316             }
317         }
318         DelimToken::Brace => {
319             // Skip macro invocations with braces, for now.
320             indent_macro_snippet(context, context.snippet(mac.span), shape.indent)
321         }
322         _ => unreachable!(),
323     }
324 }
325
326 pub fn rewrite_macro_def(
327     context: &RewriteContext,
328     shape: Shape,
329     indent: Indent,
330     def: &ast::MacroDef,
331     ident: ast::Ident,
332     vis: &ast::Visibility,
333     span: Span,
334 ) -> Option<String> {
335     let snippet = Some(remove_trailing_white_spaces(context.snippet(span)));
336     if snippet.as_ref().map_or(true, |s| s.ends_with(';')) {
337         return snippet;
338     }
339
340     let mut parser = MacroParser::new(def.stream().into_trees());
341     let parsed_def = match parser.parse() {
342         Some(def) => def,
343         None => return snippet,
344     };
345
346     let mut result = if def.legacy {
347         String::from("macro_rules!")
348     } else {
349         format!("{}macro", format_visibility(vis))
350     };
351
352     result += " ";
353     result += &ident.name.as_str();
354
355     let multi_branch_style = def.legacy || parsed_def.branches.len() != 1;
356
357     let arm_shape = if multi_branch_style {
358         shape
359             .block_indent(context.config.tab_spaces())
360             .with_max_width(context.config)
361     } else {
362         shape
363     };
364
365     let branch_items = itemize_list(
366         context.snippet_provider,
367         parsed_def.branches.iter(),
368         "}",
369         ";",
370         |branch| branch.span.lo(),
371         |branch| branch.span.hi(),
372         |branch| branch.rewrite(context, arm_shape, multi_branch_style),
373         context.snippet_provider.span_after(span, "{"),
374         span.hi(),
375         false,
376     ).collect::<Vec<_>>();
377
378     let fmt = ListFormatting {
379         tactic: DefinitiveListTactic::Vertical,
380         separator: if def.legacy { ";" } else { "" },
381         trailing_separator: SeparatorTactic::Always,
382         separator_place: SeparatorPlace::Back,
383         shape: arm_shape,
384         ends_with_newline: true,
385         preserve_newline: true,
386         config: context.config,
387     };
388
389     if multi_branch_style {
390         result += " {";
391         result += &arm_shape.indent.to_string_with_newline(context.config);
392     }
393
394     result += write_list(&branch_items, &fmt)?.as_str();
395
396     if multi_branch_style {
397         result += &indent.to_string_with_newline(context.config);
398         result += "}";
399     }
400
401     Some(result)
402 }
403
404 fn register_metavariable(
405     map: &mut HashMap<String, String>,
406     result: &mut String,
407     name: &str,
408     dollar_count: usize,
409 ) {
410     let mut new_name = String::new();
411     let mut old_name = String::new();
412
413     old_name.push('$');
414     for _ in 0..(dollar_count - 1) {
415         new_name.push('$');
416         old_name.push('$');
417     }
418     new_name.push('z');
419     new_name.push_str(&name);
420     old_name.push_str(&name);
421
422     result.push_str(&new_name);
423     map.insert(old_name, new_name);
424 }
425
426 // Replaces `$foo` with `zfoo`. We must check for name overlap to ensure we
427 // aren't causing problems.
428 // This should also work for escaped `$` variables, where we leave earlier `$`s.
429 fn replace_names(input: &str) -> Option<(String, HashMap<String, String>)> {
430     // Each substitution will require five or six extra bytes.
431     let mut result = String::with_capacity(input.len() + 64);
432     let mut substs = HashMap::new();
433     let mut dollar_count = 0;
434     let mut cur_name = String::new();
435
436     for (kind, c) in CharClasses::new(input.chars()) {
437         if kind != FullCodeCharKind::Normal {
438             result.push(c);
439         } else if c == '$' {
440             dollar_count += 1;
441         } else if dollar_count == 0 {
442             result.push(c);
443         } else if !c.is_alphanumeric() && !cur_name.is_empty() {
444             // Terminates a name following one or more dollars.
445             register_metavariable(&mut substs, &mut result, &cur_name, dollar_count);
446
447             result.push(c);
448             dollar_count = 0;
449             cur_name.clear();
450         } else if c == '(' && cur_name.is_empty() {
451             // FIXME: Support macro def with repeat.
452             return None;
453         } else if c.is_alphanumeric() || c == '_' {
454             cur_name.push(c);
455         }
456     }
457
458     if !cur_name.is_empty() {
459         register_metavariable(&mut substs, &mut result, &cur_name, dollar_count);
460     }
461
462     debug!("replace_names `{}` {:?}", result, substs);
463
464     Some((result, substs))
465 }
466
467 #[derive(Debug, Clone)]
468 enum MacroArgKind {
469     /// e.g. `$x: expr`.
470     MetaVariable(ast::Ident, String),
471     /// e.g. `$($foo: expr),*`
472     Repeat(
473         /// `()`, `[]` or `{}`.
474         DelimToken,
475         /// Inner arguments inside delimiters.
476         Vec<ParsedMacroArg>,
477         /// Something after the closing delimiter and the repeat token, if available.
478         Option<Box<ParsedMacroArg>>,
479         /// The repeat token. This could be one of `*`, `+` or `?`.
480         Token,
481     ),
482     /// e.g. `[derive(Debug)]`
483     Delimited(DelimToken, Vec<ParsedMacroArg>),
484     /// A possible separator. e.g. `,` or `;`.
485     Separator(String, String),
486     /// Other random stuff that does not fit to other kinds.
487     /// e.g. `== foo` in `($x: expr == foo)`.
488     Other(String, String),
489 }
490
491 fn delim_token_to_str(
492     context: &RewriteContext,
493     delim_token: &DelimToken,
494     shape: Shape,
495     use_multiple_lines: bool,
496     inner_is_empty: bool,
497 ) -> (String, String) {
498     let (lhs, rhs) = match *delim_token {
499         DelimToken::Paren => ("(", ")"),
500         DelimToken::Bracket => ("[", "]"),
501         DelimToken::Brace => {
502             if inner_is_empty || use_multiple_lines {
503                 ("{", "}")
504             } else {
505                 ("{ ", " }")
506             }
507         }
508         DelimToken::NoDelim => ("", ""),
509     };
510     if use_multiple_lines {
511         let indent_str = shape.indent.to_string_with_newline(context.config);
512         let nested_indent_str = shape
513             .indent
514             .block_indent(context.config)
515             .to_string_with_newline(context.config);
516         (
517             format!("{}{}", lhs, nested_indent_str),
518             format!("{}{}", indent_str, rhs),
519         )
520     } else {
521         (lhs.to_owned(), rhs.to_owned())
522     }
523 }
524
525 impl MacroArgKind {
526     fn starts_with_brace(&self) -> bool {
527         match *self {
528             MacroArgKind::Repeat(DelimToken::Brace, _, _, _)
529             | MacroArgKind::Delimited(DelimToken::Brace, _) => true,
530             _ => false,
531         }
532     }
533
534     fn starts_with_dollar(&self) -> bool {
535         match *self {
536             MacroArgKind::Repeat(..) | MacroArgKind::MetaVariable(..) => true,
537             _ => false,
538         }
539     }
540
541     fn ends_with_space(&self) -> bool {
542         match *self {
543             MacroArgKind::Separator(..) => true,
544             _ => false,
545         }
546     }
547
548     fn has_meta_var(&self) -> bool {
549         match *self {
550             MacroArgKind::MetaVariable(..) => true,
551             MacroArgKind::Repeat(_, ref args, _, _) => args.iter().any(|a| a.kind.has_meta_var()),
552             _ => false,
553         }
554     }
555
556     fn rewrite(
557         &self,
558         context: &RewriteContext,
559         shape: Shape,
560         use_multiple_lines: bool,
561     ) -> Option<String> {
562         let rewrite_delimited_inner = |delim_tok, args| -> Option<(String, String, String)> {
563             let inner = wrap_macro_args(context, args, shape)?;
564             let (lhs, rhs) = delim_token_to_str(context, delim_tok, shape, false, inner.is_empty());
565             if lhs.len() + inner.len() + rhs.len() <= shape.width {
566                 return Some((lhs, inner, rhs));
567             }
568
569             let (lhs, rhs) = delim_token_to_str(context, delim_tok, shape, true, false);
570             let nested_shape = shape
571                 .block_indent(context.config.tab_spaces())
572                 .with_max_width(context.config);
573             let inner = wrap_macro_args(context, args, nested_shape)?;
574             Some((lhs, inner, rhs))
575         };
576
577         match *self {
578             MacroArgKind::MetaVariable(ty, ref name) => {
579                 Some(format!("${}:{}", name, ty.name.as_str()))
580             }
581             MacroArgKind::Repeat(ref delim_tok, ref args, ref another, ref tok) => {
582                 let (lhs, inner, rhs) = rewrite_delimited_inner(delim_tok, args)?;
583                 let another = another
584                     .as_ref()
585                     .and_then(|a| a.rewrite(context, shape, use_multiple_lines))
586                     .unwrap_or_else(|| "".to_owned());
587                 let repeat_tok = pprust::token_to_string(tok);
588
589                 Some(format!("${}{}{}{}{}", lhs, inner, rhs, another, repeat_tok))
590             }
591             MacroArgKind::Delimited(ref delim_tok, ref args) => {
592                 rewrite_delimited_inner(delim_tok, args)
593                     .map(|(lhs, inner, rhs)| format!("{}{}{}", lhs, inner, rhs))
594             }
595             MacroArgKind::Separator(ref sep, ref prefix) => Some(format!("{}{} ", prefix, sep)),
596             MacroArgKind::Other(ref inner, ref prefix) => Some(format!("{}{}", prefix, inner)),
597         }
598     }
599 }
600
601 #[derive(Debug, Clone)]
602 struct ParsedMacroArg {
603     kind: MacroArgKind,
604     span: Span,
605 }
606
607 impl ParsedMacroArg {
608     pub fn rewrite(
609         &self,
610         context: &RewriteContext,
611         shape: Shape,
612         use_multiple_lines: bool,
613     ) -> Option<String> {
614         self.kind.rewrite(context, shape, use_multiple_lines)
615     }
616 }
617
618 /// Parses macro arguments on macro def.
619 struct MacroArgParser {
620     /// Holds either a name of the next metavariable, a separator or a junk.
621     buf: String,
622     /// The start position on the current buffer.
623     lo: BytePos,
624     /// The first token of the current buffer.
625     start_tok: Token,
626     /// Set to true if we are parsing a metavariable or a repeat.
627     is_meta_var: bool,
628     /// The position of the last token.
629     hi: BytePos,
630     /// The last token parsed.
631     last_tok: Token,
632     /// Holds the parsed arguments.
633     result: Vec<ParsedMacroArg>,
634 }
635
636 fn last_tok(tt: &TokenTree) -> Token {
637     match *tt {
638         TokenTree::Token(_, ref t) => t.clone(),
639         TokenTree::Delimited(_, ref d) => d.close_token(),
640     }
641 }
642
643 impl MacroArgParser {
644     pub fn new() -> MacroArgParser {
645         MacroArgParser {
646             lo: BytePos(0),
647             hi: BytePos(0),
648             buf: String::new(),
649             is_meta_var: false,
650             last_tok: Token::Eof,
651             start_tok: Token::Eof,
652             result: vec![],
653         }
654     }
655
656     fn set_last_tok(&mut self, tok: &TokenTree) {
657         self.hi = tok.span().hi();
658         self.last_tok = last_tok(tok);
659     }
660
661     fn add_separator(&mut self) {
662         let prefix = if self.need_space_prefix() {
663             " ".to_owned()
664         } else {
665             "".to_owned()
666         };
667         self.result.push(ParsedMacroArg {
668             kind: MacroArgKind::Separator(self.buf.clone(), prefix),
669             span: mk_sp(self.lo, self.hi),
670         });
671         self.buf.clear();
672     }
673
674     fn add_other(&mut self) {
675         let prefix = if self.need_space_prefix() {
676             " ".to_owned()
677         } else {
678             "".to_owned()
679         };
680         self.result.push(ParsedMacroArg {
681             kind: MacroArgKind::Other(self.buf.clone(), prefix),
682             span: mk_sp(self.lo, self.hi),
683         });
684         self.buf.clear();
685     }
686
687     fn add_meta_variable(&mut self, iter: &mut Cursor) -> Option<()> {
688         match iter.next() {
689             Some(TokenTree::Token(sp, Token::Ident(ref ident, _))) => {
690                 self.result.push(ParsedMacroArg {
691                     kind: MacroArgKind::MetaVariable(*ident, self.buf.clone()),
692                     span: mk_sp(self.lo, sp.hi()),
693                 });
694
695                 self.buf.clear();
696                 self.is_meta_var = false;
697                 Some(())
698             }
699             _ => None,
700         }
701     }
702
703     fn add_delimited(&mut self, inner: Vec<ParsedMacroArg>, delim: DelimToken, span: Span) {
704         self.result.push(ParsedMacroArg {
705             kind: MacroArgKind::Delimited(delim, inner),
706             span,
707         });
708     }
709
710     // $($foo: expr),?
711     fn add_repeat(
712         &mut self,
713         inner: Vec<ParsedMacroArg>,
714         delim: DelimToken,
715         iter: &mut Cursor,
716         span: Span,
717     ) -> Option<()> {
718         let mut buffer = String::new();
719         let mut first = false;
720         let mut lo = span.lo();
721         let mut hi = span.hi();
722
723         // Parse '*', '+' or '?.
724         for ref tok in iter {
725             self.set_last_tok(tok);
726             if first {
727                 first = false;
728                 lo = tok.span().lo();
729             }
730
731             match tok {
732                 TokenTree::Token(_, Token::BinOp(BinOpToken::Plus))
733                 | TokenTree::Token(_, Token::Question)
734                 | TokenTree::Token(_, Token::BinOp(BinOpToken::Star)) => {
735                     break;
736                 }
737                 TokenTree::Token(sp, ref t) => {
738                     buffer.push_str(&pprust::token_to_string(t));
739                     hi = sp.hi();
740                 }
741                 _ => return None,
742             }
743         }
744
745         // There could be some random stuff between ')' and '*', '+' or '?'.
746         let another = if buffer.trim().is_empty() {
747             None
748         } else {
749             Some(Box::new(ParsedMacroArg {
750                 kind: MacroArgKind::Other(buffer, "".to_owned()),
751                 span: mk_sp(lo, hi),
752             }))
753         };
754
755         self.result.push(ParsedMacroArg {
756             kind: MacroArgKind::Repeat(delim, inner, another, self.last_tok.clone()),
757             span: mk_sp(self.lo, self.hi),
758         });
759         Some(())
760     }
761
762     fn update_buffer(&mut self, lo: BytePos, t: &Token) {
763         if self.buf.is_empty() {
764             self.lo = lo;
765             self.start_tok = t.clone();
766         } else {
767             let needs_space = match next_space(&self.last_tok) {
768                 SpaceState::Ident => ident_like(t),
769                 SpaceState::Punctuation => !ident_like(t),
770                 SpaceState::Always => true,
771                 SpaceState::Never => false,
772             };
773             if force_space_before(t) || needs_space {
774                 self.buf.push(' ');
775             }
776         }
777
778         self.buf.push_str(&pprust::token_to_string(t));
779     }
780
781     fn need_space_prefix(&self) -> bool {
782         if self.result.is_empty() {
783             return false;
784         }
785
786         let last_arg = self.result.last().unwrap();
787         if let MacroArgKind::MetaVariable(..) = last_arg.kind {
788             if ident_like(&self.start_tok) {
789                 return true;
790             }
791             if self.start_tok == Token::Colon {
792                 return true;
793             }
794         }
795
796         if force_space_before(&self.start_tok) {
797             return true;
798         }
799
800         false
801     }
802
803     /// Returns a collection of parsed macro def's arguments.
804     pub fn parse(mut self, tokens: ThinTokenStream) -> Option<Vec<ParsedMacroArg>> {
805         let mut iter = (tokens.into(): TokenStream).trees();
806
807         while let Some(ref tok) = iter.next() {
808             match tok {
809                 TokenTree::Token(sp, Token::Dollar) => {
810                     // We always want to add a separator before meta variables.
811                     if !self.buf.is_empty() {
812                         self.add_separator();
813                     }
814
815                     // Start keeping the name of this metavariable in the buffer.
816                     self.is_meta_var = true;
817                     self.lo = sp.lo();
818                     self.start_tok = Token::Dollar;
819                 }
820                 TokenTree::Token(_, Token::Colon) if self.is_meta_var => {
821                     self.add_meta_variable(&mut iter)?;
822                 }
823                 TokenTree::Token(sp, ref t) => self.update_buffer(sp.lo(), t),
824                 TokenTree::Delimited(sp, delimited) => {
825                     if !self.buf.is_empty() {
826                         if next_space(&self.last_tok) == SpaceState::Always {
827                             self.add_separator();
828                         } else {
829                             self.add_other();
830                         }
831                     }
832
833                     // Parse the stuff inside delimiters.
834                     let mut parser = MacroArgParser::new();
835                     parser.lo = sp.lo();
836                     let delimited_arg = parser.parse(delimited.tts.clone())?;
837
838                     if self.is_meta_var {
839                         self.add_repeat(delimited_arg, delimited.delim, &mut iter, *sp)?;
840                         self.is_meta_var = false;
841                     } else {
842                         self.add_delimited(delimited_arg, delimited.delim, *sp);
843                     }
844                 }
845             }
846
847             self.set_last_tok(tok);
848         }
849
850         // We are left with some stuff in the buffer. Since there is nothing
851         // left to separate, add this as `Other`.
852         if !self.buf.is_empty() {
853             self.add_other();
854         }
855
856         Some(self.result)
857     }
858 }
859
860 fn wrap_macro_args(
861     context: &RewriteContext,
862     args: &[ParsedMacroArg],
863     shape: Shape,
864 ) -> Option<String> {
865     wrap_macro_args_inner(context, args, shape, false)
866         .or_else(|| wrap_macro_args_inner(context, args, shape, true))
867 }
868
869 fn wrap_macro_args_inner(
870     context: &RewriteContext,
871     args: &[ParsedMacroArg],
872     shape: Shape,
873     use_multiple_lines: bool,
874 ) -> Option<String> {
875     let mut result = String::with_capacity(128);
876     let mut iter = args.iter().peekable();
877     let indent_str = shape.indent.to_string_with_newline(context.config);
878
879     while let Some(ref arg) = iter.next() {
880         result.push_str(&arg.rewrite(context, shape, use_multiple_lines)?);
881
882         if use_multiple_lines
883             && (arg.kind.ends_with_space() || iter.peek().map_or(false, |a| a.kind.has_meta_var()))
884         {
885             if arg.kind.ends_with_space() {
886                 result.pop();
887             }
888             result.push_str(&indent_str);
889         } else if let Some(ref next_arg) = iter.peek() {
890             let space_before_dollar =
891                 !arg.kind.ends_with_space() && next_arg.kind.starts_with_dollar();
892             let space_before_brace = next_arg.kind.starts_with_brace();
893             if space_before_dollar || space_before_brace {
894                 result.push(' ');
895             }
896         }
897     }
898
899     if !use_multiple_lines && result.len() >= shape.width {
900         None
901     } else {
902         Some(result)
903     }
904 }
905
906 // This is a bit sketchy. The token rules probably need tweaking, but it works
907 // for some common cases. I hope the basic logic is sufficient. Note that the
908 // meaning of some tokens is a bit different here from usual Rust, e.g., `*`
909 // and `(`/`)` have special meaning.
910 //
911 // We always try and format on one line.
912 // FIXME: Use multi-line when every thing does not fit on one line.
913 fn format_macro_args(
914     context: &RewriteContext,
915     toks: ThinTokenStream,
916     shape: Shape,
917 ) -> Option<String> {
918     let parsed_args = MacroArgParser::new().parse(toks)?;
919     wrap_macro_args(context, &parsed_args, shape)
920 }
921
922 // We should insert a space if the next token is a:
923 #[derive(Copy, Clone, PartialEq)]
924 enum SpaceState {
925     Never,
926     Punctuation,
927     Ident, // Or ident/literal-like thing.
928     Always,
929 }
930
931 fn force_space_before(tok: &Token) -> bool {
932     debug!("tok: force_space_before {:?}", tok);
933
934     match *tok {
935         Token::Eq
936         | Token::Lt
937         | Token::Le
938         | Token::EqEq
939         | Token::Ne
940         | Token::Ge
941         | Token::Gt
942         | Token::AndAnd
943         | Token::OrOr
944         | Token::Not
945         | Token::Tilde
946         | Token::BinOpEq(_)
947         | Token::At
948         | Token::RArrow
949         | Token::LArrow
950         | Token::FatArrow
951         | Token::BinOp(_)
952         | Token::Pound
953         | Token::Dollar => true,
954         _ => false,
955     }
956 }
957
958 fn ident_like(tok: &Token) -> bool {
959     match *tok {
960         Token::Ident(..) | Token::Literal(..) | Token::Lifetime(_) => true,
961         _ => false,
962     }
963 }
964
965 fn next_space(tok: &Token) -> SpaceState {
966     debug!("next_space: {:?}", tok);
967
968     match *tok {
969         Token::Not
970         | Token::BinOp(BinOpToken::And)
971         | Token::Tilde
972         | Token::At
973         | Token::Comma
974         | Token::Dot
975         | Token::DotDot
976         | Token::DotDotDot
977         | Token::DotDotEq
978         | Token::DotEq
979         | Token::Question => SpaceState::Punctuation,
980
981         Token::ModSep
982         | Token::Pound
983         | Token::Dollar
984         | Token::OpenDelim(_)
985         | Token::CloseDelim(_)
986         | Token::Whitespace => SpaceState::Never,
987
988         Token::Literal(..) | Token::Ident(..) | Token::Lifetime(_) => SpaceState::Ident,
989
990         _ => SpaceState::Always,
991     }
992 }
993
994 /// Tries to convert a macro use into a short hand try expression. Returns None
995 /// when the macro is not an instance of try! (or parsing the inner expression
996 /// failed).
997 pub fn convert_try_mac(mac: &ast::Mac, context: &RewriteContext) -> Option<ast::Expr> {
998     if &format!("{}", mac.node.path) == "try" {
999         let ts: TokenStream = mac.node.tts.clone().into();
1000         let mut parser = new_parser_from_tts(context.parse_session, ts.trees().collect());
1001
1002         Some(ast::Expr {
1003             id: ast::NodeId::new(0), // dummy value
1004             node: ast::ExprKind::Try(parser.parse_expr().ok()?),
1005             span: mac.span, // incorrect span, but shouldn't matter too much
1006             attrs: ThinVec::new(),
1007         })
1008     } else {
1009         None
1010     }
1011 }
1012
1013 fn macro_style(mac: &ast::Mac, context: &RewriteContext) -> DelimToken {
1014     let snippet = context.snippet(mac.span);
1015     let paren_pos = snippet.find_uncommented("(").unwrap_or(usize::max_value());
1016     let bracket_pos = snippet.find_uncommented("[").unwrap_or(usize::max_value());
1017     let brace_pos = snippet.find_uncommented("{").unwrap_or(usize::max_value());
1018
1019     if paren_pos < bracket_pos && paren_pos < brace_pos {
1020         DelimToken::Paren
1021     } else if bracket_pos < brace_pos {
1022         DelimToken::Bracket
1023     } else {
1024         DelimToken::Brace
1025     }
1026 }
1027
1028 /// Indent each line according to the specified `indent`.
1029 /// e.g.
1030 ///
1031 /// ```rust,ignore
1032 /// foo!{
1033 /// x,
1034 /// y,
1035 /// foo(
1036 ///     a,
1037 ///     b,
1038 ///     c,
1039 /// ),
1040 /// }
1041 /// ```
1042 ///
1043 /// will become
1044 ///
1045 /// ```rust,ignore
1046 /// foo!{
1047 ///     x,
1048 ///     y,
1049 ///     foo(
1050 ///         a,
1051 ///         b,
1052 ///         c,
1053 ///     ),
1054 /// }
1055 /// ```
1056 fn indent_macro_snippet(
1057     context: &RewriteContext,
1058     macro_str: &str,
1059     indent: Indent,
1060 ) -> Option<String> {
1061     let mut lines = LineClasses::new(macro_str);
1062     let first_line = lines.next().map(|(_, s)| s.trim_right().to_owned())?;
1063     let mut trimmed_lines = Vec::with_capacity(16);
1064
1065     let mut veto_trim = false;
1066     let min_prefix_space_width = lines
1067         .filter_map(|(kind, line)| {
1068             let mut trimmed = true;
1069             let prefix_space_width = if is_empty_line(&line) {
1070                 None
1071             } else {
1072                 Some(get_prefix_space_width(context, &line))
1073             };
1074             let line = if veto_trim || (kind.is_string() && !line.ends_with('\\')) {
1075                 veto_trim = kind.is_string() && !line.ends_with('\\');
1076                 trimmed = false;
1077                 line
1078             } else {
1079                 line.trim().to_owned()
1080             };
1081             trimmed_lines.push((trimmed, line, prefix_space_width));
1082             prefix_space_width
1083         })
1084         .min()?;
1085
1086     Some(
1087         first_line + "\n"
1088             + &trimmed_lines
1089                 .iter()
1090                 .map(
1091                     |&(trimmed, ref line, prefix_space_width)| match prefix_space_width {
1092                         _ if !trimmed => line.to_owned(),
1093                         Some(original_indent_width) => {
1094                             let new_indent_width = indent.width()
1095                                 + original_indent_width.saturating_sub(min_prefix_space_width);
1096                             let new_indent = Indent::from_width(context.config, new_indent_width);
1097                             format!("{}{}", new_indent.to_string(context.config), line.trim())
1098                         }
1099                         None => String::new(),
1100                     },
1101                 )
1102                 .collect::<Vec<_>>()
1103                 .join("\n"),
1104     )
1105 }
1106
1107 fn get_prefix_space_width(context: &RewriteContext, s: &str) -> usize {
1108     let mut width = 0;
1109     for c in s.chars() {
1110         match c {
1111             ' ' => width += 1,
1112             '\t' => width += context.config.tab_spaces(),
1113             _ => return width,
1114         }
1115     }
1116     width
1117 }
1118
1119 fn is_empty_line(s: &str) -> bool {
1120     s.is_empty() || s.chars().all(char::is_whitespace)
1121 }
1122
1123 // A very simple parser that just parses a macros 2.0 definition into its branches.
1124 // Currently we do not attempt to parse any further than that.
1125 #[derive(new)]
1126 struct MacroParser {
1127     toks: Cursor,
1128 }
1129
1130 impl MacroParser {
1131     // (`(` ... `)` `=>` `{` ... `}`)*
1132     fn parse(&mut self) -> Option<Macro> {
1133         let mut branches = vec![];
1134         while self.toks.look_ahead(1).is_some() {
1135             branches.push(self.parse_branch()?);
1136         }
1137
1138         Some(Macro { branches })
1139     }
1140
1141     // `(` ... `)` `=>` `{` ... `}`
1142     fn parse_branch(&mut self) -> Option<MacroBranch> {
1143         let tok = self.toks.next()?;
1144         let (lo, args_paren_kind) = match tok {
1145             TokenTree::Token(..) => return None,
1146             TokenTree::Delimited(sp, ref d) => (sp.lo(), d.delim),
1147         };
1148         let args = tok.joint().into();
1149         match self.toks.next()? {
1150             TokenTree::Token(_, Token::FatArrow) => {}
1151             _ => return None,
1152         }
1153         let (mut hi, body) = match self.toks.next()? {
1154             TokenTree::Token(..) => return None,
1155             TokenTree::Delimited(sp, _) => {
1156                 let data = sp.data();
1157                 (
1158                     data.hi,
1159                     Span::new(data.lo + BytePos(1), data.hi - BytePos(1), data.ctxt),
1160                 )
1161             }
1162         };
1163         if let Some(TokenTree::Token(sp, Token::Semi)) = self.toks.look_ahead(0) {
1164             self.toks.next();
1165             hi = sp.hi();
1166         }
1167         Some(MacroBranch {
1168             span: mk_sp(lo, hi),
1169             args_paren_kind,
1170             args,
1171             body,
1172         })
1173     }
1174 }
1175
1176 // A parsed macros 2.0 macro definition.
1177 struct Macro {
1178     branches: Vec<MacroBranch>,
1179 }
1180
1181 // FIXME: it would be more efficient to use references to the token streams
1182 // rather than clone them, if we can make the borrowing work out.
1183 struct MacroBranch {
1184     span: Span,
1185     args_paren_kind: DelimToken,
1186     args: ThinTokenStream,
1187     body: Span,
1188 }
1189
1190 impl MacroBranch {
1191     fn rewrite(
1192         &self,
1193         context: &RewriteContext,
1194         shape: Shape,
1195         multi_branch_style: bool,
1196     ) -> Option<String> {
1197         // Only attempt to format function-like macros.
1198         if self.args_paren_kind != DelimToken::Paren {
1199             // FIXME(#1539): implement for non-sugared macros.
1200             return None;
1201         }
1202
1203         // 5 = " => {"
1204         let mut result = format_macro_args(context, self.args.clone(), shape.sub_width(5)?)?;
1205
1206         if multi_branch_style {
1207             result += " =>";
1208         }
1209
1210         // The macro body is the most interesting part. It might end up as various
1211         // AST nodes, but also has special variables (e.g, `$foo`) which can't be
1212         // parsed as regular Rust code (and note that these can be escaped using
1213         // `$$`). We'll try and format like an AST node, but we'll substitute
1214         // variables for new names with the same length first.
1215
1216         let old_body = context.snippet(self.body).trim();
1217         let (body_str, substs) = replace_names(old_body)?;
1218
1219         let mut config = context.config.clone();
1220         config.set().hide_parse_errors(true);
1221
1222         result += " {";
1223
1224         let has_block_body = old_body.starts_with('{');
1225
1226         let body_indent = if has_block_body {
1227             shape.indent
1228         } else {
1229             // We'll hack the indent below, take this into account when formatting,
1230             let body_indent = shape.indent.block_indent(&config);
1231             let new_width = config.max_width() - body_indent.width();
1232             config.set().max_width(new_width);
1233             body_indent
1234         };
1235
1236         // First try to format as items, then as statements.
1237         let new_body = match ::format_snippet(&body_str, &config) {
1238             Some(new_body) => new_body,
1239             None => match ::format_code_block(&body_str, &config) {
1240                 Some(new_body) => new_body,
1241                 None => return None,
1242             },
1243         };
1244         let new_body = wrap_str(new_body, config.max_width(), shape)?;
1245
1246         // Indent the body since it is in a block.
1247         let indent_str = body_indent.to_string(&config);
1248         let mut new_body = LineClasses::new(new_body.trim_right())
1249             .fold(
1250                 (String::new(), true),
1251                 |(mut s, need_indent), (kind, ref l)| {
1252                     if !l.is_empty() && need_indent {
1253                         s += &indent_str;
1254                     }
1255                     (s + l + "\n", !kind.is_string() || l.ends_with('\\'))
1256                 },
1257             )
1258             .0;
1259
1260         // Undo our replacement of macro variables.
1261         // FIXME: this could be *much* more efficient.
1262         for (old, new) in &substs {
1263             if old_body.find(new).is_some() {
1264                 debug!("rewrite_macro_def: bailing matching variable: `{}`", new);
1265                 return None;
1266             }
1267             new_body = new_body.replace(new, old);
1268         }
1269
1270         if has_block_body {
1271             result += new_body.trim();
1272         } else if !new_body.is_empty() {
1273             result += "\n";
1274             result += &new_body;
1275             result += &shape.indent.to_string(&config);
1276         }
1277
1278         result += "}";
1279
1280         Some(result)
1281     }
1282 }
1283
1284 /// Format `lazy_static!` from https://crates.io/crates/lazy_static.
1285 ///
1286 /// # Expected syntax
1287 ///
1288 /// ```ignore
1289 /// lazy_static! {
1290 ///     [pub] static ref NAME_1: TYPE_1 = EXPR_1;
1291 ///     [pub] static ref NAME_2: TYPE_2 = EXPR_2;
1292 ///     ...
1293 ///     [pub] static ref NAME_N: TYPE_N = EXPR_N;
1294 /// }
1295 /// ```
1296 fn format_lazy_static(context: &RewriteContext, shape: Shape, ts: &TokenStream) -> Option<String> {
1297     let mut result = String::with_capacity(1024);
1298     let mut parser = new_parser_from_tts(context.parse_session, ts.trees().collect());
1299     let nested_shape = shape
1300         .block_indent(context.config.tab_spaces())
1301         .with_max_width(context.config);
1302
1303     result.push_str("lazy_static! {");
1304     result.push_str(&nested_shape.indent.to_string_with_newline(context.config));
1305
1306     macro parse_or($method:ident $(,)* $($arg:expr),* $(,)*) {
1307         match parser.$method($($arg,)*) {
1308             Ok(val) => {
1309                 if parser.sess.span_diagnostic.has_errors() {
1310                     parser.sess.span_diagnostic.reset_err_count();
1311                     return None;
1312                 } else {
1313                     val
1314                 }
1315             }
1316             Err(mut err) => {
1317                 err.cancel();
1318                 parser.sess.span_diagnostic.reset_err_count();
1319                 return None;
1320             }
1321         }
1322     }
1323
1324     while parser.token != Token::Eof {
1325         // Parse a `lazy_static!` item.
1326         let vis = ::utils::format_visibility(&parse_or!(parse_visibility, false));
1327         parser.eat_keyword(symbol::keywords::Static);
1328         parser.eat_keyword(symbol::keywords::Ref);
1329         let id = parse_or!(parse_ident);
1330         parser.eat(&Token::Colon);
1331         let ty = parse_or!(parse_ty);
1332         parser.eat(&Token::Eq);
1333         let expr = parse_or!(parse_expr);
1334         parser.eat(&Token::Semi);
1335
1336         // Rewrite as a static item.
1337         let mut stmt = String::with_capacity(128);
1338         stmt.push_str(&format!(
1339             "{}static ref {}: {} =",
1340             vis,
1341             id,
1342             ty.rewrite(context, nested_shape)?
1343         ));
1344         result.push_str(&::expr::rewrite_assign_rhs(
1345             context,
1346             stmt,
1347             &*expr,
1348             nested_shape.sub_width(1)?,
1349         )?);
1350         result.push(';');
1351         if parser.token != Token::Eof {
1352             result.push_str(&nested_shape.indent.to_string_with_newline(context.config));
1353         }
1354     }
1355
1356     result.push_str(&shape.indent.to_string_with_newline(context.config));
1357     result.push('}');
1358
1359     Some(result)
1360 }