rust/src/macros.rs

283 lines
10 KiB
Rust
Raw Normal View History

2015-09-14 22:53:30 +02: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;
use syntax::codemap::BytePos;
2015-11-27 23:38:05 +09:00
use syntax::parse::token::Token;
use syntax::parse::new_parser_from_tts;
use syntax::tokenstream::TokenStream;
use syntax::symbol;
use syntax::util::ThinVec;
2015-09-14 22:53:30 +02:00
use Shape;
use codemap::SpanUtils;
use rewrite::{Rewrite, RewriteContext};
use expr::{rewrite_call_inner, rewrite_array};
use comment::{FindUncommented, contains_comment};
use utils::mk_sp;
2015-10-16 22:54:32 +02:00
2016-02-01 23:40:45 -05:00
const FORCED_BRACKET_MACROS: &'static [&'static str] = &["vec!"];
2015-09-14 22:53:30 +02:00
// FIXME: use the enum from libsyntax?
2016-01-22 13:40:26 -06:00
#[derive(Clone, Copy, PartialEq, Eq)]
2015-09-14 22:53:30 +02:00
enum MacroStyle {
Parens,
Brackets,
Braces,
}
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum MacroPosition {
Item,
Statement,
Expression,
}
2015-10-16 22:54:32 +02:00
impl MacroStyle {
fn opener(&self) -> &'static str {
match *self {
MacroStyle::Parens => "(",
MacroStyle::Brackets => "[",
MacroStyle::Braces => "{",
}
}
}
pub fn rewrite_macro(
mac: &ast::Mac,
extra_ident: Option<ast::Ident>,
context: &RewriteContext,
shape: Shape,
position: MacroPosition,
) -> Option<String> {
let mut context = &mut context.clone();
context.inside_macro = true;
if context.config.use_try_shorthand() {
if let Some(expr) = convert_try_mac(mac, context) {
return expr.rewrite(context, shape);
}
}
2015-10-16 22:54:32 +02:00
let original_style = macro_style(mac, context);
let macro_name = match extra_ident {
None => format!("{}!", mac.node.path),
2017-07-11 21:53:10 +09:00
Some(ident) => if ident == symbol::keywords::Invalid.ident() {
format!("{}!", mac.node.path)
} else {
format!("{}! {}", mac.node.path, ident)
},
};
2015-10-16 22:54:32 +02:00
let style = if FORCED_BRACKET_MACROS.contains(&&macro_name[..]) {
MacroStyle::Brackets
} else {
original_style
};
2015-09-14 22:53:30 +02:00
let ts: TokenStream = mac.node.tts.clone().into();
if ts.is_empty() && !contains_comment(&context.snippet(mac.span)) {
return match style {
2017-05-15 22:55:45 +09:00
MacroStyle::Parens if position == MacroPosition::Item => {
Some(format!("{}();", macro_name))
}
MacroStyle::Parens => Some(format!("{}()", macro_name)),
MacroStyle::Brackets => Some(format!("{}[]", macro_name)),
MacroStyle::Braces => Some(format!("{}{{}}", macro_name)),
};
2015-09-14 22:53:30 +02:00
}
let mut parser = new_parser_from_tts(context.parse_session, ts.trees().collect());
let mut expr_vec = Vec::new();
2017-05-19 19:25:53 +09:00
let mut vec_with_semi = false;
let mut trailing_comma = false;
2015-09-14 22:53:30 +02:00
2016-01-22 13:40:26 -06:00
if MacroStyle::Braces != style {
loop {
let expr = match parser.parse_expr() {
Ok(expr) => {
// Recovered errors.
2017-03-28 11:25:59 +13:00
if context.parse_session.span_diagnostic.has_errors() {
return Some(context.snippet(mac.span));
}
expr
}
Err(mut e) => {
e.cancel();
return Some(context.snippet(mac.span));
}
};
expr_vec.push(expr);
2015-09-14 22:53:30 +02:00
2016-01-22 13:40:26 -06:00
match parser.token {
Token::Eof => break,
Token::Comma => (),
2017-05-19 19:25:53 +09:00
Token::Semi => {
// Try to parse `vec![expr; expr]`
if FORCED_BRACKET_MACROS.contains(&&macro_name[..]) {
parser.bump();
if parser.token != Token::Eof {
match parser.parse_expr() {
Ok(expr) => {
if context.parse_session.span_diagnostic.has_errors() {
return None;
}
expr_vec.push(expr);
parser.bump();
if parser.token == Token::Eof && expr_vec.len() == 2 {
vec_with_semi = true;
break;
}
}
Err(mut e) => e.cancel(),
}
}
}
return None;
}
2016-01-22 13:40:26 -06:00
_ => return None,
}
2015-09-14 22:53:30 +02:00
2016-08-23 23:14:45 +09:00
parser.bump();
2016-01-22 13:40:26 -06:00
if parser.token == Token::Eof {
trailing_comma = true;
break;
2016-01-22 13:40:26 -06:00
}
2015-09-14 22:53:30 +02:00
}
}
2015-09-14 22:53:30 +02:00
match style {
MacroStyle::Parens => {
// Format macro invocation as function call, forcing no trailing
// comma because not all macros support them.
let rw = rewrite_call_inner(
context,
&macro_name,
&expr_vec.iter().map(|e| &**e).collect::<Vec<_>>()[..],
mac.span,
shape,
context.config.fn_call_width(),
trailing_comma,
);
rw.ok().map(|rw| match position {
MacroPosition::Item => format!("{};", rw),
_ => rw,
})
2015-09-14 22:53:30 +02:00
}
MacroStyle::Brackets => {
let mac_shape = try_opt!(shape.offset_left(macro_name.len()));
2017-05-19 19:25:53 +09:00
// Handle special case: `vec![expr; expr]`
if vec_with_semi {
2017-05-19 19:28:00 +09:00
let (lbr, rbr) = if context.config.spaces_within_square_brackets() {
2017-05-19 19:25:53 +09:00
("[ ", " ]")
} else {
("[", "]")
};
// 6 = `vec!` + `; `
let total_overhead = lbr.len() + rbr.len() + 6;
let nested_shape = mac_shape.block_indent(context.config.tab_spaces());
let lhs = try_opt!(expr_vec[0].rewrite(context, nested_shape));
let rhs = try_opt!(expr_vec[1].rewrite(context, nested_shape));
if !lhs.contains('\n') && !rhs.contains('\n') &&
lhs.len() + rhs.len() + total_overhead <= shape.width
{
Some(format!("{}{}{}; {}{}", macro_name, lbr, lhs, rhs, rbr))
} else {
Some(format!(
"{}{}\n{}{};\n{}{}\n{}{}",
macro_name,
lbr,
nested_shape.indent.to_string(context.config),
lhs,
nested_shape.indent.to_string(context.config),
rhs,
shape.indent.to_string(context.config),
rbr
))
}
2017-05-19 19:25:53 +09:00
} else {
// If we are rewriting `vec!` macro or other special macros,
// then we can rewrite this as an usual array literal.
// Otherwise, we must preserve the original existence of trailing comma.
if FORCED_BRACKET_MACROS.contains(&&macro_name.as_str()) {
context.inside_macro = false;
trailing_comma = false;
}
let rewrite = try_opt!(rewrite_array(
expr_vec.iter().map(|x| &**x),
mk_sp(
2017-06-17 16:56:54 +09:00
context
.codemap
.span_after(mac.span, original_style.opener()),
mac.span.hi - BytePos(1),
),
context,
mac_shape,
trailing_comma,
));
2017-05-19 19:25:53 +09:00
Some(format!("{}{}", macro_name, rewrite))
}
2015-09-14 22:53:30 +02:00
}
MacroStyle::Braces => {
// Skip macro invocations with braces, for now.
None
2015-09-14 22:53:30 +02:00
}
}
}
/// Tries to convert a macro use into a short hand try expression. Returns None
/// when the macro is not an instance of try! (or parsing the inner expression
/// failed).
pub fn convert_try_mac(mac: &ast::Mac, context: &RewriteContext) -> Option<ast::Expr> {
if &format!("{}", mac.node.path)[..] == "try" {
let ts: TokenStream = mac.node.tts.clone().into();
let mut parser = new_parser_from_tts(context.parse_session, ts.trees().collect());
Some(ast::Expr {
id: ast::NodeId::new(0), // dummy value
node: ast::ExprKind::Try(try_opt!(parser.parse_expr().ok())),
span: mac.span, // incorrect span, but shouldn't matter too much
attrs: ThinVec::new(),
})
} else {
None
}
}
2015-09-14 22:53:30 +02:00
fn macro_style(mac: &ast::Mac, context: &RewriteContext) -> MacroStyle {
let snippet = context.snippet(mac.span);
2017-04-24 16:50:11 +09:00
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());
2015-09-14 22:53:30 +02:00
if paren_pos < bracket_pos && paren_pos < brace_pos {
MacroStyle::Parens
} else if bracket_pos < brace_pos {
MacroStyle::Brackets
} else {
MacroStyle::Braces
}
}