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 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624
// Copyright (c) Zefchain Labs, Inc.
// SPDX-License-Identifier: Apache-2.0
#[cfg(with_metrics)]
use std::sync::LazyLock;
use std::{
borrow::Borrow,
collections::{btree_map, BTreeMap},
io::Write,
marker::PhantomData,
mem,
};
use async_lock::{RwLock, RwLockReadGuard, RwLockWriteGuard};
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, MIN_VIEW_TAG},
};
#[cfg(with_metrics)]
/// The runtime of hash computation
static COLLECTION_VIEW_HASH_RUNTIME: LazyLock<HistogramVec> = LazyLock::new(|| {
register_histogram_vec(
"collection_view_hash_runtime",
"CollectionView hash runtime",
&[],
exponential_bucket_latencies(5.0),
)
});
/// A view that supports accessing a collection of views of the same kind, indexed by a
/// `Vec<u8>`, one subview at a time.
#[derive(Debug)]
pub struct ByteCollectionView<C, W> {
context: C,
delete_storage_first: bool,
updates: RwLock<BTreeMap<Vec<u8>, Update<W>>>,
}
/// A read-only accessor for a particular subview in a [`CollectionView`].
pub struct ReadGuardedView<'a, W> {
guard: RwLockReadGuard<'a, BTreeMap<Vec<u8>, Update<W>>>,
short_key: Vec<u8>,
}
impl<'a, W> std::ops::Deref for ReadGuardedView<'a, W> {
type Target = W;
fn deref(&self) -> &W {
let Update::Set(view) = self.guard.get(&self.short_key).unwrap() else {
unreachable!();
};
view
}
}
/// We need to find new base keys in order to implement `CollectionView`.
/// We do this by appending a value to the base key.
///
/// Sub-views in a collection share a common key prefix, like in other view types. However,
/// just concatenating the shared prefix with sub-view keys makes it impossible to distinguish if a
/// given key belongs to child sub-view or a grandchild sub-view (consider for example if a
/// collection is stored inside the collection).
#[repr(u8)]
enum KeyTag {
/// Prefix for specifying an index and serves to indicate the existence of an entry in the collection.
Index = MIN_VIEW_TAG,
/// Prefix for specifying as the prefix for the sub-view.
Subview,
}
#[async_trait]
impl<C, W> View<C> for ByteCollectionView<C, W>
where
C: Context + Send + Sync,
ViewError: From<C::Error>,
W: View<C> + Send + Sync,
{
const NUM_INIT_KEYS: usize = 0;
fn context(&self) -> &C {
&self.context
}
fn pre_load(_context: &C) -> Result<Vec<Vec<u8>>, ViewError> {
Ok(vec![])
}
fn post_load(context: C, _values: &[Option<Vec<u8>>]) -> Result<Self, ViewError> {
Ok(Self {
context,
delete_storage_first: false,
updates: RwLock::new(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.get_mut().clear();
}
async fn has_pending_changes(&self) -> bool {
if self.delete_storage_first {
return true;
}
let updates = self.updates.read().await;
!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(self.updates.get_mut()) {
if let Update::Set(mut view) = update {
view.flush(batch)?;
self.add_index(batch, &index);
delete_view = false;
}
}
} else {
for (index, update) in mem::take(self.updates.get_mut()) {
match update {
Update::Set(mut view) => {
view.flush(batch)?;
self.add_index(batch, &index);
}
Update::Removed => {
let key_subview = self.get_subview_key(&index);
let key_index = self.get_index_key(&index);
batch.delete_key(key_index);
batch.delete_key_prefix(key_subview);
}
}
}
}
self.delete_storage_first = false;
Ok(delete_view)
}
fn clear(&mut self) {
self.delete_storage_first = true;
self.updates.get_mut().clear();
}
}
impl<C, W> ClonableView<C> for ByteCollectionView<C, W>
where
C: Context + Send + Sync,
ViewError: From<C::Error>,
W: ClonableView<C> + Send + Sync,
{
fn clone_unchecked(&mut self) -> Result<Self, ViewError> {
let cloned_updates = self
.updates
.get_mut()
.iter_mut()
.map(|(key, value)| {
let cloned_value = match value {
Update::Removed => Update::Removed,
Update::Set(view) => Update::Set(view.clone_unchecked()?),
};
Ok((key.clone(), cloned_value))
})
.collect::<Result<_, ViewError>>()?;
Ok(ByteCollectionView {
context: self.context.clone(),
delete_storage_first: self.delete_storage_first,
updates: RwLock::new(cloned_updates),
})
}
}
impl<C, W> ByteCollectionView<C, W>
where
C: Context + Send,
ViewError: From<C::Error>,
W: View<C>,
{
fn get_index_key(&self, index: &[u8]) -> Vec<u8> {
self.context.base_tag_index(KeyTag::Index as u8, index)
}
fn get_subview_key(&self, index: &[u8]) -> Vec<u8> {
self.context.base_tag_index(KeyTag::Subview as u8, index)
}
fn add_index(&self, batch: &mut Batch, index: &[u8]) {
let key = self.get_index_key(index);
batch.put_key_value_bytes(key, vec![]);
}
/// Loads a subview for the data at the given index in the collection. If an entry
/// is absent then a default entry is added to the collection. The resulting view
/// can be modified.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::ByteCollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: ByteCollectionView<_, RegisterView<_, String>> =
/// ByteCollectionView::load(context).await.unwrap();
/// let subview = view.load_entry_mut(&[0, 1]).await.unwrap();
/// let value = subview.get();
/// assert_eq!(*value, String::default());
/// # })
/// ```
pub async fn load_entry_mut(&mut self, short_key: &[u8]) -> Result<&mut W, ViewError> {
self.do_load_entry_mut(short_key).await
}
/// Loads a subview for the data at the given index in the collection. If an entry
/// is absent then a default entry is added to the collection. The resulting view
/// is read-only.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::ByteCollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: ByteCollectionView<_, RegisterView<_, String>> =
/// ByteCollectionView::load(context).await.unwrap();
/// view.load_entry_mut(&[0, 1]).await.unwrap();
/// let subview = view.load_entry_or_insert(&[0, 1]).await.unwrap();
/// let value = subview.get();
/// assert_eq!(*value, String::default());
/// # })
/// ```
pub async fn load_entry_or_insert(&mut self, short_key: &[u8]) -> Result<&W, ViewError> {
Ok(self.do_load_entry_mut(short_key).await?)
}
/// Loads a subview for the data at the given index in the collection. If an entry
/// is absent then `None` is returned. The resulting view cannot be modified.
/// May fail if one subview is already being visited.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::ByteCollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: ByteCollectionView<_, RegisterView<_, String>> =
/// ByteCollectionView::load(context).await.unwrap();
/// {
/// let _subview = view.load_entry_or_insert(&[0, 1]).await.unwrap();
/// }
/// {
/// let subview = view.try_load_entry(&[0, 1]).await.unwrap().unwrap();
/// let value = subview.get();
/// assert_eq!(*value, String::default());
/// }
/// assert!(view.try_load_entry(&[0, 2]).await.unwrap().is_none());
/// # })
/// ```
pub async fn try_load_entry(
&self,
short_key: &[u8],
) -> Result<Option<ReadGuardedView<W>>, ViewError> {
let mut updates = self
.updates
.try_write()
.ok_or(ViewError::CannotAcquireCollectionEntry)?;
match updates.entry(short_key.to_vec()) {
btree_map::Entry::Occupied(entry) => {
let entry = entry.into_mut();
match entry {
Update::Set(_) => {
let guard = RwLockWriteGuard::downgrade(updates);
Ok(Some(ReadGuardedView {
guard,
short_key: short_key.to_vec(),
}))
}
Update::Removed => Ok(None),
}
}
btree_map::Entry::Vacant(entry) => {
let key_index = self.context.base_tag_index(KeyTag::Index as u8, short_key);
if !self.delete_storage_first && self.context.contains_key(&key_index).await? {
let key = self
.context
.base_tag_index(KeyTag::Subview as u8, short_key);
let context = self.context.clone_with_base_key(key);
let view = W::load(context).await?;
entry.insert(Update::Set(view));
let guard = RwLockWriteGuard::downgrade(updates);
Ok(Some(ReadGuardedView {
guard,
short_key: short_key.to_vec(),
}))
} else {
Ok(None)
}
}
}
}
/// Resets an entry to the default value.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::ByteCollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: ByteCollectionView<_, RegisterView<_, String>> =
/// ByteCollectionView::load(context).await.unwrap();
/// let subview = view.load_entry_mut(&[0, 1]).await.unwrap();
/// let value = subview.get_mut();
/// *value = String::from("Hello");
/// view.reset_entry_to_default(&[0, 1]).unwrap();
/// let subview = view.load_entry_mut(&[0, 1]).await.unwrap();
/// let value = subview.get_mut();
/// assert_eq!(*value, String::default());
/// # })
/// ```
pub fn reset_entry_to_default(&mut self, short_key: &[u8]) -> Result<(), ViewError> {
let key = self
.context
.base_tag_index(KeyTag::Subview as u8, short_key);
let context = self.context.clone_with_base_key(key);
let view = W::new(context)?;
self.updates
.get_mut()
.insert(short_key.to_vec(), Update::Set(view));
Ok(())
}
/// Tests if the collection contains a specified key and returns a boolean.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::ByteCollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: ByteCollectionView<_, RegisterView<_, String>> =
/// ByteCollectionView::load(context).await.unwrap();
/// {
/// let _subview = view.load_entry_mut(&[0, 1]).await.unwrap();
/// }
/// assert!(view.contains_key(&[0, 1]).await.unwrap());
/// assert!(!view.contains_key(&[0, 2]).await.unwrap());
/// # })
/// ```
pub async fn contains_key(&self, short_key: &[u8]) -> Result<bool, ViewError> {
let updates = self.updates.write().await;
Ok(match updates.get(short_key) {
Some(entry) => match entry {
Update::Set(_view) => true,
_entry @ Update::Removed => false,
},
None => {
let key_index = self.context.base_tag_index(KeyTag::Index as u8, short_key);
!self.delete_storage_first && self.context.contains_key(&key_index).await?
}
})
}
/// Marks the entry as removed. If absent then nothing is done.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::ByteCollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: ByteCollectionView<_, RegisterView<_, String>> =
/// ByteCollectionView::load(context).await.unwrap();
/// let subview = view.load_entry_mut(&[0, 1]).await.unwrap();
/// let value = subview.get_mut();
/// assert_eq!(*value, String::default());
/// view.remove_entry(vec![0, 1]);
/// let keys = view.keys().await.unwrap();
/// assert_eq!(keys.len(), 0);
/// # })
/// ```
pub fn remove_entry(&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.get_mut().remove(&short_key);
} else {
self.updates.get_mut().insert(short_key, Update::Removed);
}
}
/// Gets the extra data.
pub fn extra(&self) -> &C::Extra {
self.context.extra()
}
async fn do_load_entry_mut(&mut self, short_key: &[u8]) -> Result<&mut W, ViewError> {
match self.updates.get_mut().entry(short_key.to_vec()) {
btree_map::Entry::Occupied(entry) => {
let entry = entry.into_mut();
match entry {
Update::Set(view) => Ok(view),
Update::Removed => {
let key = self
.context
.base_tag_index(KeyTag::Subview as u8, short_key);
let context = self.context.clone_with_base_key(key);
// Obtain a view and set its pending state to the default (e.g. empty) state
let view = W::new(context)?;
*entry = Update::Set(view);
let Update::Set(view) = entry else {
unreachable!();
};
Ok(view)
}
}
}
btree_map::Entry::Vacant(entry) => {
let key = self
.context
.base_tag_index(KeyTag::Subview as u8, short_key);
let context = self.context.clone_with_base_key(key);
let view = if self.delete_storage_first {
W::new(context)?
} else {
W::load(context).await?
};
let Update::Set(view) = entry.insert(Update::Set(view)) else {
unreachable!();
};
Ok(view)
}
}
}
}
impl<C, W> ByteCollectionView<C, W>
where
C: Context + Send,
ViewError: From<C::Error>,
W: View<C> + Sync,
{
/// Applies a function f on each index (aka key). Keys are visited in the
/// lexicographic order. If the function returns false, then the loop
/// ends prematurely.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::ByteCollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: ByteCollectionView<_, RegisterView<_, String>> =
/// ByteCollectionView::load(context).await.unwrap();
/// view.load_entry_mut(&[0, 1]).await.unwrap();
/// view.load_entry_mut(&[0, 2]).await.unwrap();
/// let mut count = 0;
/// view.for_each_key_while(|_key| {
/// count += 1;
/// Ok(count < 1)
/// })
/// .await
/// .unwrap();
/// assert_eq!(count, 1);
/// # })
/// ```
pub async fn for_each_key_while<F>(&self, mut f: F) -> Result<(), ViewError>
where
F: FnMut(&[u8]) -> Result<bool, ViewError> + Send,
{
let updates = self.updates.write().await;
let mut updates = updates.iter();
let mut update = updates.next();
if !self.delete_storage_first {
let base = self.get_index_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 index (aka key). Keys are visited in a
/// lexicographic order.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::ByteCollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: ByteCollectionView<_, RegisterView<_, String>> =
/// ByteCollectionView::load(context).await.unwrap();
/// view.load_entry_mut(&[0, 1]).await.unwrap();
/// view.load_entry_mut(&[0, 2]).await.unwrap();
/// let mut count = 0;
/// view.for_each_key(|_key| {
/// count += 1;
/// Ok(())
/// })
/// .await
/// .unwrap();
/// assert_eq!(count, 2);
/// # })
/// ```
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
}
/// Returns the list of keys in the collection. The order is lexicographic.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::ByteCollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: ByteCollectionView<_, RegisterView<_, String>> =
/// ByteCollectionView::load(context).await.unwrap();
/// view.load_entry_mut(&[0, 1]).await.unwrap();
/// view.load_entry_mut(&[0, 2]).await.unwrap();
/// let keys = view.keys().await.unwrap();
/// assert_eq!(keys, 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 collection.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::ByteCollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: ByteCollectionView<_, RegisterView<_, String>> =
/// ByteCollectionView::load(context).await.unwrap();
/// view.load_entry_mut(&[0, 1]).await.unwrap();
/// view.load_entry_mut(&[0, 2]).await.unwrap();
/// assert_eq!(view.count().await.unwrap(), 2);
/// # })
/// ```
pub async fn count(&self) -> Result<usize, ViewError> {
let mut count = 0;
self.for_each_key(|_key| {
count += 1;
Ok(())
})
.await?;
Ok(count)
}
}
#[async_trait]
impl<C, W> HashableView<C> for ByteCollectionView<C, W>
where
C: Context + Send + Sync,
ViewError: From<C::Error>,
W: HashableView<C> + Send + Sync + 'static,
{
type Hasher = sha3::Sha3_256;
async fn hash_mut(&mut self) -> Result<<Self::Hasher as Hasher>::Output, ViewError> {
#[cfg(with_metrics)]
let _hash_latency = COLLECTION_VIEW_HASH_RUNTIME.measure_latency();
let mut hasher = sha3::Sha3_256::default();
let keys = self.keys().await?;
let count = keys.len() as u32;
hasher.update_with_bcs_bytes(&count)?;
let updates = self.updates.get_mut();
for key in keys {
hasher.update_with_bytes(&key)?;
let hash = match updates.get_mut(&key) {
Some(entry) => {
let Update::Set(view) = entry else {
unreachable!();
};
view.hash_mut().await?
}
None => {
let key = self.context.base_tag_index(KeyTag::Subview as u8, &key);
let context = self.context.clone_with_base_key(key);
let mut view = W::load(context).await?;
view.hash_mut().await?
}
};
hasher.write_all(hash.as_ref())?;
}
Ok(hasher.finalize())
}
async fn hash(&self) -> Result<<Self::Hasher as Hasher>::Output, ViewError> {
#[cfg(with_metrics)]
let _hash_latency = COLLECTION_VIEW_HASH_RUNTIME.measure_latency();
let mut hasher = sha3::Sha3_256::default();
let keys = self.keys().await?;
let count = keys.len() as u32;
hasher.update_with_bcs_bytes(&count)?;
let updates = self.updates.read().await;
for key in keys {
hasher.update_with_bytes(&key)?;
let hash = match updates.get(&key) {
Some(entry) => {
let Update::Set(view) = entry else {
unreachable!();
};
view.hash().await?
}
None => {
let key = self.context.base_tag_index(KeyTag::Subview as u8, &key);
let context = self.context.clone_with_base_key(key);
let view = W::load(context).await?;
view.hash().await?
}
};
hasher.write_all(hash.as_ref())?;
}
Ok(hasher.finalize())
}
}
/// A view that supports accessing a collection of views of the same kind, indexed by a
/// key, one subview at a time.
#[derive(Debug)]
pub struct CollectionView<C, I, W> {
collection: ByteCollectionView<C, W>,
_phantom: PhantomData<I>,
}
#[async_trait]
impl<C, I, W> View<C> for CollectionView<C, I, W>
where
C: Context + Send + Sync,
ViewError: From<C::Error>,
I: Send + Sync + Serialize + DeserializeOwned,
W: View<C> + Send + Sync,
{
const NUM_INIT_KEYS: usize = ByteCollectionView::<C, W>::NUM_INIT_KEYS;
fn context(&self) -> &C {
self.collection.context()
}
fn pre_load(context: &C) -> Result<Vec<Vec<u8>>, ViewError> {
ByteCollectionView::<C, W>::pre_load(context)
}
fn post_load(context: C, values: &[Option<Vec<u8>>]) -> Result<Self, ViewError> {
let collection = ByteCollectionView::post_load(context, values)?;
Ok(CollectionView {
collection,
_phantom: PhantomData,
})
}
async fn load(context: C) -> Result<Self, ViewError> {
Self::post_load(context, &[])
}
fn rollback(&mut self) {
self.collection.rollback()
}
async fn has_pending_changes(&self) -> bool {
self.collection.has_pending_changes().await
}
fn flush(&mut self, batch: &mut Batch) -> Result<bool, ViewError> {
self.collection.flush(batch)
}
fn clear(&mut self) {
self.collection.clear()
}
}
impl<C, I, W> ClonableView<C> for CollectionView<C, I, W>
where
C: Context + Send + Sync,
ViewError: From<C::Error>,
I: Send + Sync + Serialize + DeserializeOwned,
W: ClonableView<C> + Send + Sync,
{
fn clone_unchecked(&mut self) -> Result<Self, ViewError> {
Ok(CollectionView {
collection: self.collection.clone_unchecked()?,
_phantom: PhantomData,
})
}
}
impl<C, I, W> CollectionView<C, I, W>
where
C: Context + Send,
ViewError: From<C::Error>,
I: Serialize,
W: View<C>,
{
/// Loads a subview for the data at the given index in the collection. If an entry
/// is absent then a default entry is added to the collection. The resulting view
/// can be modified.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::CollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: CollectionView<_, u64, RegisterView<_, String>> =
/// CollectionView::load(context).await.unwrap();
/// let subview = view.load_entry_mut(&23).await.unwrap();
/// let value = subview.get();
/// assert_eq!(*value, String::default());
/// # })
/// ```
pub async fn load_entry_mut<Q>(&mut self, index: &Q) -> Result<&mut W, ViewError>
where
I: Borrow<Q>,
Q: Serialize + ?Sized,
{
let short_key = C::derive_short_key(index)?;
self.collection.load_entry_mut(&short_key).await
}
/// Loads a subview for the data at the given index in the collection. If an entry
/// is absent then a default entry is added to the collection. The resulting view
/// is read-only.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::CollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: CollectionView<_, u64, RegisterView<_, String>> =
/// CollectionView::load(context).await.unwrap();
/// view.load_entry_mut(&23).await.unwrap();
/// let subview = view.load_entry_or_insert(&23).await.unwrap();
/// let value = subview.get();
/// assert_eq!(*value, String::default());
/// # })
/// ```
pub async fn load_entry_or_insert<Q>(&mut self, index: &Q) -> Result<&W, ViewError>
where
I: Borrow<Q>,
Q: Serialize + ?Sized,
{
let short_key = C::derive_short_key(index)?;
self.collection.load_entry_or_insert(&short_key).await
}
/// Loads a subview for the data at the given index in the collection. If an entry
/// is absent then `None` is returned. The resulting view cannot be modified.
/// May fail if one subview is already being visited.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::CollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: CollectionView<_, u64, RegisterView<_, String>> =
/// CollectionView::load(context).await.unwrap();
/// {
/// let _subview = view.load_entry_or_insert(&23).await.unwrap();
/// }
/// {
/// let subview = view.try_load_entry(&23).await.unwrap().unwrap();
/// let value = subview.get();
/// assert_eq!(*value, String::default());
/// }
/// assert!(view.try_load_entry(&24).await.unwrap().is_none());
/// # })
/// ```
pub async fn try_load_entry<Q>(
&self,
index: &Q,
) -> Result<Option<ReadGuardedView<W>>, ViewError>
where
I: Borrow<Q>,
Q: Serialize + ?Sized,
{
let short_key = C::derive_short_key(index)?;
self.collection.try_load_entry(&short_key).await
}
/// Resets an entry to the default value.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::CollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: CollectionView<_, u64, RegisterView<_, String>> =
/// CollectionView::load(context).await.unwrap();
/// let subview = view.load_entry_mut(&23).await.unwrap();
/// let value = subview.get_mut();
/// *value = String::from("Hello");
/// view.reset_entry_to_default(&23).unwrap();
/// let subview = view.load_entry_mut(&23).await.unwrap();
/// let value = subview.get_mut();
/// assert_eq!(*value, String::default());
/// # })
/// ```
pub fn reset_entry_to_default<Q>(&mut self, index: &Q) -> Result<(), ViewError>
where
I: Borrow<Q>,
Q: Serialize + ?Sized,
{
let short_key = C::derive_short_key(index)?;
self.collection.reset_entry_to_default(&short_key)
}
/// Removes an entry from the `CollectionView`. If absent nothing happens.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::CollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: CollectionView<_, u64, RegisterView<_, String>> =
/// CollectionView::load(context).await.unwrap();
/// let subview = view.load_entry_mut(&23).await.unwrap();
/// let value = subview.get_mut();
/// assert_eq!(*value, String::default());
/// view.remove_entry(&23);
/// let keys = view.indices().await.unwrap();
/// assert_eq!(keys.len(), 0);
/// # })
/// ```
pub fn remove_entry<Q>(&mut self, index: &Q) -> Result<(), ViewError>
where
I: Borrow<Q>,
Q: Serialize + ?Sized,
{
let short_key = C::derive_short_key(index)?;
self.collection.remove_entry(short_key);
Ok(())
}
/// Gets the extra data.
pub fn extra(&self) -> &C::Extra {
self.collection.extra()
}
}
impl<C, I, W> CollectionView<C, I, W>
where
C: Context + Send,
ViewError: From<C::Error>,
I: Sync + Clone + Send + Serialize + DeserializeOwned,
W: View<C> + Sync,
{
/// Returns the list of indices in the collection in the order determined by
/// the serialization.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::CollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: CollectionView<_, u64, RegisterView<_, String>> =
/// CollectionView::load(context).await.unwrap();
/// view.load_entry_mut(&23).await.unwrap();
/// view.load_entry_mut(&25).await.unwrap();
/// let indices = view.indices().await.unwrap();
/// assert_eq!(indices.len(), 2);
/// # })
/// ```
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 collection.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::CollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: CollectionView<_, u64, RegisterView<_, String>> =
/// CollectionView::load(context).await.unwrap();
/// view.load_entry_mut(&23).await.unwrap();
/// view.load_entry_mut(&25).await.unwrap();
/// assert_eq!(view.count().await.unwrap(), 2);
/// # })
/// ```
pub async fn count(&self) -> Result<usize, ViewError> {
self.collection.count().await
}
}
impl<C, I, W> CollectionView<C, I, W>
where
C: Context + Send,
ViewError: From<C::Error>,
I: DeserializeOwned,
W: View<C> + Sync,
{
/// 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::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::CollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: CollectionView<_, u64, RegisterView<_, String>> =
/// CollectionView::load(context).await.unwrap();
/// view.load_entry_mut(&23).await.unwrap();
/// view.load_entry_mut(&24).await.unwrap();
/// let mut count = 0;
/// view.for_each_index_while(|_key| {
/// count += 1;
/// Ok(count < 1)
/// })
/// .await
/// .unwrap();
/// assert_eq!(count, 1);
/// # })
/// ```
pub async fn for_each_index_while<F>(&self, mut f: F) -> Result<(), ViewError>
where
F: FnMut(I) -> Result<bool, ViewError> + Send,
{
self.collection
.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::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::CollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: CollectionView<_, u64, RegisterView<_, String>> =
/// CollectionView::load(context).await.unwrap();
/// view.load_entry_mut(&23).await.unwrap();
/// view.load_entry_mut(&28).await.unwrap();
/// let mut count = 0;
/// view.for_each_index(|_key| {
/// count += 1;
/// Ok(())
/// })
/// .await
/// .unwrap();
/// assert_eq!(count, 2);
/// # })
/// ```
pub async fn for_each_index<F>(&self, mut f: F) -> Result<(), ViewError>
where
F: FnMut(I) -> Result<(), ViewError> + Send,
{
self.collection
.for_each_key(|key| {
let index = C::deserialize_value(key)?;
f(index)
})
.await?;
Ok(())
}
}
#[async_trait]
impl<C, I, W> HashableView<C> for CollectionView<C, I, W>
where
C: Context + Send + Sync,
ViewError: From<C::Error>,
I: Clone + Send + Sync + Serialize + DeserializeOwned,
W: HashableView<C> + Send + Sync + 'static,
{
type Hasher = sha3::Sha3_256;
async fn hash_mut(&mut self) -> Result<<Self::Hasher as Hasher>::Output, ViewError> {
self.collection.hash_mut().await
}
async fn hash(&self) -> Result<<Self::Hasher as Hasher>::Output, ViewError> {
self.collection.hash().await
}
}
/// A map view that serializes the indices.
#[derive(Debug)]
pub struct CustomCollectionView<C, I, W> {
collection: ByteCollectionView<C, W>,
_phantom: PhantomData<I>,
}
#[async_trait]
impl<C, I, W> View<C> for CustomCollectionView<C, I, W>
where
C: Context + Send + Sync,
ViewError: From<C::Error>,
I: Send + Sync,
W: View<C> + Send + Sync,
{
const NUM_INIT_KEYS: usize = ByteCollectionView::<C, W>::NUM_INIT_KEYS;
fn context(&self) -> &C {
self.collection.context()
}
fn pre_load(context: &C) -> Result<Vec<Vec<u8>>, ViewError> {
ByteCollectionView::<C, W>::pre_load(context)
}
fn post_load(context: C, values: &[Option<Vec<u8>>]) -> Result<Self, ViewError> {
let collection = ByteCollectionView::post_load(context, values)?;
Ok(CustomCollectionView {
collection,
_phantom: PhantomData,
})
}
async fn load(context: C) -> Result<Self, ViewError> {
Self::post_load(context, &[])
}
fn rollback(&mut self) {
self.collection.rollback()
}
async fn has_pending_changes(&self) -> bool {
self.collection.has_pending_changes().await
}
fn flush(&mut self, batch: &mut Batch) -> Result<bool, ViewError> {
self.collection.flush(batch)
}
fn clear(&mut self) {
self.collection.clear()
}
}
impl<C, I, W> ClonableView<C> for CustomCollectionView<C, I, W>
where
C: Context + Send + Sync,
ViewError: From<C::Error>,
I: Send + Sync,
W: ClonableView<C> + Send + Sync,
{
fn clone_unchecked(&mut self) -> Result<Self, ViewError> {
Ok(CustomCollectionView {
collection: self.collection.clone_unchecked()?,
_phantom: PhantomData,
})
}
}
impl<C, I, W> CustomCollectionView<C, I, W>
where
C: Context + Send,
ViewError: From<C::Error>,
I: CustomSerialize,
W: View<C>,
{
/// Loads a subview for the data at the given index in the collection. If an entry
/// is absent then a default entry is added to the collection. The resulting view
/// can be modified.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::CustomCollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: CustomCollectionView<_, u128, RegisterView<_, String>> =
/// CustomCollectionView::load(context).await.unwrap();
/// let subview = view.load_entry_mut(&23).await.unwrap();
/// let value = subview.get();
/// assert_eq!(*value, String::default());
/// # })
/// ```
pub async fn load_entry_mut<Q>(&mut self, index: &Q) -> Result<&mut W, ViewError>
where
I: Borrow<Q>,
Q: CustomSerialize,
{
let short_key = index.to_custom_bytes()?;
self.collection.load_entry_mut(&short_key).await
}
/// Loads a subview for the data at the given index in the collection. If an entry
/// is absent then a default entry is added to the collection. The resulting view
/// is read-only.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::CustomCollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: CustomCollectionView<_, u128, RegisterView<_, String>> =
/// CustomCollectionView::load(context).await.unwrap();
/// view.load_entry_mut(&23).await.unwrap();
/// let subview = view.load_entry_or_insert(&23).await.unwrap();
/// let value = subview.get();
/// assert_eq!(*value, String::default());
/// # })
/// ```
pub async fn load_entry_or_insert<Q>(&mut self, index: &Q) -> Result<&W, ViewError>
where
I: Borrow<Q>,
Q: CustomSerialize,
{
let short_key = index.to_custom_bytes()?;
self.collection.load_entry_or_insert(&short_key).await
}
/// Loads a subview for the data at the given index in the collection. If an entry
/// is absent then `None` is returned. The resulting view cannot be modified.
/// May fail if one subview is already being visited.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::CustomCollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: CustomCollectionView<_, u128, RegisterView<_, String>> =
/// CustomCollectionView::load(context).await.unwrap();
/// {
/// let _subview = view.load_entry_or_insert(&23).await.unwrap();
/// }
/// {
/// let subview = view.try_load_entry(&23).await.unwrap().unwrap();
/// let value = subview.get();
/// assert_eq!(*value, String::default());
/// }
/// assert!(view.try_load_entry(&24).await.unwrap().is_none());
/// # })
/// ```
pub async fn try_load_entry<Q>(
&self,
index: &Q,
) -> Result<Option<ReadGuardedView<W>>, ViewError>
where
I: Borrow<Q>,
Q: CustomSerialize,
{
let short_key = index.to_custom_bytes()?;
self.collection.try_load_entry(&short_key).await
}
/// Marks the entry so that it is removed in the next flush.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::CustomCollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: CustomCollectionView<_, u128, RegisterView<_, String>> =
/// CustomCollectionView::load(context).await.unwrap();
/// let subview = view.load_entry_mut(&23).await.unwrap();
/// let value = subview.get_mut();
/// *value = String::from("Hello");
/// view.reset_entry_to_default(&23).unwrap();
/// let subview = view.load_entry_mut(&23).await.unwrap();
/// let value = subview.get_mut();
/// assert_eq!(*value, String::default());
/// # })
/// ```
pub fn reset_entry_to_default<Q>(&mut self, index: &Q) -> Result<(), ViewError>
where
I: Borrow<Q>,
Q: CustomSerialize,
{
let short_key = index.to_custom_bytes()?;
self.collection.reset_entry_to_default(&short_key)
}
/// Removes an entry from the `CollectionView`. If absent nothing happens.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::CustomCollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: CustomCollectionView<_, u128, RegisterView<_, String>> =
/// CustomCollectionView::load(context).await.unwrap();
/// let subview = view.load_entry_mut(&23).await.unwrap();
/// let value = subview.get_mut();
/// assert_eq!(*value, String::default());
/// view.remove_entry(&23);
/// let keys = view.indices().await.unwrap();
/// assert_eq!(keys.len(), 0);
/// # })
/// ```
pub fn remove_entry<Q>(&mut self, index: &Q) -> Result<(), ViewError>
where
I: Borrow<Q>,
Q: CustomSerialize,
{
let short_key = index.to_custom_bytes()?;
self.collection.remove_entry(short_key);
Ok(())
}
/// Gets the extra data.
pub fn extra(&self) -> &C::Extra {
self.collection.extra()
}
}
impl<C, I, W> CustomCollectionView<C, I, W>
where
C: Context + Send,
ViewError: From<C::Error>,
I: Send + CustomSerialize,
W: View<C> + Sync,
{
/// Returns the list of indices in the collection in the order determined by the custom serialization.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::CustomCollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: CustomCollectionView<_, u128, RegisterView<_, String>> =
/// CustomCollectionView::load(context).await.unwrap();
/// view.load_entry_mut(&23).await.unwrap();
/// view.load_entry_mut(&25).await.unwrap();
/// let indices = view.indices().await.unwrap();
/// assert_eq!(indices, vec![23, 25]);
/// # })
/// ```
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 collection.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::CollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: CollectionView<_, u64, RegisterView<_, String>> =
/// CollectionView::load(context).await.unwrap();
/// view.load_entry_mut(&23).await.unwrap();
/// view.load_entry_mut(&25).await.unwrap();
/// assert_eq!(view.count().await.unwrap(), 2);
/// # })
/// ```
pub async fn count(&self) -> Result<usize, ViewError> {
self.collection.count().await
}
}
impl<C, I, W> CustomCollectionView<C, I, W>
where
C: Context + Send,
ViewError: From<C::Error>,
I: CustomSerialize,
W: View<C> + Sync,
{
/// Applies a function f on each index. Indices are visited in an order
/// determined by the custom serialization. If the function f returns false,
/// then the loop ends prematurely.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::CustomCollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: CustomCollectionView<_, u128, RegisterView<_, String>> =
/// CustomCollectionView::load(context).await.unwrap();
/// view.load_entry_mut(&28).await.unwrap();
/// view.load_entry_mut(&24).await.unwrap();
/// view.load_entry_mut(&23).await.unwrap();
/// let mut part_indices = Vec::new();
/// view.for_each_index_while(|index| {
/// part_indices.push(index);
/// Ok(part_indices.len() < 2)
/// })
/// .await
/// .unwrap();
/// assert_eq!(part_indices, vec![23, 24]);
/// # })
/// ```
pub async fn for_each_index_while<F>(&self, mut f: F) -> Result<(), ViewError>
where
F: FnMut(I) -> Result<bool, ViewError> + Send,
{
self.collection
.for_each_key_while(|key| {
let index = I::from_custom_bytes(key)?;
f(index)
})
.await?;
Ok(())
}
/// Applies a function on each index. Indices are visited in an order
/// determined by the custom serialization.
/// ```rust
/// # tokio_test::block_on(async {
/// # use linera_views::context::{create_test_memory_context, MemoryContext};
/// # use linera_views::collection_view::CustomCollectionView;
/// # use linera_views::register_view::RegisterView;
/// # use linera_views::views::View;
/// # let context = create_test_memory_context();
/// let mut view: CustomCollectionView<_, u128, RegisterView<_, String>> =
/// CustomCollectionView::load(context).await.unwrap();
/// view.load_entry_mut(&28).await.unwrap();
/// view.load_entry_mut(&24).await.unwrap();
/// view.load_entry_mut(&23).await.unwrap();
/// let mut indices = Vec::new();
/// view.for_each_index(|index| {
/// indices.push(index);
/// Ok(())
/// })
/// .await
/// .unwrap();
/// assert_eq!(indices, vec![23, 24, 28]);
/// # })
/// ```
pub async fn for_each_index<F>(&self, mut f: F) -> Result<(), ViewError>
where
F: FnMut(I) -> Result<(), ViewError> + Send,
{
self.collection
.for_each_key(|key| {
let index = I::from_custom_bytes(key)?;
f(index)
})
.await?;
Ok(())
}
}
#[async_trait]
impl<C, I, W> HashableView<C> for CustomCollectionView<C, I, W>
where
C: Context + Send + Sync,
ViewError: From<C::Error>,
I: Clone + Send + Sync + CustomSerialize,
W: HashableView<C> + Send + Sync + 'static,
{
type Hasher = sha3::Sha3_256;
async fn hash_mut(&mut self) -> Result<<Self::Hasher as Hasher>::Output, ViewError> {
self.collection.hash_mut().await
}
async fn hash(&self) -> Result<<Self::Hasher as Hasher>::Output, ViewError> {
self.collection.hash().await
}
}
/// Type wrapping `ByteCollectionView` while memoizing the hash.
pub type HashedByteCollectionView<C, W> =
WrappedHashableContainerView<C, ByteCollectionView<C, W>, HasherOutput>;
/// Type wrapping `CollectionView` while memoizing the hash.
pub type HashedCollectionView<C, I, W> =
WrappedHashableContainerView<C, CollectionView<C, I, W>, HasherOutput>;
/// Type wrapping `CustomCollectionView` while memoizing the hash.
pub type HashedCustomCollectionView<C, I, W> =
WrappedHashableContainerView<C, CustomCollectionView<C, I, W>, HasherOutput>;
mod graphql {
use std::borrow::Cow;
use super::{CollectionView, CustomCollectionView, ReadGuardedView};
use crate::{
context::Context,
graphql::{hash_name, mangle, missing_key_error, Entry, MapFilters, MapInput},
views::View,
};
impl<'value, T: async_graphql::OutputType> async_graphql::OutputType
for ReadGuardedView<'value, T>
{
fn type_name() -> Cow<'static, str> {
T::type_name()
}
fn create_type_info(registry: &mut async_graphql::registry::Registry) -> String {
T::create_type_info(registry)
}
async fn resolve(
&self,
ctx: &async_graphql::ContextSelectionSet<'_>,
field: &async_graphql::Positioned<async_graphql::parser::types::Field>,
) -> async_graphql::ServerResult<async_graphql::Value> {
(**self).resolve(ctx, field).await
}
}
impl<C: Send + Sync, K: async_graphql::OutputType, V: async_graphql::OutputType>
async_graphql::TypeName for CollectionView<C, K, V>
{
fn type_name() -> Cow<'static, str> {
format!(
"CollectionView_{}_{}_{:08x}",
mangle(K::type_name()),
mangle(V::type_name()),
hash_name::<(K, V)>(),
)
.into()
}
}
#[async_graphql::Object(cache_control(no_cache), name_type)]
impl<C, K, V> CollectionView<C, K, V>
where
C: Send + Sync + Context,
K: async_graphql::InputType
+ async_graphql::OutputType
+ serde::ser::Serialize
+ serde::de::DeserializeOwned
+ std::fmt::Debug
+ Clone,
V: View<C> + async_graphql::OutputType,
MapInput<K>: async_graphql::InputType,
MapFilters<K>: async_graphql::InputType,
{
async fn keys(&self) -> Result<Vec<K>, async_graphql::Error> {
Ok(self.indices().await?)
}
async fn entry(
&self,
key: K,
) -> Result<Entry<K, ReadGuardedView<V>>, async_graphql::Error> {
let value = self
.try_load_entry(&key)
.await?
.ok_or_else(|| missing_key_error(&key))?;
Ok(Entry { value, key })
}
async fn entries(
&self,
input: Option<MapInput<K>>,
) -> Result<Vec<Entry<K, ReadGuardedView<V>>>, async_graphql::Error> {
let keys = if let Some(keys) = input
.and_then(|input| input.filters)
.and_then(|filters| filters.keys)
{
keys
} else {
self.indices().await?
};
let mut values = vec![];
for key in keys {
let value = self
.try_load_entry(&key)
.await?
.ok_or_else(|| missing_key_error(&key))?;
values.push(Entry { value, key })
}
Ok(values)
}
}
impl<C: Send + Sync, K: async_graphql::OutputType, V: async_graphql::OutputType>
async_graphql::TypeName for CustomCollectionView<C, K, V>
{
fn type_name() -> Cow<'static, str> {
format!(
"CustomCollectionView_{}_{}_{:08x}",
mangle(K::type_name()),
mangle(V::type_name()),
hash_name::<(K, V)>(),
)
.into()
}
}
#[async_graphql::Object(cache_control(no_cache), name_type)]
impl<C, K, V> CustomCollectionView<C, K, V>
where
C: Send + Sync + Context,
K: async_graphql::InputType
+ async_graphql::OutputType
+ crate::common::CustomSerialize
+ std::fmt::Debug,
V: View<C> + async_graphql::OutputType,
MapInput<K>: async_graphql::InputType,
MapFilters<K>: async_graphql::InputType,
{
async fn keys(&self) -> Result<Vec<K>, async_graphql::Error> {
Ok(self.indices().await?)
}
async fn entry(
&self,
key: K,
) -> Result<Entry<K, ReadGuardedView<V>>, async_graphql::Error> {
let value = self
.try_load_entry(&key)
.await?
.ok_or_else(|| missing_key_error(&key))?;
Ok(Entry { value, key })
}
async fn entries(
&self,
input: Option<MapInput<K>>,
) -> Result<Vec<Entry<K, ReadGuardedView<V>>>, async_graphql::Error> {
let keys = if let Some(keys) = input
.and_then(|input| input.filters)
.and_then(|filters| filters.keys)
{
keys
} else {
self.indices().await?
};
let mut values = vec![];
for key in keys {
let value = self
.try_load_entry(&key)
.await?
.ok_or_else(|| missing_key_error(&key))?;
values.push(Entry { value, key })
}
Ok(values)
}
}
}