meerkat-tools 0.6.26

Tool validation and dispatch for Meerkat
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
769
770
771
772
773
774
//! ApplyPatch tool for structured file edits within the project root.

use crate::builtin::{BuiltinTool, BuiltinToolError, ToolOutput};
use async_trait::async_trait;
use meerkat_core::ToolDef;
use meerkat_core::types::{ToolProvenance, ToolSourceKind};
use serde::Deserialize;
use serde_json::{Value, json};
use std::path::{Component, Path, PathBuf};
use thiserror::Error;

#[derive(Debug, Clone)]
pub struct ApplyPatchTool {
    project_root: PathBuf,
}

impl ApplyPatchTool {
    pub fn new(project_root: PathBuf) -> Self {
        Self { project_root }
    }
}

#[derive(Debug, Deserialize, schemars::JsonSchema)]
struct ApplyPatchArgs {
    #[schemars(
        description = "The full patch text. Must begin with '*** Begin Patch' on its own line and end with '*** End Patch' on its own line. Between these markers, include one or more file operations.\n\nAll file paths are relative to the project root (never absolute, never start with /).\n\n--- ADD A NEW FILE ---\nUse '*** Add File: <path>' followed by lines prefixed with '+'.\n\n*** Begin Patch\n*** Add File: src/utils/helper.py\n+def greet(name):\n+    return f\"Hello, {name}\"\n*** End Patch\n\n--- DELETE A FILE ---\nUse '*** Delete File: <path>' with no body lines.\n\n*** Begin Patch\n*** Delete File: src/old_module.py\n*** End Patch\n\n--- UPDATE AN EXISTING FILE ---\nUse '*** Update File: <path>' followed by one or more hunks. Each hunk starts with '@@ context_line' to locate where the change goes, then uses line prefixes: ' ' (space) for unchanged context, '-' for lines to remove, '+' for lines to add.\n\n*** Begin Patch\n*** Update File: src/config.rs\n@@ let timeout = 30;\n-let timeout = 30;\n+let timeout = 60;\n*** End Patch\n\n--- MOVE / RENAME A FILE ---\nUse '*** Update File: <old_path>' immediately followed by '*** Move to: <new_path>', then hunks (if content also changes) or no hunks (pure rename not supported; include at least one hunk).\n\n*** Begin Patch\n*** Update File: src/old_name.rs\n*** Move to: src/new_name.rs\n@@ fn old_func()\n-fn old_func()\n+fn new_func()\n*** End Patch\n\n--- MULTI-FILE PATCH ---\nChain multiple operations in a single patch.\n\n*** Begin Patch\n*** Add File: src/new.rs\n+pub fn added() {}\n*** Update File: src/lib.rs\n@@ mod existing;\n+mod new;\n*** Delete File: src/deprecated.rs\n*** End Patch\n\n--- HUNK MATCHING ---\nThe '@@ context_line' locates a unique line in the file; search starts from the top (or after the previous hunk). The '-' lines must exactly match consecutive lines in the file at that location. If context or old lines cannot be found, the patch is rejected with an error. Matching tolerates trailing whitespace differences and Unicode normalization (smart quotes -> ASCII, etc.), but the line content must otherwise match.\n\nMultiple hunks in one Update File are applied top-to-bottom. Each hunk's search starts after the previous hunk's match position.\n\nUse '@@' (bare, no text after it) when the first hunk has no context line and the old lines are unambiguous.\n\nUse '*** End of File' after the last hunk's lines to strip the file's trailing newline.\n\n--- COMMON SYNTAX MISTAKES ---\n1. Forgetting the space prefix on context lines (every unchanged line MUST start with ' ').\n2. Using '@@' with a line number instead of the actual line content. It takes literal text, not a number.\n3. Omitting '+' prefix on Add File content lines.\n4. Putting absolute paths instead of project-root-relative paths.\n5. Including the '*** Begin Patch' / '*** End Patch' markers more than once.\n6. Adding blank lines between hunks that get parsed as empty context lines. Blank lines in hunks are treated as empty context (matched against empty lines in the file)."
    )]
    patch: String,
}

