quantalang 1.0.0

The QuantaLang compiler — an effects-oriented systems language with multi-backend codegen (C, HLSL, GLSL, SPIR-V, LLVM IR, WebAssembly, x86-64, ARM64)
Documentation
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
// ===============================================================================
// QUANTALANG FORMATTER
// ===============================================================================
// Copyright (c) 2022-2026 Zain Dana Harper. MIT License.
// ===============================================================================

//! Main formatter implementation for QuantaLang source code.

use super::config::{BraceStyle, FormatConfig, TrailingComma};

// =============================================================================
// FORMATTER
// =============================================================================

/// QuantaLang source code formatter.
pub struct Formatter {
    /// Configuration.
    config: FormatConfig,
}

impl Formatter {
    /// Create a new formatter with the given configuration.
    pub fn new(config: FormatConfig) -> Self {
        Self { config }
    }

    /// Create a formatter with default configuration.
    pub fn default_formatter() -> Self {
        Self::new(FormatConfig::default())
    }

    /// Format source code string.
    pub fn format_str(&self, source: &str) -> Result<String, FormatError> {
        let mut output = String::with_capacity(source.len());
        let lines: Vec<&str> = source.lines().collect();

        let mut i = 0;
        let mut in_block_comment = false;
        let mut blank_count = 0;

        while i < lines.len() {
            let line = lines[i];
            let trimmed = line.trim();

            // Handle blank lines
            if trimmed.is_empty() {
                blank_count += 1;
                if blank_count <= self.config.max_blank_lines {
                    output.push_str(self.config.newline_str());
                }
                i += 1;
                continue;
            }
            blank_count = 0;

            // Handle block comments
            if in_block_comment {
                output.push_str(&self.format_comment_line(line));
                output.push_str(self.config.newline_str());
                if trimmed.ends_with("*/") {
                    in_block_comment = false;
                }
                i += 1;
                continue;
            }

            if trimmed.starts_with("/*") {
                in_block_comment = !trimmed.ends_with("*/");
                output.push_str(&self.format_comment_line(line));
                output.push_str(self.config.newline_str());
                i += 1;
                continue;
            }

            // Handle line comments
            if trimmed.starts_with("//") {
                output.push_str(&self.format_comment_line(line));
                output.push_str(self.config.newline_str());
                i += 1;
                continue;
            }

            // Format the line based on its type
            let (formatted, consumed) = self.format_construct(&lines, i)?;
            output.push_str(&formatted);
            i += consumed;
        }

        // Ensure final newline if configured
        if self.config.final_newline && !output.ends_with('\n') {
            output.push_str(self.config.newline_str());
        }

        Ok(output)
    }

    /// Format a construct starting at line index.
    fn format_construct(
        &self,
        lines: &[&str],
        start: usize,
    ) -> Result<(String, usize), FormatError> {
        let line = lines[start];
        let trimmed = line.trim();

        // Use statement
        if trimmed.starts_with("use ") {
            return Ok((self.format_use_statement(trimmed)?, 1));
        }

        // Function definition
        if trimmed.starts_with("fn ")
            || trimmed.starts_with("pub fn ")
            || trimmed.starts_with("async fn ")
            || trimmed.starts_with("pub async fn ")
        {
            return self.format_function(lines, start);
        }

        // Struct definition
        if trimmed.starts_with("struct ") || trimmed.starts_with("pub struct ") {
            return self.format_struct(lines, start);
        }

        // Enum definition
        if trimmed.starts_with("enum ") || trimmed.starts_with("pub enum ") {
            return self.format_enum(lines, start);
        }

        // Trait definition
        if trimmed.starts_with("trait ") || trimmed.starts_with("pub trait ") {
            return self.format_trait(lines, start);
        }

        // Impl block
        if trimmed.starts_with("impl ") || trimmed.starts_with("impl<") {
            return self.format_impl(lines, start);
        }

        // Const/static
        if trimmed.starts_with("const ")
            || trimmed.starts_with("pub const ")
            || trimmed.starts_with("static ")
            || trimmed.starts_with("pub static ")
        {
            return Ok((self.format_const_static(trimmed)?, 1));
        }

        // Type alias
        if trimmed.starts_with("type ") || trimmed.starts_with("pub type ") {
            return Ok((self.format_type_alias(trimmed)?, 1));
        }

        // Module declaration
        if trimmed.starts_with("mod ") || trimmed.starts_with("pub mod ") {
            if trimmed.contains('{') {
                return self.format_module(lines, start);
            }
            return Ok((self.format_mod_decl(trimmed)?, 1));
        }

        // Attribute
        if trimmed.starts_with("#[") || trimmed.starts_with("@[") {
            return Ok((self.format_attribute(trimmed)?, 1));
        }

        // Default: format as a statement
        Ok((self.format_statement(trimmed)?, 1))
    }

