Skip to main content

gize_generator/
sync.rs

1//! Reconciliation for `gize sync` (ADR-009): compare a desired [`Plan`] against the
2//! filesystem and classify each file as **missing**, **drifted** (present but different), or
3//! **unchanged**. Applying is conservative — missing files are created, but a drifted file is
4//! never overwritten without `--force`, so hand edits are safe (roadmap risk: destructive
5//! `sync`). Directories in the plan are implicit and ignored here.
6
7use std::fs;
8use std::path::Path;
9
10use anyhow::{Context, Result};
11
12use crate::plan::{FileOp, OpKind, Plan};
13
14/// The result of diffing a desired plan against what is on disk. Read-only: computing it
15/// writes nothing.
16#[derive(Debug, Default)]
17pub struct Reconciliation {
18    /// Files the plan wants that do not exist yet — safe to create.
19    pub missing: Vec<FileOp>,
20    /// Files that exist but whose contents differ from the plan — reported, not touched
21    /// unless the caller opts into `--force`.
22    pub drift: Vec<FileOp>,
23    /// Files that already match the plan exactly.
24    pub unchanged: Vec<String>,
25}
26
27impl Reconciliation {
28    /// Whether there is nothing to create and nothing has drifted.
29    pub fn is_in_sync(&self) -> bool {
30        self.missing.is_empty() && self.drift.is_empty()
31    }
32}
33
34/// Compare `plan` against the tree rooted at `root`, writing nothing.
35pub fn reconcile(root: &Path, plan: &Plan) -> Result<Reconciliation> {
36    let mut recon = Reconciliation::default();
37    for op in &plan.ops {
38        if op.kind != OpKind::Create {
39            continue; // directories are created implicitly when their files are written
40        }
41        let path = root.join(&op.path);
42        let display = op.path.display().to_string();
43        if !path.exists() {
44            recon.missing.push(op.clone());
45        } else {
46            let current =
47                fs::read_to_string(&path).with_context(|| format!("reading {display}"))?;
48            if current == op.contents {
49                recon.unchanged.push(display);
50            } else {
51                recon.drift.push(op.clone());
52            }
53        }
54    }
55    Ok(recon)
56}
57
58/// What `apply` did (or, under `dry_run`, would do).
59#[derive(Debug, Default)]
60pub struct Applied {
61    pub created: Vec<String>,
62    pub overwritten: Vec<String>,
63    /// Drifted files left untouched because `--force` was not given.
64    pub left: Vec<String>,
65    pub unchanged: Vec<String>,
66}
67
68impl Applied {
69    /// A `git status`-style summary of the reconciliation.
70    pub fn render(&self, dry_run: bool) -> String {
71        if self.created.is_empty()
72            && self.overwritten.is_empty()
73            && self.left.is_empty()
74            && self.unchanged.is_empty()
75        {
76            return "already in sync — nothing to do".to_string();
77        }
78        let mut out = String::new();
79        if dry_run {
80            out.push_str("dry-run: no files written\n");
81        }
82        for p in &self.created {
83            out.push_str(&format!("  create  {p}\n"));
84        }
85        for p in &self.overwritten {
86            out.push_str(&format!("  force   {p}\n"));
87        }
88        for p in &self.left {
89            out.push_str(&format!(
90                "  drift   {p} (differs from manifest; use --force to overwrite)\n"
91            ));
92        }
93        // Unchanged files are summarized, not listed — a synced project has many of them.
94        if !self.unchanged.is_empty() {
95            out.push_str(&format!(
96                "  ok      {} file(s) already match the manifest\n",
97                self.unchanged.len()
98            ));
99        }
100        out
101    }
102}
103
104/// Apply a reconciliation: always create missing files; overwrite drifted files only when
105/// `force`. `dry_run` computes the same report but writes nothing.
106pub fn apply(root: &Path, recon: &Reconciliation, force: bool, dry_run: bool) -> Result<Applied> {
107    let mut applied = Applied {
108        unchanged: recon.unchanged.clone(),
109        ..Applied::default()
110    };
111    for op in &recon.missing {
112        if !dry_run {
113            write_file(root, op)?;
114        }
115        applied.created.push(op.path.display().to_string());
116    }
117    for op in &recon.drift {
118        let display = op.path.display().to_string();
119        if force {
120            if !dry_run {
121                write_file(root, op)?;
122            }
123            applied.overwritten.push(display);
124        } else {
125            applied.left.push(display);
126        }
127    }
128    Ok(applied)
129}
130
131fn write_file(root: &Path, op: &FileOp) -> Result<()> {
132    let path = root.join(&op.path);
133    let display = op.path.display().to_string();
134    if let Some(parent) = path.parent() {
135        fs::create_dir_all(parent).with_context(|| format!("creating parent for {display}"))?;
136    }
137    fs::write(&path, &op.contents).with_context(|| format!("writing {display}"))
138}
139
140#[cfg(test)]
141mod tests {
142    use super::*;
143
144    fn tmpdir() -> std::path::PathBuf {
145        use std::sync::atomic::{AtomicUsize, Ordering};
146        static COUNTER: AtomicUsize = AtomicUsize::new(0);
147        let dir = std::env::temp_dir().join(format!(
148            "gize-sync-{}-{}",
149            std::process::id(),
150            COUNTER.fetch_add(1, Ordering::Relaxed)
151        ));
152        fs::create_dir_all(&dir).unwrap();
153        dir
154    }
155
156    #[test]
157    fn classifies_missing_drift_and_unchanged() {
158        let root = tmpdir();
159        fs::write(root.join("same.txt"), "v1").unwrap();
160        fs::write(root.join("changed.txt"), "old").unwrap();
161        let plan = Plan::new()
162            .create("same.txt", "v1")
163            .create("changed.txt", "new")
164            .create("new.txt", "fresh");
165
166        let recon = reconcile(&root, &plan).unwrap();
167        assert_eq!(recon.unchanged, vec!["same.txt".to_string()]);
168        assert_eq!(recon.missing.len(), 1);
169        assert_eq!(recon.missing[0].path.display().to_string(), "new.txt");
170        assert_eq!(recon.drift.len(), 1);
171        assert!(!recon.is_in_sync());
172    }
173
174    #[test]
175    fn apply_creates_missing_but_leaves_drift_without_force() {
176        let root = tmpdir();
177        fs::write(root.join("changed.txt"), "old").unwrap();
178        let plan = Plan::new()
179            .create("changed.txt", "new")
180            .create("new.txt", "fresh");
181        let recon = reconcile(&root, &plan).unwrap();
182
183        let applied = apply(&root, &recon, false, false).unwrap();
184        assert_eq!(applied.created, vec!["new.txt".to_string()]);
185        assert_eq!(applied.left, vec!["changed.txt".to_string()]);
186        // drift file untouched; missing file created
187        assert_eq!(fs::read_to_string(root.join("changed.txt")).unwrap(), "old");
188        assert_eq!(fs::read_to_string(root.join("new.txt")).unwrap(), "fresh");
189    }
190
191    #[test]
192    fn force_overwrites_drift() {
193        let root = tmpdir();
194        fs::write(root.join("changed.txt"), "old").unwrap();
195        let plan = Plan::new().create("changed.txt", "new");
196        let recon = reconcile(&root, &plan).unwrap();
197
198        let applied = apply(&root, &recon, true, false).unwrap();
199        assert_eq!(applied.overwritten, vec!["changed.txt".to_string()]);
200        assert_eq!(fs::read_to_string(root.join("changed.txt")).unwrap(), "new");
201    }
202
203    #[test]
204    fn dry_run_writes_nothing() {
205        let root = tmpdir();
206        let plan = Plan::new().create("new.txt", "fresh");
207        let recon = reconcile(&root, &plan).unwrap();
208        let applied = apply(&root, &recon, false, true).unwrap();
209        assert_eq!(applied.created, vec!["new.txt".to_string()]);
210        assert!(!root.join("new.txt").exists());
211    }
212}