#[derive(Debug, Error)]
enum ApplyPatchError {
    #[error(transparent)]
    Parse(#[from] ParseError),
    #[error("{0}")]
    InvalidPath(String),
    #[error("{0}")]
    ComputeReplacements(String),
    #[error("{context}: {source}")]
    Io {
        context: String,
        #[source]
        source: std::io::Error,
    },
}

#[derive(Debug, Error, PartialEq, Clone)]
enum ParseError {
    #[error("invalid patch: {0}")]
    InvalidPatch(String),
    #[error("invalid hunk at line {line_number}, {message}")]
    InvalidHunk { message: String, line_number: usize },
}

#[derive(Debug, PartialEq, Clone)]
enum Hunk {
    Add {
        path: PathBuf,
        contents: String,
    },
    Delete {
        path: PathBuf,
    },
    Update {
        path: PathBuf,
        move_path: Option<PathBuf>,
        chunks: Vec<UpdateFileChunk>,
    },
}

#[derive(Debug, PartialEq, Clone)]
struct UpdateFileChunk {
    change_context: Option<String>,
    old_lines: Vec<String>,
    new_lines: Vec<String>,
    is_end_of_file: bool,
}

#[derive(Debug, Default, PartialEq, Eq)]
struct AffectedPaths {
    added: Vec<PathBuf>,
    modified: Vec<PathBuf>,
    deleted: Vec<PathBuf>,
}

const BEGIN_PATCH_MARKER: &str = "*** Begin Patch";
const END_PATCH_MARKER: &str = "*** End Patch";
const ADD_FILE_MARKER: &str = "*** Add File: ";
const DELETE_FILE_MARKER: &str = "*** Delete File: ";
const UPDATE_FILE_MARKER: &str = "*** Update File: ";
const MOVE_TO_MARKER: &str = "*** Move to: ";
const EOF_MARKER: &str = "*** End of File";
const CHANGE_CONTEXT_MARKER: &str = "@@ ";
const EMPTY_CHANGE_CONTEXT_MARKER: &str = "@@";

#[cfg_attr(not(target_arch = "wasm32"), async_trait)]
impl BuiltinTool for ApplyPatchTool {
    fn name(&self) -> &'static str {
        "apply_patch"
    }

