2024-12-02 08:51:59 +00:00
|
|
|
use std::{convert::AsRef, fmt::Debug, sync::Arc};
|
2024-08-08 17:18:30 +00:00
|
|
|
|
2025-02-23 01:17:45 -05:00
|
|
|
use conduwuit::{Result, implement};
|
|
|
|
|
use futures::{Stream, StreamExt, TryStreamExt, future};
|
2024-08-08 17:18:30 +00:00
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
|
2025-02-23 01:17:45 -05:00
|
|
|
use crate::keyval::{KeyVal, result_deserialize, serialize_key};
|
2024-08-08 17:18:30 +00:00
|
|
|
|
|
|
|
|
/// Iterate key-value entries in the map where the key matches a prefix.
|
|
|
|
|
///
|
|
|
|
|
/// - Query is serialized
|
|
|
|
|
/// - Result is deserialized
|
|
|
|
|
#[implement(super::Map)]
|
2024-12-02 08:51:59 +00:00
|
|
|
pub fn stream_prefix<'a, K, V, P>(
|
2024-12-15 00:05:47 -05:00
|
|
|
self: &'a Arc<Self>,
|
|
|
|
|
prefix: &P,
|
2025-08-28 20:35:27 +01:00
|
|
|
) -> impl Stream<Item = Result<KeyVal<'a, K, V>>> + Send + use<'a, K, V, P>
|
2024-08-08 17:18:30 +00:00
|
|
|
where
|
|
|
|
|
P: Serialize + ?Sized + Debug,
|
|
|
|
|
K: Deserialize<'a> + Send,
|
|
|
|
|
V: Deserialize<'a> + Send,
|
|
|
|
|
{
|
2024-10-09 05:08:22 +00:00
|
|
|
self.stream_prefix_raw(prefix)
|
2024-11-28 05:54:34 +00:00
|
|
|
.map(result_deserialize::<K, V>)
|
2024-08-08 17:18:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Iterate key-value entries in the map where the key matches a prefix.
|
|
|
|
|
///
|
|
|
|
|
/// - Query is serialized
|
|
|
|
|
/// - Result is raw
|
|
|
|
|
#[implement(super::Map)]
|
2024-11-25 06:26:34 +00:00
|
|
|
#[tracing::instrument(skip(self), level = "trace")]
|
2024-12-15 00:05:47 -05:00
|
|
|
pub fn stream_prefix_raw<P>(
|
|
|
|
|
self: &Arc<Self>,
|
|
|
|
|
prefix: &P,
|
2025-02-23 01:17:45 -05:00
|
|
|
) -> impl Stream<Item = Result<KeyVal<'_>>> + Send + use<'_, P>
|
2024-08-08 17:18:30 +00:00
|
|
|
where
|
|
|
|
|
P: Serialize + ?Sized + Debug,
|
|
|
|
|
{
|
2024-11-28 05:54:34 +00:00
|
|
|
let key = serialize_key(prefix).expect("failed to serialize query key");
|
2024-08-08 17:18:30 +00:00
|
|
|
self.raw_stream_from(&key)
|
|
|
|
|
.try_take_while(move |(k, _): &KeyVal<'_>| future::ok(k.starts_with(&key)))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Iterate key-value entries in the map where the key matches a prefix.
|
|
|
|
|
///
|
|
|
|
|
/// - Query is raw
|
|
|
|
|
/// - Result is deserialized
|
|
|
|
|
#[implement(super::Map)]
|
2024-10-09 05:08:22 +00:00
|
|
|
pub fn stream_raw_prefix<'a, K, V, P>(
|
2024-12-15 00:05:47 -05:00
|
|
|
self: &'a Arc<Self>,
|
|
|
|
|
prefix: &'a P,
|
2025-08-28 20:35:27 +01:00
|
|
|
) -> impl Stream<Item = Result<KeyVal<'a, K, V>>> + Send + 'a
|
2024-08-08 17:18:30 +00:00
|
|
|
where
|
|
|
|
|
P: AsRef<[u8]> + ?Sized + Debug + Sync + 'a,
|
|
|
|
|
K: Deserialize<'a> + Send + 'a,
|
|
|
|
|
V: Deserialize<'a> + Send + 'a,
|
|
|
|
|
{
|
|
|
|
|
self.raw_stream_prefix(prefix)
|
2024-11-28 05:54:34 +00:00
|
|
|
.map(result_deserialize::<K, V>)
|
2024-08-08 17:18:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Iterate key-value entries in the map where the key matches a prefix.
|
|
|
|
|
///
|
|
|
|
|
/// - Query is raw
|
|
|
|
|
/// - Result is raw
|
|
|
|
|
#[implement(super::Map)]
|
2024-12-02 08:51:59 +00:00
|
|
|
pub fn raw_stream_prefix<'a, P>(
|
2024-12-15 00:05:47 -05:00
|
|
|
self: &'a Arc<Self>,
|
|
|
|
|
prefix: &'a P,
|
2025-08-28 20:35:27 +01:00
|
|
|
) -> impl Stream<Item = Result<KeyVal<'a>>> + Send + 'a
|
2024-08-08 17:18:30 +00:00
|
|
|
where
|
|
|
|
|
P: AsRef<[u8]> + ?Sized + Debug + Sync + 'a,
|
|
|
|
|
{
|
|
|
|
|
self.raw_stream_from(prefix)
|
|
|
|
|
.try_take_while(|(k, _): &KeyVal<'_>| future::ok(k.starts_with(prefix.as_ref())))
|
|
|
|
|
}
|