2015-09-14 15:53:30 -05:00
|
|
|
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
// Format list-like macro invocations. These are invocations whose token trees
|
|
|
|
// can be interpreted as expressions and separated by commas.
|
|
|
|
// Note that these token trees do not actually have to be interpreted as
|
|
|
|
// expressions by the compiler. An example of an invocation we would reformat is
|
|
|
|
// foo!( x, y, z ). The token x may represent an identifier in the code, but we
|
|
|
|
// interpreted as an expression.
|
|
|
|
// Macro uses which are not-list like, such as bar!(key => val), will not be
|
|
|
|
// reformated.
|
|
|
|
// List-like invocations with parentheses will be formatted as function calls,
|
|
|
|
// and those with brackets will be formatted as array literals.
|
|
|
|
|
|
|
|
use syntax::ast;
|
2015-11-27 08:38:05 -06:00
|
|
|
use syntax::parse::token::Token;
|
2015-10-28 01:41:32 -05:00
|
|
|
use syntax::parse::tts_to_parser;
|
2015-10-16 15:54:32 -05:00
|
|
|
use syntax::codemap::{mk_sp, BytePos};
|
2015-09-14 15:53:30 -05:00
|
|
|
|
2015-09-06 00:39:28 -05:00
|
|
|
use Indent;
|
2015-09-14 15:53:30 -05:00
|
|
|
use rewrite::RewriteContext;
|
|
|
|
use expr::{rewrite_call, rewrite_array};
|
2016-03-27 06:44:08 -05:00
|
|
|
use comment::{FindUncommented, contains_comment};
|
2016-03-07 12:41:32 -06:00
|
|
|
use utils::{CodeMapSpanUtils, wrap_str};
|
2015-10-16 15:54:32 -05:00
|
|
|
|
2016-02-01 22:40:45 -06:00
|
|
|
const FORCED_BRACKET_MACROS: &'static [&'static str] = &["vec!"];
|
2015-09-14 15:53:30 -05:00
|
|
|
|
|
|
|
// FIXME: use the enum from libsyntax?
|
2016-01-22 13:40:26 -06:00
|
|
|
#[derive(Clone, Copy, PartialEq, Eq)]
|
2015-09-14 15:53:30 -05:00
|
|
|
enum MacroStyle {
|
|
|
|
Parens,
|
|
|
|
Brackets,
|
|
|
|
Braces,
|
|
|
|
}
|
|
|
|
|
2015-10-16 15:54:32 -05:00
|
|
|
impl MacroStyle {
|
|
|
|
fn opener(&self) -> &'static str {
|
|
|
|
match *self {
|
|
|
|
MacroStyle::Parens => "(",
|
|
|
|
MacroStyle::Brackets => "[",
|
|
|
|
MacroStyle::Braces => "{",
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-14 15:53:30 -05:00
|
|
|
pub fn rewrite_macro(mac: &ast::Mac,
|
2016-03-27 07:45:55 -05:00
|
|
|
extra_ident: Option<ast::Ident>,
|
2015-09-14 15:53:30 -05:00
|
|
|
context: &RewriteContext,
|
|
|
|
width: usize,
|
2015-09-06 00:39:28 -05:00
|
|
|
offset: Indent)
|
2015-09-14 15:53:30 -05:00
|
|
|
-> Option<String> {
|
2015-10-16 15:54:32 -05:00
|
|
|
let original_style = macro_style(mac, context);
|
2016-03-27 07:45:55 -05:00
|
|
|
let macro_name = match extra_ident {
|
2016-04-09 01:40:00 -05:00
|
|
|
None |
|
|
|
|
Some(ast::Ident { name: ast::Name(0), .. }) => format!("{}!", mac.node.path),
|
2016-03-27 07:45:55 -05:00
|
|
|
Some(ident) => format!("{}! {}", mac.node.path, ident),
|
|
|
|
};
|
2015-10-16 15:54:32 -05:00
|
|
|
let style = if FORCED_BRACKET_MACROS.contains(&¯o_name[..]) {
|
|
|
|
MacroStyle::Brackets
|
|
|
|
} else {
|
|
|
|
original_style
|
|
|
|
};
|
2015-09-14 15:53:30 -05:00
|
|
|
|
2016-03-27 06:44:08 -05:00
|
|
|
if mac.node.tts.is_empty() && !contains_comment(&context.snippet(mac.span)) {
|
|
|
|
return match style {
|
|
|
|
MacroStyle::Parens => Some(format!("{}()", macro_name)),
|
|
|
|
MacroStyle::Brackets => Some(format!("{}[]", macro_name)),
|
|
|
|
MacroStyle::Braces => Some(format!("{}{{}}", macro_name)),
|
2015-09-14 15:53:30 -05:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2015-10-28 01:41:32 -05:00
|
|
|
let mut parser = tts_to_parser(context.parse_session, mac.node.tts.clone(), Vec::new());
|
2015-10-22 16:37:13 -05:00
|
|
|
let mut expr_vec = Vec::new();
|
2015-09-14 15:53:30 -05:00
|
|
|
|
2016-01-22 13:40:26 -06:00
|
|
|
if MacroStyle::Braces != style {
|
|
|
|
loop {
|
2016-04-27 14:08:44 -05:00
|
|
|
let expr = match parser.parse_expr() {
|
|
|
|
Ok(expr) => {
|
|
|
|
// Recovered errors.
|
|
|
|
if context.parse_session.span_diagnostic.has_errors() {
|
|
|
|
return None;
|
|
|
|
}
|
|
|
|
|
|
|
|
expr
|
|
|
|
}
|
2016-04-07 15:29:05 -05:00
|
|
|
Err(mut e) => {
|
|
|
|
e.cancel();
|
|
|
|
return None;
|
|
|
|
}
|
2016-04-27 14:08:44 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
expr_vec.push(expr);
|
2015-09-14 15:53:30 -05:00
|
|
|
|
2016-01-22 13:40:26 -06:00
|
|
|
match parser.token {
|
|
|
|
Token::Eof => break,
|
|
|
|
Token::Comma => (),
|
|
|
|
_ => return None,
|
|
|
|
}
|
2015-09-14 15:53:30 -05:00
|
|
|
|
2016-01-22 13:40:26 -06:00
|
|
|
let _ = parser.bump();
|
2015-10-08 15:04:17 -05:00
|
|
|
|
2016-01-22 13:40:26 -06:00
|
|
|
if parser.token == Token::Eof {
|
|
|
|
return None;
|
|
|
|
}
|
2015-09-14 15:53:30 -05:00
|
|
|
}
|
2015-10-22 16:37:13 -05:00
|
|
|
}
|
2015-09-14 15:53:30 -05:00
|
|
|
|
|
|
|
match style {
|
|
|
|
MacroStyle::Parens => {
|
|
|
|
// Format macro invocation as function call.
|
|
|
|
rewrite_call(context, ¯o_name, &expr_vec, mac.span, width, offset)
|
|
|
|
}
|
|
|
|
MacroStyle::Brackets => {
|
|
|
|
// Format macro invocation as array literal.
|
|
|
|
let extra_offset = macro_name.len();
|
|
|
|
let rewrite = try_opt!(rewrite_array(expr_vec.iter().map(|x| &**x),
|
2016-04-22 02:03:36 -05:00
|
|
|
mk_sp(context.codemap
|
|
|
|
.span_after(mac.span,
|
|
|
|
original_style.opener()),
|
2015-10-16 15:54:32 -05:00
|
|
|
mac.span.hi - BytePos(1)),
|
2015-09-14 15:53:30 -05:00
|
|
|
context,
|
|
|
|
try_opt!(width.checked_sub(extra_offset)),
|
|
|
|
offset + extra_offset));
|
2015-10-16 15:54:32 -05:00
|
|
|
|
2015-09-14 15:53:30 -05:00
|
|
|
Some(format!("{}{}", macro_name, rewrite))
|
|
|
|
}
|
|
|
|
MacroStyle::Braces => {
|
|
|
|
// Skip macro invocations with braces, for now.
|
2015-09-23 18:01:01 -05:00
|
|
|
wrap_str(context.snippet(mac.span),
|
|
|
|
context.config.max_width,
|
|
|
|
width,
|
|
|
|
offset)
|
2015-09-14 15:53:30 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn macro_style(mac: &ast::Mac, context: &RewriteContext) -> MacroStyle {
|
|
|
|
let snippet = context.snippet(mac.span);
|
|
|
|
let paren_pos = snippet.find_uncommented("(").unwrap_or(usize::max_value());
|
|
|
|
let bracket_pos = snippet.find_uncommented("[").unwrap_or(usize::max_value());
|
|
|
|
let brace_pos = snippet.find_uncommented("{").unwrap_or(usize::max_value());
|
|
|
|
|
|
|
|
if paren_pos < bracket_pos && paren_pos < brace_pos {
|
|
|
|
MacroStyle::Parens
|
|
|
|
} else if bracket_pos < brace_pos {
|
|
|
|
MacroStyle::Brackets
|
|
|
|
} else {
|
|
|
|
MacroStyle::Braces
|
|
|
|
}
|
|
|
|
}
|