    /// Format a use statement.
    fn format_use_statement(&self, line: &str) -> Result<String, FormatError> {
        let mut output = String::new();

        // Normalize spacing
        let normalized = line
            .replace("use  ", "use ")
            .replace(" ::", "::")
            .replace(":: ", "::")
            .replace("{ ", "{")
            .replace(" }", "}")
            .replace(" ,", ",")
            .replace(",  ", ", ");

        output.push_str(&normalized);
        output.push_str(self.config.newline_str());
        Ok(output)
    }

    /// Format a function.
    fn format_function(
        &self,
        lines: &[&str],
        start: usize,
    ) -> Result<(String, usize), FormatError> {
        let mut output = String::new();
        let line = lines[start].trim();

        // Find the signature parts
        let sig_end = if let Some(brace_pos) = line.find('{') {
            brace_pos
        } else {
            line.len()
        };

        let signature = &line[..sig_end].trim();
        output.push_str(&self.format_function_signature(signature)?);

        // Handle brace style
        if line.contains('{') {
            match self.config.brace_style {
                BraceStyle::SameLine | BraceStyle::PreferSameLine => {
                    output.push_str(" {");
                }
                BraceStyle::NextLine => {
                    output.push_str(self.config.newline_str());
                    output.push('{');
                }
            }
            output.push_str(self.config.newline_str());

            // Format body
            let (body, end_line) = self.format_block_body(lines, start)?;
            output.push_str(&body);
            output.push('}');
            output.push_str(self.config.newline_str());

            Ok((output, end_line - start + 1))
        } else {
            // Declaration only (trait method)
            output.push_str(self.config.newline_str());
            Ok((output, 1))
        }
    }

    /// Format a function signature.
    fn format_function_signature(&self, sig: &str) -> Result<String, FormatError> {
        let mut output = String::new();

        // Parse parts
        let parts: Vec<&str> = sig.splitn(2, '(').collect();
        if parts.len() < 2 {
            return Ok(sig.to_string());
        }

        let prefix = parts[0].trim();
        let rest = parts[1];

        output.push_str(prefix);
        output.push('(');

        // Find params and return type
        if let Some(paren_end) = rest.find(')') {
            let params = &rest[..paren_end];
            let after_params = &rest[paren_end + 1..];

            // Format parameters
            output.push_str(&self.format_params(params)?);
            output.push(')');

            // Return type
            if let Some(arrow_pos) = after_params.find("->") {
                output.push_str(" -> ");
                let ret_type = after_params[arrow_pos + 2..].trim();
                output.push_str(ret_type);
            }

            // Where clause
            if let Some(where_pos) = after_params.find("where") {
                output.push_str(self.config.newline_str());
                output.push_str(&self.config.indent_str());
                output.push_str(&after_params[where_pos..].trim());
            }
        }

        Ok(output)
    }

