pmat 3.11.0

PMAT - Zero-config AI context generation and code quality toolkit (CLI, MCP, HTTP)
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
// ============================================================
// 1. BINARY OPERATOR REPLACEMENT (AOR)
// ============================================================

impl TreeSitterMutationOperator for RustBinaryOpMutation {
    fn name(&self) -> &str {
        "RustBinaryOp"
    }

    fn can_mutate(&self, node: &Node, source: &[u8]) -> bool {
        if node.kind() != "binary_expression" {
            return false;
        }

        // Check if this is an arithmetic operator
        if let Some(operator_node) = node.child_by_field_name("operator") {
            let op = &source[operator_node.byte_range()];
            matches!(op, b"+" | b"-" | b"*" | b"/" | b"%")
        } else {
            false
        }
    }

    fn mutate(&self, node: &Node, source: &[u8]) -> Vec<MutatedSource> {
        let mut mutations = Vec::new();

        if let Some(operator_node) = node.child_by_field_name("operator") {
            let original_op = &source[operator_node.byte_range()];

            // Define mutation mappings for arithmetic operators
            let replacements: &[&[u8]] = match original_op {
                b"+" => &[b"-", b"*", b"/", b"%"],
                b"-" => &[b"+", b"*", b"/", b"%"],
                b"*" => &[b"+", b"-", b"/", b"%"],
                b"/" => &[b"+", b"-", b"*", b"%"],
                b"%" => &[b"+", b"-", b"*", b"/"],
                _ => &[],
            };

            // Generate mutations by splicing
            for replacement in replacements {
                let mut mutated = Vec::new();
                mutated.extend_from_slice(&source[..operator_node.start_byte()]);
                mutated.extend_from_slice(replacement);
                mutated.extend_from_slice(&source[operator_node.end_byte()..]);

                let description = format!(
                    "{} → {}",
                    String::from_utf8_lossy(original_op),
                    String::from_utf8_lossy(replacement)
                );

                mutations.push(MutatedSource {
                    source: String::from_utf8_lossy(&mutated).into_owned(),
                    description,
                    location: SourceLocation {
                        line: operator_node.start_position().row + 1,
                        column: operator_node.start_position().column + 1,
                        end_line: operator_node.end_position().row + 1,
                        end_column: operator_node.end_position().column + 1,
                    },
                });
            }
        }

        mutations
    }
}

// ============================================================
// 2. RELATIONAL OPERATOR REPLACEMENT (ROR)
// ============================================================

impl TreeSitterMutationOperator for RustRelationalOpMutation {
    fn name(&self) -> &str {
        "RustRelationalOp"
    }

    fn can_mutate(&self, node: &Node, source: &[u8]) -> bool {
        if node.kind() != "binary_expression" {
            return false;
        }

        // Check if this is a relational operator
        if let Some(operator_node) = node.child_by_field_name("operator") {
            let op = &source[operator_node.byte_range()];
            matches!(op, b">" | b"<" | b">=" | b"<=" | b"==" | b"!=")
        } else {
            false
        }
    }

    fn mutate(&self, node: &Node, source: &[u8]) -> Vec<MutatedSource> {
        let mut mutations = Vec::new();

        if let Some(operator_node) = node.child_by_field_name("operator") {
            let original_op = &source[operator_node.byte_range()];

            // Define mutation mappings for relational operators
            let replacements: &[&[u8]] = match original_op {
                b">" => &[b"<", b">=", b"<=", b"==", b"!="],
                b"<" => &[b">", b">=", b"<=", b"==", b"!="],
                b">=" => &[b">", b"<", b"<=", b"==", b"!="],
                b"<=" => &[b">", b"<", b">=", b"==", b"!="],
                b"==" => &[b"!=", b">", b"<", b">=", b"<="],
                b"!=" => &[b"==", b">", b"<", b">=", b"<="],
                _ => &[],
            };

            // Generate mutations by splicing
            for replacement in replacements {
                let mut mutated = Vec::new();
                mutated.extend_from_slice(&source[..operator_node.start_byte()]);
                mutated.extend_from_slice(replacement);
                mutated.extend_from_slice(&source[operator_node.end_byte()..]);

                let description = format!(
                    "{} → {}",
                    String::from_utf8_lossy(original_op),
                    String::from_utf8_lossy(replacement)
                );

                mutations.push(MutatedSource {
                    source: String::from_utf8_lossy(&mutated).into_owned(),
                    description,
                    location: SourceLocation {
                        line: operator_node.start_position().row + 1,
                        column: operator_node.start_position().column + 1,
                        end_line: operator_node.end_position().row + 1,
                        end_column: operator_node.end_position().column + 1,
                    },
                });
            }
        }

        mutations
    }
}

// ============================================================
// 3. LOGICAL OPERATOR REPLACEMENT (LOR)
// ============================================================

