Skip to content

Commit 2174e60

Browse files
ytmimicalebcartwright
authored andcommitted
Add StyleEdition enum and StyleEditionDefault trait
**Note** This does not add the `style_edition` config option to rustfmt. The `StyleEdition` enum will eventually be used to allow users to configure the `style_edition`, but for now it's added so we can introduce the the `StyleEditionDefault` trait.
1 parent 37489e4 commit 2174e60

File tree

3 files changed

+94
-0
lines changed

3 files changed

+94
-0
lines changed

src/config/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ pub(crate) mod file_lines;
2727
#[allow(unreachable_pub)]
2828
pub(crate) mod lists;
2929
pub(crate) mod macro_names;
30+
pub(crate) mod style_edition;
3031

3132
// This macro defines configuration options used in rustfmt. Each option
3233
// is defined as follows:

src/config/options.rs

+24
Original file line numberDiff line numberDiff line change
@@ -468,3 +468,27 @@ pub enum MatchArmLeadingPipe {
468468
/// Preserve any existing leading pipes
469469
Preserve,
470470
}
471+
472+
/// Defines the default values for each config according to [the style guide].
473+
/// rustfmt output may differ between style editions.
474+
///
475+
/// [the style guide]: https://doc.rust-lang.org/nightly/style-guide/
476+
#[config_type]
477+
pub enum StyleEdition {
478+
#[value = "2015"]
479+
#[doc_hint = "2015"]
480+
/// [Edition 2015]()
481+
Edition2015,
482+
#[value = "2018"]
483+
#[doc_hint = "2018"]
484+
/// [Edition 2018]()
485+
Edition2018,
486+
#[value = "2021"]
487+
#[doc_hint = "2021"]
488+
/// [Edition 2021]()
489+
Edition2021,
490+
#[value = "2024"]
491+
#[doc_hint = "2024"]
492+
/// [Edition 2024]().
493+
Edition2024,
494+
}

src/config/style_edition.rs

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
use crate::config::StyleEdition;
2+
3+
/// Defines the default value for the given style edition
4+
pub(crate) trait StyleEditionDefault {
5+
type ConfigType;
6+
fn style_edition_default(style_edition: StyleEdition) -> Self::ConfigType;
7+
}
8+
9+
/// macro to help implement `StyleEditionDefault` for config options
10+
#[macro_export]
11+
macro_rules! style_edition_default {
12+
($ty:ident, $config_ty:ty, _ => $default:expr) => {
13+
impl $crate::config::style_edition::StyleEditionDefault for $ty {
14+
type ConfigType = $config_ty;
15+
16+
fn style_edition_default(_: $crate::config::StyleEdition) -> Self::ConfigType {
17+
$default
18+
}
19+
}
20+
};
21+
($ty:ident, $config_ty:ty, Edition2024 => $default_2024:expr, _ => $default_2015:expr) => {
22+
impl $crate::config::style_edition::StyleEditionDefault for $ty {
23+
type ConfigType = $config_ty;
24+
25+
fn style_edition_default(
26+
style_edition: $crate::config::StyleEdition,
27+
) -> Self::ConfigType {
28+
match style_edition {
29+
$crate::config::StyleEdition::Edition2015
30+
| $crate::config::StyleEdition::Edition2018
31+
| $crate::config::StyleEdition::Edition2021 => $default_2015,
32+
$crate::config::StyleEdition::Edition2024 => $default_2024,
33+
}
34+
}
35+
}
36+
};
37+
}
38+
39+
#[cfg(test)]
40+
mod test {
41+
use super::*;
42+
use crate::config::StyleEdition;
43+
44+
#[test]
45+
fn test_impl_default_style_edition_struct_for_all_editions() {
46+
struct Unit;
47+
style_edition_default!(Unit, usize, _ => 100);
48+
49+
// regardless of the style edition used the value will always return 100
50+
assert_eq!(Unit::style_edition_default(StyleEdition::Edition2015), 100);
51+
assert_eq!(Unit::style_edition_default(StyleEdition::Edition2018), 100);
52+
assert_eq!(Unit::style_edition_default(StyleEdition::Edition2021), 100);
53+
assert_eq!(Unit::style_edition_default(StyleEdition::Edition2024), 100);
54+
}
55+
56+
#[test]
57+
fn test_impl_default_style_edition_for_old_and_new_editions() {
58+
struct Unit;
59+
style_edition_default!(Unit, usize, Edition2024 => 50, _ => 100);
60+
61+
// style edition 2015-2021 are all the same
62+
assert_eq!(Unit::style_edition_default(StyleEdition::Edition2015), 100);
63+
assert_eq!(Unit::style_edition_default(StyleEdition::Edition2018), 100);
64+
assert_eq!(Unit::style_edition_default(StyleEdition::Edition2021), 100);
65+
66+
// style edition 2024
67+
assert_eq!(Unit::style_edition_default(StyleEdition::Edition2024), 50);
68+
}
69+
}

0 commit comments

Comments
 (0)