    /// Format function parameters.
    fn format_params(&self, params: &str) -> Result<String, FormatError> {
        if params.trim().is_empty() {
            return Ok(String::new());
        }

        let params: Vec<&str> = params.split(',').collect();
        let total_len: usize =
            params.iter().map(|p| p.trim().len()).sum::<usize>() + params.len() * 2; // commas and spaces

        // Check if fits on one line
        if total_len < self.config.max_line_length - 20 {
            Ok(params
                .iter()
                .map(|p| p.trim())
                .collect::<Vec<_>>()
                .join(", "))
        } else {
            // Multi-line
            let mut output = String::new();
            output.push_str(self.config.newline_str());
            for (i, param) in params.iter().enumerate() {
                output.push_str(&self.config.indent_str());
                output.push_str(param.trim());
                if i < params.len() - 1 {
                    output.push(',');
                } else if matches!(
                    self.config.trailing_comma,
                    TrailingComma::Always | TrailingComma::Multiline
                ) {
                    output.push(',');
                }
                output.push_str(self.config.newline_str());
            }
            Ok(output)
        }
    }

    /// Format a struct.
    fn format_struct(&self, lines: &[&str], start: usize) -> Result<(String, usize), FormatError> {
        let mut output = String::new();
        let line = lines[start].trim();

        // Get struct header
        let header_end = line.find('{').unwrap_or(line.len());
        let header = &line[..header_end].trim();
        output.push_str(header);

        if line.contains('{') {
            match self.config.brace_style {
                BraceStyle::SameLine | BraceStyle::PreferSameLine => {
                    output.push_str(" {");
                }
                BraceStyle::NextLine => {
                    output.push_str(self.config.newline_str());
                    output.push('{');
                }
            }
            output.push_str(self.config.newline_str());

            // Format fields
            let (body, end_line) = self.format_struct_fields(lines, start)?;
            output.push_str(&body);
            output.push('}');
            output.push_str(self.config.newline_str());

            Ok((output, end_line - start + 1))
        } else if line.contains('(') {
            // Tuple struct
            output.push_str(self.config.newline_str());
            Ok((output, 1))
        } else {
            // Unit struct
            output.push(';');
            output.push_str(self.config.newline_str());
            Ok((output, 1))
        }
    }

    /// Format struct fields.
    fn format_struct_fields(
        &self,
        lines: &[&str],
        start: usize,
    ) -> Result<(String, usize), FormatError> {
        let mut output = String::new();
        let mut depth = 0;
        let mut end_line = start;

        for i in start..lines.len() {
            let line = lines[i];
            for c in line.chars() {
                if c == '{' {
                    depth += 1;
                } else if c == '}' {
                    depth -= 1;
                    if depth == 0 {
                        end_line = i;
                        return Ok((output, end_line));
                    }
                }
            }

            if i > start {
                let trimmed = line.trim();
                if !trimmed.is_empty() && !trimmed.starts_with('}') {
                    output.push_str(&self.config.indent_str());
                    output.push_str(&self.format_field(trimmed)?);
                    output.push_str(self.config.newline_str());
                }
            }
        }

        Ok((output, end_line))
    }

    /// Format a struct field.
    fn format_field(&self, field: &str) -> Result<String, FormatError> {
        // Normalize spacing around colon
        let normalized = field.replace(" :", ":").replace(":  ", ": ");

        // Handle trailing comma
        let trimmed = normalized.trim_end_matches(',').trim();
        let mut output = trimmed.to_string();

        // Add trailing comma if configured
        if matches!(
            self.config.trailing_comma,
            TrailingComma::Always | TrailingComma::Multiline
        ) {
            output.push(',');
        }

        Ok(output)
    }

    /// Format an enum.
    fn format_enum(&self, lines: &[&str], start: usize) -> Result<(String, usize), FormatError> {
        let mut output = String::new();
        let line = lines[start].trim();

        let header_end = line.find('{').unwrap_or(line.len());
        let header = &line[..header_end].trim();
        output.push_str(header);

        if line.contains('{') {
            match self.config.brace_style {
                BraceStyle::SameLine | BraceStyle::PreferSameLine => {
                    output.push_str(" {");
                }
                BraceStyle::NextLine => {
                    output.push_str(self.config.newline_str());
                    output.push('{');
                }
            }
            output.push_str(self.config.newline_str());

            let (body, end_line) = self.format_enum_variants(lines, start)?;
            output.push_str(&body);
            output.push('}');
            output.push_str(self.config.newline_str());

            Ok((output, end_line - start + 1))
        } else {
            output.push_str(self.config.newline_str());
            Ok((output, 1))
        }
    }

