use std::collections::{BTreeSet, HashSet};
use std::path::PathBuf;
use anyhow::bail;
use canonical_path::CanonicalPathBuf;
use clap::Parser;
use libpijul::pristine::{ChangeId, ChannelMutTxnT, Position};
use libpijul::{ChannelTxnT, DepsTxnT, MutTxnT, TxnT, TxnTExt};
use log::*;
use crate::progress::PROGRESS;
use crate::repository::Repository;
#[derive(Parser, Debug)]
pub struct Reset {
#[clap(long = "repository")]
pub repo_path: Option<PathBuf>,
#[clap(long = "channel")]
pub channel: Option<String>,
#[clap(long = "dry-run")]
pub dry_run: bool,
#[clap(long = "force", short = 'f')]
pub force: bool,
pub files: Vec<PathBuf>,
}
impl Reset {
pub fn run(self) -> Result<(), anyhow::Error> {
self.reset(true)
}
pub fn switch(self) -> Result<(), anyhow::Error> {
self.reset(false)
}
fn reset(self, overwrite_changes: bool) -> Result<(), anyhow::Error> {
use std::io::Write;
let mut stderr = std::io::stderr();
let has_repo_path = self.repo_path.is_some();
let repo = Repository::find_root(self.repo_path)?;
let txn = repo.pristine.arc_txn_begin()?;
let cur = txn
.read()
.current_channel()
.unwrap_or(crate::DEFAULT_CHANNEL)
.to_string();
let channel_name = if let Some(ref c) = self.channel {
c
} else {
cur.as_str()
};
let repo_path = CanonicalPathBuf::canonicalize(&repo.path)?;
let channel = if let Some(channel) = txn.read().load_channel(&channel_name)? {
channel
} else {
bail!("No such channel: {:?}", channel_name)
};
if self.dry_run {
if self.files.len() != 1 {
bail!("reset --dry-run needs exactly one file");
}
let (pos, _ambiguous) = if has_repo_path {
let root = std::fs::canonicalize(repo.path.join(&self.files[0]))?;
let path = root.strip_prefix(&repo_path)?;
use path_slash::PathExt;
let path = path.to_slash_lossy();
txn.read()
.follow_oldest_path(&repo.changes, &channel, &path)?
} else {
let mut root = crate::current_dir()?;
root.push(&self.files[0]);
let root = std::fs::canonicalize(&root)?;
let path = root.strip_prefix(&repo_path)?;
use path_slash::PathExt;
let path = path.to_slash_lossy();
txn.read()
.follow_oldest_path(&repo.changes, &channel, &path)?
};
libpijul::output::output_file(
&repo.changes,
&txn,
&channel,
pos,
&mut libpijul::vertex_buffer::Writer::new(std::io::stdout()),
)?;
return Ok(());
}
let current_channel = txn
.read()
.current_channel()
.unwrap_or(crate::DEFAULT_CHANNEL)
.to_string();
if self.channel.as_deref() == Some(¤t_channel) {
if !overwrite_changes {
return Ok(());
}
} else if self.channel.is_some() && !self.force {
if !self.files.is_empty() {
bail!("Cannot use --channel with individual paths. Did you mean --dry-run?")
}
let channel = {
let txn = txn.read();
txn.load_channel(¤t_channel)?
};
if let Some(channel) = channel {
let mut state = libpijul::RecordBuilder::new();
state.record(
txn.clone(),
libpijul::Algorithm::default(),
false,
&libpijul::DEFAULT_SEPARATOR,
channel.clone(),
&repo.working_copy,
&repo.changes,
"",
num_cpus::get(),
)?;
let rec = state.finish();
debug!("actions = {:?}", rec.actions);
if !rec.actions.is_empty() {
bail!("Cannot change channel, as there are unrecorded changes.")
}
}
}
let now = std::time::Instant::now();
let mut conflicts = Vec::new();
if self.files.is_empty() {
if self.channel.is_none() || self.channel.as_deref() == Some(¤t_channel) {
let last_modified = last_modified(&*txn.read(), &*channel.read());
libpijul::output::output_repository_no_pending(
&repo.working_copy,
&repo.changes,
&txn,
&channel,
"",
true,
Some(last_modified),
1, 0,
)?;
txn.write().touch_channel(&mut *channel.write(), None);
txn.commit()?;
writeln!(stderr, "Reset repository to last recorded change")?;
return Ok(());
}
let mut inodes = HashSet::new();
let mut txn_ = txn.write();
if let Some(cur) = txn_.load_channel(¤t_channel)? {
let mut changediff = HashSet::new();
let (a, b, s) =
libpijul::pristine::last_common_state(&*txn_, &*cur.read(), &*channel.read())?;
let s: libpijul::Merkle = s.into();
debug!("last common state {:?}", s);
let (a, b) = if s == libpijul::Merkle::zero() {
(None, None)
} else {
(Some(a), Some(b))
};
changes_after(&*txn_, &*cur.read(), a, &mut changediff, &mut inodes)?;
changes_after(&*txn_, &*channel.read(), b, &mut changediff, &mut inodes)?;
}
if let Some(ref c) = self.channel {
txn_.set_current_channel(c)?
}
let mut paths = BTreeSet::new();
for pos in inodes.iter() {
if let Some((path, _)) =
libpijul::fs::find_path(&repo.changes, &*txn_, &*channel.read(), false, *pos)?
{
paths.insert(path);
} else {
paths.clear();
break;
}
}
if !inodes.is_empty() && paths.is_empty() {
paths.insert(String::from(""));
}
let mut last = None;
PROGRESS
.borrow_mut()
.unwrap()
.push(crate::progress::Cursor::Spin {
i: 0,
pre: "Outputting repository".into(),
});
std::mem::drop(txn_);
for path in paths.iter() {
match last {
Some(last_path) if path.starts_with(last_path) => continue,
_ => (),
}
debug!("resetting {:?}", path);
conflicts.extend(
libpijul::output::output_repository_no_pending(
&repo.working_copy,
&repo.changes,
&txn,
&channel,
path,
true,
None,
num_cpus::get(),
0,
)?
.into_iter(),
);
last = Some(path)
}
txn.write().touch_channel(&mut *channel.write(), None);
PROGRESS.join();
} else {
PROGRESS
.borrow_mut()
.unwrap()
.push(crate::progress::Cursor::Spin {
i: 0,
pre: "Outputting repository".into(),
});
for root in self.files.iter() {
let root = std::fs::canonicalize(&root)?;
let path = root.strip_prefix(&repo_path)?;
use path_slash::PathExt;
let path = path.to_slash_lossy();
conflicts.extend(
libpijul::output::output_repository_no_pending(
&repo.working_copy,
&repo.changes,
&txn,
&channel,
&path,
true,
None,
num_cpus::get(),
0,
)?
.into_iter(),
);
}
PROGRESS.join();
}
super::print_conflicts(&conflicts)?;
txn.commit()?;
debug!("now = {:?}", now.elapsed());
let locks = libpijul::TIMERS.lock().unwrap();
info!(
"retrieve: {:?}, graph: {:?}, output: {:?}",
locks.alive_retrieve, locks.alive_graph, locks.alive_output,
);
writeln!(stderr, "Reset given paths to last recorded change")?;
Ok(())
}
}
fn changes_after<T: ChannelTxnT + DepsTxnT>(
txn: &T,
chan: &T::Channel,
from: Option<u64>,
changediff: &mut HashSet<ChangeId>,
inodes: &mut HashSet<Position<ChangeId>>,
) -> Result<(), anyhow::Error> {
let f = if let Some(f) = from {
(f + 1).into()
} else {
0u64.into()
};
for x in libpijul::pristine::changeid_log(txn, chan, f)? {
let (n, p) = x?;
let n: u64 = (*n).into();
debug!("{:?} {:?} {:?}", n, p, from);
if changediff.insert(p.a) {
for y in txn.iter_rev_touched_files(&p.a, None)? {
let (uu, pos) = y?;
debug_assert!(uu >= &p.a);
if uu > &p.a {
break;
}
inodes.insert(*pos);
}
}
}
Ok(())
}
fn last_modified<T: ChannelTxnT>(txn: &T, channel: &T::Channel) -> std::time::SystemTime {
std::time::SystemTime::UNIX_EPOCH + std::time::Duration::from_millis(txn.last_modified(channel))
}