    fn def(&self) -> ToolDef {
        ToolDef {
            name: self.name().into(),
            description: "Apply a structured patch to create, update, delete, or move files inside the project root.\n\nThe patch string uses a line-oriented grammar with these markers:\n- '*** Begin Patch' / '*** End Patch' — wrap the entire patch\n- '*** Add File: <path>' — create a new file (followed by '+' prefixed content lines)\n- '*** Delete File: <path>' — remove an existing file\n- '*** Update File: <path>' — modify an existing file (followed by hunks)\n- '*** Move to: <path>' — rename/move (immediately after Update File header, before hunks)\n- '@@ <context_line>' — locate a hunk by matching a literal line in the file\n- '@@' — bare context marker (no search text, for first-hunk-at-top-of-file)\n- '*** End of File' — strip trailing newline from the result\n\nUpdate File hunk line prefixes:\n  ' ' (space) = unchanged context line (MUST be present for lines you are not changing)\n  '-' = line to remove (must match the file exactly)\n  '+' = line to insert\n\nAll paths are relative to the project root. Paths that escape the root via '..' are rejected.\n\nHunk matching: '@@ context_line' searches forward from the current position for an exact line match. The '-' (old) lines must then match consecutive lines at that position. If context or old lines are not found, the patch is rejected. Matching tolerates trailing whitespace and Unicode smart-quote normalization, but content must otherwise match verbatim. Multiple hunks per file are applied top-to-bottom; each search resumes after the previous match.\n\nExamples:\n\n1) Add a file:\n*** Begin Patch\n*** Add File: src/utils/helper.py\n+def greet(name):\n+    return f\"Hello, {name}\"\n*** End Patch\n\n2) Update a file (replace one line):\n*** Begin Patch\n*** Update File: src/config.rs\n@@ let timeout = 30;\n-let timeout = 30;\n+let timeout = 60;\n*** End Patch\n\n3) Delete a file:\n*** Begin Patch\n*** Delete File: src/old_module.py\n*** End Patch\n\n4) Multi-file patch (add + update + delete):\n*** Begin Patch\n*** Add File: src/new.rs\n+pub fn added() {}\n*** Update File: src/lib.rs\n@@ mod existing;\n+mod new;\n*** Delete File: src/deprecated.rs\n*** End Patch\n\n5) Rename/move with edits:\n*** Begin Patch\n*** Update File: src/old_name.rs\n*** Move to: src/new_name.rs\n@@ fn old_func()\n-fn old_func()\n+fn new_func()\n*** End Patch\n\nCommon mistakes:\n- Forgetting the ' ' (space) prefix on unchanged context lines.\n- Using line numbers after '@@' instead of literal line text.\n- Omitting '+' prefix on Add File content lines.\n- Using absolute paths instead of project-root-relative paths.\n- Adding unintended blank lines inside hunks (blank lines are parsed as empty-line context matches).".into(),
            input_schema: crate::schema::schema_for::<ApplyPatchArgs>(),
            provenance: Some(ToolProvenance { kind: ToolSourceKind::Builtin, source_id: "builtin".into() }),
        }
    }

    fn default_enabled(&self) -> bool {
        true
    }

    async fn call(&self, args: Value) -> Result<ToolOutput, BuiltinToolError> {
        let args: ApplyPatchArgs = serde_json::from_value(args)
            .map_err(|e| BuiltinToolError::invalid_args(format!("Invalid arguments: {e}")))?;
        let project_root = self.project_root.clone();
        let patch = args.patch;
        let affected = tokio::task::spawn_blocking(move || apply_patch(&project_root, &patch))
            .await
            .map_err(|e| {
                BuiltinToolError::execution_failed(format!("apply_patch task failed: {e}"))
            })?
            .map_err(|e| BuiltinToolError::execution_failed(e.to_string()))?;

        Ok(ToolOutput::Json(json!({
            "status": "success",
            "added_files": affected
                .added
                .iter()
                .map(|p| p.display().to_string())
                .collect::<Vec<_>>(),
            "modified_files": affected
                .modified
                .iter()
                .map(|p| p.display().to_string())
                .collect::<Vec<_>>(),
            "deleted_files": affected
                .deleted
                .iter()
                .map(|p| p.display().to_string())
                .collect::<Vec<_>>(),
        })))
    }
}

fn apply_patch(project_root: &Path, patch: &str) -> Result<AffectedPaths, ApplyPatchError> {
    let canonical_root =
        std::fs::canonicalize(project_root).map_err(|source| ApplyPatchError::Io {
            context: format!("failed to resolve project root {}", project_root.display()),
            source,
        })?;
    let hunks = parse_patch(patch)?;
    apply_hunks_to_files(&canonical_root, &hunks)
}

fn parse_patch(patch: &str) -> Result<Vec<Hunk>, ParseError> {
    let lines: Vec<&str> = patch.trim().lines().collect();
    check_patch_boundaries(&lines)?;

    let last_line_index = lines.len().saturating_sub(1);
    let mut remaining_lines = &lines[1..last_line_index];
    let mut line_number = 2usize;
    let mut hunks = Vec::new();
    while !remaining_lines.is_empty() {
        let (hunk, consumed_lines) = parse_one_hunk(remaining_lines, line_number)?;
        hunks.push(hunk);
        line_number += consumed_lines;
        remaining_lines = &remaining_lines[consumed_lines..];
    }
    Ok(hunks)
}

