linera_views/views/set_view.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
// Copyright (c) Zefchain Labs, Inc.
// SPDX-License-Identifier: Apache-2.0
#[cfg(with_metrics)]
use std::sync::LazyLock;
use std::{borrow::Borrow, collections::BTreeMap, marker::PhantomData, mem};
use async_trait::async_trait;
use serde::{de::DeserializeOwned, Serialize};
#[cfg(with_metrics)]
use {
linera_base::prometheus_util::{
exponential_bucket_latencies, register_histogram_vec, MeasureLatency,
},
prometheus::HistogramVec,
};
use crate::{
batch::Batch,
common::{CustomSerialize, HasherOutput, Update},
context::Context,
hashable_wrapper::WrappedHashableContainerView,
store::KeyIterable,
views::{ClonableView, HashableView, Hasher, View, ViewError},
};
#[cfg(with_metrics)]
/// The runtime of hash computation
static SET_VIEW_HASH_RUNTIME: LazyLock<HistogramVec> = LazyLock::new(|| {
register_histogram_vec(
"set_view_hash_runtime",
"SetView hash runtime",
&[],
exponential_bucket_latencies(5.0),
)
});
/// A [`View`] that supports inserting and removing values indexed by a key.
#[derive(Debug)]
pub struct ByteSetView<C> {
context: C,
delete_storage_first: bool,
updates: BTreeMap<Vec<u8>, Update<()>>,
}
#[async_trait]
impl<C> View<C> for ByteSetView<C>
where
C: Context + Send + Sync,
ViewError: From<C::Error>,
{
const NUM_INIT_KEYS: usize = 0;
fn context(&self) -> &C {
&self.context
}
fn pre_load(_context: &C) -> Result<Vec<Vec<u8>>, ViewError> {
Ok(Vec::new())
}
fn post_load(context: C, _values: &[Option<Vec<u8>>]) -> Result<Self, ViewError> {
Ok(Self {
context,
delete_storage_first: false,
updates: BTreeMap::new(),
})
}
async fn load(context: C) -> Result<Self, ViewError> {
Self::post_load(context, &[])
}
fn rollback(&mut self) {
self.delete_storage_first = false;
self.updates.clear();
}
async fn has_pending_changes(&self) -> bool {
if self.delete_storage_first {
return true;
}
!self.updates.is_empty()
}
fn flush(&mut self, batch: &mut Batch) -> Result<bool, ViewError> {
let mut delete_view = false;
if self.delete_storage_first {
delete_view = true;
batch.delete_key_prefix(self.context.base_key());
for (index, update) in mem::take(&mut self.updates) {
if let Update::Set(_) = update {
let key = self.context.base_index(&index);
batch.put_key_value_bytes(key, Vec::new());
delete_view = false;
}
}
} else {
for (index, update) in mem::take(&mut self.updates) {
let key = self.context.base_index(&index);
match update {
Update::Removed => batch.delete_key(key),
Update::Set(_) => batch.put_key_value_bytes(key, Vec::new()),
}
}
}
self.delete_storage_first = false;
Ok(delete_view)
}
fn clear(&mut self) {
self.delete_storage_first = true;
self.updates.clear();
}
}
impl<C> ClonableView<C> for ByteSetView<C>
where
C: Context + Send + Sync,
ViewError: From<C::Error>,
{
fn clone_unchecked(&mut self) -> Result<Self, ViewError> {
Ok(ByteSetView {
context: self.context.clone(),
delete_storage_first: self.delete_storage_first,
updates: self.updates.clone(),
})
}
}
impl<C> ByteSetView<C>
where
C: Context,
ViewError: From<C::Error>,
{
/// Insert a value. If already present then it has no effect.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::{context::MemoryContext, set_view::ByteSetView};
/// # use linera_views::views::View;
/// # let context = MemoryContext::new_for_testing(());
/// let mut set = ByteSetView::load(context).await.unwrap();
/// set.insert(vec![0, 1]);
/// assert_eq!(set.contains(&[0, 1]).await.unwrap(), true);
/// # })
/// ```
pub fn insert(&mut self, short_key: Vec<u8>) {
self.updates.insert(short_key, Update::Set(()));
}
/// Removes a value from the set. If absent then no effect.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::{context::MemoryContext, set_view::ByteSetView};
/// # use linera_views::views::View;
/// # let context = MemoryContext::new_for_testing(());
/// let mut set = ByteSetView::load(context).await.unwrap();
/// set.remove(vec![0, 1]);
/// assert_eq!(set.contains(&[0, 1]).await.unwrap(), false);
/// # })
/// ```
pub fn remove(&mut self, short_key: Vec<u8>) {
if self.delete_storage_first {
// Optimization: No need to mark `short_key` for deletion as we are going to remove all the keys at once.
self.updates.remove(&short_key);
} else {
self.updates.insert(short_key, Update::Removed);
}
}
/// Gets the extra data.
pub fn extra(&self) -> &C::Extra {
self.context.extra()
}
}
impl<C> ByteSetView<C>
where
C: Context,
ViewError: From<C::Error>,
{
/// Returns true if the given index exists in the set.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::{context::MemoryContext, set_view::ByteSetView};
/// # use linera_views::views::View;
/// # let context = MemoryContext::new_for_testing(());
/// let mut set = ByteSetView::load(context).await.unwrap();
/// set.insert(vec![0, 1]);
/// assert_eq!(set.contains(&[34]).await.unwrap(), false);
/// assert_eq!(set.contains(&[0, 1]).await.unwrap(), true);
/// # })
/// ```
pub async fn contains(&self, short_key: &[u8]) -> Result<bool, ViewError> {
if let Some(update) = self.updates.get(short_key) {
let value = match update {
Update::Removed => false,
Update::Set(()) => true,
};
return Ok(value);
}
if self.delete_storage_first {
return Ok(false);
}
let key = self.context.base_index(short_key);
Ok(self.context.contains_key(&key).await?)
}
}
impl<C> ByteSetView<C>
where
C: Context,
ViewError: From<C::Error>,
{
/// Returns the list of keys in the set. The order is lexicographic.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::{context::MemoryContext, set_view::ByteSetView};
/// # use linera_views::views::View;
/// # let context = MemoryContext::new_for_testing(());
/// let mut set = ByteSetView::load(context).await.unwrap();
/// set.insert(vec![0, 1]);
/// set.insert(vec![0, 2]);
/// assert_eq!(set.keys().await.unwrap(), vec![vec![0, 1], vec![0, 2]]);
/// # })
/// ```
pub async fn keys(&self) -> Result<Vec<Vec<u8>>, ViewError> {
let mut keys = Vec::new();
self.for_each_key(|key| {
keys.push(key.to_vec());
Ok(())
})
.await?;
Ok(keys)
}
/// Returns the number of entries in the set.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::{context::MemoryContext, set_view::ByteSetView};
/// # use linera_views::views::View;
/// # let context = MemoryContext::new_for_testing(());
/// let mut set = ByteSetView::load(context).await.unwrap();
/// set.insert(vec![0, 1]);
/// set.insert(vec![0, 2]);
/// assert_eq!(set.keys().await.unwrap(), vec![vec![0, 1], vec![0, 2]]);
/// # })
/// ```
pub async fn count(&self) -> Result<usize, ViewError> {
let mut count = 0;
self.for_each_key(|_key| {
count += 1;
Ok(())
})
.await?;
Ok(count)
}
/// Applies a function f on each index (aka key). Keys are visited in a
/// lexicographic order. If the function returns false, then the loop ends
/// prematurely.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::{context::MemoryContext, set_view::ByteSetView};
/// # use linera_views::views::View;
/// # let context = MemoryContext::new_for_testing(());
/// let mut set = ByteSetView::load(context).await.unwrap();
/// set.insert(vec![0, 1]);
/// set.insert(vec![0, 2]);
/// set.insert(vec![3]);
/// let mut count = 0;
/// set.for_each_key_while(|_key| {
/// count += 1;
/// Ok(count < 2)
/// })
/// .await
/// .unwrap();
/// assert_eq!(count, 2);
/// # })
/// ```
pub async fn for_each_key_while<F>(&self, mut f: F) -> Result<(), ViewError>
where
F: FnMut(&[u8]) -> Result<bool, ViewError> + Send,
{
let mut updates = self.updates.iter();
let mut update = updates.next();
if !self.delete_storage_first {
let base = self.context.base_key();
for index in self.context.find_keys_by_prefix(&base).await?.iterator() {
let index = index?;
loop {
match update {
Some((key, value)) if key.as_slice() <= index => {
if let Update::Set(_) = value {
if !f(key)? {
return Ok(());
}
}
update = updates.next();
if key == index {
break;
}
}
_ => {
if !f(index)? {
return Ok(());
}
break;
}
}
}
}
}
while let Some((key, value)) = update {
if let Update::Set(_) = value {
if !f(key)? {
return Ok(());
}
}
update = updates.next();
}
Ok(())
}
/// Applies a function f on each serialized index (aka key). Keys are visited in a
/// lexicographic order.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::{context::MemoryContext, set_view::ByteSetView};
/// # use linera_views::views::View;
/// # let context = MemoryContext::new_for_testing(());
/// let mut set = ByteSetView::load(context).await.unwrap();
/// set.insert(vec![0, 1]);
/// set.insert(vec![0, 2]);
/// set.insert(vec![3]);
/// let mut count = 0;
/// set.for_each_key(|_key| {
/// count += 1;
/// Ok(())
/// })
/// .await
/// .unwrap();
/// assert_eq!(count, 3);
/// # })
/// ```
pub async fn for_each_key<F>(&self, mut f: F) -> Result<(), ViewError>
where
F: FnMut(&[u8]) -> Result<(), ViewError> + Send,
{
self.for_each_key_while(|key| {
f(key)?;
Ok(true)
})
.await
}
}
#[async_trait]
impl<C> HashableView<C> for ByteSetView<C>
where
C: Context + Send + Sync,
ViewError: From<C::Error>,
{
type Hasher = sha3::Sha3_256;
async fn hash_mut(&mut self) -> Result<<Self::Hasher as Hasher>::Output, ViewError> {
self.hash().await
}
async fn hash(&self) -> Result<<Self::Hasher as Hasher>::Output, ViewError> {
#[cfg(with_metrics)]
let _hash_latency = SET_VIEW_HASH_RUNTIME.measure_latency();
let mut hasher = sha3::Sha3_256::default();
let mut count = 0u32;
self.for_each_key(|key| {
count += 1;
hasher.update_with_bytes(key)?;
Ok(())
})
.await?;
hasher.update_with_bcs_bytes(&count)?;
Ok(hasher.finalize())
}
}
/// A [`View`] implementing the set functionality with the index `I` being any serializable type.
#[derive(Debug)]
pub struct SetView<C, I> {
set: ByteSetView<C>,
_phantom: PhantomData<I>,
}
#[async_trait]
impl<C, I> View<C> for SetView<C, I>
where
C: Context + Send + Sync,
ViewError: From<C::Error>,
I: Send + Sync + Serialize,
{
const NUM_INIT_KEYS: usize = ByteSetView::<C>::NUM_INIT_KEYS;
fn context(&self) -> &C {
self.set.context()
}
fn pre_load(context: &C) -> Result<Vec<Vec<u8>>, ViewError> {
ByteSetView::<C>::pre_load(context)
}
fn post_load(context: C, values: &[Option<Vec<u8>>]) -> Result<Self, ViewError> {
let set = ByteSetView::post_load(context, values)?;
Ok(Self {
set,
_phantom: PhantomData,
})
}
async fn load(context: C) -> Result<Self, ViewError> {
Self::post_load(context, &[])
}
fn rollback(&mut self) {
self.set.rollback()
}
async fn has_pending_changes(&self) -> bool {
self.set.has_pending_changes().await
}
fn flush(&mut self, batch: &mut Batch) -> Result<bool, ViewError> {
self.set.flush(batch)
}
fn clear(&mut self) {
self.set.clear()
}
}
impl<C, I> ClonableView<C> for SetView<C, I>
where
C: Context + Send + Sync,
ViewError: From<C::Error>,
I: Send + Sync + Serialize,
{
fn clone_unchecked(&mut self) -> Result<Self, ViewError> {
Ok(SetView {
set: self.set.clone_unchecked()?,
_phantom: PhantomData,
})
}
}
impl<C, I> SetView<C, I>
where
C: Context,
ViewError: From<C::Error>,
I: Serialize,
{
/// Inserts a value. If already present then no effect.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::MemoryContext;
/// # use linera_views::set_view::SetView;
/// # use linera_views::views::View;
/// # let context = MemoryContext::new_for_testing(());
/// let mut set = SetView::<_, u32>::load(context).await.unwrap();
/// set.insert(&(34 as u32));
/// assert_eq!(set.indices().await.unwrap().len(), 1);
/// # })
/// ```
pub fn insert<Q>(&mut self, index: &Q) -> Result<(), ViewError>
where
I: Borrow<Q>,
Q: Serialize + ?Sized,
{
let short_key = C::derive_short_key(index)?;
self.set.insert(short_key);
Ok(())
}
/// Removes a value. If absent then nothing is done.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::{context::MemoryContext, set_view::SetView};
/// # use linera_views::views::View;
/// # let context = MemoryContext::new_for_testing(());
/// let mut set = SetView::<_, u32>::load(context).await.unwrap();
/// set.remove(&(34 as u32));
/// assert_eq!(set.indices().await.unwrap().len(), 0);
/// # })
/// ```
pub fn remove<Q>(&mut self, index: &Q) -> Result<(), ViewError>
where
I: Borrow<Q>,
Q: Serialize + ?Sized,
{
let short_key = C::derive_short_key(index)?;
self.set.remove(short_key);
Ok(())
}
/// Obtains the extra data.
pub fn extra(&self) -> &C::Extra {
self.set.extra()
}
}
impl<C, I> SetView<C, I>
where
C: Context,
ViewError: From<C::Error>,
I: Serialize,
{
/// Returns true if the given index exists in the set.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::{context::MemoryContext, set_view::SetView};
/// # use linera_views::views::View;
/// # let context = MemoryContext::new_for_testing(());
/// let mut set: SetView<_, u32> = SetView::load(context).await.unwrap();
/// set.insert(&(34 as u32));
/// assert_eq!(set.contains(&(34 as u32)).await.unwrap(), true);
/// assert_eq!(set.contains(&(45 as u32)).await.unwrap(), false);
/// # })
/// ```
pub async fn contains<Q>(&self, index: &Q) -> Result<bool, ViewError>
where
I: Borrow<Q>,
Q: Serialize + ?Sized,
{
let short_key = C::derive_short_key(index)?;
self.set.contains(&short_key).await
}
}
impl<C, I> SetView<C, I>
where
C: Context,
ViewError: From<C::Error>,
I: Sync + Clone + Send + Serialize + DeserializeOwned,
{
/// Returns the list of indices in the set. The order is determined by serialization.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::{context::MemoryContext, set_view::SetView};
/// # use linera_views::views::View;
/// # let context = MemoryContext::new_for_testing(());
/// let mut set: SetView<_, u32> = SetView::load(context).await.unwrap();
/// set.insert(&(34 as u32));
/// assert_eq!(set.indices().await.unwrap(), vec![34 as u32]);
/// # })
/// ```
pub async fn indices(&self) -> Result<Vec<I>, ViewError> {
let mut indices = Vec::new();
self.for_each_index(|index| {
indices.push(index);
Ok(())
})
.await?;
Ok(indices)
}
/// Returns the number of entries in the set.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::{context::MemoryContext, set_view::SetView};
/// # use linera_views::views::View;
/// # let context = MemoryContext::new_for_testing(());
/// let mut set: SetView<_, u32> = SetView::load(context).await.unwrap();
/// set.insert(&(34 as u32));
/// assert_eq!(set.count().await.unwrap(), 1);
/// # })
/// ```
pub async fn count(&self) -> Result<usize, ViewError> {
self.set.count().await
}
/// Applies a function f on each index. Indices are visited in an order
/// determined by the serialization. If the function returns false, then the
/// loop ends prematurely.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::MemoryContext;
/// # use linera_views::set_view::SetView;
/// # use linera_views::views::View;
/// # let context = MemoryContext::new_for_testing(());
/// let mut set = SetView::<_, u32>::load(context).await.unwrap();
/// set.insert(&(34 as u32));
/// set.insert(&(37 as u32));
/// set.insert(&(42 as u32));
/// let mut count = 0;
/// set.for_each_index_while(|_key| {
/// count += 1;
/// Ok(count < 2)
/// })
/// .await
/// .unwrap();
/// assert_eq!(count, 2);
/// # })
/// ```
pub async fn for_each_index_while<F>(&self, mut f: F) -> Result<(), ViewError>
where
F: FnMut(I) -> Result<bool, ViewError> + Send,
{
self.set
.for_each_key_while(|key| {
let index = C::deserialize_value(key)?;
f(index)
})
.await?;
Ok(())
}
/// Applies a function f on each index. Indices are visited in an order
/// determined by the serialization.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::MemoryContext;
/// # use linera_views::set_view::SetView;
/// # use linera_views::views::View;
/// # let context = MemoryContext::new_for_testing(());
/// let mut set = SetView::<_, u32>::load(context).await.unwrap();
/// set.insert(&(34 as u32));
/// set.insert(&(37 as u32));
/// set.insert(&(42 as u32));
/// let mut count = 0;
/// set.for_each_index(|_key| {
/// count += 1;
/// Ok(())
/// })
/// .await
/// .unwrap();
/// assert_eq!(count, 3);
/// # })
/// ```
pub async fn for_each_index<F>(&self, mut f: F) -> Result<(), ViewError>
where
F: FnMut(I) -> Result<(), ViewError> + Send,
{
self.set
.for_each_key(|key| {
let index = C::deserialize_value(key)?;
f(index)
})
.await?;
Ok(())
}
}
#[async_trait]
impl<C, I> HashableView<C> for SetView<C, I>
where
C: Context + Send + Sync,
ViewError: From<C::Error>,
I: Clone + Send + Sync + Serialize + DeserializeOwned,
{
type Hasher = sha3::Sha3_256;
async fn hash_mut(&mut self) -> Result<<Self::Hasher as Hasher>::Output, ViewError> {
self.set.hash_mut().await
}
async fn hash(&self) -> Result<<Self::Hasher as Hasher>::Output, ViewError> {
self.set.hash().await
}
}
/// A [`View`] implementing the set functionality with the index `I` being a type with a custom
/// serialization format.
#[derive(Debug)]
pub struct CustomSetView<C, I> {
set: ByteSetView<C>,
_phantom: PhantomData<I>,
}
#[async_trait]
impl<C, I> View<C> for CustomSetView<C, I>
where
C: Context + Send + Sync,
ViewError: From<C::Error>,
I: Send + Sync + CustomSerialize,
{
const NUM_INIT_KEYS: usize = ByteSetView::<C>::NUM_INIT_KEYS;
fn context(&self) -> &C {
self.set.context()
}
fn pre_load(context: &C) -> Result<Vec<Vec<u8>>, ViewError> {
ByteSetView::pre_load(context)
}
fn post_load(context: C, values: &[Option<Vec<u8>>]) -> Result<Self, ViewError> {
let set = ByteSetView::post_load(context, values)?;
Ok(Self {
set,
_phantom: PhantomData,
})
}
async fn load(context: C) -> Result<Self, ViewError> {
Self::post_load(context, &[])
}
fn rollback(&mut self) {
self.set.rollback()
}
async fn has_pending_changes(&self) -> bool {
self.set.has_pending_changes().await
}
fn flush(&mut self, batch: &mut Batch) -> Result<bool, ViewError> {
self.set.flush(batch)
}
fn clear(&mut self) {
self.set.clear()
}
}
impl<C, I> ClonableView<C> for CustomSetView<C, I>
where
C: Context + Send + Sync,
ViewError: From<C::Error>,
I: Send + Sync + CustomSerialize,
{
fn clone_unchecked(&mut self) -> Result<Self, ViewError> {
Ok(CustomSetView {
set: self.set.clone_unchecked()?,
_phantom: PhantomData,
})
}
}
impl<C, I> CustomSetView<C, I>
where
C: Context,
ViewError: From<C::Error>,
I: CustomSerialize,
{
/// Inserts a value. If present then it has no effect.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::MemoryContext;
/// # use linera_views::set_view::CustomSetView;
/// # use linera_views::views::View;
/// # let context = MemoryContext::new_for_testing(());
/// let mut set = CustomSetView::<_, u128>::load(context).await.unwrap();
/// set.insert(&(34 as u128));
/// assert_eq!(set.indices().await.unwrap().len(), 1);
/// # })
/// ```
pub fn insert<Q>(&mut self, index: &Q) -> Result<(), ViewError>
where
I: Borrow<Q>,
Q: CustomSerialize,
{
let short_key = index.to_custom_bytes()?;
self.set.insert(short_key);
Ok(())
}
/// Removes a value. If absent then nothing is done.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::MemoryContext;
/// # use linera_views::set_view::CustomSetView;
/// # use linera_views::views::View;
/// # let context = MemoryContext::new_for_testing(());
/// let mut set = CustomSetView::<_, u128>::load(context).await.unwrap();
/// set.remove(&(34 as u128));
/// assert_eq!(set.indices().await.unwrap().len(), 0);
/// # })
/// ```
pub fn remove<Q>(&mut self, index: &Q) -> Result<(), ViewError>
where
I: Borrow<Q>,
Q: CustomSerialize,
{
let short_key = index.to_custom_bytes()?;
self.set.remove(short_key);
Ok(())
}
/// Obtains the extra data.
pub fn extra(&self) -> &C::Extra {
self.set.extra()
}
}
impl<C, I> CustomSetView<C, I>
where
C: Context,
ViewError: From<C::Error>,
I: CustomSerialize,
{
/// Returns true if the given index exists in the set.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::MemoryContext;
/// # use linera_views::set_view::CustomSetView;
/// # use linera_views::views::View;
/// # let context = MemoryContext::new_for_testing(());
/// let mut set = CustomSetView::<_, u128>::load(context).await.unwrap();
/// set.insert(&(34 as u128));
/// assert_eq!(set.contains(&(34 as u128)).await.unwrap(), true);
/// assert_eq!(set.contains(&(37 as u128)).await.unwrap(), false);
/// # })
/// ```
pub async fn contains<Q>(&self, index: &Q) -> Result<bool, ViewError>
where
I: Borrow<Q>,
Q: CustomSerialize,
{
let short_key = index.to_custom_bytes()?;
self.set.contains(&short_key).await
}
}
impl<C, I> CustomSetView<C, I>
where
C: Context,
ViewError: From<C::Error>,
I: Sync + Clone + Send + CustomSerialize,
{
/// Returns the list of indices in the set. The order is determined by the custom
/// serialization.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::MemoryContext;
/// # use linera_views::set_view::CustomSetView;
/// # use linera_views::views::View;
/// # let context = MemoryContext::new_for_testing(());
/// let mut set = CustomSetView::<_, u128>::load(context).await.unwrap();
/// set.insert(&(34 as u128));
/// set.insert(&(37 as u128));
/// assert_eq!(set.indices().await.unwrap(), vec![34 as u128, 37 as u128]);
/// # })
/// ```
pub async fn indices(&self) -> Result<Vec<I>, ViewError> {
let mut indices = Vec::new();
self.for_each_index(|index| {
indices.push(index);
Ok(())
})
.await?;
Ok(indices)
}
/// Returns the number of entries of the set.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::MemoryContext;
/// # use linera_views::set_view::CustomSetView;
/// # use linera_views::views::View;
/// # let context = MemoryContext::new_for_testing(());
/// let mut set = CustomSetView::<_, u128>::load(context).await.unwrap();
/// set.insert(&(34 as u128));
/// set.insert(&(37 as u128));
/// assert_eq!(set.count().await.unwrap(), 2);
/// # })
/// ```
pub async fn count(&self) -> Result<usize, ViewError> {
self.set.count().await
}
/// Applies a function f on each index. Indices are visited in an order
/// determined by the custom serialization. If the function does return
/// false, then the loop prematurely ends.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::MemoryContext;
/// # use linera_views::set_view::CustomSetView;
/// # use linera_views::views::View;
/// # let context = MemoryContext::new_for_testing(());
/// let mut set = CustomSetView::<_, u128>::load(context).await.unwrap();
/// set.insert(&(34 as u128));
/// set.insert(&(37 as u128));
/// set.insert(&(42 as u128));
/// let mut count = 0;
/// set.for_each_index_while(|_key| {
/// count += 1;
/// Ok(count < 5)
/// })
/// .await
/// .unwrap();
/// assert_eq!(count, 3);
/// # })
/// ```
pub async fn for_each_index_while<F>(&self, mut f: F) -> Result<(), ViewError>
where
F: FnMut(I) -> Result<bool, ViewError> + Send,
{
self.set
.for_each_key_while(|key| {
let index = I::from_custom_bytes(key)?;
f(index)
})
.await?;
Ok(())
}
/// Applies a function f on each index. Indices are visited in an order
/// determined by the custom serialization.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::MemoryContext;
/// # use linera_views::set_view::CustomSetView;
/// # use linera_views::views::View;
/// # let context = MemoryContext::new_for_testing(());
/// let mut set = CustomSetView::<_, u128>::load(context).await.unwrap();
/// set.insert(&(34 as u128));
/// set.insert(&(37 as u128));
/// set.insert(&(42 as u128));
/// let mut count = 0;
/// set.for_each_index(|_key| {
/// count += 1;
/// Ok(())
/// })
/// .await
/// .unwrap();
/// assert_eq!(count, 3);
/// # })
/// ```
pub async fn for_each_index<F>(&self, mut f: F) -> Result<(), ViewError>
where
F: FnMut(I) -> Result<(), ViewError> + Send,
{
self.set
.for_each_key(|key| {
let index = I::from_custom_bytes(key)?;
f(index)
})
.await?;
Ok(())
}
}
#[async_trait]
impl<C, I> HashableView<C> for CustomSetView<C, I>
where
C: Context + Send + Sync,
ViewError: From<C::Error>,
I: Clone + Send + Sync + CustomSerialize,
{
type Hasher = sha3::Sha3_256;
async fn hash_mut(&mut self) -> Result<<Self::Hasher as Hasher>::Output, ViewError> {
self.set.hash_mut().await
}
async fn hash(&self) -> Result<<Self::Hasher as Hasher>::Output, ViewError> {
self.set.hash().await
}
}
/// Type wrapping `ByteSetView` while memoizing the hash.
pub type HashedByteSetView<C> = WrappedHashableContainerView<C, ByteSetView<C>, HasherOutput>;
/// Type wrapping `SetView` while memoizing the hash.
pub type HashedSetView<C, I> = WrappedHashableContainerView<C, SetView<C, I>, HasherOutput>;
/// Type wrapping `CustomSetView` while memoizing the hash.
pub type HashedCustomSetView<C, I> =
WrappedHashableContainerView<C, CustomSetView<C, I>, HasherOutput>;
mod graphql {
use std::borrow::Cow;
use super::{CustomSetView, SetView};
use crate::context::Context;
impl<C: Context, I: async_graphql::OutputType> async_graphql::OutputType for SetView<C, I>
where
C: Send + Sync,
I: serde::ser::Serialize + serde::de::DeserializeOwned + Clone + Send + Sync,
{
fn type_name() -> Cow<'static, str> {
format!("[{}]", I::qualified_type_name()).into()
}
fn qualified_type_name() -> String {
format!("[{}]!", I::qualified_type_name())
}
fn create_type_info(registry: &mut async_graphql::registry::Registry) -> String {
I::create_type_info(registry);
Self::qualified_type_name()
}
async fn resolve(
&self,
ctx: &async_graphql::ContextSelectionSet<'_>,
field: &async_graphql::Positioned<async_graphql::parser::types::Field>,
) -> async_graphql::ServerResult<async_graphql::Value> {
let indices = self
.indices()
.await
.map_err(|e| async_graphql::Error::from(e).into_server_error(ctx.item.pos))?;
let indices_len = indices.len();
async_graphql::resolver_utils::resolve_list(ctx, field, indices, Some(indices_len))
.await
}
}
impl<C: Context, I: async_graphql::OutputType> async_graphql::OutputType for CustomSetView<C, I>
where
C: Send + Sync,
I: crate::common::CustomSerialize + Clone + Send + Sync,
{
fn type_name() -> Cow<'static, str> {
format!("[{}]", I::qualified_type_name()).into()
}
fn qualified_type_name() -> String {
format!("[{}]!", I::qualified_type_name())
}
fn create_type_info(registry: &mut async_graphql::registry::Registry) -> String {
I::create_type_info(registry);
Self::qualified_type_name()
}
async fn resolve(
&self,
ctx: &async_graphql::ContextSelectionSet<'_>,
field: &async_graphql::Positioned<async_graphql::parser::types::Field>,
) -> async_graphql::ServerResult<async_graphql::Value> {
let indices = self
.indices()
.await
.map_err(|e| async_graphql::Error::from(e).into_server_error(ctx.item.pos))?;
let indices_len = indices.len();
async_graphql::resolver_utils::resolve_list(ctx, field, indices, Some(indices_len))
.await
}
}
}