summaryrefslogtreecommitdiff
path: root/src/store.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/store.rs')
-rw-r--r--src/store.rs31
1 files changed, 2 insertions, 29 deletions
diff --git a/src/store.rs b/src/store.rs
index 123b9fa..e6cc71f 100644
--- a/src/store.rs
+++ b/src/store.rs
@@ -53,20 +53,12 @@ impl Store {
Ok(())
}
- /// Load a chunk's metadata from a store.
- pub fn load_meta(&self, id: &ChunkId) -> anyhow::Result<ChunkMeta> {
- let (_, metaname, _) = &self.filenames(id);
- let meta = std::fs::read(&metaname)?;
- Ok(serde_json::from_slice(&meta)?)
- }
-
/// Load a chunk from a store.
- pub fn load(&self, id: &ChunkId) -> anyhow::Result<LoadedChunk> {
+ pub fn load(&self, id: &ChunkId) -> anyhow::Result<DataChunk> {
let (_, _, dataname) = &self.filenames(id);
- let meta = self.load_meta(id)?;
let data = std::fs::read(&dataname)?;
let data = DataChunk::new(data);
- Ok(LoadedChunk { meta, data })
+ Ok(data)
}
/// Delete a chunk from a store.
@@ -77,22 +69,3 @@ impl Store {
Ok(())
}
}
-
-pub struct LoadedChunk {
- meta: ChunkMeta,
- data: DataChunk,
-}
-
-impl LoadedChunk {
- pub fn new(meta: ChunkMeta, data: DataChunk) -> Self {
- Self { meta, data }
- }
-
- pub fn meta(&self) -> &ChunkMeta {
- &self.meta
- }
-
- pub fn data(&self) -> &DataChunk {
- &self.data
- }
-}