fn check_patch_boundaries(lines: &[&str]) -> Result<(), ParseError> {
    let first_line = lines.first().map(|line| line.trim());
    let last_line = lines.last().map(|line| line.trim());

    match (first_line, last_line) {
        (Some(first), Some(last)) if first == BEGIN_PATCH_MARKER && last == END_PATCH_MARKER => {
            Ok(())
        }
        (Some(first), _) if first != BEGIN_PATCH_MARKER => Err(ParseError::InvalidPatch(
            "The first line of the patch must be '*** Begin Patch'".to_string(),
        )),
        _ => Err(ParseError::InvalidPatch(
            "The last line of the patch must be '*** End Patch'".to_string(),
        )),
    }
}

fn parse_one_hunk(lines: &[&str], line_number: usize) -> Result<(Hunk, usize), ParseError> {
    let Some(first_line) = lines.first().map(|line| line.trim()) else {
        return Err(ParseError::InvalidPatch(
            "patch must contain at least one hunk".to_string(),
        ));
    };

    if let Some(path) = first_line.strip_prefix(ADD_FILE_MARKER) {
        let mut contents = String::new();
        let mut parsed_lines = 1;
        for add_line in &lines[1..] {
            if let Some(line_to_add) = add_line.strip_prefix('+') {
                contents.push_str(line_to_add);
                contents.push('\n');
                parsed_lines += 1;
            } else {
                break;
            }
        }
        return Ok((
            Hunk::Add {
                path: PathBuf::from(path),
                contents,
            },
            parsed_lines,
        ));
    }

    if let Some(path) = first_line.strip_prefix(DELETE_FILE_MARKER) {
        return Ok((
            Hunk::Delete {
                path: PathBuf::from(path),
            },
            1,
        ));
    }

    if let Some(path) = first_line.strip_prefix(UPDATE_FILE_MARKER) {
        let mut remaining_lines = &lines[1..];
        let mut parsed_lines = 1;
        let move_path = remaining_lines
            .first()
            .and_then(|line| line.strip_prefix(MOVE_TO_MARKER))
            .map(PathBuf::from);
        if move_path.is_some() {
            remaining_lines = &remaining_lines[1..];
            parsed_lines += 1;
        }

        let mut chunks = Vec::new();
        while !remaining_lines.is_empty() {
            if remaining_lines[0].trim().is_empty() {
                parsed_lines += 1;
                remaining_lines = &remaining_lines[1..];
                continue;
            }
            if remaining_lines[0].starts_with("***") {
                break;
            }

            let (chunk, chunk_lines) = parse_update_file_chunk(
                remaining_lines,
                line_number + parsed_lines,
                chunks.is_empty(),
            )?;
            chunks.push(chunk);
            parsed_lines += chunk_lines;
            remaining_lines = &remaining_lines[chunk_lines..];
        }

        if chunks.is_empty() {
            return Err(ParseError::InvalidHunk {
                message: format!("Update file hunk for path '{path}' is empty"),
                line_number,
            });
        }

        return Ok((
            Hunk::Update {
                path: PathBuf::from(path),
                move_path,
                chunks,
            },
            parsed_lines,
        ));
    }

    Err(ParseError::InvalidHunk {
        message: format!(
            "'{first_line}' is not a valid hunk header. Valid hunk headers: '*** Add File: {{path}}', '*** Delete File: {{path}}', '*** Update File: {{path}}'"
        ),
        line_number,
    })
}

