vibe-style 0.1.13

Rust style checker with syntax and semantic analysis, plus a safe auto-fixer for deterministic, rule-driven code layout.
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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
use std::{
	collections::{BTreeSet, HashSet},
	sync::LazyLock,
};

use regex::Regex;

use crate::style::{
	quality,
	shared::{self, Edit, FileContext, Violation},
};

type StatementSpan = (usize, usize, String);

static CONTROL_FLOW_PREFIX_RE: LazyLock<Regex> = LazyLock::new(|| {
	Regex::new(r"^(if|if\s+let|match|for|while|loop|return|let)\b")
		.expect("Compile control-flow statement prefix regex.")
});
static STRUCT_FIELD_RE: LazyLock<Regex> = LazyLock::new(|| {
	Regex::new(r"^[A-Za-z_][A-Za-z0-9_]*\s*:\s*.+,?$")
		.expect("Compile struct field detection regex.")
});

#[derive(Clone, Copy, Debug, Default)]
struct CodeMaskState {
	in_block_comment_depth: usize,
	in_str: bool,
	str_escape: bool,
	in_char: bool,
	char_escape: bool,
	raw_hashes: Option<usize>,
}

struct StatementPair {
	blank_count: usize,
	can_autofix_blank_only: bool,
	curr_is_item: bool,
	next_is_item: bool,
	curr_is_pipe_continuation: bool,
	next_is_pipe_continuation: bool,
	curr_is_const_group: bool,
	next_is_const_group: bool,
}
impl StatementPair {
	fn from_statements(
		ctx: &FileContext,
		curr_start: usize,
		curr_end: usize,
		next_start: usize,
		next_end: usize,
	) -> Self {
		let between = &ctx.lines[curr_end + 1..next_start];

		Self {
			blank_count: between.iter().filter(|line| line.trim().is_empty()).count(),
			can_autofix_blank_only: between_is_blank_only(&ctx.lines, curr_end + 1, next_start),
			curr_is_item: is_item_like_statement(&ctx.lines[curr_start..=curr_end]),
			next_is_item: is_item_like_statement(&ctx.lines[next_start..=next_end]),
			curr_is_pipe_continuation: is_pipe_pattern_continuation_statement(
				&ctx.lines[curr_start..=curr_end],
			),
			next_is_pipe_continuation: is_pipe_pattern_continuation_statement(
				&ctx.lines[next_start..=next_end],
			),
			curr_is_const_group: is_const_group_statement(&ctx.lines[curr_start..=curr_end]),
			next_is_const_group: is_const_group_statement(&ctx.lines[next_start..=next_end]),
		}
	}
}

pub(crate) fn check_vertical_spacing(
	ctx: &FileContext,
	violations: &mut Vec<Violation>,
	edits: &mut Vec<Edit>,
	emit_edits: bool,
) {
	let mut visited_blocks: HashSet<(usize, usize)> = HashSet::new();

	for (start, end) in quality::function_ranges(ctx) {
		check_vertical_spacing_block(
			ctx,
			violations,
			edits,
			emit_edits,
			&mut visited_blocks,
			start,
			end,
		);
	}
}

fn check_vertical_spacing_block(
	ctx: &FileContext,
	violations: &mut Vec<Violation>,
	edits: &mut Vec<Edit>,
	emit_edits: bool,
	visited_blocks: &mut HashSet<(usize, usize)>,
	start: usize,
	end: usize,
) {
	if end <= start || !visited_blocks.insert((start, end)) {
		return;
	}

	let statements = extract_top_level_statements(&ctx.lines, start, end);

	if statements.is_empty() {
		return;
	}

	let return_like_indices = collect_return_like_indices(ctx, &statements);

	check_statement_pair_spacing(
		ctx,
		violations,
		edits,
		emit_edits,
		&statements,
		&return_like_indices,
	);
	check_return_like_spacing(
		ctx,
		violations,
		edits,
		emit_edits,
		&statements,
		&return_like_indices,
	);
	recurse_spacing_child_blocks(
		ctx,
		violations,
		edits,
		emit_edits,
		visited_blocks,
		start,
		end,
		&statements,
	);
}

