ci: lint all targets, run interop suites for real, compile benches
- clippy --all-targets plus a clawhdf5-format feature matrix (parallel, lz4, zstd, pcodec, fast-checksum); fix the accumulated lint backlog in test, bench and feature-gated code (no behaviour changes). - Install python3 + h5py/numpy/netCDF4/xarray in the CI container and set CLAWHDF5_REQUIRE_INTEROP=1, which makes a missing interop dependency a test failure. Every h5py/netCDF4 interop test used to skip silently in CI. Run the #[ignore]d writer_h5py_tests suite explicitly. - cargo bench --no-run so benches can't rot; fix bench.rs and memory_bench.rs, which no longer compiled against the current strategy/consolidation APIs. - Optional fuzz smoke run via CLAWHDF5_FUZZ_SECONDS. - CHANGELOG and docs/known-issues.md updated. Co-Authored-By: Claude Fable 5.1 <[email protected]>
This commit is contained in:
co-authored by
Claude Fable 5.1
parent
706189c3ef
commit
bbe1baa208
@@ -748,6 +748,69 @@ impl MemoryBackend for ClawhdfBackend {
|
||||
}
|
||||
}
|
||||
|
||||
// ─────────────────────────────────────────────────────────────────────────────
|
||||
// Ephemeral tier methods on ClawhdfBackend
|
||||
// ─────────────────────────────────────────────────────────────────────────────
|
||||
|
||||
impl ClawhdfBackend {
|
||||
/// Enable the ephemeral (in-memory only) working memory tier.
|
||||
pub fn enable_ephemeral(&mut self, config: crate::ephemeral::EphemeralConfig) {
|
||||
self.memory.enable_ephemeral(config);
|
||||
}
|
||||
|
||||
/// Store a text value in ephemeral memory.
|
||||
///
|
||||
/// Returns an error string if the ephemeral tier has not been enabled.
|
||||
pub fn ephemeral_set(
|
||||
&mut self,
|
||||
key: &str,
|
||||
value: &str,
|
||||
ttl_secs: Option<f64>,
|
||||
) -> Result<(), String> {
|
||||
match self.memory.ephemeral_mut() {
|
||||
Some(s) => {
|
||||
s.set_text(key, value, ttl_secs);
|
||||
Ok(())
|
||||
}
|
||||
None => Err("ephemeral tier not enabled".to_string()),
|
||||
}
|
||||
}
|
||||
|
||||
/// Retrieve a text value from ephemeral memory.
|
||||
///
|
||||
/// Returns `None` if the tier is disabled, the key is absent, or the
|
||||
/// entry has expired.
|
||||
pub fn ephemeral_get(&mut self, key: &str) -> Option<String> {
|
||||
self.memory
|
||||
.ephemeral_mut()?
|
||||
.get_text(key)
|
||||
.map(|s| s.to_string())
|
||||
}
|
||||
|
||||
/// Delete a key from ephemeral memory.
|
||||
///
|
||||
/// Returns `true` if the key existed and was removed.
|
||||
pub fn ephemeral_delete(&mut self, key: &str) -> bool {
|
||||
self.memory.ephemeral_mut().is_some_and(|s| s.delete(key))
|
||||
}
|
||||
|
||||
/// Return a snapshot of ephemeral tier statistics, or `None` if the tier
|
||||
/// is not enabled.
|
||||
pub fn ephemeral_stats(&self) -> Option<crate::ephemeral::EphemeralStats> {
|
||||
self.memory.ephemeral().map(|s| s.stats())
|
||||
}
|
||||
|
||||
/// Promote frequently-accessed ephemeral entries to persistent HDF5 storage.
|
||||
///
|
||||
/// Entries with `access_count >= min_access_count` are moved from the
|
||||
/// ephemeral store into the persistent cache. Returns the count promoted.
|
||||
pub fn promote_ephemeral(&mut self, min_access_count: u32) -> Result<usize, String> {
|
||||
self.memory
|
||||
.promote_ephemeral(min_access_count)
|
||||
.map_err(|e| e.to_string())
|
||||
}
|
||||
}
|
||||
|
||||
// ─────────────────────────────────────────────────────────────────────────────
|
||||
// Tests
|
||||
// ─────────────────────────────────────────────────────────────────────────────
|
||||
@@ -1333,66 +1396,3 @@ mod tests {
|
||||
assert!(out.starts_with("# Title"));
|
||||
}
|
||||
}
|
||||
|
||||
// ─────────────────────────────────────────────────────────────────────────────
|
||||
// Ephemeral tier methods on ClawhdfBackend
|
||||
// ─────────────────────────────────────────────────────────────────────────────
|
||||
|
||||
impl ClawhdfBackend {
|
||||
/// Enable the ephemeral (in-memory only) working memory tier.
|
||||
pub fn enable_ephemeral(&mut self, config: crate::ephemeral::EphemeralConfig) {
|
||||
self.memory.enable_ephemeral(config);
|
||||
}
|
||||
|
||||
/// Store a text value in ephemeral memory.
|
||||
///
|
||||
/// Returns an error string if the ephemeral tier has not been enabled.
|
||||
pub fn ephemeral_set(
|
||||
&mut self,
|
||||
key: &str,
|
||||
value: &str,
|
||||
ttl_secs: Option<f64>,
|
||||
) -> Result<(), String> {
|
||||
match self.memory.ephemeral_mut() {
|
||||
Some(s) => {
|
||||
s.set_text(key, value, ttl_secs);
|
||||
Ok(())
|
||||
}
|
||||
None => Err("ephemeral tier not enabled".to_string()),
|
||||
}
|
||||
}
|
||||
|
||||
/// Retrieve a text value from ephemeral memory.
|
||||
///
|
||||
/// Returns `None` if the tier is disabled, the key is absent, or the
|
||||
/// entry has expired.
|
||||
pub fn ephemeral_get(&mut self, key: &str) -> Option<String> {
|
||||
self.memory
|
||||
.ephemeral_mut()?
|
||||
.get_text(key)
|
||||
.map(|s| s.to_string())
|
||||
}
|
||||
|
||||
/// Delete a key from ephemeral memory.
|
||||
///
|
||||
/// Returns `true` if the key existed and was removed.
|
||||
pub fn ephemeral_delete(&mut self, key: &str) -> bool {
|
||||
self.memory.ephemeral_mut().is_some_and(|s| s.delete(key))
|
||||
}
|
||||
|
||||
/// Return a snapshot of ephemeral tier statistics, or `None` if the tier
|
||||
/// is not enabled.
|
||||
pub fn ephemeral_stats(&self) -> Option<crate::ephemeral::EphemeralStats> {
|
||||
self.memory.ephemeral().map(|s| s.stats())
|
||||
}
|
||||
|
||||
/// Promote frequently-accessed ephemeral entries to persistent HDF5 storage.
|
||||
///
|
||||
/// Entries with `access_count >= min_access_count` are moved from the
|
||||
/// ephemeral store into the persistent cache. Returns the count promoted.
|
||||
pub fn promote_ephemeral(&mut self, min_access_count: u32) -> Result<usize, String> {
|
||||
self.memory
|
||||
.promote_ephemeral(min_access_count)
|
||||
.map_err(|e| e.to_string())
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user