summaryrefslogtreecommitdiffstats
path: root/src/displace.rs
blob: 4c19349616257c531ebbe33e22c8f49ae0b13a16 (plain)
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
use {
  super::{
    argparse::{Action, Engine, Options},
    fs_pipe::{slurp, spit},
    input::LineIn,
    types::Die,
    udiff::{apply_patches, patches, pure_diffs, udiff},
  },
  ansi_term::Colour,
  std::{ffi::OsString, path::PathBuf, sync::Arc},
};

impl Engine {
  fn replace(&self, before: &str) -> String {
    match self {
      Self::AhoCorasick(ac, replace) => ac.replace_all(before, &[replace.as_str()]),
      Self::Regex(re, replace) => re.replace_all(before, replace.as_str()).into(),
    }
  }
}

impl LineIn {
  const fn path(&self) -> &PathBuf {
    match self {
      Self::Entire(path) | Self::Piecewise(path, _) => path,
    }
  }
}

pub async fn displace(opts: &Arc<Options>, input: LineIn) -> Result<OsString, Die> {
  let path = input.path().clone();
  let name = opts
    .cwd
    .as_ref()
    .and_then(|cwd| path.strip_prefix(cwd).ok())
    .unwrap_or_else(|| path.as_ref())
    .as_os_str()
    .to_owned();

  let slurped = slurp(&path).await?;
  let before = slurped.content;
  let after = opts.engine.replace(&before);

  if *before == after {
    Ok(OsString::default())
  } else {
    let print = match (&opts.action, input) {
      (Action::Preview, LineIn::Entire(_)) => udiff(None, opts.unified, &name, &before, &after),
      (Action::Preview, LineIn::Piecewise(_, ranges)) => {
        udiff(Some(&ranges), opts.unified, &name, &before, &after)
      }
      (Action::Commit, LineIn::Entire(_)) => {
        spit(&path, &slurped.meta, &after).await?;
        let mut out = name;
        out.push("\n");
        out
      }
      (Action::Commit, LineIn::Piecewise(_, ranges)) => {
        let patches = patches(opts.unified, &before, &after);
        let after = apply_patches(patches, &ranges, &before);
        spit(&path, &slurped.meta, &after).await?;
        let mut out = name;
        out.push("\n");
        out
      }
      (Action::FzfPreview(_, _), _) => {
        let ranges = pure_diffs(opts.unified, &before, &after);
        let mut fzf_lines = OsString::new();
        for range in ranges {
          let repr = Colour::Red.paint(format!("{range}"));
          fzf_lines.push(&name);
          let line = format!("\n\n\n\n{repr}\0");
          fzf_lines.push(&line);
        }
        fzf_lines
      }
    };
    Ok(print)
  }
}