fn collect_return_like_indices(ctx: &FileContext, statements: &[StatementSpan]) -> BTreeSet<usize> {
	let mut out = BTreeSet::new();

	for (idx, (stmt_start, stmt_end, _)) in statements.iter().enumerate() {
		if is_explicit_return_statement(&ctx.lines[*stmt_start..=*stmt_end]) {
			out.insert(idx);
		}
	}

	let (last_start, last_end, _) = statements[statements.len() - 1].clone();
	let final_is_return_or_tail = is_return_or_tail_statement(&ctx.lines[last_start..=last_end]);

	if final_is_return_or_tail {
		out.insert(statements.len() - 1);
	}

	out
}

fn check_statement_pair_spacing(
	ctx: &FileContext,
	violations: &mut Vec<Violation>,
	edits: &mut Vec<Edit>,
	emit_edits: bool,
	statements: &[StatementSpan],
	return_like_indices: &BTreeSet<usize>,
) {
	for idx in 0..statements.len().saturating_sub(1) {
		if return_like_indices.contains(&(idx + 1)) {
			continue;
		}

		let (curr_start, curr_end, curr_type) = &statements[idx];
		let (next_start, next_end, next_type) = &statements[idx + 1];
		let pair =
			StatementPair::from_statements(ctx, *curr_start, *curr_end, *next_start, *next_end);

		apply_statement_pair_spacing_rule(
			ctx,
			violations,
			edits,
			emit_edits,
			curr_end + 1,
			*next_start,
			curr_type,
			next_type,
			&pair,
		);
	}
}

#[allow(clippy::too_many_arguments)]
fn apply_statement_pair_spacing_rule(
	ctx: &FileContext,
	violations: &mut Vec<Violation>,
	edits: &mut Vec<Edit>,
	emit_edits: bool,
	between_start: usize,
	next_start: usize,
	curr_type: &str,
	next_type: &str,
	pair: &StatementPair,
) {
	if pair.curr_is_pipe_continuation || pair.next_is_pipe_continuation {
		push_spacing_violation_and_edit(
			ctx,
			violations,
			edits,
			emit_edits,
			next_start + 1,
			"RUST-STYLE-SPACE-003",
			"Do not insert blank lines inside a match pattern alternation.",
			pair.blank_count != 0,
			pair.can_autofix_blank_only,
			between_start,
			next_start,
			"",
		);

		return;
	}
	if pair.curr_is_const_group && pair.next_is_const_group {
		let can_autofix = between_same_type_can_autofix(&ctx.lines, between_start, next_start);
		let replacement =
			same_type_replacement_without_blank_lines(&ctx.lines, between_start, next_start);

		push_spacing_violation_and_edit(
			ctx,
			violations,
			edits,
			emit_edits,
			next_start + 1,
			"RUST-STYLE-SPACE-003",
			"Do not insert blank lines within constant declaration groups.",
			pair.blank_count != 0,
			can_autofix,
			between_start,
			next_start,
			&replacement,
		);

		return;
	}
	if pair.curr_is_item && pair.next_is_item {
		let can_autofix = between_same_type_can_autofix(&ctx.lines, between_start, next_start);
		let replacement =
			item_between_replacement_with_single_blank(&ctx.lines, between_start, next_start);

		push_spacing_violation_and_edit(
			ctx,
			violations,
			edits,
			emit_edits,
			next_start + 1,
			"RUST-STYLE-SPACE-003",
			"Insert exactly one blank line between local item declarations.",
			pair.blank_count != 1,
			can_autofix,
			between_start,
			next_start,
			&replacement,
		);

		return;
	}
	if curr_type == next_type {
		let can_autofix = between_same_type_can_autofix(&ctx.lines, between_start, next_start);
		let replacement =
			same_type_replacement_without_blank_lines(&ctx.lines, between_start, next_start);

		push_spacing_violation_and_edit(
			ctx,
			violations,
			edits,
			emit_edits,
			next_start + 1,
			"RUST-STYLE-SPACE-003",
			"Do not insert blank lines within the same statement type.",
			pair.blank_count != 0,
			can_autofix,
			between_start,
			next_start,
			&replacement,
		);

		return;
	}

	push_spacing_violation_and_edit(
		ctx,
		violations,
		edits,
		emit_edits,
		next_start + 1,
		"RUST-STYLE-SPACE-003",
		"Insert exactly one blank line between different statement types.",
		pair.blank_count != 1,
		pair.can_autofix_blank_only,
		between_start,
		next_start,
		"\n",
	);
}