impl TreeSitterMutationOperator for RustLogicalOpMutation {
    fn name(&self) -> &str {
        "RustLogicalOp"
    }

    fn can_mutate(&self, node: &Node, source: &[u8]) -> bool {
        if node.kind() != "binary_expression" {
            return false;
        }

        // Check if this is a logical operator
        if let Some(operator_node) = node.child_by_field_name("operator") {
            let op = &source[operator_node.byte_range()];
            matches!(op, b"&&" | b"||")
        } else {
            false
        }
    }

    fn mutate(&self, node: &Node, source: &[u8]) -> Vec<MutatedSource> {
        let mut mutations = Vec::new();

        if let Some(operator_node) = node.child_by_field_name("operator") {
            let original_op = &source[operator_node.byte_range()];

            // Define mutation mappings for logical operators
            let replacements: &[&[u8]] = match original_op {
                b"&&" => &[b"||"],
                b"||" => &[b"&&"],
                _ => &[],
            };

            // Generate mutations by splicing
            for replacement in replacements {
                let mut mutated = Vec::new();
                mutated.extend_from_slice(&source[..operator_node.start_byte()]);
                mutated.extend_from_slice(replacement);
                mutated.extend_from_slice(&source[operator_node.end_byte()..]);

                let description = format!(
                    "{} → {}",
                    String::from_utf8_lossy(original_op),
                    String::from_utf8_lossy(replacement)
                );

                mutations.push(MutatedSource {
                    source: String::from_utf8_lossy(&mutated).into_owned(),
                    description,
                    location: SourceLocation {
                        line: operator_node.start_position().row + 1,
                        column: operator_node.start_position().column + 1,
                        end_line: operator_node.end_position().row + 1,
                        end_column: operator_node.end_position().column + 1,
                    },
                });
            }
        }

        mutations
    }
}

// ============================================================
// 4. BITWISE OPERATOR REPLACEMENT (BOR)
// ============================================================

impl TreeSitterMutationOperator for RustBitwiseOpMutation {
    fn name(&self) -> &str {
        "RustBitwiseOp"
    }

    fn can_mutate(&self, node: &Node, source: &[u8]) -> bool {
        if node.kind() != "binary_expression" {
            return false;
        }

        // Check if this is a bitwise operator
        if let Some(operator_node) = node.child_by_field_name("operator") {
            let op = &source[operator_node.byte_range()];
            matches!(op, b"&" | b"|" | b"^" | b"<<" | b">>")
        } else {
            false
        }
    }

    fn mutate(&self, node: &Node, source: &[u8]) -> Vec<MutatedSource> {
        let mut mutations = Vec::new();

        if let Some(operator_node) = node.child_by_field_name("operator") {
            let original_op = &source[operator_node.byte_range()];

            // Define mutation mappings for bitwise operators
            let replacements: &[&[u8]] = match original_op {
                b"&" => &[b"|", b"^"],
                b"|" => &[b"&", b"^"],
                b"^" => &[b"&", b"|"],
                b"<<" => &[b">>"],
                b">>" => &[b"<<"],
                _ => &[],
            };

            // Generate mutations by splicing
            for replacement in replacements {
                let mut mutated = Vec::new();
                mutated.extend_from_slice(&source[..operator_node.start_byte()]);
                mutated.extend_from_slice(replacement);
                mutated.extend_from_slice(&source[operator_node.end_byte()..]);

                let description = format!(
                    "{} → {}",
                    String::from_utf8_lossy(original_op),
                    String::from_utf8_lossy(replacement)
                );

                mutations.push(MutatedSource {
                    source: String::from_utf8_lossy(&mutated).into_owned(),
                    description,
                    location: SourceLocation {
                        line: operator_node.start_position().row + 1,
                        column: operator_node.start_position().column + 1,
                        end_line: operator_node.end_position().row + 1,
                        end_column: operator_node.end_position().column + 1,
                    },
                });
            }
        }

        mutations
    }
}

// ============================================================
// 5. RANGE OPERATOR REPLACEMENT (RANGEOR) - RUST-SPECIFIC
// ============================================================

impl TreeSitterMutationOperator for RustRangeOpMutation {
    fn name(&self) -> &str {
        "RustRangeOp"
    }

    fn can_mutate(&self, node: &Node, _source: &[u8]) -> bool {
        // Check for range expressions
        match node.kind() {
            "range_expression" | "inclusive_range_expression" => {
                // Verify it has an operator
                node.child_by_field_name("operator").is_some()
            }
            _ => false,
        }
    }

