use std::collections::HashMap;
use std::fs::File;
use std::io::{Read, Seek, SeekFrom};
use std::path::{Path, PathBuf};
use anyhow::{anyhow, Result};
use arrow::record_batch::RecordBatch;
use arrow_array::{BooleanArray, StringArray, UInt64Array};
use crate::codec;
use crate::index::read_znippy_index;
pub trait ZnippyReader: Send + Sync {
fn list_files(&self) -> Result<Vec<String>>;
fn extract_file(&self, relative_path: &str) -> Result<Vec<u8>>;
fn contains(&self, relative_path: &str) -> bool;
fn file_size(&self, relative_path: &str) -> Option<u64>;
}
struct ChunkInfo {
blob_offset: u64,
blob_size: u64,
fdata_offset: u64,
compressed: bool,
}
struct FileEntry {
uncompressed_size: u64,
chunks: Vec<ChunkInfo>,
}
pub struct ZnippyArchive {
archive_path: PathBuf,
file_index: HashMap<String, FileEntry>,
}
impl ZnippyArchive {
pub fn open(path: &Path) -> Result<Self> {
let (_, batches) = read_znippy_index(path)?;
let file_index = Self::build_file_index(&batches)?;
Ok(Self {
archive_path: path.to_path_buf(),
file_index,
})
}
pub fn file_count(&self) -> usize {
self.file_index.len()
}
fn build_file_index(batches: &[RecordBatch]) -> Result<HashMap<String, FileEntry>> {
let mut index: HashMap<String, FileEntry> = HashMap::new();
for batch in batches {
let paths = batch
.column_by_name("relative_path")
.ok_or_else(|| anyhow!("missing relative_path column"))?
.as_any()
.downcast_ref::<StringArray>()
.ok_or_else(|| anyhow!("relative_path not StringArray"))?;
let compressed_col = batch
.column_by_name("compressed")
.ok_or_else(|| anyhow!("missing compressed column"))?
.as_any()
.downcast_ref::<BooleanArray>()
.ok_or_else(|| anyhow!("compressed not BooleanArray"))?;
let sizes = batch
.column_by_name("uncompressed_size")
.ok_or_else(|| anyhow!("missing uncompressed_size column"))?
.as_any()
.downcast_ref::<UInt64Array>()
.ok_or_else(|| anyhow!("uncompressed_size not UInt64Array"))?;
let blob_offset_col = batch
.column_by_name("blob_offset")
.ok_or_else(|| anyhow!("missing blob_offset column"))?
.as_any()
.downcast_ref::<UInt64Array>()
.ok_or_else(|| anyhow!("blob_offset not UInt64Array"))?;
let blob_size_col = batch
.column_by_name("blob_size")
.ok_or_else(|| anyhow!("missing blob_size column"))?
.as_any()
.downcast_ref::<UInt64Array>()
.ok_or_else(|| anyhow!("blob_size not UInt64Array"))?;
let fdata_offset_col = batch
.column_by_name("fdata_offset")
.ok_or_else(|| anyhow!("missing fdata_offset column"))?
.as_any()
.downcast_ref::<UInt64Array>()
.ok_or_else(|| anyhow!("fdata_offset not UInt64Array"))?;
for row in 0..batch.num_rows() {
let path = paths.value(row).to_string();
let compressed = compressed_col.value(row);
let uncompressed_size = sizes.value(row);
let blob_offset = blob_offset_col.value(row);
let blob_size = blob_size_col.value(row);
let fdata_offset = fdata_offset_col.value(row);
let entry = index.entry(path).or_insert_with(|| FileEntry {
uncompressed_size: 0,
chunks: Vec::new(),
});
entry.uncompressed_size += uncompressed_size;
entry.chunks.push(ChunkInfo {
blob_offset,
blob_size,
fdata_offset,
compressed,
});
}
}
for entry in index.values_mut() {
entry.chunks.sort_by_key(|c| c.fdata_offset);
}
Ok(index)
}
}
impl ZnippyReader for ZnippyArchive {
fn list_files(&self) -> Result<Vec<String>> {
Ok(self.file_index.keys().cloned().collect())
}
fn extract_file(&self, relative_path: &str) -> Result<Vec<u8>> {
let entry = self
.file_index
.get(relative_path)
.ok_or_else(|| anyhow!("file not found in archive: {}", relative_path))?;
let mut file = File::open(&self.archive_path)?;
let mut result = Vec::with_capacity(entry.uncompressed_size as usize);
for chunk in &entry.chunks {
file.seek(SeekFrom::Start(chunk.blob_offset))?;
let mut blob = vec![0u8; chunk.blob_size as usize];
file.read_exact(&mut blob)?;
if chunk.compressed {
let decompressed = codec::decompress_frame(&blob)?;
result.extend_from_slice(&decompressed);
} else {
result.extend_from_slice(&blob);
}
}
Ok(result)
}
fn contains(&self, relative_path: &str) -> bool {
self.file_index.contains_key(relative_path)
}
fn file_size(&self, relative_path: &str) -> Option<u64> {
self.file_index.get(relative_path).map(|e| e.uncompressed_size)
}
}