    /// Format enum variants.
    fn format_enum_variants(
        &self,
        lines: &[&str],
        start: usize,
    ) -> Result<(String, usize), FormatError> {
        let mut output = String::new();
        let mut depth = 0;
        let mut end_line = start;

        for i in start..lines.len() {
            let line = lines[i];
            for c in line.chars() {
                if c == '{' {
                    depth += 1;
                } else if c == '}' {
                    depth -= 1;
                    if depth == 0 {
                        end_line = i;
                        return Ok((output, end_line));
                    }
                }
            }

            if i > start && depth == 1 {
                let trimmed = line.trim();
                if !trimmed.is_empty() && !trimmed.starts_with('}') {
                    output.push_str(&self.config.indent_str());
                    output.push_str(&self.format_variant(trimmed)?);
                    output.push_str(self.config.newline_str());
                }
            }
        }

        Ok((output, end_line))
    }

    /// Format an enum variant.
    fn format_variant(&self, variant: &str) -> Result<String, FormatError> {
        let trimmed = variant.trim_end_matches(',').trim();
        let mut output = trimmed.to_string();

        if matches!(
            self.config.trailing_comma,
            TrailingComma::Always | TrailingComma::Multiline
        ) {
            output.push(',');
        }

        Ok(output)
    }

    /// Format a trait.
    fn format_trait(&self, lines: &[&str], start: usize) -> Result<(String, usize), FormatError> {
        // Similar to struct but with method formatting
        self.format_impl_like(lines, start, "trait")
    }

    /// Format an impl block.
    fn format_impl(&self, lines: &[&str], start: usize) -> Result<(String, usize), FormatError> {
        self.format_impl_like(lines, start, "impl")
    }

    /// Format trait-like or impl-like block.
    fn format_impl_like(
        &self,
        lines: &[&str],
        start: usize,
        _kind: &str,
    ) -> Result<(String, usize), FormatError> {
        let mut output = String::new();
        let line = lines[start].trim();

        let header_end = line.find('{').unwrap_or(line.len());
        let header = &line[..header_end].trim();
        output.push_str(header);

        if line.contains('{') {
            match self.config.brace_style {
                BraceStyle::SameLine | BraceStyle::PreferSameLine => {
                    output.push_str(" {");
                }
                BraceStyle::NextLine => {
                    output.push_str(self.config.newline_str());
                    output.push('{');
                }
            }
            output.push_str(self.config.newline_str());

            let (body, end_line) = self.format_block_body(lines, start)?;
            output.push_str(&body);
            output.push('}');
            output.push_str(self.config.newline_str());

            Ok((output, end_line - start + 1))
        } else {
            output.push_str(self.config.newline_str());
            Ok((output, 1))
        }
    }

    /// Format a block body.
    fn format_block_body(
        &self,
        lines: &[&str],
        start: usize,
    ) -> Result<(String, usize), FormatError> {
        let mut output = String::new();
        let mut depth = 0;
        let mut end_line = start;

        for i in start..lines.len() {
            let line = lines[i];
            let mut in_string = false;

            for c in line.chars() {
                if c == '"' {
                    in_string = !in_string;
                } else if !in_string {
                    if c == '{' {
                        depth += 1;
                    } else if c == '}' {
                        depth -= 1;
                        if depth == 0 {
                            end_line = i;
                            return Ok((output, end_line));
                        }
                    }
                }
            }

            if i > start {
                let trimmed = line.trim();
                if !trimmed.is_empty() && !trimmed.starts_with('}') {
                    output.push_str(&self.config.indent_str());
                    output.push_str(&self.format_statement(trimmed)?);
                    output.push_str(self.config.newline_str());
                }
            }
        }

        Ok((output, end_line))
    }

    /// Format a module.
    fn format_module(&self, lines: &[&str], start: usize) -> Result<(String, usize), FormatError> {
        self.format_impl_like(lines, start, "mod")
    }

