use std::collections::HashSet;
use std::path::PathBuf;
use std::sync::Arc;
use anyhow::bail;
use libpijul::pristine::{Hash, Merkle, MutTxnT, Position, TxnT};
use libpijul::*;
use log::debug;
use crate::CS;
use pijul_interaction::ProgressBar;
#[derive(Clone)]
pub struct Local {
pub channel: String,
pub root: std::path::PathBuf,
pub changes_dir: std::path::PathBuf,
pub pristine: Arc<libpijul::pristine::sanakirja::Pristine>,
pub name: String,
}
pub fn get_state<T: TxnTExt>(
txn: &T,
channel: &libpijul::pristine::ChannelRef<T>,
mid: Option<u64>,
) -> Result<Option<(u64, Merkle, Merkle)>, anyhow::Error> {
if let Some(x) = txn.reverse_log(&*channel.read(), mid)?.next() {
let (n, (_, m)) = x?;
if let Some(m2) = txn
.rev_iter_tags(txn.tags(&*channel.read()), Some(n.into()))?
.next()
{
let (_, m2) = m2?;
Ok(Some((n, m.into(), m2.b.into())))
} else {
Ok(Some((n, m.into(), Merkle::zero())))
}
} else {
Ok(None)
}
}
impl Local {
pub fn get_state(
&mut self,
mid: Option<u64>,
) -> Result<Option<(u64, Merkle, Merkle)>, anyhow::Error> {
let txn = self.pristine.txn_begin()?;
let channel = txn.load_channel(&self.channel)?.unwrap();
Ok(get_state(&txn, &channel, mid)?)
}
pub fn get_id(&self) -> Result<libpijul::pristine::RemoteId, anyhow::Error> {
let txn = self.pristine.txn_begin()?;
if let Some(channel) = txn.load_channel(&self.channel)? {
Ok(*txn.id(&*channel.read()).unwrap())
} else {
Err(anyhow::anyhow!(
"Channel {} does not exist in repository {}",
self.channel,
self.name
))
}
}
pub fn download_changelist<
A,
F: FnMut(&mut A, u64, Hash, Merkle, bool) -> Result<(), anyhow::Error>,
>(
&mut self,
f: F,
a: &mut A,
from: u64,
paths: &[String],
) -> Result<HashSet<Position<Hash>>, anyhow::Error> {
let remote_txn = self.pristine.txn_begin()?;
let remote_channel = if let Some(channel) = remote_txn.load_channel(&self.channel)? {
channel
} else {
debug!(
"Local::download_changelist found no channel named {:?}",
self.channel
);
bail!("No channel {} found for remote {}", self.name, self.channel)
};
self.download_changelist_(f, a, from, paths, &remote_txn, &remote_channel)
}
pub fn download_changelist_<
A,
T: libpijul::ChannelTxnT + libpijul::TxnTExt + libpijul::DepsTxnT + libpijul::GraphTxnT,
F: FnMut(&mut A, u64, Hash, Merkle, bool) -> Result<(), anyhow::Error>,
>(
&mut self,
mut f: F,
a: &mut A,
from: u64,
paths: &[String],
remote_txn: &T,
remote_channel: &ChannelRef<T>,
) -> Result<HashSet<Position<Hash>>, anyhow::Error> {
let store = libpijul::changestore::filesystem::FileSystem::from_root(
&self.root,
pijul_repository::max_files()?,
);
let mut paths_ = HashSet::new();
let mut result = HashSet::new();
for s in paths {
if let Ok((p, _ambiguous)) = remote_txn.follow_oldest_path(&store, &remote_channel, s) {
debug!("p = {:?}", p);
for p in std::iter::once(p).chain(
libpijul::fs::iter_graph_descendants(
remote_txn,
remote_txn.graph(&*remote_channel.read()),
p,
)?
.map(|x| x.unwrap()),
) {
paths_.insert(p);
result.insert(Position {
change: remote_txn.get_external(&p.change)?.unwrap().into(),
pos: p.pos,
});
}
}
}
debug!("paths_ = {:?}", paths_);
debug!("from = {:?}", from);
let rem = remote_channel.read();
let tags: Vec<u64> = remote_txn
.iter_tags(remote_txn.tags(&*rem), from)?
.map(|k| (*k.unwrap().0).into())
.collect();
let mut tagsi = 0;
if paths_.is_empty() {
for x in remote_txn.log(&*rem, from)? {
debug!("log {:?}", x);
let (n, (h, m)) = x?;
assert!(n >= from);
debug!("put_remote {:?} {:?} {:?}", n, h, m);
if tags.get(tagsi) == Some(&n) {
f(a, n, h.into(), m.into(), true)?;
tagsi += 1;
} else {
f(a, n, h.into(), m.into(), false)?;
}
}
} else {
let mut hashes = HashMap::new();
let mut stack = Vec::new();
for x in remote_txn.log(&*rem, from)? {
debug!("log {:?}", x);
let (n, (h, m)) = x?;
assert!(n >= from);
let h_int = remote_txn.get_internal(h)?.unwrap();
if paths_.is_empty()
|| paths_.iter().any(|x| {
let y = remote_txn.get_touched_files(x, Some(h_int)).unwrap();
debug!("x {:?} {:?}", x, y);
y == Some(h_int)
})
{
stack.push((*h_int, *m, n));
}
}
while let Some((h_int, m, n)) = stack.pop() {
if hashes.insert(h_int, (m, n)).is_some() {
continue;
}
for d in remote_txn.iter_dep(&h_int)? {
let (&h_int_, &d) = d?;
if h_int_ < h_int {
continue;
} else if h_int_ > h_int {
break;
}
let n = remote_txn
.get_changeset(remote_txn.changes(&*rem), &d)
.unwrap()
.unwrap();
let m = remote_txn
.get_revchangeset(remote_txn.rev_changes(&*rem), &n)
.unwrap()
.unwrap()
.b;
stack.push((d, m.into(), (*n).into()))
}
}
let mut hashes: Vec<_> = hashes.into_iter().collect();
hashes.sort_by_key(|(_, (_, n))| *n);
for (h_int, (m, n)) in hashes {
let h = remote_txn.get_external(&h_int)?.unwrap();
debug!("put_remote {:?} {:?} {:?}", n, h, m);
if tags.get(tagsi) == Some(&n) {
f(a, n, h.into(), m.into(), true)?;
tagsi += 1;
} else {
f(a, n, h.into(), m.into(), false)?;
}
}
}
Ok(result)
}
pub fn upload_changes(
&mut self,
progress_bar: ProgressBar,
mut local: PathBuf,
to_channel: Option<&str>,
changes: &[CS],
) -> Result<(), anyhow::Error> {
let store = libpijul::changestore::filesystem::FileSystem::from_root(
&self.root,
pijul_repository::max_files()?,
);
let txn = self.pristine.arc_txn_begin()?;
let channel = txn
.write()
.open_or_create_channel(to_channel.unwrap_or(&self.channel))?;
for c in changes {
match c {
CS::Change(c) => {
libpijul::changestore::filesystem::push_filename(&mut local, &c);
libpijul::changestore::filesystem::push_filename(&mut self.changes_dir, &c);
}
CS::State(c) => {
libpijul::changestore::filesystem::push_tag_filename(&mut local, &c);
libpijul::changestore::filesystem::push_tag_filename(&mut self.changes_dir, &c);
}
}
std::fs::create_dir_all(&self.changes_dir.parent().unwrap())?;
debug!("hard link {:?} {:?}", local, self.changes_dir);
if std::fs::metadata(&self.changes_dir).is_err() {
if std::fs::hard_link(&local, &self.changes_dir).is_err() {
std::fs::copy(&local, &self.changes_dir)?;
}
}
debug!("hard link done");
libpijul::changestore::filesystem::pop_filename(&mut local);
libpijul::changestore::filesystem::pop_filename(&mut self.changes_dir);
}
let repo = libpijul::working_copy::filesystem::FileSystem::from_root(&self.root);
upload_changes(progress_bar, &store, &mut *txn.write(), &channel, changes)?;
libpijul::output::output_repository_no_pending(
&repo,
&store,
&txn,
&channel,
"",
true,
None,
std::thread::available_parallelism()?.get(),
0,
)?;
txn.commit()?;
Ok(())
}
pub async fn download_changes(
&mut self,
progress_bar: ProgressBar,
hashes: &mut tokio::sync::mpsc::UnboundedReceiver<CS>,
send: &mut tokio::sync::mpsc::Sender<(CS, bool)>,
mut path: &mut PathBuf,
) -> Result<(), anyhow::Error> {
while let Some(c) = hashes.recv().await {
match c {
CS::Change(c) => {
libpijul::changestore::filesystem::push_filename(&mut self.changes_dir, &c);
libpijul::changestore::filesystem::push_filename(&mut path, &c);
}
CS::State(c) => {
libpijul::changestore::filesystem::push_tag_filename(&mut self.changes_dir, &c);
libpijul::changestore::filesystem::push_tag_filename(&mut path, &c);
}
}
progress_bar.inc(1);
if std::fs::metadata(&path).is_ok() {
debug!("metadata {:?} ok", path);
libpijul::changestore::filesystem::pop_filename(&mut self.changes_dir);
libpijul::changestore::filesystem::pop_filename(&mut path);
send.send((c, true)).await?;
continue;
}
std::fs::create_dir_all(&path.parent().unwrap())?;
if std::fs::hard_link(&self.changes_dir, &path).is_err() {
std::fs::copy(&self.changes_dir, &path)?;
}
libpijul::changestore::filesystem::pop_filename(&mut self.changes_dir);
libpijul::changestore::filesystem::pop_filename(&mut path);
send.send((c, true)).await?;
}
Ok(())
}
pub async fn update_identities(
&mut self,
_rev: Option<u64>,
mut path: PathBuf,
) -> Result<u64, anyhow::Error> {
let mut other_path = self.root.join(DOT_DIR);
other_path.push("identities");
let r = if let Ok(r) = std::fs::read_dir(&other_path) {
r
} else {
return Ok(0);
};
std::fs::create_dir_all(&path)?;
for id in r {
let id = id?;
let m = id.metadata()?;
let p = id.path();
path.push(p.file_name().unwrap());
if let Ok(ml) = std::fs::metadata(&path) {
if ml.modified()? < m.modified()? {
std::fs::remove_file(&path)?;
} else {
path.pop();
continue;
}
}
if std::fs::hard_link(&p, &path).is_err() {
std::fs::copy(&p, &path)?;
}
debug!("hard link done");
path.pop();
}
Ok(0)
}
}
pub fn upload_changes<T: MutTxnTExt + 'static, C: libpijul::changestore::ChangeStore>(
progress_bar: ProgressBar,
store: &C,
txn: &mut T,
channel: &libpijul::pristine::ChannelRef<T>,
changes: &[CS],
) -> Result<(), anyhow::Error> {
let mut ws = libpijul::ApplyWorkspace::new();
let mut channel = channel.write();
for c in changes {
match c {
CS::Change(c) => {
txn.apply_change_ws(store, &mut *channel, c, &mut ws)?;
}
CS::State(c) => {
if let Some(n) = txn.channel_has_state(txn.states(&*channel), &c.into())? {
let tags = txn.tags_mut(&mut *channel);
txn.put_tags(tags, n.into(), c)?;
} else {
bail!(
"Cannot add tag {}: channel {:?} does not have that state",
c.to_base32(),
txn.name(&*channel)
)
}
}
}
progress_bar.inc(1);
}
Ok(())
}