    fn mutate(&self, node: &Node, source: &[u8]) -> Vec<MutatedSource> {
        let mut mutations = Vec::new();

        if let Some(operator_node) = node.child_by_field_name("operator") {
            let original_op = &source[operator_node.byte_range()];

            // Define mutation mappings for range operators
            let replacements: &[&[u8]] = match original_op {
                b".." => &[b"..="], // Exclusive to inclusive
                b"..=" => &[b".."], // Inclusive to exclusive
                _ => &[],
            };

            // Generate mutations by splicing
            for replacement in replacements {
                let mut mutated = Vec::new();
                mutated.extend_from_slice(&source[..operator_node.start_byte()]);
                mutated.extend_from_slice(replacement);
                mutated.extend_from_slice(&source[operator_node.end_byte()..]);

                let description = format!(
                    "{} → {}",
                    String::from_utf8_lossy(original_op),
                    String::from_utf8_lossy(replacement)
                );

                mutations.push(MutatedSource {
                    source: String::from_utf8_lossy(&mutated).into_owned(),
                    description,
                    location: SourceLocation {
                        line: operator_node.start_position().row + 1,
                        column: operator_node.start_position().column + 1,
                        end_line: operator_node.end_position().row + 1,
                        end_column: operator_node.end_position().column + 1,
                    },
                });
            }
        }

        mutations
    }
}

// ============================================================
// 6. PATTERN MATCH REPLACEMENT (PMR) - RUST-SPECIFIC
// ============================================================

impl TreeSitterMutationOperator for RustPatternMutation {
    fn name(&self) -> &str {
        "RustPattern"
    }

    fn can_mutate(&self, node: &Node, source: &[u8]) -> bool {
        // Detection-only: Identify pattern matching constructs
        // Actual mutation would require type inference
        match node.kind() {
            "match_expression" => true,
            "match_arm" => {
                // Check for Option/Result patterns
                let text = &source[node.byte_range()];
                let text_str = std::str::from_utf8(text).unwrap_or("");
                text_str.contains("Some")
                    || text_str.contains("None")
                    || text_str.contains("Ok")
                    || text_str.contains("Err")
            }
            _ => false,
        }
    }

    fn mutate(&self, _node: &Node, _source: &[u8]) -> Vec<MutatedSource> {
        // Detection-only: Pattern matching mutations would require type inference
        // to ensure mutants are semantically valid (Some -> None requires compatible types)
        // Return empty mutations for now
        Vec::new()
    }
}

// ============================================================
// 7. METHOD CHAIN REPLACEMENT (MCR) - RUST-SPECIFIC
// ============================================================

impl TreeSitterMutationOperator for RustMethodChainMutation {
    fn name(&self) -> &str {
        "RustMethodChain"
    }

    fn can_mutate(&self, node: &Node, source: &[u8]) -> bool {
        // Detection-only: Identify method call chains
        if node.kind() != "call_expression" {
            return false;
        }

        // Check for common iterator methods
        if let Some(function_node) = node.child_by_field_name("function") {
            if function_node.kind() == "field_expression" {
                if let Some(field_node) = function_node.child_by_field_name("field") {
                    let field_text = &source[field_node.byte_range()];
                    let field_str = std::str::from_utf8(field_text).unwrap_or("");
                    matches!(
                        field_str,
                        "map" | "filter" | "collect" | "fold" | "for_each" | "find"
                    )
                } else {
                    false
                }
            } else {
                false
            }
        } else {
            false
        }
    }

    fn mutate(&self, _node: &Node, _source: &[u8]) -> Vec<MutatedSource> {
        // Detection-only: Method chain mutations would require type inference
        // to ensure the replacement method has compatible signatures
        // Return empty mutations for now
        Vec::new()
    }
}

// ============================================================
// 8. BORROW/REFERENCE MUTATION (LBM) - RUST-SPECIFIC
// ============================================================

impl TreeSitterMutationOperator for RustBorrowMutation {
    fn name(&self) -> &str {
        "RustBorrow"
    }

    fn can_mutate(&self, node: &Node, source: &[u8]) -> bool {
        // Detection-only: Identify borrow/reference operations
        match node.kind() {
            "reference_expression" => true,
            "parameter" => {
                // Check if parameter type contains & or &mut
                let text = &source[node.byte_range()];
                let text_str = std::str::from_utf8(text).unwrap_or("");
                text_str.contains("&mut") || text_str.contains('&')
            }
            "unary_expression" => {
                // Check for dereference operator
                if let Some(operator_node) = node.child_by_field_name("operator") {
                    let op = &source[operator_node.byte_range()];
                    op == b"*"
                } else {
                    false
                }
            }
            _ => false,
        }
    }

    fn mutate(&self, _node: &Node, _source: &[u8]) -> Vec<MutatedSource> {
        // Detection-only: Borrow mutations would violate Rust's borrow checker
        // Changing & to &mut or vice versa would likely cause compilation errors
        // Return empty mutations for now
        Vec::new()
    }
}