fn parse_update_file_chunk(
    lines: &[&str],
    line_number: usize,
    allow_missing_context: bool,
) -> Result<(UpdateFileChunk, usize), ParseError> {
    if lines.is_empty() {
        return Err(ParseError::InvalidHunk {
            message: "Update hunk does not contain any lines".to_string(),
            line_number,
        });
    }

    let (change_context, start_index) = if lines[0] == EMPTY_CHANGE_CONTEXT_MARKER {
        (None, 1)
    } else if let Some(context) = lines[0].strip_prefix(CHANGE_CONTEXT_MARKER) {
        (Some(context.to_string()), 1)
    } else if allow_missing_context {
        (None, 0)
    } else {
        return Err(ParseError::InvalidHunk {
            message: format!(
                "Expected update hunk to start with a @@ context marker, got: '{}'",
                lines[0]
            ),
            line_number,
        });
    };

    if start_index >= lines.len() {
        return Err(ParseError::InvalidHunk {
            message: "Update hunk does not contain any lines".to_string(),
            line_number: line_number + 1,
        });
    }

    let mut chunk = UpdateFileChunk {
        change_context,
        old_lines: Vec::new(),
        new_lines: Vec::new(),
        is_end_of_file: false,
    };
    let mut parsed_lines = 0usize;

    for line in &lines[start_index..] {
        match *line {
            EOF_MARKER => {
                if parsed_lines == 0 {
                    return Err(ParseError::InvalidHunk {
                        message: "Update hunk does not contain any lines".to_string(),
                        line_number: line_number + 1,
                    });
                }
                chunk.is_end_of_file = true;
                parsed_lines += 1;
                break;
            }
            "" => {
                chunk.old_lines.push(String::new());
                chunk.new_lines.push(String::new());
                parsed_lines += 1;
            }
            line_contents => {
                match line_contents.chars().next() {
                    Some(' ') => {
                        chunk.old_lines.push(line_contents[1..].to_string());
                        chunk.new_lines.push(line_contents[1..].to_string());
                    }
                    Some('+') => {
                        chunk.new_lines.push(line_contents[1..].to_string());
                    }
                    Some('-') => {
                        chunk.old_lines.push(line_contents[1..].to_string());
                    }
                    _ if parsed_lines > 0 => break,
                    _ => {
                        return Err(ParseError::InvalidHunk {
                            message: format!(
                                "Unexpected line found in update hunk: '{line_contents}'. Every line should start with ' ' (context line), '+' (added line), or '-' (removed line)"
                            ),
                            line_number: line_number + 1,
                        });
                    }
                }
                parsed_lines += 1;
            }
        }
    }

    Ok((chunk, parsed_lines + start_index))
}

fn apply_hunks_to_files(
    project_root: &Path,
    hunks: &[Hunk],
) -> Result<AffectedPaths, ApplyPatchError> {
    if hunks.is_empty() {
        return Err(ApplyPatchError::ComputeReplacements(
            "No files were modified.".to_string(),
        ));
    }

    let mut affected = AffectedPaths::default();
    for hunk in hunks {
        match hunk {
            Hunk::Add { path, contents } => {
                let path = resolve_patch_path(project_root, path)?;
                if path.exists() {
                    return Err(ApplyPatchError::ComputeReplacements(format!(
                        "Failed to write file {}",
                        path.display()
                    )));
                }
                if let Some(parent) = path.parent() {
                    std::fs::create_dir_all(parent).map_err(|source| ApplyPatchError::Io {
                        context: format!(
                            "Failed to create parent directories for {}",
                            path.display()
                        ),
                        source,
                    })?;
                }
                std::fs::write(&path, contents).map_err(|source| ApplyPatchError::Io {
                    context: format!("Failed to write file {}", path.display()),
                    source,
                })?;
                affected.added.push(path);
            }
            Hunk::Delete { path } => {
                let path = resolve_patch_path(project_root, path)?;
                let metadata = std::fs::metadata(&path).map_err(|source| ApplyPatchError::Io {
                    context: format!("Failed to delete file {}", path.display()),
                    source,
                })?;
                if metadata.is_dir() {
                    return Err(ApplyPatchError::Io {
                        context: format!("Failed to delete file {}", path.display()),
                        source: std::io::Error::other("Is a directory"),
                    });
                }
                std::fs::remove_file(&path).map_err(|source| ApplyPatchError::Io {
                    context: format!("Failed to delete file {}", path.display()),
                    source,
                })?;
                affected.deleted.push(path);
            }
            Hunk::Update {
                path,
                move_path,
                chunks,
            } => {
                let path = resolve_patch_path(project_root, path)?;
                let new_contents = derive_new_contents_from_chunks(&path, chunks)?;

                if let Some(dest) = move_path {
                    let dest = resolve_patch_path(project_root, dest)?;
                    if dest.exists() && dest != path {
                        return Err(ApplyPatchError::Io {
                            context: format!("Failed to write file {}", dest.display()),
                            source: std::io::Error::new(
                                std::io::ErrorKind::AlreadyExists,
                                "destination already exists",
                            ),
                        });
                    }
                    if let Some(parent) = dest.parent() {
                        std::fs::create_dir_all(parent).map_err(|source| ApplyPatchError::Io {
                            context: format!(
                                "Failed to create parent directories for {}",
                                dest.display()
                            ),
                            source,
                        })?;
                    }
                    std::fs::write(&dest, new_contents).map_err(|source| ApplyPatchError::Io {
                        context: format!("Failed to write file {}", dest.display()),
                        source,
                    })?;
                    if dest != path {
                        std::fs::remove_file(&path).map_err(|source| ApplyPatchError::Io {
                            context: format!("Failed to remove original {}", path.display()),
                            source,
                        })?;
                    }
                    affected.modified.push(dest);
                } else {
                    std::fs::write(&path, new_contents).map_err(|source| ApplyPatchError::Io {
                        context: format!("Failed to write file {}", path.display()),
                        source,
                    })?;
                    affected.modified.push(path);
                }
            }
        }
    }
    Ok(affected)
}

