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
// Copyright 2022 - 2024 Wenmeng See the COPYRIGHT
// file at the top-level directory of this distribution.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.
//
// Author: tickbh
// -----
// Created Date: 2024/05/24 03:04:11
use std::{
borrow::Borrow, collections::{
hash_map::RandomState,
HashMap,
}, fmt::{self, Debug}, hash::{BuildHasher, Hash}, marker::PhantomData, mem, ops::{Index, IndexMut}, ptr::{self, NonNull}
};
use super::{KeyRef, KeyWrapper};
struct LruEntry<K, V> {
pub key: mem::MaybeUninit<K>,
pub val: mem::MaybeUninit<V>,
pub prev: *mut LruEntry<K, V>,
pub next: *mut LruEntry<K, V>,
}
impl<K, V> LruEntry<K, V> {
pub fn new_empty() -> Self {
LruEntry {
key: mem::MaybeUninit::uninit(),
val: mem::MaybeUninit::uninit(),
prev: ptr::null_mut(),
next: ptr::null_mut(),
}
}
pub fn new(k: K, v: V) -> Self {
LruEntry {
key: mem::MaybeUninit::new(k),
val: mem::MaybeUninit::new(v),
prev: ptr::null_mut(),
next: ptr::null_mut(),
}
}
}
/// 一个 LRU 缓存普通级的实现, 接口参照Hashmap保持一致
/// 设置容量之后将最大保持该容量大小的数据
/// 后进的数据将会淘汰最久没有被访问的数据
///
/// # Examples
///
/// ```
/// use algorithm::LruCache;
/// fn main() {
/// let mut lru = LruCache::new(3);
/// lru.insert("now", "ok");
/// lru.insert("hello", "algorithm");
/// lru.insert("this", "lru");
/// lru.insert("auth", "tickbh");
/// assert!(lru.len() == 3);
/// assert_eq!(lru.get("hello"), Some(&"algorithm"));
/// assert_eq!(lru.get("this"), Some(&"lru"));
/// assert_eq!(lru.get("now"), None);
/// }
/// ```
pub struct LruCache<K, V, S> {
map: HashMap<KeyRef<K>, NonNull<LruEntry<K, V>>, S>,
cap: usize,
head: *mut LruEntry<K, V>,
tail: *mut LruEntry<K, V>,
}
impl<K: Hash + Eq, V> LruCache<K, V, RandomState> {
pub fn new(cap: usize) -> Self {
LruCache::with_hasher(cap, RandomState::new())
}
}
impl<K, V, S> LruCache<K, V, S> {
/// 提供hash函数
pub fn with_hasher(cap: usize, hash_builder: S) -> LruCache<K, V, S> {
let cap = cap.max(1);
let map = HashMap::with_capacity_and_hasher(cap, hash_builder);
let head = Box::into_raw(Box::new(LruEntry::new_empty()));
let tail = Box::into_raw(Box::new(LruEntry::new_empty()));
unsafe {
(*head).next = tail;
(*tail).prev = head;
}
Self {
map,
cap,
head,
tail,
}
}
/// 获取当前容量
pub fn capacity(&self) -> usize {
self.cap
}
/// 清理当前数据
/// # Examples
///
/// ```
/// use algorithm::LruCache;
/// fn main() {
/// let mut lru = LruCache::new(3);
/// lru.insert("now", "ok");
/// lru.insert("hello", "algorithm");
/// lru.insert("this", "lru");
/// assert!(lru.len() == 3);
/// lru.clear();
/// assert!(lru.len() == 0);
/// }
/// ```
pub fn clear(&mut self) {
self.map.drain().for_each(|(_, entry)| {
let _node = unsafe { *Box::from_raw(entry.as_ptr()) };
});
unsafe {
(*self.head).next = self.tail;
(*self.tail).prev = self.head;
}
}
/// 获取当前长度
pub fn len(&self) -> usize {
self.map.len()
}
pub fn is_empty(&self) -> bool {
self.map.len() == 0
}
/// 从队列中节点剥离
fn detach(&mut self, entry: *mut LruEntry<K, V>) {
unsafe {
(*(*entry).prev).next = (*entry).next;
(*(*entry).next).prev = (*entry).prev;
}
}
/// 加到队列中
fn attach(&mut self, entry: *mut LruEntry<K, V>) {
unsafe {
(*entry).next = (*self.head).next;
(*(*entry).next).prev = entry;
(*entry).prev = self.head;
(*self.head).next = entry;
}
}
/// 扩展当前容量
pub fn reserve(&mut self, additional: usize) {
self.cap += additional;
}
/// 遍历当前的所有值
///
/// ```
/// use algorithm::LruCache;
/// fn main() {
/// let mut lru = LruCache::new(3);
/// lru.insert("hello", "algorithm");
/// lru.insert("this", "lru");
/// for (k, v) in lru.iter() {
/// assert!(k == &"hello" || k == &"this");
/// assert!(v == &"algorithm" || v == &"lru");
/// }
/// assert!(lru.len() == 2);
/// }
/// ```
pub fn iter(&self) -> Iter<'_, K, V> {
Iter { len: self.map.len(), ptr: self.head, end: self.tail, phantom: PhantomData }
}
/// 遍历当前的所有值, 可变
///
/// ```
/// use algorithm::LruCache;
/// fn main() {
/// let mut lru = LruCache::new(3);
/// lru.insert("hello", "algorithm".to_string());
/// lru.insert("this", "lru".to_string());
/// for (k, v) in lru.iter_mut() {
/// v.push_str(" ok");
/// }
/// assert!(lru.len() == 2);
/// assert!(lru.get(&"this") == Some(&"lru ok".to_string()));
/// assert!(lru.get(&"hello") == Some(&"algorithm ok".to_string()));
/// }
/// ```
pub fn iter_mut(&mut self) -> IterMut<'_, K, V> {
IterMut { len: self.map.len(), ptr: self.head, end: self.tail, phantom: PhantomData }
}
/// 遍历当前的key值
///
/// ```
/// use algorithm::LruCache;
/// fn main() {
/// let mut lru = LruCache::new(3);
/// lru.insert("hello", "algorithm");
/// lru.insert("this", "lru");
/// let mut keys = lru.keys();
/// assert!(keys.next()==Some(&"this"));
/// assert!(keys.next()==Some(&"hello"));
/// assert!(keys.next() == None);
/// }
/// ```
pub fn keys(&self) -> Keys<'_, K, V> {
Keys {
iter: self.iter()
}
}
/// 遍历当前的valus值
///
/// ```
/// use algorithm::LruCache;
/// fn main() {
/// let vec = vec![(1, 1), (2, 2), (3, 3)];
/// let mut map: LruCache<_, _, _> = vec.into_iter().collect();
/// for value in map.values_mut() {
/// *value = (*value) * 2
/// }
/// let values: Vec<_> = map.values().cloned().collect();
/// assert_eq!(values.len(), 3);
/// assert!(values.contains(&2));
/// assert!(values.contains(&4));
/// assert!(values.contains(&6));
/// }
/// ```
pub fn values(&self) -> Values<'_, K, V> {
Values {
iter: self.iter()
}
}
/// 遍历当前的valus值
///
/// ```
/// use algorithm::LruCache;
/// fn main() {
/// let mut lru = LruCache::new(3);
/// lru.insert("hello", "algorithm".to_string());
/// lru.insert("this", "lru".to_string());
/// {
/// let mut values = lru.values_mut();
/// values.next().unwrap().push_str(" ok");
/// values.next().unwrap().push_str(" ok");
/// assert!(values.next() == None);
/// }
/// assert_eq!(lru.get(&"this"), Some(&"lru ok".to_string()))
/// }
/// ```
pub fn values_mut(&mut self) -> ValuesMut<'_, K, V> {
ValuesMut {
iter: self.iter_mut()
}
}
pub fn hasher(&self) -> &S {
self.map.hasher()
}
}
impl<K: Hash + Eq, V, S: BuildHasher> LruCache<K, V, S> {
/// 排出当前数据
///
/// ```
/// use algorithm::LruCache;
/// fn main() {
/// let mut lru = LruCache::new(3);
/// lru.insert("hello", "algorithm");
/// lru.insert("this", "lru");
/// {
/// let mut drain = lru.drain();
/// assert!(drain.next()==Some(("hello", "algorithm")));
/// }
/// assert!(lru.len() == 0);
/// }
/// ```
pub fn drain(&mut self) -> Drain<'_, K, V, S> {
Drain { base: self }
}
/// 弹出栈顶上的数据, 最近使用的数据
///
/// ```
/// use algorithm::LruCache;
/// fn main() {
/// let mut lru = LruCache::new(3);
/// lru.insert("hello", "algorithm");
/// lru.insert("this", "lru");
/// assert!(lru.pop()==Some(("this", "lru")));
/// assert!(lru.len() == 1);
/// }
/// ```
pub fn pop(&mut self) -> Option<(K, V)> {
if self.len() == 0 {
return None;
}
unsafe {
let node = (*self.head).next;
self.detach(node);
let key = KeyRef::new((*node).key.as_ptr());
let value = self.map.remove(&key).expect("must ok");
let node = *Box::from_raw(value.as_ptr());
let LruEntry { key, val, .. } = node;
Some((key.assume_init(), val.assume_init()))
}
}
/// 弹出栈尾上的数据, 最久未使用的数据
///
/// ```
/// use algorithm::LruCache;
/// fn main() {
/// let mut lru = LruCache::new(3);
/// lru.insert("hello", "algorithm");
/// lru.insert("this", "lru");
/// assert!(lru.pop_last()==Some(("hello", "algorithm")));
/// assert!(lru.len() == 1);
/// }
/// ```
pub fn pop_last(&mut self) -> Option<(K, V)> {
if self.len() == 0 {
return None;
}
unsafe {
let node = (*self.tail).prev;
self.detach(node);
let key = KeyRef::new((*node).key.as_ptr());
let value = self.map.remove(&key).expect("must ok");
let node = *Box::from_raw(value.as_ptr());
let LruEntry { key, val, .. } = node;
Some((key.assume_init(), val.assume_init()))
}
}
pub fn contains_key<Q>(&mut self, k: &Q) -> bool
where
K: Borrow<Q>,
Q: Hash + Eq + ?Sized,
{
self.map.contains_key(KeyWrapper::from_ref(k))
}
/// 获取key值相对应的value值, 根据hash判定
///
/// ```
/// use algorithm::LruCache;
/// fn main() {
/// let mut lru = LruCache::new(3);
/// lru.insert("hello", "algorithm");
/// lru.insert("this", "lru");
/// assert!(lru.raw_get(&"this") == Some(&"lru"));
/// }
/// ```
pub fn raw_get<Q>(&self, k: &Q) -> Option<&V>
where
K: Borrow<Q>,
Q: Hash + Eq + ?Sized,
{
match self.map.get(KeyWrapper::from_ref(k)) {
Some(l) => {
let node = l.as_ptr();
unsafe { Some(&*(*node).val.as_ptr()) }
}
None => None,
}
}
/// 获取key值相对应的value值, 根据hash判定
///
/// ```
/// use algorithm::LruCache;
/// fn main() {
/// let mut lru = LruCache::new(3);
/// lru.insert("hello", "algorithm");
/// lru.insert("this", "lru");
/// assert!(lru.get(&"this") == Some(&"lru"));
/// }
/// ```
pub fn get<Q>(&mut self, k: &Q) -> Option<&V>
where
K: Borrow<Q>,
Q: Hash + Eq + ?Sized,
{
match self.map.get(KeyWrapper::from_ref(k)) {
Some(l) => {
let node = l.as_ptr();
self.detach(node);
self.attach(node);
unsafe { Some(&*(*node).val.as_ptr()) }
}
None => None,
}
}
/// 获取key值相对应的key和value值, 根据hash判定
///
/// ```
/// use algorithm::LruCache;
/// fn main() {
/// let mut lru = LruCache::new(3);
/// lru.insert("hello", "algorithm");
/// lru.insert("this", "lru");
/// assert!(lru.get_key_value(&"this") == Some((&"this", &"lru")));
/// }
/// ```
pub fn get_key_value<Q>(&mut self, k: &Q) -> Option<(&K, &V)>
where
K: Borrow<Q>,
Q: Hash + Eq + ?Sized,
{
match self.map.get(KeyWrapper::from_ref(k)) {
Some(l) => {
let node = l.as_ptr();
self.detach(node);
self.attach(node);
unsafe { Some((&*(*node).key.as_ptr(), &*(*node).val.as_ptr())) }
}
None => None,
}
}
/// 获取key值相对应的value值, 根据hash判定, 可编辑被改变
///
/// ```
/// use algorithm::LruCache;
/// fn main() {
/// let mut lru = LruCache::new(3);
/// lru.insert("hello", "algorithm".to_string());
/// lru.insert("this", "lru".to_string());
/// lru.get_mut(&"this").unwrap().insert_str(3, " good");
/// assert!(lru.get_key_value(&"this") == Some((&"this", &"lru good".to_string())));
/// }
/// ```
pub fn get_mut<Q>(&mut self, k: &Q) -> Option<&mut V>
where
K: Borrow<Q>,
Q: Hash + Eq + ?Sized,
{
match self.map.get(KeyWrapper::from_ref(k)) {
Some(l) => {
let node = l.as_ptr();
self.detach(node);
self.attach(node);
unsafe { Some(&mut *(*node).val.as_mut_ptr()) }
}
None => None,
}
}
/// 插入值, 如果值重复将返回原来的数据
///
/// ```
/// use algorithm::LruCache;
/// fn main() {
/// let mut lru = LruCache::new(3);
/// lru.insert("hello", "algorithm");
/// lru.insert("this", "lru");
/// assert!(lru.insert("this", "lru good") == Some(&"lru"));
/// }
/// ```
pub fn insert(&mut self, k: K, v: V) -> Option<V> {
self.capture_insert(k, v).map(|(_, v)| v)
}
pub fn capture_insert(&mut self, k: K, mut v: V) -> Option<(K, V)> {
let key = KeyRef::new(&k);
match self.map.get_mut(&key) {
Some(entry) => {
let entry_ptr = entry.as_ptr();
unsafe {
mem::swap(&mut *(*entry_ptr).val.as_mut_ptr(), &mut v);
}
self.detach(entry_ptr);
self.attach(entry_ptr);
Some((k, v))
}
None => {
let (_, entry) = self.replace_or_create_node(k, v);
let entry_ptr = entry.as_ptr();
self.attach(entry_ptr);
unsafe {
self.map
.insert(KeyRef::new((*entry_ptr).key.as_ptr()), entry);
}
None
}
}
}
/// 移除元素
///
/// ```
/// use algorithm::LruCache;
/// fn main() {
/// let mut lru = LruCache::new(3);
/// lru.insert("hello", "algorithm");
/// lru.insert("this", "lru");
/// assert!(lru.remove("this") == Some(("this", "lru")));
/// assert!(lru.len() == 1);
/// }
/// ```
pub fn remove<Q>(&mut self, k: &Q) -> Option<(K, V)>
where
K: Borrow<Q>,
Q: Hash + Eq + ?Sized,
{
match self.map.remove(KeyWrapper::from_ref(k)) {
Some(l) => unsafe {
self.detach(l.as_ptr());
let node = *Box::from_raw(l.as_ptr());
Some((node.key.assume_init(), node.val.assume_init()))
},
None => None,
}
}
fn replace_or_create_node(&mut self, k: K, v: V) -> (Option<(K, V)>, NonNull<LruEntry<K, V>>) {
if self.len() == self.cap {
let old_key = KeyRef {
k: unsafe { &(*(*(*self.tail).prev).key.as_ptr()) },
};
let old_node = self.map.remove(&old_key).unwrap();
let node_ptr: *mut LruEntry<K, V> = old_node.as_ptr();
let replaced = unsafe {
(
mem::replace(&mut (*node_ptr).key, mem::MaybeUninit::new(k)).assume_init(),
mem::replace(&mut (*node_ptr).val, mem::MaybeUninit::new(v)).assume_init(),
)
};
self.detach(node_ptr);
(Some(replaced), old_node)
} else {
(None, unsafe {
NonNull::new_unchecked(Box::into_raw(Box::new(LruEntry::new(k, v))))
})
}
}
/// 根据保留当前的元素, 返回false则表示抛弃元素
///
/// ```
/// use algorithm::LruCache;
/// fn main() {
/// let mut lru = LruCache::new(3);
/// lru.insert("hello", "algorithm");
/// lru.insert("this", "lru");
/// lru.insert("year", "2024");
/// lru.retain(|_, v| *v == "2024" || *v == "lru");
/// assert!(lru.len() == 2);
/// assert!(lru.get("this") == Some(&"lru"));
/// }
/// ```
pub fn retain<F>(&mut self, mut f: F)
where
F: FnMut(&K, &mut V) -> bool,
{
unsafe {
let mut node = (*self.head).next;
while node != self.tail {
if !f(&*(*node).key.as_ptr(), &mut *(*node).val.as_mut_ptr()) {
let next = (*node).next;
self.map.remove(&KeyRef { k: &*(*node).key.as_ptr() });
self.detach(node);
node = next;
} else {
node = (*node).next;
}
}
}
}
}
impl<K: Clone + Hash + Eq, V: Clone, S: Clone + BuildHasher> Clone for LruCache<K, V, S> {
fn clone(&self) -> Self {
let mut new_lru = LruCache::with_hasher(self.cap, self.map.hasher().clone());
for (key, value) in self.iter().rev() {
new_lru.insert(key.clone(), value.clone());
}
new_lru
}
}
impl<K, V, S> Drop for LruCache<K, V, S> {
fn drop(&mut self) {
self.clear();
let _head = unsafe { *Box::from_raw(self.head) };
let _tail = unsafe { *Box::from_raw(self.tail) };
}
}
/// Convert LruCache to iter, move out the tree.
pub struct IntoIter<K: Hash + Eq, V, S: BuildHasher> {
base: LruCache<K, V, S>,
}
// Drop all owned pointers if the collection is dropped
impl<K: Hash + Eq, V, S: BuildHasher> Drop for IntoIter<K, V, S> {
#[inline]
fn drop(&mut self) {
for (_, _) in self {}
}
}
impl<K: Hash + Eq, V, S: BuildHasher> Iterator for IntoIter<K, V, S> {
type Item = (K, V);
fn next(&mut self) -> Option<(K, V)> {
self.base.pop()
}
fn size_hint(&self) -> (usize, Option<usize>) {
(self.base.len(), Some(self.base.len()))
}
}
impl<K: Hash + Eq, V, S: BuildHasher> IntoIterator for LruCache<K, V, S> {
type Item = (K, V);
type IntoIter = IntoIter<K, V, S>;
#[inline]
fn into_iter(self) -> IntoIter<K, V, S> {
IntoIter {
base: self
}
}
}
pub struct Iter<'a, K: 'a, V: 'a> {
len: usize,
ptr: *mut LruEntry<K, V>,
end: *mut LruEntry<K, V>,
phantom: PhantomData<&'a usize>,
}
impl<'a, K, V> Iterator for Iter<'a, K, V> {
type Item = (&'a K, &'a V);
fn next(&mut self) -> Option<Self::Item> {
if self.len == 0 {
return None;
}
unsafe {
self.ptr = (*self.ptr).next;
let node = self.ptr;
self.len -= 1;
Some((&*(*node).key.as_ptr(), &*(*node).val.as_ptr()))
}
}
fn size_hint(&self) -> (usize, Option<usize>) {
(self.len, Some(self.len))
}
}
impl<'a, K, V> DoubleEndedIterator for Iter<'a, K, V> {
fn next_back(&mut self) -> Option<Self::Item> {
if self.len == 0 {
return None;
}
unsafe {
self.end = (*self.end).prev;
let node = self.end;
self.len -= 1;
Some((&*(*node).key.as_ptr(), &*(*node).val.as_ptr()))
}
}
}
impl<K: Hash + Eq, V, S: BuildHasher> DoubleEndedIterator for IntoIter<K, V, S> {
#[inline]
fn next_back(&mut self) -> Option<(K, V)> {
self.base.pop_last()
}
}
pub struct IterMut<'a, K: 'a, V: 'a> {
len: usize,
ptr: *mut LruEntry<K, V>,
end: *mut LruEntry<K, V>,
phantom: PhantomData<&'a usize>,
}
impl<'a, K, V> Iterator for IterMut<'a, K, V> {
type Item = (&'a K, &'a mut V);
fn next(&mut self) -> Option<Self::Item> {
if self.len == 0 {
return None;
}
unsafe {
self.ptr = (*self.ptr).next;
let node = self.ptr;
self.len -= 1;
Some((&*(*node).key.as_ptr(), &mut *(*node).val.as_mut_ptr()))
}
}
fn size_hint(&self) -> (usize, Option<usize>) {
(self.len, Some(self.len))
}
}
impl<'a, K, V> DoubleEndedIterator for IterMut<'a, K, V> {
fn next_back(&mut self) -> Option<Self::Item> {
if self.len == 0 {
return None;
}
unsafe {
self.end = (*self.end).prev;
let node = self.end;
self.len -= 1;
Some((&*(*node).key.as_ptr(), &mut *(*node).val.as_mut_ptr()))
}
}
}
pub struct Drain<'a, K: 'a + Hash + Eq, V: 'a, S: BuildHasher> {
pub base: &'a mut LruCache<K, V, S>,
}
impl<'a, K: Hash + Eq, V, S: BuildHasher> ExactSizeIterator for Drain<'a, K, V, S> {
fn len(&self) -> usize {
self.base.map.len()
}
}
impl<'a, K: Hash + Eq, V, S: BuildHasher> Iterator for Drain<'a, K, V, S> {
type Item = (K, V);
fn next(&mut self) -> Option<Self::Item> {
if self.base.len() == 0 {
return None;
}
self.base.pop_last()
}
}
impl<'a, K: Hash + Eq, V, S: BuildHasher> Drop for Drain<'a, K, V, S> {
fn drop(&mut self) {
self.base.clear();
}
}
pub struct Keys<'a, K, V> {
iter: Iter<'a, K, V>,
}
impl<'a, K, V> Iterator for Keys<'a, K, V> {
type Item = &'a K;
fn next(&mut self) -> Option<Self::Item> {
self.iter.next().map(|(k, _)| k)
}
fn size_hint(&self) -> (usize, Option<usize>) {
(self.iter.len, Some(self.iter.len))
}
}
pub struct Values<'a, K, V> {
iter: Iter<'a, K, V>,
}
impl<'a, K, V> Iterator for Values<'a, K, V> {
type Item = &'a V;
fn next(&mut self) -> Option<Self::Item> {
self.iter.next().map(|(_, v)| v)
}
fn size_hint(&self) -> (usize, Option<usize>) {
(self.iter.len, Some(self.iter.len))
}
}
pub struct ValuesMut<'a, K, V> {
iter: IterMut<'a, K, V>,
}
impl<'a, K, V> Iterator for ValuesMut<'a, K, V> {
type Item = &'a mut V;
fn next(&mut self) -> Option<Self::Item> {
self.iter.next().map(|(_, v)| v)
}
fn size_hint(&self) -> (usize, Option<usize>) {
(self.iter.len, Some(self.iter.len))
}
}
impl<K: Hash + Eq, V> FromIterator<(K, V)> for LruCache<K, V, RandomState> {
fn from_iter<T: IntoIterator<Item=(K, V)>>(iter: T) -> LruCache<K, V, RandomState> {
let mut lru = LruCache::new(2);
lru.extend(iter);
lru
}
}
impl<K: Hash + Eq, V> Extend<(K, V)> for LruCache<K, V, RandomState> {
fn extend<T: IntoIterator<Item=(K, V)>>(&mut self, iter: T) {
let iter = iter.into_iter();
for (k, v) in iter {
self.reserve(1);
self.insert(k, v);
}
}
}
impl<K, V, S> PartialEq for LruCache<K, V, S>
where
K: Eq + Hash,
V: PartialEq,
S: BuildHasher
{
fn eq(&self, other: &LruCache<K, V, S>) -> bool {
if self.len() != other.len() {
return false;
}
self.iter()
.all(|(key, value)| other.raw_get(key).map_or(false, |v| *value == *v))
}
}
impl<K, V, S> Eq for LruCache<K, V, S>
where
K: Eq + Hash,
V: PartialEq,
S: BuildHasher
{}
impl<K, V, S> Debug for LruCache<K, V, S>
where
K: Ord + Debug,
V: Debug,
{
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.debug_map().entries(self.iter()).finish()
}
}
impl<'a, K, V, S> Index<&'a K> for LruCache<K, V, S>
where
K: Hash+Eq,
S: BuildHasher
{
type Output = V;
#[inline]
fn index(&self, index: &K) -> &V {
self.raw_get(index).expect("no entry found for key")
}
}
impl<'a, K, V, S> IndexMut<&'a K> for LruCache<K, V, S>
where
K: Hash+Eq,
S: BuildHasher
{
#[inline]
fn index_mut(&mut self, index: &K) -> &mut V {
self.get_mut(index).expect("no entry found for key")
}
}
#[cfg(test)]
mod tests {
use std::collections::hash_map::RandomState;
use super::LruCache;
#[test]
fn test_insert() {
let mut m = LruCache::new(2);
assert_eq!(m.len(), 0);
m.insert(1, 2);
assert_eq!(m.len(), 1);
m.insert(2, 4);
assert_eq!(m.len(), 2);
m.insert(3, 6);
assert_eq!(m.len(), 2);
assert_eq!(m.get(&1), None);
assert_eq!(*m.get(&2).unwrap(), 4);
assert_eq!(*m.get(&3).unwrap(), 6);
}
#[test]
fn test_replace() {
let mut m = LruCache::new(2);
assert_eq!(m.len(), 0);
m.insert(2, 4);
assert_eq!(m.len(), 1);
m.insert(2, 6);
assert_eq!(m.len(), 1);
assert_eq!(*m.get(&2).unwrap(), 6);
}
#[test]
fn test_clone() {
let mut m = LruCache::new(2);
assert_eq!(m.len(), 0);
m.insert(1, 2);
assert_eq!(m.len(), 1);
m.insert(2, 4);
assert_eq!(m.len(), 2);
let mut m2 = m.clone();
m.clear();
assert_eq!(*m2.get(&1).unwrap(), 2);
assert_eq!(*m2.get(&2).unwrap(), 4);
assert_eq!(m2.len(), 2);
}
#[test]
fn test_empty_remove() {
let mut m: LruCache<isize, bool, RandomState> = LruCache::new(2);
assert_eq!(m.remove(&0), None);
}
#[test]
fn test_empty_iter() {
let mut m: LruCache<isize, bool, RandomState> = LruCache::new(2);
assert_eq!(m.iter().next(), None);
assert_eq!(m.iter_mut().next(), None);
assert_eq!(m.len(), 0);
assert!(m.is_empty());
assert_eq!(m.into_iter().next(), None);
}
#[test]
fn test_lots_of_insertions() {
let mut m = LruCache::new(1000);
// Try this a few times to make sure we never screw up the hashmap's
// internal state.
for _ in 0..10 {
assert!(m.is_empty());
for i in 1..101 {
m.insert(i, i);
for j in 1..i + 1 {
let r = m.get(&j);
assert_eq!(r, Some(&j));
}
for j in i + 1..101 {
let r = m.get(&j);
assert_eq!(r, None);
}
}
for i in 101..201 {
assert!(!m.contains_key(&i));
}
// remove forwards
for i in 1..101 {
assert!(m.remove(&i).is_some());
for j in 1..i + 1 {
assert!(!m.contains_key(&j));
}
for j in i + 1..101 {
assert!(m.contains_key(&j));
}
}
for i in 1..101 {
assert!(!m.contains_key(&i));
}
for i in 1..101 {
m.insert(i, i);
}
// remove backwards
for i in (1..101).rev() {
assert!(m.remove(&i).is_some());
for j in i..101 {
assert!(!m.contains_key(&j));
}
for j in 1..i {
assert!(m.contains_key(&j));
}
}
}
}
#[test]
fn test_find_mut() {
let mut m = LruCache::new(3);
m.insert(1, 12);
m.insert(2, 8);
m.insert(5, 14);
let new = 100;
match m.get_mut(&5) {
None => panic!(),
Some(x) => *x = new,
}
assert_eq!(m.get(&5), Some(&new));
}
#[test]
fn test_remove() {
let mut m = LruCache::new(3);
m.insert(1, 2);
assert_eq!(*m.get(&1).unwrap(), 2);
m.insert(5, 3);
assert_eq!(*m.get(&5).unwrap(), 3);
m.insert(9, 4);
assert_eq!(*m.get(&1).unwrap(), 2);
assert_eq!(*m.get(&5).unwrap(), 3);
assert_eq!(*m.get(&9).unwrap(), 4);
assert_eq!(m.remove(&1).unwrap(), (1, 2));
assert_eq!(m.remove(&5).unwrap(), (5, 3));
assert_eq!(m.remove(&9).unwrap(), (9, 4));
assert_eq!(m.len(), 0);
}
#[test]
fn test_is_empty() {
let mut m = LruCache::new(2);
m.insert(1, 2);
assert!(!m.is_empty());
assert!(m.remove(&1).is_some());
assert!(m.is_empty());
}
#[test]
fn test_pop() {
let mut m = LruCache::new(3);
m.insert(3, 6);
m.insert(2, 4);
m.insert(1, 2);
assert_eq!(m.len(), 3);
assert_eq!(m.pop(), Some((1, 2)));
assert_eq!(m.len(), 2);
assert_eq!(m.pop_last(), Some((3, 6)));
assert_eq!(m.len(), 1);
}
#[test]
fn test_iterate() {
let mut m = LruCache::new(32);
for i in 0..32 {
m.insert(i, i * 2);
}
assert_eq!(m.len(), 32);
let mut observed: u32 = 0;
for (k, v) in m.iter() {
assert_eq!(*v, *k * 2);
observed |= 1 << *k;
}
assert_eq!(observed, 0xFFFF_FFFF);
}
#[test]
fn test_keys() {
let vec = vec![(1, 'a'), (2, 'b'), (3, 'c')];
let map: LruCache<_, _, _> = vec.into_iter().collect();
let keys: Vec<_> = map.keys().cloned().collect();
assert_eq!(keys.len(), 3);
assert!(keys.contains(&1));
assert!(keys.contains(&2));
assert!(keys.contains(&3));
}
#[test]
fn test_values() {
let vec = vec![(1, 'a'), (2, 'b'), (3, 'c')];
let map: LruCache<_, _, _> = vec.into_iter().collect();
let values: Vec<_> = map.values().cloned().collect();
assert_eq!(values.len(), 3);
assert!(values.contains(&'a'));
assert!(values.contains(&'b'));
assert!(values.contains(&'c'));
}
#[test]
fn test_values_mut() {
let vec = vec![(1, 1), (2, 2), (3, 3)];
let mut map: LruCache<_, _, _> = vec.into_iter().collect();
for value in map.values_mut() {
*value = (*value) * 2
}
let values: Vec<_> = map.values().cloned().collect();
assert_eq!(values.len(), 3);
assert!(values.contains(&2));
assert!(values.contains(&4));
assert!(values.contains(&6));
}
#[test]
fn test_find() {
let mut m = LruCache::new(2);
assert!(m.get(&1).is_none());
m.insert(1, 2);
match m.get(&1) {
None => panic!(),
Some(v) => assert_eq!(*v, 2),
}
}
#[test]
fn test_eq() {
let mut m1 = LruCache::new(3);
m1.insert(1, 2);
m1.insert(2, 3);
m1.insert(3, 4);
let mut m2 = LruCache::new(3);
m2.insert(1, 2);
m2.insert(2, 3);
assert!(m1 != m2);
m2.insert(3, 4);
assert_eq!(m1, m2);
}
#[test]
fn test_from_iter() {
let xs = [(1, 1), (2, 2), (3, 3), (4, 4), (5, 5), (6, 6)];
let map: LruCache<_, _, _> = xs.iter().cloned().collect();
for &(k, v) in &xs {
assert_eq!(map.raw_get(&k), Some(&v));
}
}
#[test]
fn test_size_hint() {
let xs = [(1, 1), (2, 2), (3, 3), (4, 4), (5, 5), (6, 6)];
let map: LruCache<_, _, _> = xs.iter().cloned().collect();
let mut iter = map.iter();
for _ in iter.by_ref().take(3) {}
assert_eq!(iter.size_hint(), (3, Some(3)));
}
#[test]
fn test_iter_len() {
let xs = [(1, 1), (2, 2), (3, 3), (4, 4), (5, 5), (6, 6)];
let map: LruCache<_, _, _> = xs.iter().cloned().collect();
let mut iter = map.iter();
for _ in iter.by_ref().take(3) {}
assert_eq!(iter.count(), 3);
}
#[test]
fn test_mut_size_hint() {
let xs = [(1, 1), (2, 2), (3, 3), (4, 4), (5, 5), (6, 6)];
let mut map: LruCache<_, _, _> = xs.iter().cloned().collect();
let mut iter = map.iter_mut();
for _ in iter.by_ref().take(3) {}
assert_eq!(iter.size_hint(), (3, Some(3)));
}
#[test]
fn test_iter_mut_len() {
let xs = [(1, 1), (2, 2), (3, 3), (4, 4), (5, 5), (6, 6)];
let mut map: LruCache<_, _, _> = xs.iter().cloned().collect();
let mut iter = map.iter_mut();
for _ in iter.by_ref().take(3) {}
assert_eq!(iter.count(), 3);
}
#[test]
fn test_index() {
let mut map = LruCache::new(2);
map.insert(1, 2);
map.insert(2, 1);
map.insert(3, 4);
assert_eq!(map[&2], 1);
}
#[test]
#[should_panic]
fn test_index_nonexistent() {
let mut map = LruCache::new(2);
map.insert(1, 2);
map.insert(2, 1);
map.insert(3, 4);
map[&4];
}
#[test]
fn test_extend_iter() {
let mut a = LruCache::new(2);
a.insert(1, "one");
let mut b = LruCache::new(2);
b.insert(2, "two");
b.insert(3, "three");
a.extend(b.into_iter());
assert_eq!(a.len(), 3);
assert_eq!(a[&1], "one");
assert_eq!(a[&2], "two");
assert_eq!(a[&3], "three");
}
#[test]
fn test_drain() {
let mut a = LruCache::new(3);
a.insert(1, 1);
a.insert(2, 2);
a.insert(3, 3);
assert_eq!(a.len(), 3);
{
let mut drain = a.drain();
assert_eq!(drain.next().unwrap(), (1, 1));
assert_eq!(drain.next().unwrap(), (2, 2));
}
assert_eq!(a.len(), 0);
}
}