use std::path::PathBuf;
use anyhow::bail;
use clap::Parser;
use libpijul::changestore::ChangeStore;
use libpijul::{DepsTxnT, GraphTxnT, MutTxnTExt, TxnT};
use libpijul::{HashMap, HashSet};
use log::*;
use crate::progress::PROGRESS;
use crate::repository::Repository;
#[derive(Parser, Debug)]
pub struct Apply {
#[clap(long = "repository")]
repo_path: Option<PathBuf>,
#[clap(long = "channel")]
channel: Option<String>,
#[clap(long = "deps-only")]
deps_only: bool,
change: Vec<String>,
}
impl Apply {
pub fn run(self) -> Result<(), anyhow::Error> {
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 is_current_channel = channel_name == cur;
let channel = if let Some(channel) = txn.read().load_channel(&channel_name)? {
channel
} else {
bail!("Channel {:?} not found", channel_name)
};
let mut hashes = Vec::new();
if self.change.is_empty() {
let mut change = std::io::BufReader::new(std::io::stdin());
let mut change = libpijul::change::Change::read(&mut change, &mut HashMap::default())?;
hashes.push(
repo.changes
.save_change(&mut change, |_, _| Ok::<_, anyhow::Error>(()))?,
)
}
use libpijul::MutTxnT;
use rand::Rng;
let forked = if is_current_channel {
let forked_s: String = rand::thread_rng()
.sample_iter(&rand::distributions::Alphanumeric)
.take(20)
.map(char::from)
.collect();
let forked = txn.write().fork(&channel, &forked_s)?;
Some((forked_s, forked))
} else {
None
};
for ch in self.change.iter() {
hashes.push(if let Ok(h) = txn.read().hash_from_prefix(ch) {
h.0
} else {
let change = libpijul::change::Change::deserialize(&ch, None);
match change {
Ok(mut change) => repo
.changes
.save_change(&mut change, |_, _| Ok::<_, anyhow::Error>(()))?,
Err(libpijul::change::ChangeError::Io(e)) => {
if let std::io::ErrorKind::NotFound = e.kind() {
let mut changes = repo.changes_dir.clone();
super::find_hash(&mut changes, &ch)?
} else {
return Err(e.into());
}
}
Err(e) => return Err(e.into()),
}
})
}
if self.deps_only {
if hashes.len() > 1 {
bail!("--deps-only is only applicable to a single change")
}
let mut channel = channel.write();
txn.write()
.apply_deps_rec(&repo.changes, &mut channel, hashes.last().unwrap())?;
} else {
let mut channel = channel.write();
let mut txn = txn.write();
for hash in hashes.iter() {
txn.apply_change_rec(&repo.changes, &mut channel, hash)?
}
}
let mut touched = HashSet::default();
let txn_ = txn.read();
for d in hashes.iter() {
if let Some(int) = txn_.get_internal(&d.into())? {
debug!("int = {:?}", int);
for inode in txn_.iter_rev_touched(int)? {
debug!("{:?}", inode);
let (int_, inode) = inode?;
if int_ < int {
continue;
} else if int_ > int {
break;
}
touched.insert(*inode);
}
}
}
std::mem::drop(txn_);
if let Some((_, ref forked)) = forked {
let mut touched_files = Vec::with_capacity(touched.len());
let txn_ = txn.read();
for i in touched {
if let Some((path, _)) =
libpijul::fs::find_path(&repo.changes, &*txn_, &*forked.read(), false, i)?
{
if !path.is_empty() {
touched_files.push(path);
continue
}
}
touched_files.clear();
break;
}
debug!("touched files {:?}", touched_files);
std::mem::drop(txn_);
PROGRESS
.borrow_mut()
.unwrap()
.push(crate::progress::Cursor::Spin {
i: 0,
pre: "Outputting repository".into(),
});
{
let mut state = libpijul::RecordBuilder::new();
if touched_files.is_empty() {
state.record(
txn.clone(),
libpijul::Algorithm::default(),
false,
&libpijul::DEFAULT_SEPARATOR,
forked.clone(),
&repo.working_copy,
&repo.changes,
"",
num_cpus::get(),
)?
} else {
use canonical_path::CanonicalPathBuf;
fill_relative_prefixes(&mut touched_files)?;
repo.working_copy.record_prefixes(
txn.clone(),
libpijul::Algorithm::default(),
forked.clone(),
&repo.changes,
&mut state,
CanonicalPathBuf::canonicalize(&repo.path)?,
&touched_files,
false,
num_cpus::get(),
0,
)?;
}
let rec = state.finish();
if !rec.actions.is_empty() {
debug!("actions {:#?}", rec.actions);
bail!("Applying this patch would delete unrecorded changes, aborting")
}
}
let mut conflicts = Vec::new();
for path in touched_files.iter() {
conflicts.extend(
libpijul::output::output_repository_no_pending(
&repo.working_copy,
&repo.changes,
&txn,
&channel,
&path,
true,
None,
num_cpus::get(),
0,
)?
.into_iter(),
);
}
if !touched_files.is_empty() {
conflicts.extend(
libpijul::output::output_repository_no_pending(
&repo.working_copy,
&repo.changes,
&txn,
&channel,
"",
true,
None,
num_cpus::get(),
0,
)?
.into_iter(),
);
}
PROGRESS.join();
super::print_conflicts(&conflicts)?;
}
if let Some((forked_s, forked)) = forked {
std::mem::drop(forked);
txn.write().drop_channel(&forked_s)?;
}
txn.commit()?;
Ok(())
}
}
fn fill_relative_prefixes(prefixes: &mut [String]) -> Result<Vec<PathBuf>, anyhow::Error> {
let cwd = std::env::current_dir()?;
let mut pref = Vec::new();
for p in prefixes.iter_mut() {
if std::path::Path::new(p).is_relative() {
pref.push(cwd.join(&p));
}
}
Ok(pref)
}