fn derive_new_contents_from_chunks(
    path: &Path,
    chunks: &[UpdateFileChunk],
) -> Result<String, ApplyPatchError> {
    let original_contents =
        std::fs::read_to_string(path).map_err(|source| ApplyPatchError::Io {
            context: format!("Failed to read file to update {}", path.display()),
            source,
        })?;

    let mut original_lines: Vec<String> = original_contents.split('\n').map(String::from).collect();
    if original_lines.last().is_some_and(String::is_empty) {
        original_lines.pop();
    }

    let replacements = compute_replacements(&original_lines, path, chunks)?;
    let mut new_lines = apply_replacements(original_lines, &replacements);
    let should_have_trailing_newline = !chunks.iter().any(|chunk| chunk.is_end_of_file);
    if should_have_trailing_newline && !new_lines.last().is_some_and(String::is_empty) {
        new_lines.push(String::new());
    } else if !should_have_trailing_newline && new_lines.last().is_some_and(String::is_empty) {
        new_lines.pop();
    }
    Ok(new_lines.join("\n"))
}

fn compute_replacements(
    original_lines: &[String],
    path: &Path,
    chunks: &[UpdateFileChunk],
) -> Result<Vec<(usize, usize, Vec<String>)>, ApplyPatchError> {
    let mut replacements = Vec::new();
    let mut line_index = 0usize;

    for chunk in chunks {
        if let Some(ctx_line) = &chunk.change_context {
            if let Some(idx) = seek_sequence(
                original_lines,
                std::slice::from_ref(ctx_line),
                line_index,
                false,
            ) {
                line_index = idx + 1;
            } else {
                return Err(ApplyPatchError::ComputeReplacements(format!(
                    "Failed to find context '{}' in {}",
                    ctx_line,
                    path.display()
                )));
            }
        }

        if chunk.old_lines.is_empty() {
            let insertion_idx = if chunk.change_context.is_some() {
                line_index
            } else if original_lines.last().is_some_and(String::is_empty) {
                original_lines.len() - 1
            } else {
                original_lines.len()
            };
            replacements.push((insertion_idx, 0, chunk.new_lines.clone()));
            continue;
        }

        let mut pattern: &[String] = &chunk.old_lines;
        let mut new_slice: &[String] = &chunk.new_lines;
        let mut found = seek_sequence(original_lines, pattern, line_index, chunk.is_end_of_file);

        if found.is_none() && pattern.last().is_some_and(String::is_empty) {
            pattern = &pattern[..pattern.len() - 1];
            if new_slice.last().is_some_and(String::is_empty) {
                new_slice = &new_slice[..new_slice.len() - 1];
            }
            found = seek_sequence(original_lines, pattern, line_index, chunk.is_end_of_file);
        }

        if let Some(start_idx) = found {
            replacements.push((start_idx, pattern.len(), new_slice.to_vec()));
            line_index = start_idx + pattern.len();
        } else {
            return Err(ApplyPatchError::ComputeReplacements(format!(
                "Failed to find expected lines in {}:\n{}",
                path.display(),
                chunk.old_lines.join("\n"),
            )));
        }
    }

    replacements.sort_by(|lhs, rhs| lhs.0.cmp(&rhs.0));
    Ok(replacements)
}