#[allow(clippy::too_many_arguments)]
fn push_spacing_violation_and_edit(
	ctx: &FileContext,
	violations: &mut Vec<Violation>,
	edits: &mut Vec<Edit>,
	emit_edits: bool,
	line: usize,
	rule: &'static str,
	message: &'static str,
	should_report: bool,
	can_autofix: bool,
	start_line: usize,
	end_line: usize,
	replacement: &str,
) {
	if !should_report {
		return;
	}

	shared::push_violation(violations, ctx, line, rule, message, can_autofix);

	if emit_edits
		&& can_autofix
		&& let Some(edit) = replace_between_lines_edit(ctx, start_line, end_line, replacement)
	{
		edits.push(edit);
	}
}

fn check_return_like_spacing(
	ctx: &FileContext,
	violations: &mut Vec<Violation>,
	edits: &mut Vec<Edit>,
	emit_edits: bool,
	statements: &[StatementSpan],
	return_like_indices: &BTreeSet<usize>,
) {
	for idx in return_like_indices {
		if *idx == 0 {
			continue;
		}

		let (_prev_start, prev_end, _) = &statements[idx - 1];
		let (ret_start, ret_end, _) = &statements[*idx];
		let between = &ctx.lines[prev_end + 1..*ret_start];
		let blank_count = between.iter().filter(|line| line.trim().is_empty()).count();
		let can_autofix = between_is_blank_only(&ctx.lines, prev_end + 1, *ret_start);

		if blank_count == 1 {
			continue;
		}

		let stmt_lines = &ctx.lines[*ret_start..=*ret_end];
		let message = if is_explicit_return_statement(stmt_lines) {
			"Insert exactly one blank line before each return statement."
		} else {
			"Insert exactly one blank line before the final tail expression."
		};

		shared::push_violation(
			violations,
			ctx,
			ret_start + 1,
			"RUST-STYLE-SPACE-004",
			message,
			can_autofix,
		);

		if emit_edits
			&& can_autofix
			&& let Some(edit) = replace_between_lines_edit_with_rule(
				ctx,
				prev_end + 1,
				*ret_start,
				"\n",
				"RUST-STYLE-SPACE-004",
			) {
			edits.push(edit);
		}
	}
}

#[allow(clippy::too_many_arguments)]
fn recurse_spacing_child_blocks(
	ctx: &FileContext,
	violations: &mut Vec<Violation>,
	edits: &mut Vec<Edit>,
	emit_edits: bool,
	visited_blocks: &mut HashSet<(usize, usize)>,
	start: usize,
	end: usize,
	statements: &[StatementSpan],
) {
	for (stmt_start, stmt_end, _) in statements {
		for (child_start, child_end) in
			extract_top_level_brace_blocks_in_span(&ctx.lines, *stmt_start, *stmt_end)
		{
			if child_start == start && child_end == end {
				continue;
			}
			if is_data_like_brace_block(&ctx.lines, child_start, child_end) {
				continue;
			}

			check_vertical_spacing_block(
				ctx,
				violations,
				edits,
				emit_edits,
				visited_blocks,
				child_start,
				child_end,
			);
		}
	}
}

fn normalize_statement_text(statement_lines: &[String]) -> String {
	let mut parts = Vec::new();
	let mut state = CodeMaskState::default();

	for raw in statement_lines {
		let mut code = mask_code_line(raw, &mut state);

		code = code.trim().to_owned();

		if code.is_empty() || code.starts_with('#') {
			continue;
		}

		parts.push(code);
	}

	parts.join(" ")
}

fn is_ident_char(ch: char) -> bool {
	ch.is_ascii_alphanumeric() || ch == '_'
}

fn is_lifetime_start(chars: &[char], idx: usize) -> bool {
	if idx + 1 >= chars.len() {
		return false;
	}

	let next = chars[idx + 1];

	if !(next.is_ascii_alphabetic() || next == '_') {
		return false;
	}
	if idx + 2 >= chars.len() {
		return true;
	}

	chars[idx + 2] != '\''
}

fn raw_string_start(chars: &[char], idx: usize) -> Option<(usize, usize)> {
	if idx >= chars.len() {
		return None;
	}
	if idx > 0 && is_ident_char(chars[idx - 1]) {
		return None;
	}

	let mut cursor = idx;

	if chars[cursor] == 'b' {
		if cursor + 1 >= chars.len() || chars[cursor + 1] != 'r' {
			return None;
		}

		cursor += 1;
	}
	if chars[cursor] != 'r' {
		return None;
	}

	cursor += 1;

	let mut hash_count = 0_usize;

	while cursor < chars.len() && chars[cursor] == '#' {
		hash_count += 1;
		cursor += 1;
	}

	if cursor >= chars.len() || chars[cursor] != '"' {
		return None;
	}

	Some((cursor - idx + 1, hash_count))
}

