]> git.lizzy.rs Git - rust.git/blob - src/macros.rs
adapt to rust sytax::ast::Mac changes
[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 // reformated.
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::thread;
23
24 use syntax::ast;
25 use syntax::parse::token::{Eof, Comma, Token};
26 use syntax::parse::{ParseSess, tts_to_parser};
27
28 use Indent;
29 use rewrite::RewriteContext;
30 use expr::{rewrite_call, rewrite_array};
31 use comment::FindUncommented;
32 use utils::wrap_str;
33
34 // We need to pass `TokenTree`s to our expression parsing thread, but they are
35 // not `Send`. We wrap them in a `Send` container to force our will.
36 // FIXME: this is a pretty terrible hack. Any other solution would be preferred.
37 struct ForceSend<T>(pub T);
38 unsafe impl<T> Send for ForceSend<T> {}
39
40 // FIXME: use the enum from libsyntax?
41 enum MacroStyle {
42     Parens,
43     Brackets,
44     Braces,
45 }
46
47 pub fn rewrite_macro(mac: &ast::Mac,
48                      context: &RewriteContext,
49                      width: usize,
50                      offset: Indent)
51                      -> Option<String> {
52     let style = macro_style(mac, context);
53     let macro_name = format!("{}!", mac.node.path);
54
55     if let MacroStyle::Braces = style {
56         return None;
57     } else if mac.node.tts.is_empty() {
58         return if let MacroStyle::Parens = style {
59             Some(format!("{}()", macro_name))
60         } else {
61             Some(format!("{}[]", macro_name))
62         };
63     }
64
65     let wrapped_tt_vec = ForceSend(mac.node.tts.clone());
66     // Wrap expression parsing logic in a thread since the libsyntax parser
67     // panicks on failure, which we do not want to propagate.
68     let expr_vec_result = thread::catch_panic(move || {
69         let parse_session = ParseSess::new();
70         let mut parser = tts_to_parser(&parse_session, wrapped_tt_vec.0, vec![]);
71         let mut expr_vec = vec![];
72
73         loop {
74             expr_vec.push(parser.parse_expr());
75
76             match parser.token {
77                 Token::Eof => break,
78                 Token::Comma => (),
79                 _ => panic!("Macro not list-like, skiping..."),
80             }
81
82             let _ = parser.bump();
83         }
84
85         expr_vec
86     });
87     let expr_vec = try_opt!(expr_vec_result.ok());
88
89     match style {
90         MacroStyle::Parens => {
91             // Format macro invocation as function call.
92             rewrite_call(context, &macro_name, &expr_vec, mac.span, width, offset)
93         }
94         MacroStyle::Brackets => {
95             // Format macro invocation as array literal.
96             let extra_offset = macro_name.len();
97             let rewrite = try_opt!(rewrite_array(expr_vec.iter().map(|x| &**x),
98                                                  mac.span,
99                                                  context,
100                                                  try_opt!(width.checked_sub(extra_offset)),
101                                                  offset + extra_offset));
102             Some(format!("{}{}", macro_name, rewrite))
103         }
104         MacroStyle::Braces => {
105             // Skip macro invocations with braces, for now.
106             wrap_str(context.snippet(mac.span), context.config.max_width, width, offset)
107         }
108     }
109 }
110
111 fn macro_style(mac: &ast::Mac, context: &RewriteContext) -> MacroStyle {
112     let snippet = context.snippet(mac.span);
113     let paren_pos = snippet.find_uncommented("(").unwrap_or(usize::max_value());
114     let bracket_pos = snippet.find_uncommented("[").unwrap_or(usize::max_value());
115     let brace_pos = snippet.find_uncommented("{").unwrap_or(usize::max_value());
116
117     if paren_pos < bracket_pos && paren_pos < brace_pos {
118         MacroStyle::Parens
119     } else if bracket_pos < brace_pos {
120         MacroStyle::Brackets
121     } else {
122         MacroStyle::Braces
123     }
124 }