fn apply_replacements(
    mut lines: Vec<String>,
    replacements: &[(usize, usize, Vec<String>)],
) -> Vec<String> {
    for (start_idx, old_len, new_segment) in replacements.iter().rev() {
        for _ in 0..*old_len {
            if *start_idx < lines.len() {
                lines.remove(*start_idx);
            }
        }
        for (offset, new_line) in new_segment.iter().enumerate() {
            lines.insert(*start_idx + offset, new_line.clone());
        }
    }
    lines
}

fn seek_sequence(lines: &[String], pattern: &[String], start: usize, eof: bool) -> Option<usize> {
    if pattern.is_empty() {
        return Some(start);
    }
    if pattern.len() > lines.len() {
        return None;
    }

    let search_start = if eof && lines.len() >= pattern.len() {
        lines.len() - pattern.len()
    } else {
        start
    };

    for i in search_start..=lines.len().saturating_sub(pattern.len()) {
        if lines[i..i + pattern.len()] == *pattern {
            return Some(i);
        }
    }
    for i in search_start..=lines.len().saturating_sub(pattern.len()) {
        if pattern
            .iter()
            .enumerate()
            .all(|(p_idx, pat)| lines[i + p_idx].trim_end() == pat.trim_end())
        {
            return Some(i);
        }
    }
    (search_start..=lines.len().saturating_sub(pattern.len())).find(|&i| {
        pattern
            .iter()
            .enumerate()
            .all(|(p_idx, pat)| normalize_line(&lines[i + p_idx]) == normalize_line(pat))
    })
}

fn normalize_line(s: &str) -> String {
    s.trim()
        .chars()
        .map(|c| match c {
            '\u{2010}' | '\u{2011}' | '\u{2012}' | '\u{2013}' | '\u{2014}' | '\u{2015}'
            | '\u{2212}' => '-',
            '\u{2018}' | '\u{2019}' | '\u{201A}' | '\u{201B}' => '\'',
            '\u{201C}' | '\u{201D}' | '\u{201E}' | '\u{201F}' => '"',
            '\u{00A0}' | '\u{2002}' | '\u{2003}' | '\u{2004}' | '\u{2005}' | '\u{2006}'
            | '\u{2007}' | '\u{2008}' | '\u{2009}' | '\u{200A}' | '\u{202F}' | '\u{205F}'
            | '\u{3000}' => ' ',
            other => other,
        })
        .collect()
}

fn resolve_patch_path(project_root: &Path, relative: &Path) -> Result<PathBuf, ApplyPatchError> {
    let mut resolved = if relative.is_absolute() {
        PathBuf::new()
    } else {
        project_root.to_path_buf()
    };
    for component in relative.components() {
        match component {
            Component::Prefix(_) => {
                return Err(ApplyPatchError::InvalidPath(format!(
                    "unsupported path prefix '{}'",
                    relative.display()
                )));
            }
            Component::RootDir => resolved = PathBuf::from("/"),
            Component::CurDir => {}
            Component::ParentDir => {
                resolved.pop();
            }
            Component::Normal(segment) => resolved.push(segment),
        }
    }

    if !resolved.starts_with(project_root) {
        return Err(ApplyPatchError::InvalidPath(format!(
            "path '{}' escapes the project root",
            relative.display()
        )));
    }
    Ok(resolved)
}