fn mask_code_line(line: &str, state: &mut CodeMaskState) -> String {
	let chars = line.chars().collect::<Vec<_>>();
	let mut out = String::with_capacity(line.len());
	let mut idx = 0_usize;

	while idx < chars.len() {
		if consume_masked_block_comment(&chars, &mut idx, &mut out, state) {
			continue;
		}
		if consume_masked_raw_string(&chars, &mut idx, &mut out, state) {
			continue;
		}
		if consume_masked_normal_string(&chars, &mut idx, &mut out, state) {
			continue;
		}
		if consume_masked_char_literal(&chars, &mut idx, &mut out, state) {
			continue;
		}
		if starts_line_comment(&chars, idx) {
			break;
		}
		if consume_block_comment_start(&chars, &mut idx, &mut out, state) {
			continue;
		}
		if consume_raw_string_start(&chars, &mut idx, &mut out, state) {
			continue;
		}
		if consume_string_or_char_start(&chars, &mut idx, &mut out, state) {
			continue;
		}

		out.push(chars[idx]);

		idx += 1;
	}

	out
}

fn consume_masked_block_comment(
	chars: &[char],
	idx: &mut usize,
	out: &mut String,
	state: &mut CodeMaskState,
) -> bool {
	if state.in_block_comment_depth == 0 {
		return false;
	}

	let ch = chars[*idx];
	let next = chars.get(*idx + 1).copied();

	if ch == '/' && next == Some('*') {
		state.in_block_comment_depth += 1;

		out.push_str("  ");

		*idx += 2;

		return true;
	}
	if ch == '*' && next == Some('/') {
		state.in_block_comment_depth = state.in_block_comment_depth.saturating_sub(1);

		out.push_str("  ");

		*idx += 2;

		return true;
	}

	out.push(' ');

	*idx += 1;

	true
}

fn consume_masked_raw_string(
	chars: &[char],
	idx: &mut usize,
	out: &mut String,
	state: &mut CodeMaskState,
) -> bool {
	let Some(hash_count) = state.raw_hashes else {
		return false;
	};

	if chars[*idx] == '"' && raw_hash_suffix_matches(chars, *idx, hash_count) {
		out.push(' ');

		for _ in 0..hash_count {
			out.push(' ');
		}

		*idx += 1 + hash_count;
		state.raw_hashes = None;

		return true;
	}

	out.push(' ');

	*idx += 1;

	true
}

fn raw_hash_suffix_matches(chars: &[char], idx: usize, hash_count: usize) -> bool {
	(0..hash_count).all(|offset| {
		let pos = idx + 1 + offset;

		pos < chars.len() && chars[pos] == '#'
	})
}

fn consume_masked_normal_string(
	chars: &[char],
	idx: &mut usize,
	out: &mut String,
	state: &mut CodeMaskState,
) -> bool {
	if !state.in_str {
		return false;
	}

	let ch = chars[*idx];

	out.push(' ');

	if state.str_escape {
		state.str_escape = false;
	} else if ch == '\\' {
		state.str_escape = true;
	} else if ch == '"' {
		state.in_str = false;
	}

	*idx += 1;

	true
}

fn consume_masked_char_literal(
	chars: &[char],
	idx: &mut usize,
	out: &mut String,
	state: &mut CodeMaskState,
) -> bool {
	if !state.in_char {
		return false;
	}

	let ch = chars[*idx];

	out.push(' ');

	if state.char_escape {
		state.char_escape = false;
	} else if ch == '\\' {
		state.char_escape = true;
	} else if ch == '\'' {
		state.in_char = false;
	}

	*idx += 1;

	true
}

fn starts_line_comment(chars: &[char], idx: usize) -> bool {
	chars[idx] == '/' && chars.get(idx + 1).copied() == Some('/')
}

fn consume_block_comment_start(
	chars: &[char],
	idx: &mut usize,
	out: &mut String,
	state: &mut CodeMaskState,
) -> bool {
	if chars[*idx] != '/' || chars.get(*idx + 1).copied() != Some('*') {
		return false;
	}

	state.in_block_comment_depth += 1;

	out.push_str("  ");

	*idx += 2;

	true
}

