1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
use crate::{
shape::Shape, CallParenType, CollapseSimpleStatement, Config, IndentType, LineEndings,
Range as FormatRange,
};
use full_moon::{
node::Node,
tokenizer::{Token, TokenType},
};
#[derive(Debug, PartialEq, Eq)]
pub enum FormatNode {
Skip,
NotInRange,
Normal,
}
#[derive(Debug, Clone, Copy)]
pub struct Context {
config: Config,
range: Option<FormatRange>,
formatting_disabled: bool,
}
impl Context {
pub fn new(config: Config, range: Option<FormatRange>) -> Self {
Self {
config,
range,
formatting_disabled: false,
}
}
pub fn config(&self) -> Config {
self.config
}
pub fn check_toggle_formatting(&self, node: &impl Node) -> Self {
let leading_trivia = node.surrounding_trivia().0;
let comment_lines = leading_trivia
.iter()
.filter_map(|trivia| {
match trivia.token_type() {
TokenType::SingleLineComment { comment } => Some(comment),
TokenType::MultiLineComment { comment, .. } => Some(comment),
_ => None,
}
.map(|comment| comment.lines().map(|line| line.trim()))
})
.flatten();
let mut formatting_disabled = self.formatting_disabled;
for line in comment_lines {
if line == "stylua: ignore start" {
formatting_disabled = true;
} else if line == "stylua: ignore end" {
formatting_disabled = false;
}
}
Self {
formatting_disabled,
..*self
}
}
pub fn should_format_node(&self, node: &impl Node) -> FormatNode {
if self.formatting_disabled {
return FormatNode::Skip;
}
let leading_trivia = node.surrounding_trivia().0;
for trivia in leading_trivia {
let comment_lines = match trivia.token_type() {
TokenType::SingleLineComment { comment } => comment,
TokenType::MultiLineComment { comment, .. } => comment,
_ => continue,
}
.lines()
.map(|line| line.trim());
for line in comment_lines {
if line == "stylua: ignore" {
return FormatNode::Skip;
}
}
}
if let Some(range) = self.range {
match (range.start, node.start_position()) {
(Some(start_bound), Some(node_start)) if node_start.bytes() < start_bound => {
return FormatNode::NotInRange
}
_ => (),
};
match (range.end, node.end_position()) {
(Some(end_bound), Some(node_end)) if node_end.bytes() > end_bound => {
return FormatNode::NotInRange
}
_ => (),
}
}
FormatNode::Normal
}
pub fn should_omit_string_parens(&self) -> bool {
self.config().no_call_parentheses
|| self.config().call_parentheses == CallParenType::None
|| self.config().call_parentheses == CallParenType::NoSingleString
}
pub fn should_omit_table_parens(&self) -> bool {
self.config().no_call_parentheses
|| self.config().call_parentheses == CallParenType::None
|| self.config().call_parentheses == CallParenType::NoSingleTable
}
pub fn should_collapse_simple_functions(&self) -> bool {
matches!(
self.config().collapse_simple_statement(),
CollapseSimpleStatement::FunctionOnly | CollapseSimpleStatement::Always
)
}
pub fn should_collapse_simple_conditionals(&self) -> bool {
matches!(
self.config().collapse_simple_statement(),
CollapseSimpleStatement::ConditionalOnly | CollapseSimpleStatement::Always
)
}
}
fn line_ending_character(line_endings: LineEndings) -> String {
match line_endings {
LineEndings::Unix => String::from("\n"),
LineEndings::Windows => String::from("\r\n"),
}
}
pub fn create_indent_trivia(ctx: &Context, shape: Shape) -> Token {
let indent_level = shape.indent().block_indent() + shape.indent().additional_indent();
create_plain_indent_trivia(ctx, indent_level)
}
pub fn create_plain_indent_trivia(ctx: &Context, indent_level: usize) -> Token {
match ctx.config().indent_type {
IndentType::Tabs => Token::new(TokenType::tabs(indent_level)),
IndentType::Spaces => {
Token::new(TokenType::spaces(indent_level * ctx.config().indent_width))
}
}
}
pub fn create_newline_trivia(ctx: &Context) -> Token {
Token::new(TokenType::Whitespace {
characters: line_ending_character(ctx.config().line_endings).into(),
})
}