#[cfg(test)]
#[allow(clippy::expect_used, clippy::unwrap_used)]
mod tests {
    use super::*;
    use tempfile::tempdir;

    fn wrap_patch(body: &str) -> String {
        format!("*** Begin Patch\n{body}\n*** End Patch")
    }

    #[test]
    fn parse_multiple_hunks() {
        let patch = wrap_patch(
            "*** Add File: foo.txt\n+hello\n*** Delete File: bar.txt\n*** Update File: baz.txt\n@@\n-old\n+new",
        );
        let hunks = parse_patch(&patch).unwrap();
        assert_eq!(hunks.len(), 3);
    }

    #[test]
    fn apply_patch_add_update_move_and_delete() {
        let dir = tempdir().unwrap();
        let root = dir.path();
        std::fs::write(root.join("source.txt"), "a\nb\n").unwrap();
        std::fs::write(root.join("delete.txt"), "gone\n").unwrap();

        let patch = wrap_patch(
            "*** Add File: nested/new.txt\n+hello\n+world\n*** Update File: source.txt\n*** Move to: moved.txt\n@@\n a\n-b\n+c\n*** Delete File: delete.txt",
        );

        let affected = apply_patch(root, &patch).unwrap();
        assert_eq!(
            std::fs::read_to_string(root.join("nested/new.txt")).unwrap(),
            "hello\nworld\n"
        );
        assert_eq!(
            std::fs::read_to_string(root.join("moved.txt")).unwrap(),
            "a\nc\n"
        );
        assert!(!root.join("source.txt").exists());
        assert!(!root.join("delete.txt").exists());
        assert_eq!(affected.added.len(), 1);
        assert_eq!(affected.modified.len(), 1);
        assert_eq!(affected.deleted.len(), 1);
    }

    #[test]
    fn update_end_of_file_marker_removes_trailing_newline() {
        let dir = tempdir().unwrap();
        let root = dir.path();
        let path = root.join("tail.txt");
        std::fs::write(&path, "alpha\nbeta\n").unwrap();

        let patch =
            wrap_patch("*** Update File: tail.txt\n@@\n alpha\n-beta\n+gamma\n*** End of File");
        apply_patch(root, &patch).unwrap();

        assert_eq!(std::fs::read_to_string(&path).unwrap(), "alpha\ngamma");
    }

    #[test]
    fn addition_only_chunk_inserts_after_context() {
        let dir = tempdir().unwrap();
        let root = dir.path();
        let path = root.join("imports.py");
        std::fs::write(&path, "import a\nimport z\n").unwrap();

        let patch = wrap_patch("*** Update File: imports.py\n@@ import a\n+import m");
        apply_patch(root, &patch).unwrap();

        assert_eq!(
            std::fs::read_to_string(&path).unwrap(),
            "import a\nimport m\nimport z\n"
        );
    }

    #[test]
    fn rejects_escape_path() {
        let dir = tempdir().unwrap();
        let patch = wrap_patch("*** Add File: ../escape.txt\n+bad");
        let err = apply_patch(dir.path(), &patch).expect_err("escape should fail");
        assert!(err.to_string().contains("escapes the project root"));
    }

    #[test]
    fn move_to_same_normalized_path_updates_in_place() {
        let dir = tempdir().unwrap();
        let root = dir.path();
        let path = root.join("same.txt");
        std::fs::write(&path, "before\n").unwrap();

        let patch =
            wrap_patch("*** Update File: same.txt\n*** Move to: ./same.txt\n@@\n-before\n+after");
        apply_patch(root, &patch).unwrap();

        assert_eq!(std::fs::read_to_string(&path).unwrap(), "after\n");
    }
}