fn consume_raw_string_start(
	chars: &[char],
	idx: &mut usize,
	out: &mut String,
	state: &mut CodeMaskState,
) -> bool {
	let Some((prefix_len, hash_count)) = raw_string_start(chars, *idx) else {
		return false;
	};

	for _ in 0..prefix_len {
		out.push(' ');
	}

	*idx += prefix_len;
	state.raw_hashes = Some(hash_count);

	true
}

fn consume_string_or_char_start(
	chars: &[char],
	idx: &mut usize,
	out: &mut String,
	state: &mut CodeMaskState,
) -> bool {
	let ch = chars[*idx];

	if ch == '"' {
		state.in_str = true;
		state.str_escape = false;

		out.push(' ');

		*idx += 1;

		return true;
	}
	if ch == '\'' && !is_lifetime_start(chars, *idx) {
		state.in_char = true;
		state.char_escape = false;

		out.push(' ');

		*idx += 1;

		return true;
	}

	false
}

fn strip_turbofish(text: &str) -> String {
	let chars = text.chars().collect::<Vec<_>>();
	let mut out = String::with_capacity(text.len());
	let mut idx = 0;

	while idx < chars.len() {
		if idx + 2 < chars.len()
			&& chars[idx] == ':'
			&& chars[idx + 1] == ':'
			&& chars[idx + 2] == '<'
		{
			idx += 3;

			let mut depth = 1_i32;

			while idx < chars.len() && depth > 0 {
				if chars[idx] == '<' {
					depth += 1;
				} else if chars[idx] == '>' {
					depth -= 1;
				}

				idx += 1;
			}

			continue;
		}

		out.push(chars[idx]);

		idx += 1;
	}

	out
}

fn parse_ufcs_target_call(text: &str) -> Option<(String, String)> {
	if !text.starts_with('<') {
		return None;
	}

	let chars = text.chars().collect::<Vec<_>>();
	let mut depth = 0_i32;
	let mut close_idx = None;

	for (idx, ch) in chars.iter().enumerate() {
		if *ch == '<' {
			depth += 1;
		} else if *ch == '>' {
			depth -= 1;

			if depth == 0 {
				close_idx = Some(idx);

				break;
			}
		}
	}

	let close_idx = close_idx?;
	let body = text[1..close_idx].trim();
	let mut rest = text[close_idx + 1..].trim_start();

	if !rest.starts_with("::") {
		return None;
	}

	rest = &rest[2..];

	let fn_match = Regex::new(r"^(?P<func>[A-Za-z_][A-Za-z0-9_]*)\s*\(")
		.expect("Compile UFCS function extraction regex.")
		.captures(rest)?;
	let func = fn_match.name("func")?.as_str().to_owned();
	let target = if let Some((_, right)) = body.split_once(" as ") {
		right.trim().to_owned()
	} else {
		body.to_owned()
	};

	if target.is_empty() { None } else { Some((target, func)) }
}

fn contains_assignment_operator(text: &str) -> bool {
	fn is_ident_char(ch: char) -> bool {
		ch.is_ascii_alphanumeric() || ch == '_'
	}

	for op in ["+=", "-=", "*=", "/=", "%=", "&=", "|=", "^=", "<<=", ">>="] {
		if text.contains(op) {
			return true;
		}
	}

	let bytes = text.as_bytes();

	for idx in 0..bytes.len() {
		if bytes[idx] != b'=' {
			continue;
		}

		let prev = if idx > 0 { Some(bytes[idx - 1] as char) } else { None };
		let next = if idx + 1 < bytes.len() { Some(bytes[idx + 1] as char) } else { None };
		let prev_prev = if idx > 1 { Some(bytes[idx - 2] as char) } else { None };

		if prev == Some('=') || prev == Some('!') || prev == Some('<') || prev == Some('>') {
			continue;
		}
		if next == Some('=') || next == Some('>') {
			continue;
		}
		if prev == Some('.') && prev_prev == Some('.') {
			continue;
		}
		if prev.is_some_and(is_ident_char) && next.is_some_and(is_ident_char) {
			continue;
		}

		return true;
	}

	false
}