    /// Format a module declaration.
    fn format_mod_decl(&self, line: &str) -> Result<String, FormatError> {
        let mut output = line.trim().to_string();
        if !output.ends_with(';') {
            output.push(';');
        }
        output.push_str(self.config.newline_str());
        Ok(output)
    }

    /// Format a const or static declaration.
    fn format_const_static(&self, line: &str) -> Result<String, FormatError> {
        let normalized = line
            .replace(" :", ":")
            .replace(":  ", ": ")
            .replace("  =", " =")
            .replace("=  ", "= ");

        let mut output = normalized.trim().to_string();
        if !output.ends_with(';') {
            output.push(';');
        }
        output.push_str(self.config.newline_str());
        Ok(output)
    }

    /// Format a type alias.
    fn format_type_alias(&self, line: &str) -> Result<String, FormatError> {
        let normalized = line.replace("  =", " =").replace("=  ", "= ");

        let mut output = normalized.trim().to_string();
        if !output.ends_with(';') {
            output.push(';');
        }
        output.push_str(self.config.newline_str());
        Ok(output)
    }

    /// Format an attribute.
    fn format_attribute(&self, line: &str) -> Result<String, FormatError> {
        let mut output = line.trim().to_string();
        output.push_str(self.config.newline_str());
        Ok(output)
    }

    /// Format a statement.
    fn format_statement(&self, line: &str) -> Result<String, FormatError> {
        let mut output = String::new();

        // Normalize operator spacing
        let normalized = self.normalize_operators(line);

        output.push_str(&normalized);

        Ok(output)
    }

    /// Format a comment line.
    fn format_comment_line(&self, line: &str) -> String {
        if self.config.trim_trailing_whitespace {
            line.trim_end().to_string()
        } else {
            line.to_string()
        }
    }

    /// Normalize spacing around operators.
    fn normalize_operators(&self, s: &str) -> String {
        if !self.config.normalize_spacing {
            return s.to_string();
        }

        let mut result = s.to_string();

        // Binary operators that need spaces
        let operators = [
            ("==", " == "),
            ("!=", " != "),
            ("<=", " <= "),
            (">=", " >= "),
            ("&&", " && "),
            ("||", " || "),
            ("+=", " += "),
            ("-=", " -= "),
            ("*=", " *= "),
            ("/=", " /= "),
            ("->", " -> "),
            ("=>", " => "),
        ];

        for (op, spaced) in operators {
            result = result.replace(op, spaced);
        }

        // Clean up extra spaces
        while result.contains("  ") {
            result = result.replace("  ", " ");
        }

        result
    }
}

impl Default for Formatter {
    fn default() -> Self {
        Self::default_formatter()
    }
}

// =============================================================================
// FORMAT ERROR
// =============================================================================

/// Formatting error.
#[derive(Debug)]
pub enum FormatError {
    /// Syntax error in source.
    SyntaxError(String),
    /// IO error.
    IoError(std::io::Error),
}

impl std::fmt::Display for FormatError {
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        match self {
            FormatError::SyntaxError(msg) => write!(f, "syntax error: {}", msg),
            FormatError::IoError(e) => write!(f, "I/O error: {}", e),
        }
    }
}

impl std::error::Error for FormatError {}

impl From<std::io::Error> for FormatError {
    fn from(err: std::io::Error) -> Self {
        FormatError::IoError(err)
    }
}

// =============================================================================
// TESTS
// =============================================================================

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_format_simple_fn() {
        let formatter = Formatter::default();
        let input = "fn foo(){}";
        let result = formatter.format_str(input).unwrap();
        assert!(result.contains("fn foo()"));
        assert!(result.contains("{"));
    }

    #[test]
    fn test_format_use() {
        let formatter = Formatter::default();
        let input = "use  std::collections::HashMap;";
        let result = formatter.format_str(input).unwrap();
        assert_eq!(result.trim(), "use std::collections::HashMap;");
    }

    #[test]
    fn test_normalize_operators() {
        let formatter = Formatter::default();
        let input = "x==y";
        let result = formatter.normalize_operators(input);
        assert_eq!(result, "x == y");
    }
}