use crate::*;
pub(crate) fn format_source(source: &str) -> FmtResult {
let formatted: String = format_euv_macros(source);
let changed: bool = formatted != source;
FmtResult::new(changed, formatted)
}
pub fn format_euv_macros(source: &str) -> String {
let mut result: String = String::new();
let chars: Vec<char> = source.chars().collect();
let len: usize = chars.len();
let mut position: usize = 0;
while position < len {
if is_euv_macro_start(&chars, position, len) {
let macro_name_end: usize = find_macro_name_end(&chars, position, len);
let name: String = chars[position..macro_name_end].iter().collect::<String>();
result.push_str(&name);
position = macro_name_end;
position = skip_whitespace_and_comments(&chars, position, len, &mut result);
if position < len && chars[position] == CHAR_MACRO_BANG {
result.push(CHAR_MACRO_BANG);
position += 1;
position = skip_whitespace_and_comments(&chars, position, len, &mut result);
if position < len && chars[position] == CHAR_BRACE_LEFT {
if !result.ends_with(CHAR_SPACE) {
result.push(CHAR_SPACE);
}
let (body_content, end_pos) = extract_brace_content(&chars, position);
let formatted_body: String = format_macro_body(&body_content);
if formatted_body.trim().is_empty() {
result.push(CHAR_BRACE_LEFT);
result.push(CHAR_BRACE_RIGHT);
} else {
let trimmed_body: &str = formatted_body.trim();
let last_newline_pos: usize =
result.rfind(CHAR_NEWLINE).map(|i| i + 1).unwrap_or(0);
let macro_indent: usize = result[last_newline_pos..]
.chars()
.take_while(|&c| c == CHAR_SPACE)
.count();
let min_indent: usize = body_content
.lines()
.filter(|line| !line.trim().is_empty())
.map(|line| line.chars().take_while(|c| c.is_whitespace()).count())
.min()
.unwrap_or(0);
let base_indent: usize = if min_indent > 0 {
min_indent
} else {
macro_indent + 4
};
let indent_str: String = " ".repeat(base_indent);
let indented_body: String = trimmed_body
.lines()
.map(|line| {
if line.trim().is_empty() {
line.to_string()
} else {
format!("{}{}", indent_str, line)
}
})
.collect::<Vec<String>>()
.join("\n");
let outer_indent_str: String = " ".repeat(macro_indent);
result.push(CHAR_BRACE_LEFT);
result.push(CHAR_NEWLINE);
result.push_str(&indented_body);
result.push(CHAR_NEWLINE);
result.push_str(&outer_indent_str);
result.push(CHAR_BRACE_RIGHT);
}
position = end_pos;
continue;
}
}
continue;
}
if chars[position] == CHAR_DOUBLE_QUOTE || chars[position] == CHAR_SINGLE_QUOTE {
let (literal, end_pos) = extract_string_literal(&chars, position, len);
result.push_str(&literal);
position = end_pos;
continue;
}
if position + 1 < len
&& chars[position] == CHAR_SLASH_FORWARD
&& chars[position + 1] == CHAR_SLASH_FORWARD
{
let (comment, end_pos) = extract_line_comment(&chars, position, len);
result.push_str(&comment);
position = end_pos;
continue;
}
if position + 1 < len
&& chars[position] == CHAR_SLASH_FORWARD
&& chars[position + 1] == CHAR_ASTERISK
{
let (comment, end_pos) = extract_block_comment(&chars, position, len);
result.push_str(&comment);
position = end_pos;
continue;
}
result.push(chars[position]);
position += 1;
}
result
}
fn is_euv_macro_start(chars: &[char], pos: usize, len: usize) -> bool {
for name in EUV_MACRO_NAMES {
let name_len: usize = name.len();
if pos + name_len > len {
continue;
}
let candidate: String = chars[pos..pos + name_len].iter().collect::<String>();
if candidate != *name {
continue;
}
if pos > 0 && is_ident_char(chars[pos - 1]) {
continue;
}
if pos + name_len < len && is_ident_char(chars[pos + name_len]) {
continue;
}
return true;
}
false
}
fn find_macro_name_end(chars: &[char], pos: usize, _len: usize) -> usize {
let mut end: usize = pos;
while end < chars.len() && is_ident_char(chars[end]) {
end += 1;
}
end
}
fn is_raw_prefix(chars: &[char], pos: usize) -> bool {
if pos < 2 {
return false;
}
chars[pos - 2] == CHAR_LETTER_R && chars[pos - 1] == CHAR_HASH
}
fn is_ident_char(character: char) -> bool {
character.is_alphanumeric() || character == CHAR_UNDERSCORE
}
fn skip_whitespace_and_comments(
chars: &[char],
mut pos: usize,
len: usize,
result: &mut String,
) -> usize {
while pos < len {
if chars[pos].is_whitespace() {
result.push(chars[pos]);
pos += 1;
} else if pos + 1 < len
&& chars[pos] == CHAR_SLASH_FORWARD
&& chars[pos + 1] == CHAR_SLASH_FORWARD
{
let (comment, end_pos) = extract_line_comment(chars, pos, len);
result.push_str(&comment);
pos = end_pos;
} else if pos + 1 < len
&& chars[pos] == CHAR_SLASH_FORWARD
&& chars[pos + 1] == CHAR_ASTERISK
{
let (comment, end_pos) = extract_block_comment(chars, pos, len);
result.push_str(&comment);
pos = end_pos;
} else {
break;
}
}
pos
}
fn extract_brace_block(chars: &[char], start: usize) -> (String, usize) {
let mut depth: i32 = 0;
let mut position: usize = start;
while position < chars.len() {
if chars[position] == CHAR_DOUBLE_QUOTE || chars[position] == CHAR_SINGLE_QUOTE {
let (_, end) = extract_string_literal(chars, position, chars.len());
position = end;
continue;
}
if position + 1 < chars.len()
&& chars[position] == CHAR_SLASH_FORWARD
&& chars[position + 1] == CHAR_SLASH_FORWARD
{
let (_, end) = extract_line_comment(chars, position, chars.len());
position = end;
continue;
}
if position + 1 < chars.len()
&& chars[position] == CHAR_SLASH_FORWARD
&& chars[position + 1] == CHAR_ASTERISK
{
let (_, end) = extract_block_comment(chars, position, chars.len());
position = end;
continue;
}
if chars[position] == CHAR_BRACE_LEFT {
depth += 1;
} else if chars[position] == CHAR_BRACE_RIGHT {
depth -= 1;
if depth == 0 {
let content: String = chars[start..=position].iter().collect();
return (content, position + 1);
}
}
position += 1;
}
let content: String = chars[start..].iter().collect();
(content, chars.len())
}
fn extract_brace_content(chars: &[char], start: usize) -> (String, usize) {
let mut depth: i32 = 0;
let mut position: usize = start;
let mut content_start: usize = start + 1;
while position < chars.len() {
if chars[position] == CHAR_DOUBLE_QUOTE || chars[position] == CHAR_SINGLE_QUOTE {
let (_, end) = extract_string_literal(chars, position, chars.len());
position = end;
continue;
}
if position + 1 < chars.len()
&& chars[position] == CHAR_SLASH_FORWARD
&& chars[position + 1] == CHAR_SLASH_FORWARD
{
let (_, end) = extract_line_comment(chars, position, chars.len());
position = end;
continue;
}
if position + 1 < chars.len()
&& chars[position] == CHAR_SLASH_FORWARD
&& chars[position + 1] == CHAR_ASTERISK
{
let (_, end) = extract_block_comment(chars, position, chars.len());
position = end;
continue;
}
if chars[position] == CHAR_BRACE_LEFT {
if depth == 0 {
content_start = position + 1;
}
depth += 1;
} else if chars[position] == CHAR_BRACE_RIGHT {
depth -= 1;
if depth == 0 {
let content: String = chars[content_start..position].iter().collect();
return (content, position + 1);
}
}
position += 1;
}
let content: String = chars[content_start..].iter().collect();
(content, chars.len())
}
fn extract_string_literal(chars: &[char], start: usize, len: usize) -> (String, usize) {
let quote: char = chars[start];
let mut position: usize = start + 1;
let mut result: String = String::new();
result.push(quote);
while position < len {
if chars[position] == CHAR_SLASH_BACK && position + 1 < len {
result.push(chars[position]);
result.push(chars[position + 1]);
position += 2;
continue;
}
result.push(chars[position]);
if chars[position] == quote {
return (result, position + 1);
}
position += 1;
}
(result, position)
}
fn extract_line_comment(chars: &[char], start: usize, len: usize) -> (String, usize) {
let mut position: usize = start;
let mut result: String = String::new();
while position < len && chars[position] != CHAR_NEWLINE {
result.push(chars[position]);
position += 1;
}
if position < len {
result.push(CHAR_NEWLINE);
position += 1;
}
(result, position)
}
fn extract_block_comment(chars: &[char], start: usize, len: usize) -> (String, usize) {
let mut position: usize = start + 2;
let mut result: String = String::from(BLOCK_COMMENT_START);
while position + 1 < len {
result.push(chars[position]);
if chars[position] == CHAR_ASTERISK && chars[position + 1] == CHAR_SLASH_FORWARD {
result.push(CHAR_SLASH_FORWARD);
return (result, position + 2);
}
position += 1;
}
while position < len {
result.push(chars[position]);
position += 1;
}
(result, position)
}
pub fn format_macro_body(body: &str) -> String {
let raw: String = format_macro_body_raw(body);
add_indentation(&raw)
}
fn format_macro_body_raw(body: &str) -> String {
let chars: Vec<char> = body.chars().collect();
let len: usize = chars.len();
let mut result: String = String::new();
let mut position: usize = 0;
while position < len {
if chars[position] == CHAR_DOUBLE_QUOTE || chars[position] == CHAR_SINGLE_QUOTE {
let (literal, end) = extract_string_literal(&chars, position, len);
result.push_str(&literal);
position = end;
continue;
}
if position + 1 < len
&& chars[position] == CHAR_SLASH_FORWARD
&& chars[position + 1] == CHAR_SLASH_FORWARD
{
let (comment, end) = extract_line_comment(&chars, position, len);
result.push_str(&comment);
position = end;
continue;
}
if position + 1 < len
&& chars[position] == CHAR_SLASH_FORWARD
&& chars[position + 1] == CHAR_ASTERISK
{
let (comment, end) = extract_block_comment(&chars, position, len);
result.push_str(&comment);
position = end;
continue;
}
if is_if_keyword(&chars, position, len) {
let after_if_colon: usize = skip_spaces_on_same_line(&chars, position + 2, len);
if after_if_colon < len
&& chars[after_if_colon] == CHAR_COLON
&& (after_if_colon + 1 >= len || chars[after_if_colon + 1] != CHAR_COLON)
{
result.push_str(KEYWORD_IF);
position += 2;
if position < len && chars[position] == CHAR_SPACE {
result.push(CHAR_SPACE);
position += 1;
}
continue;
}
result.push_str(KEYWORD_IF);
position += 2;
let after_if: usize = skip_spaces_on_same_line(&chars, position, len);
if position < len && chars[after_if] == CHAR_BRACE_LEFT {
result.push(CHAR_SPACE);
let (block, end) = extract_brace_block(&chars, after_if);
result.push_str(&format_brace_block(&block));
position = end;
position = skip_spaces_on_same_line(&chars, position, len);
if position < len && chars[position] == CHAR_BRACE_LEFT {
result.push(CHAR_SPACE);
}
} else {
result.push(CHAR_SPACE);
position = after_if;
}
continue;
}
if is_else_keyword(&chars, position, len) {
if !result.ends_with(CHAR_SPACE)
&& !result.ends_with(CHAR_NEWLINE)
&& !result.ends_with(CHAR_TAB)
{
result.push(CHAR_SPACE);
}
result.push_str(KEYWORD_ELSE);
position += 4;
position = skip_spaces_on_same_line(&chars, position, len);
if is_if_keyword(&chars, position, len) {
result.push(CHAR_SPACE);
continue;
}
if position < len && chars[position] == CHAR_BRACE_LEFT {
result.push(CHAR_SPACE);
}
continue;
}
if is_match_keyword(&chars, position, len) {
let after_match_colon: usize = skip_spaces_on_same_line(&chars, position + 5, len);
if after_match_colon < len
&& chars[after_match_colon] == CHAR_COLON
&& (after_match_colon + 1 >= len || chars[after_match_colon + 1] != CHAR_COLON)
{
result.push_str(KEYWORD_MATCH);
position += 5;
if position < len && chars[position] == CHAR_SPACE {
result.push(CHAR_SPACE);
position += 1;
}
continue;
}
result.push_str(KEYWORD_MATCH);
position += 5;
let after_match: usize = skip_spaces_on_same_line(&chars, position, len);
if after_match < len && chars[after_match] == CHAR_BRACE_LEFT {
result.push(CHAR_SPACE);
let (block, end) = extract_brace_block(&chars, after_match);
result.push_str(&format_brace_block(&block));
position = end;
position = skip_spaces_on_same_line(&chars, position, len);
if position < len && chars[position] == CHAR_BRACE_LEFT {
result.push(CHAR_SPACE);
}
} else {
result.push(CHAR_SPACE);
position = after_match;
}
continue;
}
if is_for_keyword(&chars, position, len) {
let after_for: usize = skip_spaces_on_same_line(&chars, position + 3, len);
if after_for < len
&& chars[after_for] == CHAR_COLON
&& (after_for + 1 >= len || chars[after_for + 1] != CHAR_COLON)
{
result.push_str(KEYWORD_FOR);
position += 3;
if position < len && chars[position] == CHAR_SPACE {
result.push(CHAR_SPACE);
position += 1;
}
continue;
}
result.push_str(KEYWORD_FOR);
position += 3;
position = skip_spaces_on_same_line(&chars, position, len);
if position < len && !is_in_keyword(&chars, position, len) {
result.push(CHAR_SPACE);
}
while position < len && !is_in_keyword(&chars, position, len) {
if chars[position] == CHAR_BRACE_LEFT {
let (block, end) = extract_brace_block(&chars, position);
result.push_str(&format_brace_block(&block));
position = end;
continue;
}
if chars[position] == CHAR_DOUBLE_QUOTE || chars[position] == CHAR_SINGLE_QUOTE {
let (literal, end) = extract_string_literal(&chars, position, len);
result.push_str(&literal);
position = end;
continue;
}
result.push(chars[position]);
position += 1;
}
if result.ends_with(CHAR_SPACE) {
result.truncate(result.len() - 1);
}
position = skip_spaces_on_same_line(&chars, position, len);
if is_in_keyword(&chars, position, len) {
result.push(CHAR_SPACE);
result.push_str(KEYWORD_IN);
position += 2;
position = skip_spaces_on_same_line(&chars, position, len);
if position < len && chars[position] == CHAR_BRACE_LEFT {
result.push(CHAR_SPACE);
let (block, end) = extract_brace_block(&chars, position);
result.push_str(&format_brace_block(&block));
position = end;
position = skip_spaces_on_same_line(&chars, position, len);
if position < len && chars[position] == CHAR_BRACE_LEFT {
result.push(CHAR_SPACE);
}
}
}
continue;
}
if chars[position] == CHAR_COLON && position + 1 < len && chars[position + 1] != CHAR_COLON
{
if result.ends_with(CHAR_COLON) {
result.push(CHAR_COLON);
position += 1;
continue;
}
let colon_prefix: String = find_ident_before(&result);
if is_raw_ident_before(&result, &colon_prefix) {
result.push(CHAR_COLON);
position += 1;
continue;
}
if !colon_prefix.is_empty() {
let before_colon: String = remove_trailing_spaces(&result, colon_prefix.len());
result = before_colon;
result.push_str(&colon_prefix);
}
result.push(CHAR_COLON);
position += 1;
while position < len && (chars[position] == CHAR_SPACE || chars[position] == CHAR_TAB) {
position += 1;
}
if position < len
&& chars[position] != CHAR_NEWLINE
&& chars[position] != CHAR_CARRIAGE_RETURN
&& !is_pseudo_selector_after_colon(&chars, position, len)
{
result.push(CHAR_SPACE);
}
continue;
}
if position + 1 < len
&& chars[position] == CHAR_EQUALS
&& chars[position + 1] == CHAR_GREATER_THAN
{
let trailing: String = find_trailing_spaces(&result);
if !trailing.is_empty() {
result.truncate(result.len() - trailing.len());
}
result.push(CHAR_SPACE);
result.push_str(ARROW_FAT);
position += 2;
while position < len && (chars[position] == CHAR_SPACE || chars[position] == CHAR_TAB) {
position += 1;
}
result.push(CHAR_SPACE);
continue;
}
if chars[position] == CHAR_BRACE_LEFT {
let (inner, end) = extract_brace_content(&chars, position);
let trimmed_inner: &str = inner.trim();
if trimmed_inner.is_empty() {
result.push(CHAR_BRACE_LEFT);
result.push(CHAR_BRACE_RIGHT);
} else {
let formatted_inner: String = format_macro_body_raw(trimmed_inner);
result.push(CHAR_BRACE_LEFT);
result.push(CHAR_NEWLINE);
result.push_str(&formatted_inner);
result.push(CHAR_NEWLINE);
result.push(CHAR_BRACE_RIGHT);
}
position = end;
continue;
}
if is_ident_char(chars[position]) {
let start: usize = position;
while position < len && is_ident_char(chars[position]) {
position += 1;
}
let ident: String = chars[start..position].iter().collect();
result.push_str(&ident);
let ws_start: usize = position;
while position < len && (chars[position] == CHAR_SPACE || chars[position] == CHAR_TAB) {
position += 1;
}
let had_whitespace: bool = position > ws_start;
if position < len && chars[position] == CHAR_BRACE_LEFT {
result.push(CHAR_SPACE);
} else if had_whitespace {
let next_pos: usize = position;
if next_pos < len && is_ident_char(chars[next_pos]) {
let mut ident_end: usize = next_pos;
while ident_end < len && is_ident_char(chars[ident_end]) {
ident_end += 1;
}
let after_ident: usize = skip_spaces_on_same_line(&chars, ident_end, len);
if after_ident < len
&& chars[after_ident] == CHAR_COLON
&& (after_ident + 1 >= len || chars[after_ident + 1] != CHAR_COLON)
{
result.push(CHAR_NEWLINE);
continue;
}
}
let ws: String = chars[ws_start..position].iter().collect();
result.push_str(&ws);
}
continue;
}
result.push(chars[position]);
position += 1;
}
result
}
fn add_indentation(body: &str) -> String {
let chars: Vec<char> = body.chars().collect();
let len: usize = chars.len();
let mut result: String = String::new();
let mut depth: i32 = 0;
let mut index: usize = 0;
while index < len {
if chars[index] == CHAR_DOUBLE_QUOTE || chars[index] == CHAR_SINGLE_QUOTE {
let quote: char = chars[index];
result.push(chars[index]);
index += 1;
while index < len {
if chars[index] == CHAR_SLASH_BACK && index + 1 < len {
result.push(chars[index]);
result.push(chars[index + 1]);
index += 2;
continue;
}
result.push(chars[index]);
if chars[index] == quote {
index += 1;
break;
}
index += 1;
}
continue;
}
if index + 1 < len
&& chars[index] == CHAR_SLASH_FORWARD
&& chars[index + 1] == CHAR_SLASH_FORWARD
{
while index < len && chars[index] != CHAR_NEWLINE {
result.push(chars[index]);
index += 1;
}
continue;
}
if index + 1 < len
&& chars[index] == CHAR_SLASH_FORWARD
&& chars[index + 1] == CHAR_ASTERISK
{
result.push(chars[index]);
result.push(chars[index + 1]);
index += 2;
while index + 1 < len {
if chars[index] == CHAR_ASTERISK && chars[index + 1] == CHAR_SLASH_FORWARD {
result.push(chars[index]);
result.push(chars[index + 1]);
index += 2;
break;
}
result.push(chars[index]);
index += 1;
}
continue;
}
if chars[index] == CHAR_NEWLINE {
result.push(CHAR_NEWLINE);
index += 1;
while index < len && (chars[index] == CHAR_SPACE || chars[index] == CHAR_TAB) {
index += 1;
}
if index >= len || chars[index] == CHAR_NEWLINE || chars[index] == CHAR_CARRIAGE_RETURN
{
continue;
}
let mut closing_count: i32 = 0;
let mut peek: usize = index;
while peek < len && chars[peek] == CHAR_BRACE_RIGHT {
closing_count += 1;
peek += 1;
}
let indent_depth: i32 = (depth - closing_count).max(0);
for _ in 0..indent_depth * 4 {
result.push(CHAR_SPACE);
}
continue;
}
if chars[index] == CHAR_BRACE_LEFT {
depth += 1;
result.push(CHAR_BRACE_LEFT);
index += 1;
continue;
}
if chars[index] == CHAR_BRACE_RIGHT {
depth -= 1;
result.push(CHAR_BRACE_RIGHT);
index += 1;
let mut peek: usize = index;
while peek < len && (chars[peek] == CHAR_SPACE || chars[peek] == CHAR_TAB) {
peek += 1;
}
if peek < len
&& chars[peek] != CHAR_BRACE_RIGHT
&& chars[peek] != CHAR_BRACE_LEFT
&& chars[peek] != CHAR_NEWLINE
&& chars[peek] != CHAR_CARRIAGE_RETURN
&& chars[peek] != CHAR_RIGHT_PAREN
&& chars[peek] != CHAR_COMMA
&& chars[peek] != CHAR_SEMICOLON
{
let next_chars: String = chars[peek..(peek + 4).min(len)].iter().collect();
if next_chars != "else" {
result.push(CHAR_NEWLINE);
let indent_depth: i32 = depth.max(0);
for _ in 0..indent_depth * 4 {
result.push(CHAR_SPACE);
}
index = peek;
}
}
continue;
}
result.push(chars[index]);
index += 1;
}
result
}
fn is_if_keyword(chars: &[char], pos: usize, len: usize) -> bool {
if pos + 2 > len {
return false;
}
chars[pos] == CHAR_LETTER_I
&& chars[pos + 1] == CHAR_LETTER_F
&& (pos + 2 >= len || !is_ident_char(chars[pos + 2]))
&& (pos == 0 || !is_ident_char(chars[pos - 1]))
&& !is_raw_prefix(chars, pos)
}
fn is_else_keyword(chars: &[char], pos: usize, len: usize) -> bool {
if pos + 4 > len {
return false;
}
chars[pos] == CHAR_LETTER_E
&& chars[pos + 1] == CHAR_LETTER_L
&& chars[pos + 2] == CHAR_LETTER_S
&& chars[pos + 3] == CHAR_LETTER_E
&& (pos + 4 >= len || !is_ident_char(chars[pos + 4]))
&& (pos == 0 || !is_ident_char(chars[pos - 1]))
&& !is_raw_prefix(chars, pos)
}
fn is_match_keyword(chars: &[char], pos: usize, len: usize) -> bool {
if pos + 5 > len {
return false;
}
chars[pos] == CHAR_LETTER_M
&& chars[pos + 1] == CHAR_LETTER_A
&& chars[pos + 2] == CHAR_LETTER_T
&& chars[pos + 3] == CHAR_LETTER_C
&& chars[pos + 4] == CHAR_LETTER_H
&& (pos + 5 >= len || !is_ident_char(chars[pos + 5]))
&& (pos == 0 || !is_ident_char(chars[pos - 1]))
&& !is_raw_prefix(chars, pos)
}
fn is_for_keyword(chars: &[char], pos: usize, len: usize) -> bool {
if pos + 3 > len {
return false;
}
chars[pos] == CHAR_LETTER_F
&& chars[pos + 1] == CHAR_LETTER_O
&& chars[pos + 2] == CHAR_LETTER_R
&& (pos + 3 >= len || !is_ident_char(chars[pos + 3]))
&& (pos == 0 || !is_ident_char(chars[pos - 1]))
&& !is_raw_prefix(chars, pos)
}
fn is_in_keyword(chars: &[char], pos: usize, len: usize) -> bool {
if pos + 2 > len {
return false;
}
chars[pos] == CHAR_LETTER_I
&& chars[pos + 1] == CHAR_LETTER_N
&& (pos + 2 >= len || !is_ident_char(chars[pos + 2]))
&& (pos == 0 || !is_ident_char(chars[pos - 1]))
&& !is_raw_prefix(chars, pos)
}
fn format_brace_block(block: &str) -> String {
let block_chars: Vec<char> = block.chars().collect();
if block_chars.len() < 2
|| block_chars[0] != CHAR_BRACE_LEFT
|| *block_chars.last().unwrap() != CHAR_BRACE_RIGHT
{
return block.to_string();
}
let inner: String = block_chars[1..block_chars.len() - 1].iter().collect();
if inner.contains(CHAR_NEWLINE) {
return block.to_string();
}
let trimmed_inner: &str = inner.trim();
if trimmed_inner.is_empty() {
let mut empty_result: String = String::new();
empty_result.push(CHAR_BRACE_LEFT);
empty_result.push(CHAR_BRACE_RIGHT);
return empty_result;
}
let mut formatted: String = String::new();
formatted.push(CHAR_BRACE_LEFT);
formatted.push(CHAR_SPACE);
formatted.push_str(trimmed_inner);
formatted.push(CHAR_SPACE);
formatted.push(CHAR_BRACE_RIGHT);
formatted
}
fn skip_spaces_on_same_line(chars: &[char], mut pos: usize, len: usize) -> usize {
while pos < len && (chars[pos] == CHAR_SPACE || chars[pos] == CHAR_TAB) {
pos += 1;
}
pos
}
fn is_pseudo_selector_after_colon(chars: &[char], mut pos: usize, len: usize) -> bool {
if pos >= len || !is_ident_char(chars[pos]) {
return false;
}
let ident_start: usize = pos;
while pos < len && is_ident_char(chars[pos]) {
pos += 1;
}
let first_ident: String = chars[ident_start..pos].iter().collect();
if is_rust_keyword(&first_ident) {
return false;
}
while pos < len && chars[pos] == CHAR_HYPHEN && pos + 1 < len && is_ident_char(chars[pos + 1]) {
pos += 1;
while pos < len && is_ident_char(chars[pos]) {
pos += 1;
}
}
let after_ident: usize = skip_spaces_on_same_line(chars, pos, len);
if after_ident < len && chars[after_ident] == CHAR_BRACE_LEFT {
return true;
}
if after_ident < len && chars[after_ident] == CHAR_LEFT_PAREN {
let mut depth: i32 = 0;
let mut paren_pos: usize = after_ident;
while paren_pos < len {
if chars[paren_pos] == CHAR_LEFT_PAREN {
depth += 1;
} else if chars[paren_pos] == CHAR_RIGHT_PAREN {
depth -= 1;
if depth == 0 {
let after_paren: usize = skip_spaces_on_same_line(chars, paren_pos + 1, len);
return after_paren < len && chars[after_paren] == CHAR_BRACE_LEFT;
}
}
paren_pos += 1;
}
}
false
}
fn is_rust_keyword(ident: &str) -> bool {
matches!(ident, KEYWORD_IF | KEYWORD_MATCH | KEYWORD_FOR)
}
fn is_raw_ident_before(result: &str, ident: &str) -> bool {
result
.trim_end()
.ends_with(&format!("{RAW_IDENT_PREFIX}{ident}"))
}
fn find_ident_before(result: &str) -> String {
let chars: Vec<char> = result.chars().collect();
let mut end: usize = chars.len();
while end > 0 && chars[end - 1] == CHAR_SPACE {
end -= 1;
}
let mut start: usize = end;
while start > 0 && is_ident_char(chars[start - 1]) {
start -= 1;
}
if start < end {
chars[start..end].iter().collect()
} else {
String::new()
}
}
fn remove_trailing_spaces(result: &str, prefix_len: usize) -> String {
let chars: Vec<char> = result.chars().collect();
let total_len: usize = chars.len();
let mut end: usize = total_len;
while end > 0 && chars[end - 1] == CHAR_SPACE {
end -= 1;
}
if prefix_len > end {
return result.to_string();
}
let new_end: usize = end - prefix_len;
chars[..new_end].iter().collect()
}
fn find_trailing_spaces(result: &str) -> String {
let mut spaces: String = String::new();
for ch in result.chars().rev() {
if ch == CHAR_SPACE || ch == CHAR_TAB {
spaces.push(ch);
} else {
break;
}
}
spaces.chars().rev().collect()
}
pub async fn format_dir(path: &Path, mode: FmtMode) -> Result<(), EuvError> {
if path.is_file() {
let changed: bool = format_file(path, &mode).await?;
match mode {
FmtMode::Check => {
if changed {
return Err(EuvError::Message(format!(
"{} needs formatting.",
path.display()
)));
}
log::info!("{} is properly formatted.", path.display());
}
FmtMode::Write => {
if changed {
log::info!("Formatted: {}", path.display());
} else {
log::info!("Already formatted: {}", path.display());
}
}
}
return Ok(());
}
let mut entries: Vec<PathBuf> = collect_rs_files(path).await?;
entries.sort();
let mut changed_count: usize = 0;
let mut unchanged_count: usize = 0;
for entry in entries {
match format_file(&entry, &mode).await {
Ok(changed) => {
if changed {
changed_count += 1;
} else {
unchanged_count += 1;
}
}
Err(error) => {
log::warn!("Failed to format {}: {error}", entry.display());
}
}
}
match mode {
FmtMode::Check => {
if changed_count > 0 {
return Err(EuvError::Message(format!(
"{} file(s) need formatting. Run `euv fmt` to fix.",
changed_count
)));
}
log::info!("All {} file(s) are properly formatted.", unchanged_count);
}
FmtMode::Write => {
log::info!(
"Formatted {} file(s), {} unchanged.",
changed_count,
unchanged_count
);
}
}
Ok(())
}
async fn collect_rs_files(path: &Path) -> Result<Vec<PathBuf>, EuvError> {
let mut result: Vec<PathBuf> = Vec::new();
let mut stack: Vec<PathBuf> = vec![path.to_path_buf()];
while let Some(dir) = stack.pop() {
let mut entries: ReadDir =
read_dir(&dir)
.await
.map_err(|error: io::Error| EuvError::IoPath {
message: String::from("Failed to read directory"),
path: dir.clone(),
error,
})?;
while let Some(entry) =
entries
.next_entry()
.await
.map_err(|error: io::Error| EuvError::IoPath {
message: String::from("Failed to read entry in directory"),
path: dir.clone(),
error,
})?
{
let entry_path: PathBuf = entry.path();
if entry_path.is_dir() {
let file_name: String = entry_path
.file_name()
.unwrap_or_default()
.to_string_lossy()
.to_string();
if file_name != TARGET_DIR_NAME && file_name != NODE_MODULES_DIR_NAME {
stack.push(entry_path);
}
} else if entry_path
.extension()
.is_some_and(|ext: &std::ffi::OsStr| ext == RS_EXTENSION)
{
result.push(entry_path);
}
}
}
Ok(result)
}
async fn format_file(path: &Path, mode: &FmtMode) -> Result<bool, EuvError> {
let content: String =
read_to_string(path)
.await
.map_err(|error: io::Error| EuvError::IoPath {
message: String::from("Failed to read"),
path: path.to_path_buf(),
error,
})?;
let fmt_result: FmtResult = format_source(&content);
if fmt_result.get_changed() {
match mode {
FmtMode::Write => {
write(path, fmt_result.get_output())
.await
.map_err(|error: io::Error| EuvError::IoPath {
message: String::from("Failed to write"),
path: path.to_path_buf(),
error,
})?;
log::info!("Formatted: {}", path.display());
}
FmtMode::Check => {
log::warn!("Needs formatting: {}", path.display());
}
}
}
Ok(fmt_result.get_changed())
}