fn classify_statement_type(statement_lines: &[String]) -> String {
	let mut normalized = normalize_statement_text(statement_lines);

	if normalized.is_empty() {
		return "empty".to_owned();
	}

	normalized = strip_turbofish(&normalized);

	let first = normalized.as_str();

	if Regex::new(r"^let\b").expect("Compile let-statement classification regex.").is_match(first) {
		return "let".to_owned();
	}
	if Regex::new(r"^if\s+let\b")
		.expect("Compile if-let statement classification regex.")
		.is_match(first)
	{
		return "if-let".to_owned();
	}
	if Regex::new(r"^if\b").expect("Compile if-statement classification regex.").is_match(first) {
		return "if".to_owned();
	}
	if Regex::new(r"^match\b")
		.expect("Compile match-statement classification regex.")
		.is_match(first)
	{
		return "match".to_owned();
	}
	if Regex::new(r"^for\b").expect("Compile for-loop classification regex.").is_match(first) {
		return "for".to_owned();
	}
	if Regex::new(r"^while\b").expect("Compile while-loop classification regex.").is_match(first) {
		return "while".to_owned();
	}
	if Regex::new(r"^loop\b").expect("Compile loop classification regex.").is_match(first) {
		return "loop".to_owned();
	}
	if Regex::new(r"^[A-Za-z_][A-Za-z0-9_]*(?:\.[A-Za-z_][A-Za-z0-9_]*)*(?:\.await)?\?\s*;?$")
		.expect("Compile try-expression classification regex.")
		.is_match(first)
	{
		return "try-expr".to_owned();
	}
	if Regex::new(r"^(?P<name>[A-Za-z_][A-Za-z0-9_:]*)!\s*\(")
		.expect("Compile macro invocation classification regex.")
		.is_match(first)
	{
		let macro_name = Regex::new(r"^(?P<name>[A-Za-z_][A-Za-z0-9_:]*)!\s*\(")
			.expect("Compile macro name extraction regex.")
			.captures(first)
			.and_then(|caps| caps.name("name"))
			.map(|value| value.as_str().to_owned())
			.unwrap_or_default();

		if macro_name.contains("::") {
			return "macro-path".to_owned();
		}

		return "macro".to_owned();
	}
	if contains_assignment_operator(first) {
		return "assign".to_owned();
	}
	if parse_ufcs_target_call(first).is_some() {
		return "path-call".to_owned();
	}
	if Regex::new(r"^(?P<target>[A-Za-z_][A-Za-z0-9_]*(?:::[A-Za-z_][A-Za-z0-9_]*)+)\s*\(")
		.expect("Compile qualified path call classification regex.")
		.is_match(first)
	{
		return "path-call".to_owned();
	}
	if Regex::new(r"^(?P<target>[A-Za-z_][A-Za-z0-9_]*)\s*\(")
		.expect("Compile direct function call classification regex.")
		.is_match(first)
	{
		return "call".to_owned();
	}
	if Regex::new(r"^[^;]*\.(?P<method>[A-Za-z_][A-Za-z0-9_]*)\s*\(")
		.expect("Compile method call classification regex.")
		.is_match(first)
	{
		return "method".to_owned();
	}

	let token = Regex::new(r"[\s({;]")
		.expect("Compile statement token split regex.")
		.split(first)
		.next()
		.unwrap_or_default();

	if token.is_empty() { "other".to_owned() } else { format!("shape:{token}") }
}

