aboutsummaryrefslogtreecommitdiff
path: root/crates/fparkan-nres/src/lib.rs
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2026-07-18 11:03:56 +0300
committerValentin Popov <valentin@popov.link>2026-07-18 11:03:56 +0300
commit6b4fefc21f30300b07e6e6e99eedf3d81e855388 (patch)
treecdf822136c75f60a3ae6166fbab9575d88947382 /crates/fparkan-nres/src/lib.rs
parentf952593e27a2ea8222f2a0d3fa545654ce073c6b (diff)
downloadfparkan-6b4fefc21f30300b07e6e6e99eedf3d81e855388.tar.xz
fparkan-6b4fefc21f30300b07e6e6e99eedf3d81e855388.zip
perf(resource): avoid copying nres payloads
Diffstat (limited to 'crates/fparkan-nres/src/lib.rs')
-rw-r--r--crates/fparkan-nres/src/lib.rs19
1 files changed, 19 insertions, 0 deletions
diff --git a/crates/fparkan-nres/src/lib.rs b/crates/fparkan-nres/src/lib.rs
index 778b76b..e82ca08 100644
--- a/crates/fparkan-nres/src/lib.rs
+++ b/crates/fparkan-nres/src/lib.rs
@@ -479,6 +479,23 @@ impl NresDocument {
Ok(&self.bytes[entry.data_range.clone()])
}
+ /// Returns an owned view of an entry payload without copying its bytes.
+ ///
+ /// The returned owner is the immutable archive buffer. Consumers may retain
+ /// the view after dropping this document.
+ ///
+ /// # Errors
+ ///
+ /// Returns [`NresError::EntryIdOutOfRange`] when `id` is not present in
+ /// this document.
+ pub fn payload_view(&self, id: EntryId) -> Result<(Arc<[u8]>, Range<usize>), NresError> {
+ let entry = self.entry(id).ok_or_else(|| NresError::EntryIdOutOfRange {
+ id: id.0,
+ entry_count: saturating_u32_len(self.entries.len()),
+ })?;
+ Ok((Arc::clone(&self.bytes), entry.data_range.clone()))
+ }
+
/// Encodes the document according to the selected write profile.
#[must_use]
pub fn encode(&self, profile: WriteProfile) -> Vec<u8> {
@@ -1213,6 +1230,8 @@ mod tests {
assert_eq!(entry.data_range().end, HEADER_LEN + 1);
assert_eq!(doc.header().directory_offset % 8, 0);
assert_eq!(doc.payload(EntryId(0)).expect("payload"), b"x");
+ let (owner, range) = doc.payload_view(EntryId(0)).expect("payload view");
+ assert_eq!(&owner[range], b"x");
}
#[test]