forked from hyperledger-iroha/iroha
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feature] hyperledger-iroha#3468: implement server-side cursor
Signed-off-by: Marin Veršić <marin.versic101@gmail.com>
- Loading branch information
Showing
78 changed files
with
1,816 additions
and
1,361 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
use std::num::NonZeroUsize; | ||
|
||
use iroha_data_model::query::ForwardCursor; | ||
|
||
use crate::torii::{Error, Result}; | ||
|
||
pub trait Batch: IntoIterator + Sized { | ||
fn batched(self, fetch_size: NonZeroUsize) -> Batched<Self>; | ||
} | ||
|
||
impl<I: IntoIterator> Batch for I { | ||
fn batched(self, batch_size: NonZeroUsize) -> Batched<Self> { | ||
Batched { | ||
iter: self.into_iter(), | ||
batch_size, | ||
cursor: ForwardCursor::default(), | ||
} | ||
} | ||
} | ||
|
||
/// Paginated [`Iterator`]. | ||
/// Not recommended to use directly, only use in iterator chains. | ||
#[derive(Debug)] | ||
pub struct Batched<I: IntoIterator> { | ||
iter: I::IntoIter, | ||
batch_size: NonZeroUsize, | ||
cursor: ForwardCursor, | ||
} | ||
|
||
impl<I: IntoIterator + FromIterator<I::Item>> Batched<I> { | ||
pub(crate) fn next_batch(&mut self, cursor: ForwardCursor) -> Result<(I, ForwardCursor)> { | ||
if cursor != self.cursor { | ||
return Err(Error::UnknownCursor); | ||
} | ||
|
||
let mut batch_size = 0; | ||
let batch: I = self | ||
.iter | ||
.by_ref() | ||
.inspect(|_| batch_size += 1) | ||
.take(self.batch_size.get()) | ||
.collect(); | ||
|
||
self.cursor.cursor = if let Some(cursor) = self.cursor.cursor { | ||
if batch_size >= self.batch_size.get() { | ||
let batch_size = self | ||
.batch_size | ||
.get() | ||
.try_into() | ||
.expect("usize should fit in u64"); | ||
Some( | ||
cursor | ||
.checked_add(batch_size) | ||
.expect("Cursor size should never reach the platform limit"), | ||
) | ||
} else { | ||
None | ||
} | ||
} else if batch_size >= self.batch_size.get() { | ||
Some(self.batch_size.try_into().expect("usize should fit in u64")) | ||
} else { | ||
None | ||
}; | ||
|
||
Ok((batch, self.cursor)) | ||
} | ||
|
||
pub fn is_depleted(&self) -> bool { | ||
self.cursor.cursor.is_none() | ||
} | ||
} | ||
|
||
impl<I: Iterator> Iterator for Batched<I> { | ||
type Item = I::Item; | ||
|
||
fn next(&mut self) -> Option<Self::Item> { | ||
self.iter.next() | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.