fn extract_top_level_statements(
	lines: &[String],
	fn_start: usize,
	fn_end: usize,
) -> Vec<(usize, usize, String)> {
	fn next_significant_line_starts_with_dot(
		lines: &[String],
		mut mask_state: CodeMaskState,
		from_idx: usize,
		fn_end: usize,
	) -> bool {
		for line in lines.iter().take(fn_end).skip(from_idx + 1) {
			let code = mask_code_line(line, &mut mask_state);
			let stripped = code.trim();

			if stripped.is_empty() {
				continue;
			}
			// Attributes apply to the next statement. Treat them as a hard boundary.
			if stripped.starts_with('#') {
				return false;
			}

			return stripped.starts_with('.');
		}

		false
	}

	let mut statements = Vec::new();
	let mut brace_depth = 1_i32;
	let mut paren_depth = 0_i32;
	let mut bracket_depth = 0_i32;
	let mut current_start: Option<usize> = None;
	let mut mask_state = CodeMaskState::default();

	for idx in (fn_start + 1)..fn_end {
		let raw_line = &lines[idx];
		let code = mask_code_line(raw_line, &mut mask_state);
		let stripped = code.trim();

		if current_start.is_none()
			&& brace_depth == 1
			&& !stripped.is_empty()
			&& !stripped.starts_with("//")
			&& !stripped.starts_with('#')
			&& stripped != "}"
		{
			current_start = Some(idx);
		}

		for ch in code.chars() {
			match ch {
				'(' => paren_depth += 1,
				')' => paren_depth = (paren_depth - 1).max(0),
				'[' => bracket_depth += 1,
				']' => bracket_depth = (bracket_depth - 1).max(0),
				'{' => brace_depth += 1,
				'}' => brace_depth = (brace_depth - 1).max(0),
				_ => {},
			}
		}

		let Some(current_start_value) = current_start else {
			continue;
		};
		let stripped_code = code.trim();
		let statement_closed = brace_depth == 1
			&& paren_depth == 0
			&& bracket_depth == 0
			&& !stripped_code.is_empty()
			&& (stripped_code.ends_with(';')
				|| (stripped_code.ends_with('}')
					&& !next_significant_line_starts_with_dot(lines, mask_state, idx, fn_end)));

		if statement_closed {
			let span_lines = lines[current_start_value..=idx].to_vec();

			statements.push((current_start_value, idx, classify_statement_type(&span_lines)));

			current_start = None;
		}
	}

	if let Some(current_start) = current_start
		&& fn_end > current_start
	{
		let span_lines = lines[current_start..fn_end].to_vec();

		statements.push((
			current_start,
			fn_end.saturating_sub(1),
			classify_statement_type(&span_lines),
		));
	}

	statements
}

fn first_significant_statement_line(lines: &[String]) -> Option<String> {
	for line in lines {
		let stripped = line.trim();

		if stripped.is_empty() || stripped.starts_with("//") || stripped.starts_with('#') {
			continue;
		}

		return Some(stripped.to_owned());
	}

	None
}

fn last_significant_statement_line(lines: &[String]) -> Option<String> {
	for line in lines.iter().rev() {
		let stripped = line.trim();

		if stripped.is_empty() || stripped.starts_with("//") || stripped.starts_with('#') {
			continue;
		}

		return Some(stripped.to_owned());
	}

	None
}

fn is_return_or_tail_statement(statement_lines: &[String]) -> bool {
	let Some(first) = first_significant_statement_line(statement_lines) else {
		return false;
	};

	if Regex::new(r"^return\b").expect("Compile return statement detection regex.").is_match(&first)
	{
		return true;
	}

	let Some(last) = last_significant_statement_line(statement_lines) else {
		return false;
	};

	if Regex::new(r"^return\b")
		.expect("Compile trailing return statement detection regex.")
		.is_match(&last)
	{
		return true;
	}
	if last.ends_with(';')
		|| last.ends_with('{')
		|| last.ends_with(',')
		|| matches!(last.as_str(), "}" | "};")
	{
		return false;
	}

	true
}

fn is_explicit_return_statement(statement_lines: &[String]) -> bool {
	first_significant_statement_line(statement_lines)
		.map(|first| {
			Regex::new(r"^return\b")
				.expect("Compile explicit return statement detection regex.")
				.is_match(&first)
		})
		.unwrap_or(false)
}

fn extract_top_level_brace_blocks_in_span(
	lines: &[String],
	span_start: usize,
	span_end: usize,
) -> Vec<(usize, usize)> {
	let mut blocks = Vec::new();
	let mut depth = 0_i32;
	let mut current_start: Option<usize> = None;
	let mut mask_state = CodeMaskState::default();

	for (idx, line) in lines.iter().enumerate().take(span_end + 1).skip(span_start) {
		let code = mask_code_line(line, &mut mask_state);

		for ch in code.chars() {
			if ch == '{' {
				depth += 1;

				if depth == 1 {
					current_start = Some(idx);
				}
			} else if ch == '}' {
				if depth == 1
					&& let Some(start) = current_start
				{
					blocks.push((start, idx));

					current_start = None;
				}

				depth = (depth - 1).max(0);
			}
		}
	}

	blocks
}

