Skip to content

Commit d86fc1b

Browse files
authored
Make trace! formatting consistent with other log macros (#5989)
Fixes 5987 rustfmt already special cases the formatting for the `debug!`, `info!`, `warn!`, and `error!`, macros from the `log` crate. However, this speical case handling did not apply to the `trace!` macro. Now when using `Version=Two` rustfmt will also special case the formatting for the `trace!` macro.
1 parent c926898 commit d86fc1b

File tree

5 files changed

+58
-11
lines changed

5 files changed

+58
-11
lines changed

src/comment.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -173,10 +173,7 @@ pub(crate) fn combine_strs_with_missing_comments(
173173
) -> Option<String> {
174174
trace!(
175175
"combine_strs_with_missing_comments `{}` `{}` {:?} {:?}",
176-
prev_str,
177-
next_str,
178-
span,
179-
shape
176+
prev_str, next_str, span, shape
180177
);
181178

182179
let mut result =

src/overflow.rs

+19-7
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ use rustc_ast::{ast, ptr};
88
use rustc_span::Span;
99

1010
use crate::closures;
11-
use crate::config::lists::*;
1211
use crate::config::Version;
12+
use crate::config::{lists::*, Config};
1313
use crate::expr::{
1414
can_be_overflowed_expr, is_every_expr_simple, is_method_call, is_nested_call, is_simple_expr,
1515
rewrite_cond,
@@ -60,6 +60,13 @@ const SPECIAL_CASE_MACROS: &[(&str, usize)] = &[
6060
("debug_assert_ne!", 2),
6161
];
6262

63+
/// Additional special case macros for version 2; these are separated to avoid breaking changes in
64+
/// version 1.
65+
const SPECIAL_CASE_MACROS_V2: &[(&str, usize)] = &[
66+
// From the `log` crate.
67+
("trace!", 0),
68+
];
69+
6370
const SPECIAL_CASE_ATTR: &[(&str, usize)] = &[
6471
// From the `failure` crate.
6572
("fail", 0),
@@ -182,12 +189,17 @@ impl<'a> OverflowableItem<'a> {
182189
}
183190
}
184191

185-
fn special_cases(&self) -> &'static [(&'static str, usize)] {
186-
match self {
192+
fn special_cases(&self, config: &Config) -> impl Iterator<Item = &(&'static str, usize)> {
193+
let base_cases = match self {
187194
OverflowableItem::MacroArg(..) => SPECIAL_CASE_MACROS,
188195
OverflowableItem::NestedMetaItem(..) => SPECIAL_CASE_ATTR,
189196
_ => &[],
190-
}
197+
};
198+
let additional_cases = match (self, config.version()) {
199+
(OverflowableItem::MacroArg(..), Version::Two) => SPECIAL_CASE_MACROS_V2,
200+
_ => &[],
201+
};
202+
base_cases.iter().chain(additional_cases)
191203
}
192204
}
193205

@@ -551,7 +563,7 @@ impl<'a> Context<'a> {
551563

552564
if tactic == DefinitiveListTactic::Vertical {
553565
if let Some((all_simple, num_args_before)) =
554-
maybe_get_args_offset(self.ident, &self.items)
566+
maybe_get_args_offset(self.ident, &self.items, &self.context.config)
555567
{
556568
let one_line = all_simple
557569
&& definitive_tactic(
@@ -771,11 +783,11 @@ fn no_long_items(list: &[ListItem], short_array_element_width_threshold: usize)
771783
pub(crate) fn maybe_get_args_offset(
772784
callee_str: &str,
773785
args: &[OverflowableItem<'_>],
786+
config: &Config,
774787
) -> Option<(bool, usize)> {
775788
if let Some(&(_, num_args_before)) = args
776789
.get(0)?
777-
.special_cases()
778-
.iter()
790+
.special_cases(config)
779791
.find(|&&(s, _)| s == callee_str)
780792
{
781793
let all_simple = args.len() > num_args_before

tests/source/issue-5987/two.rs

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// rustfmt-version: Two
2+
3+
fn main() {
4+
trace!(
5+
"get some longer length in here yes yes {} {}",
6+
"hello",
7+
"world"
8+
);
9+
debug!(
10+
"get some longer length in here yes yes {} {}",
11+
"hello", "world"
12+
);
13+
}

tests/target/issue-5987/one.rs

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// rustfmt-version: One
2+
3+
fn main() {
4+
trace!(
5+
"get some longer length in here yes yes {} {}",
6+
"hello",
7+
"world"
8+
);
9+
debug!(
10+
"get some longer length in here yes yes {} {}",
11+
"hello", "world"
12+
);
13+
}

tests/target/issue-5987/two.rs

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
// rustfmt-version: Two
2+
3+
fn main() {
4+
trace!(
5+
"get some longer length in here yes yes {} {}",
6+
"hello", "world"
7+
);
8+
debug!(
9+
"get some longer length in here yes yes {} {}",
10+
"hello", "world"
11+
);
12+
}

0 commit comments

Comments
 (0)