use std::collections::{BTreeMap, HashSet};
pub(crate) mod decode;
use prikk_error::{PrikkError, Result};
use prikk_object::{BlockPayload, ObjectEnvelope, ObjectId, ObjectType, RefStatePayload};
use crate::layout::RepositoryLayout;
use crate::object_store::FileObjectStore;
use crate::path::RepoPath;
use crate::refs::RefStore;
use crate::snapshot::{SnapshotEntry, SnapshotManifest};
use decode::{SupportedPatchOperation, decode_supported_patch_operations};
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct PatchReplayPlan {
pub ref_name: String,
pub target_block_id: ObjectId,
pub block_count: usize,
pub patch_count: usize,
pub applied_operation_count: usize,
pub file_count: usize,
pub total_content_bytes: u64,
pub paths: Vec<String>,
}
pub fn prepare_patch_replay_plan(
layout: &RepositoryLayout,
ref_name: &str,
) -> Result<PatchReplayPlan> {
let snapshot = replay_supported_patch_chain(layout, ref_name)?;
let paths = snapshot
.manifest
.files
.iter()
.map(|entry| entry.path.as_str().to_string())
.collect();
Ok(PatchReplayPlan {
ref_name: snapshot.ref_name,
target_block_id: snapshot.target_block_id,
block_count: snapshot.block_count,
patch_count: snapshot.patch_count,
applied_operation_count: snapshot.applied_operation_count,
file_count: snapshot.manifest.files.len(),
total_content_bytes: snapshot.manifest.total_content_bytes(),
paths,
})
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub(crate) struct PatchReplaySnapshot {
pub(crate) ref_name: String,
pub(crate) target_block_id: ObjectId,
pub(crate) block_count: usize,
pub(crate) patch_count: usize,
pub(crate) applied_operation_count: usize,
pub(crate) manifest: SnapshotManifest,
pub(crate) deleted_files: Vec<PatchReplayDeletedFile>,
pub(crate) baseline_manifest: SnapshotManifest,
}
#[derive(Debug, Clone, PartialEq, Eq)]
pub(crate) struct PatchReplayDeletedFile {
pub(crate) path: RepoPath,
pub(crate) old_blob_id: ObjectId,
pub(crate) old_bytes: Vec<u8>,
}
pub(crate) fn replay_supported_patch_chain(
layout: &RepositoryLayout,
ref_name: &str,
) -> Result<PatchReplaySnapshot> {
let object_store = FileObjectStore::new(layout.clone());
let target_block_id = current_target_block(layout, &object_store, ref_name)?;
let block_ids = single_parent_chain(&object_store, target_block_id)?;
let mut files = BTreeMap::new();
let mut deleted_files = BTreeMap::new();
let mut patch_count = 0_usize;
let mut applied_operation_count = 0_usize;
let mut baseline_files = BTreeMap::new();
for block_id in &block_ids {
let block = read_block(&object_store, *block_id)?;
if let Some(snapshot_blob_ref) = block.snapshot_blob_ref {
files = load_snapshot_files(&object_store, snapshot_blob_ref)?;
baseline_files = files.clone();
deleted_files.clear();
}
for patch_id in block.patch_ids {
let patch = read_patch(&object_store, patch_id)?;
let operations = decode_supported_patch_operations(&patch.canonical_payload)?;
for operation in operations {
apply_supported_operation(
&object_store,
&mut files,
&mut deleted_files,
operation,
)?;
applied_operation_count += 1;
}
patch_count += 1;
}
}
Ok(PatchReplaySnapshot {
ref_name: ref_name.to_string(),
target_block_id,
block_count: block_ids.len(),
patch_count,
applied_operation_count,
manifest: files_to_manifest(files)?,
deleted_files: deleted_files.into_values().collect(),
baseline_manifest: files_to_manifest(baseline_files)?,
})
}
fn current_target_block(
layout: &RepositoryLayout,
object_store: &FileObjectStore,
ref_name: &str,
) -> Result<ObjectId> {
let ref_store = RefStore::new(layout.clone());
let ref_state_id = ref_store
.read_current_ref_state_id(ref_name)?
.ok_or_else(|| PrikkError::Integrity(format!("ref {ref_name} is not published")))?;
let envelope = object_store
.read_typed(ref_state_id, ObjectType::RefState)?
.ok_or_else(|| {
PrikkError::Integrity(format!(
"ref {ref_name} points to missing RefState {ref_state_id}"
))
})?;
let ref_state = RefStatePayload::decode_canonical(&envelope.canonical_payload)?;
if ref_state.ref_name != ref_name {
return Err(PrikkError::Integrity(format!(
"RefState name mismatch: expected {ref_name}, got {}",
ref_state.ref_name
)));
}
Ok(ref_state.target_object_id)
}
fn single_parent_chain(object_store: &FileObjectStore, target: ObjectId) -> Result<Vec<ObjectId>> {
let mut newest_first = Vec::new();
let mut seen = HashSet::new();
let mut current = Some(target);
while let Some(block_id) = current {
if !seen.insert(block_id) {
return Err(PrikkError::Integrity(format!(
"block parent chain contains a cycle at {block_id}"
)));
}
let block = read_block(object_store, block_id)?;
if block.parent_block_ids.len() > 1 {
return Err(PrikkError::UnsupportedObjectType(format!(
"patch replay supports only single-parent chains; block {block_id} has {} parents",
block.parent_block_ids.len()
)));
}
newest_first.push(block_id);
current = block.parent_block_ids.first().copied();
}
newest_first.reverse();
Ok(newest_first)
}
fn read_block(object_store: &FileObjectStore, block_id: ObjectId) -> Result<BlockPayload> {
let envelope = object_store
.read_typed(block_id, ObjectType::Block)?
.ok_or_else(|| PrikkError::Integrity(format!("missing Block {block_id}")))?;
BlockPayload::decode_canonical(&envelope.canonical_payload)
}
fn read_patch(object_store: &FileObjectStore, patch_id: ObjectId) -> Result<ObjectEnvelope> {
object_store
.read_typed(patch_id, ObjectType::Patch)?
.ok_or_else(|| PrikkError::Integrity(format!("missing Patch {patch_id}")))
}
fn load_snapshot_files(
object_store: &FileObjectStore,
snapshot_blob_ref: ObjectId,
) -> Result<BTreeMap<String, Vec<u8>>> {
let envelope = object_store
.read_typed(snapshot_blob_ref, ObjectType::Blob)?
.ok_or_else(|| {
PrikkError::Integrity(format!("missing snapshot Blob {snapshot_blob_ref}"))
})?;
let snapshot_content = crate::blob_access::decode_snapshot_blob(&envelope.canonical_payload)?;
let manifest = SnapshotManifest::decode(&snapshot_content)?;
let mut files = BTreeMap::new();
for entry in manifest.files {
files.insert(entry.path.as_str().to_string(), entry.bytes);
}
Ok(files)
}
fn files_to_manifest(files: BTreeMap<String, Vec<u8>>) -> Result<SnapshotManifest> {
let mut entries = Vec::with_capacity(files.len());
for (path, bytes) in files {
entries.push(SnapshotEntry {
path: RepoPath::parse(&path)?,
bytes,
});
}
Ok(SnapshotManifest { files: entries })
}
fn apply_supported_operation(
object_store: &FileObjectStore,
files: &mut BTreeMap<String, Vec<u8>>,
deleted_files: &mut BTreeMap<String, PatchReplayDeletedFile>,
operation: SupportedPatchOperation,
) -> Result<()> {
match operation {
SupportedPatchOperation::CreateFile {
path,
node_id: _,
blob_id,
mode: _,
} => {
if files.contains_key(&path) {
return Err(PrikkError::Integrity(format!(
"CreateFile would overwrite existing path {path}"
)));
}
let bytes = read_blob_bytes(object_store, blob_id)?;
deleted_files.remove(&path);
files.insert(path, bytes);
}
SupportedPatchOperation::DeleteNode {
path,
node_id: _,
old_node_kind,
old_blob_id,
old_mode: _,
} => {
let old_bytes = files.get(&path).ok_or_else(|| {
PrikkError::Integrity(format!("DeleteNode path is absent: {path}"))
})?;
crate::blob_access::ensure_blob_matches_node_kind(
old_bytes,
old_blob_id,
old_node_kind,
)?;
let repo_path = RepoPath::parse(&path)?;
let deleted = PatchReplayDeletedFile {
path: repo_path,
old_blob_id,
old_bytes: old_bytes.clone(),
};
files.remove(&path);
deleted_files.insert(path, deleted);
}
}
Ok(())
}
fn read_blob_bytes(object_store: &FileObjectStore, blob_id: ObjectId) -> Result<Vec<u8>> {
let envelope = object_store
.read_typed(blob_id, ObjectType::Blob)?
.ok_or_else(|| PrikkError::Integrity(format!("missing Blob {blob_id}")))?;
crate::blob_access::decode_file_content_blob(&envelope.canonical_payload)
}
#[cfg(test)]
mod tests;