fn is_data_like_brace_block(lines: &[String], block_start: usize, block_end: usize) -> bool {
	let mut content = Vec::new();
	let mut mask_state = CodeMaskState::default();

	for line in lines.iter().take(block_end).skip(block_start + 1) {
		let code = mask_code_line(line, &mut mask_state);
		let code = code.trim().to_owned();

		if code.is_empty() || code.starts_with('#') {
			continue;
		}

		content.push(code);
	}

	if content.is_empty() {
		return true;
	}

	for line in &content {
		if line.contains("=>") || line.contains(';') {
			return false;
		}
		if CONTROL_FLOW_PREFIX_RE.is_match(line) {
			return false;
		}
	}
	for line in &content {
		if STRUCT_FIELD_RE.is_match(line) {
			continue;
		}
		if line.ends_with(',') {
			continue;
		}

		return false;
	}

	true
}

fn between_is_blank_only(lines: &[String], start: usize, end: usize) -> bool {
	if start >= end {
		return true;
	}

	lines[start..end].iter().all(|line| line.trim().is_empty())
}

fn is_metadata_line(line: &str) -> bool {
	let trimmed = line.trim_start();

	trimmed.starts_with('#')
		|| trimmed.starts_with("//")
		|| trimmed.starts_with("/*")
		|| trimmed.starts_with('*')
}

fn between_same_type_can_autofix(lines: &[String], start: usize, end: usize) -> bool {
	if start >= end {
		return true;
	}

	lines[start..end].iter().all(|line| line.trim().is_empty() || is_metadata_line(line))
}

fn same_type_replacement_without_blank_lines(lines: &[String], start: usize, end: usize) -> String {
	if start >= end {
		return String::new();
	}

	let mut parts = Vec::new();

	for line in &lines[start..end] {
		if line.trim().is_empty() {
			continue;
		}

		parts.push(line.as_str());
	}

	if parts.is_empty() {
		String::new()
	} else {
		let mut out = parts.join("\n");

		out.push('\n');

		out
	}
}

fn is_item_like_statement(statement_lines: &[String]) -> bool {
	let Some(first) = first_significant_statement_line(statement_lines) else {
		return false;
	};

	Regex::new(
		r"^(?:pub(?:\([^)]*\))?\s+)?(?:(?:async|const|unsafe)\s+)*(?:fn|struct|enum|impl|trait|type|use|mod|static|const|macro_rules!|macro)\b",
	)
	.expect("Compile item-like statement detection regex.")
	.is_match(first.trim())
}

fn is_pipe_pattern_continuation_statement(statement_lines: &[String]) -> bool {
	first_significant_statement_line(statement_lines)
		.map(|line| line.trim_start().starts_with('|'))
		.unwrap_or(false)
}

fn is_const_group_statement(statement_lines: &[String]) -> bool {
	let Some(first) = first_significant_statement_line(statement_lines) else {
		return false;
	};

	Regex::new(r"^(?:pub(?:\([^)]*\))?\s+)?(?:const|static(?:\s+mut)?)\b")
		.expect("Compile const/static statement detection regex.")
		.is_match(first.trim())
}

fn item_between_replacement_with_single_blank(
	lines: &[String],
	start: usize,
	end: usize,
) -> String {
	let mut parts = Vec::new();

	if start < end {
		for line in &lines[start..end] {
			if line.trim().is_empty() {
				continue;
			}

			parts.push(line.as_str());
		}
	}
	if parts.is_empty() {
		return "\n".to_owned();
	}

	let mut out = String::from("\n");

	out.push_str(&parts.join("\n"));
	out.push('\n');

	out
}

fn replace_between_lines_edit(
	ctx: &FileContext,
	start_line_zero_based: usize,
	end_line_zero_based_exclusive: usize,
	replacement: &str,
) -> Option<Edit> {
	replace_between_lines_edit_with_rule(
		ctx,
		start_line_zero_based,
		end_line_zero_based_exclusive,
		replacement,
		"RUST-STYLE-SPACE-003",
	)
}

fn replace_between_lines_edit_with_rule(
	ctx: &FileContext,
	start_line_zero_based: usize,
	end_line_zero_based_exclusive: usize,
	replacement: &str,
	rule: &'static str,
) -> Option<Edit> {
	let start = shared::offset_from_line(&ctx.line_starts, start_line_zero_based + 1)?;
	let end = shared::offset_from_line(&ctx.line_starts, end_line_zero_based_exclusive + 1)?;

	Some(Edit { start, end, replacement: replacement.to_owned(), rule })
}