119 lines
2.8 KiB
Rust
119 lines
2.8 KiB
Rust
use std::{convert::AsRef, fmt::Debug, sync::Arc};
|
|
|
|
use conduwuit::{implement, Result};
|
|
use futures::{
|
|
stream::{Stream, StreamExt},
|
|
FutureExt, TryFutureExt, TryStreamExt,
|
|
};
|
|
use rocksdb::Direction;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use crate::{
|
|
keyval::{result_deserialize, serialize_key, KeyVal},
|
|
stream,
|
|
};
|
|
|
|
/// Iterate key-value entries in the map starting from lower-bound.
|
|
///
|
|
/// - Query is serialized
|
|
/// - Result is deserialized
|
|
#[implement(super::Map)]
|
|
pub fn stream_from<'a, K, V, P>(
|
|
self: &'a Arc<Self>,
|
|
from: &P,
|
|
) -> impl Stream<Item = Result<KeyVal<'_, K, V>>> + Send
|
|
where
|
|
P: Serialize + ?Sized + Debug,
|
|
K: Deserialize<'a> + Send,
|
|
V: Deserialize<'a> + Send,
|
|
{
|
|
self.stream_from_raw(from).map(result_deserialize::<K, V>)
|
|
}
|
|
|
|
/// Iterate key-value entries in the map starting from lower-bound.
|
|
///
|
|
/// - Query is serialized
|
|
/// - Result is raw
|
|
#[implement(super::Map)]
|
|
#[tracing::instrument(skip(self), level = "trace")]
|
|
pub fn stream_from_raw<P>(
|
|
self: &Arc<Self>,
|
|
from: &P,
|
|
) -> impl Stream<Item = Result<KeyVal<'_>>> + Send
|
|
where
|
|
P: Serialize + ?Sized + Debug,
|
|
{
|
|
let key = serialize_key(from).expect("failed to serialize query key");
|
|
self.raw_stream_from(&key)
|
|
}
|
|
|
|
/// Iterate key-value entries in the map starting from lower-bound.
|
|
///
|
|
/// - Query is raw
|
|
/// - Result is deserialized
|
|
#[implement(super::Map)]
|
|
pub fn stream_raw_from<'a, K, V, P>(
|
|
self: &'a Arc<Self>,
|
|
from: &P,
|
|
) -> impl Stream<Item = Result<KeyVal<'_, K, V>>> + Send
|
|
where
|
|
P: AsRef<[u8]> + ?Sized + Debug + Sync,
|
|
K: Deserialize<'a> + Send,
|
|
V: Deserialize<'a> + Send,
|
|
{
|
|
self.raw_stream_from(from).map(result_deserialize::<K, V>)
|
|
}
|
|
|
|
/// Iterate key-value entries in the map starting from lower-bound.
|
|
///
|
|
/// - Query is raw
|
|
/// - Result is raw
|
|
#[implement(super::Map)]
|
|
#[tracing::instrument(skip(self, from), fields(%self), level = "trace")]
|
|
pub fn raw_stream_from<P>(
|
|
self: &Arc<Self>,
|
|
from: &P,
|
|
) -> impl Stream<Item = Result<KeyVal<'_>>> + Send
|
|
where
|
|
P: AsRef<[u8]> + ?Sized + Debug,
|
|
{
|
|
use crate::pool::Seek;
|
|
|
|
let opts = super::read_options_default();
|
|
let state = stream::State::new(&self.db, &self.cf, opts);
|
|
if is_cached(self, from) {
|
|
return stream::Items::<'_>::from(state.init_fwd(from.as_ref().into())).boxed();
|
|
};
|
|
|
|
let seek = Seek {
|
|
map: self.clone(),
|
|
dir: Direction::Forward,
|
|
key: Some(from.as_ref().into()),
|
|
state: crate::pool::into_send_seek(state),
|
|
res: None,
|
|
};
|
|
|
|
self.db
|
|
.pool
|
|
.execute_iter(seek)
|
|
.ok_into::<stream::Items<'_>>()
|
|
.into_stream()
|
|
.try_flatten()
|
|
.boxed()
|
|
}
|
|
|
|
#[tracing::instrument(
|
|
name = "cached",
|
|
level = "trace",
|
|
skip(map, from),
|
|
fields(%map),
|
|
)]
|
|
pub(super) fn is_cached<P>(map: &Arc<super::Map>, from: &P) -> bool
|
|
where
|
|
P: AsRef<[u8]> + ?Sized,
|
|
{
|
|
let opts = super::cache_read_options_default();
|
|
let state = stream::State::new(&map.db, &map.cf, opts).init_fwd(from.as_ref().into());
|
|
|
|
!state.is_incomplete()
|
|
}
|