2012-12-03 18:48:01 -06:00
|
|
|
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
//! A map type
|
2012-10-04 21:58:31 -05:00
|
|
|
#[forbid(deprecated_mode)];
|
2012-08-02 17:42:56 -05:00
|
|
|
|
2012-09-04 13:23:53 -05:00
|
|
|
use core::cmp::Eq;
|
2012-12-23 16:41:37 -06:00
|
|
|
use core::hash::Hash;
|
|
|
|
use core::io::WriterUtil;
|
|
|
|
use core::io;
|
|
|
|
use core::ops;
|
|
|
|
use core::to_str::ToStr;
|
|
|
|
use core::mutable::Mut;
|
2013-01-08 21:37:25 -06:00
|
|
|
use core::prelude::*;
|
2012-12-23 16:41:37 -06:00
|
|
|
use core::to_bytes::IterBytes;
|
|
|
|
use core::uint;
|
|
|
|
use core::vec;
|
2012-08-30 21:01:22 -05:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// A convenience type to treat a hashmap as a set
|
2013-01-28 12:46:43 -06:00
|
|
|
pub type Set<K> = HashMap<K, ()>;
|
2012-01-09 09:24:53 -06:00
|
|
|
|
2013-01-28 12:46:43 -06:00
|
|
|
pub type HashMap<K, V> = chained::T<K, V>;
|
2011-07-21 20:14:39 -05:00
|
|
|
|
2013-01-25 18:57:39 -06:00
|
|
|
pub trait StdMap<K:Eq IterBytes Hash Copy, V: Copy> {
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Return the number of elements in the map
|
2012-08-27 18:26:35 -05:00
|
|
|
pure fn size() -> uint;
|
2011-10-26 13:28:23 -05:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/**
|
|
|
|
* Add a value to the map.
|
|
|
|
*
|
|
|
|
* If the map already contains a value for the specified key then the
|
|
|
|
* original value is replaced.
|
|
|
|
*
|
|
|
|
* Returns true if the key did not already exist in the map
|
|
|
|
*/
|
2012-11-11 03:01:37 -06:00
|
|
|
fn insert(key: K, value: V) -> bool;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a value to the map.
|
|
|
|
*
|
|
|
|
* If the map contains a value for the key, use the function
|
|
|
|
* to set a new value.
|
|
|
|
*/
|
2012-11-25 14:45:18 -06:00
|
|
|
fn update_with_key(key: K, newval: V, ff: fn(K, V, V) -> V) -> bool;
|
2012-11-21 01:33:31 -06:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Add a value to the map.
|
|
|
|
*
|
2012-11-25 14:45:18 -06:00
|
|
|
* If the map contains a value for the key, use the function to
|
2012-12-28 15:57:42 -06:00
|
|
|
* set a new value. (Like `update_with_key`, but with a
|
2012-11-25 14:45:18 -06:00
|
|
|
* function of only values.)
|
2012-11-21 01:33:31 -06:00
|
|
|
*/
|
2012-11-25 14:45:18 -06:00
|
|
|
fn update(key: K, newval: V, ff: fn(V, V) -> V) -> bool;
|
2011-10-26 13:28:23 -05:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Returns true if the map contains a value for the specified key
|
2012-11-17 10:41:47 -06:00
|
|
|
pure fn contains_key(key: K) -> bool;
|
2012-08-02 17:42:56 -05:00
|
|
|
|
|
|
|
/// Returns true if the map contains a value for the specified
|
|
|
|
/// key, taking the key by reference.
|
2012-11-17 10:41:47 -06:00
|
|
|
pure fn contains_key_ref(key: &K) -> bool;
|
2011-10-26 13:28:23 -05:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/**
|
|
|
|
* Get the value for the specified key. Fails if the key does not exist in
|
|
|
|
* the map.
|
|
|
|
*/
|
2012-11-17 10:41:47 -06:00
|
|
|
pure fn get(key: K) -> V;
|
2012-06-27 18:34:53 -05:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/**
|
|
|
|
* Get the value for the specified key. If the key does not exist in
|
|
|
|
* the map then returns none.
|
|
|
|
*/
|
2012-10-03 14:21:48 -05:00
|
|
|
pure fn find(key: K) -> Option<V>;
|
2011-10-26 13:28:23 -05:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/**
|
2012-08-21 17:55:17 -05:00
|
|
|
* Remove and return a value from the map. Returns true if the
|
|
|
|
* key was present in the map, otherwise false.
|
2012-07-04 16:53:12 -05:00
|
|
|
*/
|
2012-10-03 14:21:48 -05:00
|
|
|
fn remove(key: K) -> bool;
|
2011-10-26 13:28:23 -05:00
|
|
|
|
2012-07-08 18:04:57 -05:00
|
|
|
/// Clear the map, removing all key/value pairs.
|
|
|
|
fn clear();
|
|
|
|
|
2012-08-02 17:42:56 -05:00
|
|
|
/// Iterate over all the key/value pairs in the map by value
|
2012-10-04 21:58:31 -05:00
|
|
|
pure fn each(fn(key: K, value: V) -> bool);
|
2012-08-02 17:42:56 -05:00
|
|
|
|
|
|
|
/// Iterate over all the keys in the map by value
|
2012-10-03 14:21:48 -05:00
|
|
|
pure fn each_key(fn(key: K) -> bool);
|
2012-08-02 17:42:56 -05:00
|
|
|
|
|
|
|
/// Iterate over all the values in the map by value
|
2012-10-03 14:21:48 -05:00
|
|
|
pure fn each_value(fn(value: V) -> bool);
|
2011-10-26 13:28:23 -05:00
|
|
|
|
2012-08-02 17:42:56 -05:00
|
|
|
/// Iterate over all the key/value pairs in the map by reference
|
2012-08-27 18:26:35 -05:00
|
|
|
pure fn each_ref(fn(key: &K, value: &V) -> bool);
|
2012-01-27 22:39:16 -06:00
|
|
|
|
2012-08-02 17:42:56 -05:00
|
|
|
/// Iterate over all the keys in the map by reference
|
2012-08-27 18:26:35 -05:00
|
|
|
pure fn each_key_ref(fn(key: &K) -> bool);
|
2012-08-02 17:42:56 -05:00
|
|
|
|
|
|
|
/// Iterate over all the values in the map by reference
|
2012-08-27 18:26:35 -05:00
|
|
|
pure fn each_value_ref(fn(value: &V) -> bool);
|
2012-01-09 09:24:53 -06:00
|
|
|
}
|
2011-10-26 13:28:23 -05:00
|
|
|
|
2012-12-23 16:41:37 -06:00
|
|
|
pub mod util {
|
2013-01-22 10:44:24 -06:00
|
|
|
pub struct Rational {
|
|
|
|
// : int::positive(*.den);
|
|
|
|
num: int,
|
|
|
|
den: int,
|
|
|
|
}
|
2012-08-02 13:26:52 -05:00
|
|
|
|
2012-10-02 14:02:59 -05:00
|
|
|
pub pure fn rational_leq(x: Rational, y: Rational) -> bool {
|
2012-08-02 13:26:52 -05:00
|
|
|
// NB: Uses the fact that rationals have positive denominators WLOG:
|
|
|
|
|
|
|
|
x.num * y.den <= y.num * x.den
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-06-21 18:44:10 -05:00
|
|
|
// FIXME (#2344): package this up and export it as a datatype usable for
|
|
|
|
// external code that doesn't want to pay the cost of a box.
|
2012-10-02 14:02:59 -05:00
|
|
|
pub mod chained {
|
2013-01-25 18:57:39 -06:00
|
|
|
use map::{StdMap, util};
|
2012-12-23 16:41:37 -06:00
|
|
|
|
|
|
|
use core::io;
|
|
|
|
use core::ops;
|
|
|
|
use core::option;
|
2013-01-08 21:37:25 -06:00
|
|
|
use core::prelude::*;
|
2012-12-23 16:41:37 -06:00
|
|
|
use core::uint;
|
|
|
|
use core::vec;
|
2012-05-22 12:02:34 -05:00
|
|
|
|
2012-07-08 18:04:57 -05:00
|
|
|
const initial_capacity: uint = 32u; // 2^5
|
|
|
|
|
2012-09-10 17:38:28 -05:00
|
|
|
struct Entry<K, V> {
|
2012-09-07 16:50:47 -05:00
|
|
|
hash: uint,
|
|
|
|
key: K,
|
|
|
|
value: V,
|
2012-09-10 17:38:28 -05:00
|
|
|
mut next: Option<@Entry<K, V>>
|
2011-12-06 21:56:47 -06:00
|
|
|
}
|
|
|
|
|
2013-01-28 12:46:43 -06:00
|
|
|
struct HashMap_<K, V> {
|
2012-09-07 16:50:47 -05:00
|
|
|
mut count: uint,
|
2012-09-10 17:38:28 -05:00
|
|
|
mut chains: ~[mut Option<@Entry<K,V>>]
|
2012-07-11 17:00:40 -05:00
|
|
|
}
|
|
|
|
|
2013-01-28 12:46:43 -06:00
|
|
|
pub type T<K, V> = @HashMap_<K, V>;
|
2012-07-11 17:00:40 -05:00
|
|
|
|
2012-09-10 17:38:28 -05:00
|
|
|
enum SearchResult<K, V> {
|
|
|
|
NotFound,
|
|
|
|
FoundFirst(uint, @Entry<K,V>),
|
|
|
|
FoundAfter(@Entry<K,V>, @Entry<K,V>)
|
2011-12-06 21:56:47 -06:00
|
|
|
}
|
|
|
|
|
2012-09-10 17:38:28 -05:00
|
|
|
priv impl<K:Eq IterBytes Hash, V: Copy> T<K, V> {
|
2012-08-27 18:26:35 -05:00
|
|
|
pure fn search_rem(k: &K, h: uint, idx: uint,
|
2012-09-10 17:38:28 -05:00
|
|
|
e_root: @Entry<K,V>) -> SearchResult<K,V> {
|
2012-05-22 12:02:34 -05:00
|
|
|
let mut e0 = e_root;
|
|
|
|
let mut comp = 1u; // for logging
|
|
|
|
loop {
|
2012-08-06 14:34:08 -05:00
|
|
|
match copy e0.next {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("search_tbl: absent, comp %u, hash %u, idx %u",
|
|
|
|
comp, h, idx);
|
2012-09-10 17:38:28 -05:00
|
|
|
return NotFound;
|
2012-05-22 12:02:34 -05:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(e1) => {
|
2012-05-22 12:02:34 -05:00
|
|
|
comp += 1u;
|
2012-09-18 13:17:40 -05:00
|
|
|
unsafe {
|
2012-09-07 19:24:02 -05:00
|
|
|
if e1.hash == h && e1.key == *k {
|
2012-08-27 18:26:35 -05:00
|
|
|
debug!("search_tbl: present, comp %u, \
|
|
|
|
hash %u, idx %u",
|
|
|
|
comp, h, idx);
|
2012-09-10 17:38:28 -05:00
|
|
|
return FoundAfter(e0, e1);
|
2012-08-27 18:26:35 -05:00
|
|
|
} else {
|
|
|
|
e0 = e1;
|
|
|
|
}
|
2012-05-22 12:02:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2012-09-10 17:38:28 -05:00
|
|
|
pure fn search_tbl(k: &K, h: uint) -> SearchResult<K,V> {
|
2012-05-22 12:02:34 -05:00
|
|
|
let idx = h % vec::len(self.chains);
|
2012-08-06 14:34:08 -05:00
|
|
|
match copy self.chains[idx] {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => {
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("search_tbl: none, comp %u, hash %u, idx %u",
|
|
|
|
0u, h, idx);
|
2012-09-10 17:38:28 -05:00
|
|
|
return NotFound;
|
2011-12-06 21:56:47 -06:00
|
|
|
}
|
2012-08-20 14:23:37 -05:00
|
|
|
Some(e) => {
|
2012-09-18 13:17:40 -05:00
|
|
|
unsafe {
|
2012-09-07 19:24:02 -05:00
|
|
|
if e.hash == h && e.key == *k {
|
2012-08-27 18:26:35 -05:00
|
|
|
debug!("search_tbl: present, comp %u, hash %u, \
|
|
|
|
idx %u", 1u, h, idx);
|
2012-09-10 17:38:28 -05:00
|
|
|
return FoundFirst(idx, e);
|
2012-08-27 18:26:35 -05:00
|
|
|
} else {
|
|
|
|
return self.search_rem(k, h, idx, e);
|
|
|
|
}
|
2011-12-06 21:56:47 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-22 12:02:34 -05:00
|
|
|
fn rehash() {
|
2012-08-02 17:42:56 -05:00
|
|
|
let n_old_chains = self.chains.len();
|
2012-05-22 12:02:34 -05:00
|
|
|
let n_new_chains: uint = uint::next_power_of_two(n_old_chains+1u);
|
|
|
|
let new_chains = chains(n_new_chains);
|
2012-06-30 18:19:07 -05:00
|
|
|
for self.each_entry |entry| {
|
2012-05-22 12:02:34 -05:00
|
|
|
let idx = entry.hash % n_new_chains;
|
|
|
|
entry.next = new_chains[idx];
|
2012-08-20 14:23:37 -05:00
|
|
|
new_chains[idx] = Some(entry);
|
2012-05-22 12:02:34 -05:00
|
|
|
}
|
2012-10-23 13:11:23 -05:00
|
|
|
self.chains = move new_chains;
|
2011-12-06 21:56:47 -06:00
|
|
|
}
|
|
|
|
|
2012-09-10 17:38:28 -05:00
|
|
|
pure fn each_entry(blk: fn(@Entry<K,V>) -> bool) {
|
2012-08-02 17:42:56 -05:00
|
|
|
// n.b. we can't use vec::iter() here because self.chains
|
|
|
|
// is stored in a mutable location.
|
|
|
|
let mut i = 0u, n = self.chains.len();
|
2012-05-22 12:02:34 -05:00
|
|
|
while i < n {
|
|
|
|
let mut chain = self.chains[i];
|
|
|
|
loop {
|
2012-08-06 14:34:08 -05:00
|
|
|
chain = match chain {
|
2012-08-20 14:23:37 -05:00
|
|
|
None => break,
|
|
|
|
Some(entry) => {
|
2012-05-22 12:02:34 -05:00
|
|
|
let next = entry.next;
|
2012-08-01 19:30:05 -05:00
|
|
|
if !blk(entry) { return; }
|
2012-05-22 12:02:34 -05:00
|
|
|
next
|
|
|
|
}
|
|
|
|
}
|
2012-04-23 06:42:15 -05:00
|
|
|
}
|
2012-05-22 12:02:34 -05:00
|
|
|
i += 1u;
|
2012-04-23 06:42:15 -05:00
|
|
|
}
|
2011-12-06 21:56:47 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-01-25 18:57:39 -06:00
|
|
|
impl<K:Eq IterBytes Hash Copy, V: Copy> T<K, V>: StdMap<K, V> {
|
2012-08-27 18:26:35 -05:00
|
|
|
pure fn size() -> uint { self.count }
|
2011-12-06 21:56:47 -06:00
|
|
|
|
2012-11-17 10:41:47 -06:00
|
|
|
pure fn contains_key(k: K) -> bool {
|
2012-08-02 17:42:56 -05:00
|
|
|
self.contains_key_ref(&k)
|
|
|
|
}
|
|
|
|
|
2012-11-17 10:41:47 -06:00
|
|
|
pure fn contains_key_ref(k: &K) -> bool {
|
2012-09-07 19:24:02 -05:00
|
|
|
let hash = k.hash_keyed(0,0) as uint;
|
2012-08-06 14:34:08 -05:00
|
|
|
match self.search_tbl(k, hash) {
|
2012-09-10 17:38:28 -05:00
|
|
|
NotFound => false,
|
|
|
|
FoundFirst(*) | FoundAfter(*) => true
|
2012-05-22 12:02:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-04 21:58:31 -05:00
|
|
|
fn insert(k: K, v: V) -> bool {
|
2012-09-07 19:24:02 -05:00
|
|
|
let hash = k.hash_keyed(0,0) as uint;
|
2012-08-06 14:34:08 -05:00
|
|
|
match self.search_tbl(&k, hash) {
|
2012-09-10 17:38:28 -05:00
|
|
|
NotFound => {
|
2012-05-22 12:02:34 -05:00
|
|
|
self.count += 1u;
|
|
|
|
let idx = hash % vec::len(self.chains);
|
|
|
|
let old_chain = self.chains[idx];
|
2012-09-10 17:38:28 -05:00
|
|
|
self.chains[idx] = Some(@Entry {
|
2012-05-22 12:02:34 -05:00
|
|
|
hash: hash,
|
|
|
|
key: k,
|
2012-08-02 17:42:56 -05:00
|
|
|
value: v,
|
|
|
|
next: old_chain});
|
2012-05-22 12:02:34 -05:00
|
|
|
|
|
|
|
// consider rehashing if more 3/4 full
|
2012-03-23 07:30:29 -05:00
|
|
|
let nchains = vec::len(self.chains);
|
2013-01-22 10:44:24 -06:00
|
|
|
let load = util::Rational {
|
|
|
|
num: (self.count + 1u) as int,
|
|
|
|
den: nchains as int,
|
|
|
|
};
|
|
|
|
if !util::rational_leq(load, util::Rational {num:3, den:4}) {
|
2012-05-22 12:02:34 -05:00
|
|
|
self.rehash();
|
|
|
|
}
|
|
|
|
|
2012-08-01 19:30:05 -05:00
|
|
|
return true;
|
2012-05-22 12:02:34 -05:00
|
|
|
}
|
2012-09-10 17:38:28 -05:00
|
|
|
FoundFirst(idx, entry) => {
|
|
|
|
self.chains[idx] = Some(@Entry {
|
2012-08-02 17:42:56 -05:00
|
|
|
hash: hash,
|
|
|
|
key: k,
|
|
|
|
value: v,
|
|
|
|
next: entry.next});
|
2012-08-01 19:30:05 -05:00
|
|
|
return false;
|
2012-05-22 12:02:34 -05:00
|
|
|
}
|
2012-09-10 17:38:28 -05:00
|
|
|
FoundAfter(prev, entry) => {
|
|
|
|
prev.next = Some(@Entry {
|
2012-08-02 17:42:56 -05:00
|
|
|
hash: hash,
|
|
|
|
key: k,
|
|
|
|
value: v,
|
|
|
|
next: entry.next});
|
|
|
|
return false;
|
2012-05-22 12:02:34 -05:00
|
|
|
}
|
2012-03-23 07:30:29 -05:00
|
|
|
}
|
2011-12-06 21:56:47 -06:00
|
|
|
}
|
|
|
|
|
2012-10-03 14:21:48 -05:00
|
|
|
pure fn find(k: K) -> Option<V> {
|
2012-09-18 13:17:40 -05:00
|
|
|
unsafe {
|
2012-09-07 19:24:02 -05:00
|
|
|
match self.search_tbl(&k, k.hash_keyed(0,0) as uint) {
|
2012-09-10 17:38:28 -05:00
|
|
|
NotFound => None,
|
|
|
|
FoundFirst(_, entry) => Some(entry.value),
|
|
|
|
FoundAfter(_, entry) => Some(entry.value)
|
2012-08-27 18:26:35 -05:00
|
|
|
}
|
2012-05-22 12:02:34 -05:00
|
|
|
}
|
|
|
|
}
|
2011-12-06 21:56:47 -06:00
|
|
|
|
2012-11-25 14:45:18 -06:00
|
|
|
fn update_with_key(key: K, newval: V, ff: fn(K, V, V) -> V) -> bool {
|
2012-11-21 01:33:31 -06:00
|
|
|
/*
|
2012-11-11 03:01:37 -06:00
|
|
|
match self.find(key) {
|
|
|
|
None => return self.insert(key, val),
|
|
|
|
Some(copy orig) => return self.insert(key, ff(key, orig, val))
|
|
|
|
}
|
2012-11-21 01:33:31 -06:00
|
|
|
*/
|
|
|
|
|
|
|
|
let hash = key.hash_keyed(0,0) as uint;
|
|
|
|
match self.search_tbl(&key, hash) {
|
|
|
|
NotFound => {
|
|
|
|
self.count += 1u;
|
|
|
|
let idx = hash % vec::len(self.chains);
|
|
|
|
let old_chain = self.chains[idx];
|
|
|
|
self.chains[idx] = Some(@Entry {
|
|
|
|
hash: hash,
|
|
|
|
key: key,
|
|
|
|
value: newval,
|
|
|
|
next: old_chain});
|
|
|
|
|
|
|
|
// consider rehashing if more 3/4 full
|
|
|
|
let nchains = vec::len(self.chains);
|
2013-01-22 10:44:24 -06:00
|
|
|
let load = util::Rational {
|
|
|
|
num: (self.count + 1u) as int,
|
|
|
|
den: nchains as int,
|
|
|
|
};
|
|
|
|
if !util::rational_leq(load, util::Rational {num:3, den:4}) {
|
2012-11-21 01:33:31 -06:00
|
|
|
self.rehash();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
FoundFirst(idx, entry) => {
|
|
|
|
self.chains[idx] = Some(@Entry {
|
|
|
|
hash: hash,
|
|
|
|
key: key,
|
|
|
|
value: ff(key, entry.value, newval),
|
|
|
|
next: entry.next});
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
FoundAfter(prev, entry) => {
|
|
|
|
prev.next = Some(@Entry {
|
|
|
|
hash: hash,
|
|
|
|
key: key,
|
|
|
|
value: ff(key, entry.value, newval),
|
|
|
|
next: entry.next});
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-25 14:45:18 -06:00
|
|
|
fn update(key: K, newval: V, ff: fn(V, V) -> V) -> bool {
|
|
|
|
return self.update_with_key(key, newval, |_k, v, v1| ff(v,v1));
|
2012-11-11 03:01:37 -06:00
|
|
|
}
|
|
|
|
|
2012-11-17 10:41:47 -06:00
|
|
|
pure fn get(k: K) -> V {
|
2012-08-02 17:42:56 -05:00
|
|
|
let opt_v = self.find(k);
|
|
|
|
if opt_v.is_none() {
|
2012-08-22 19:24:52 -05:00
|
|
|
fail fmt!("Key not found in table: %?", k);
|
2012-07-13 20:43:47 -05:00
|
|
|
}
|
2012-09-11 19:17:54 -05:00
|
|
|
option::unwrap(move opt_v)
|
2012-05-22 12:02:34 -05:00
|
|
|
}
|
2011-12-06 21:56:47 -06:00
|
|
|
|
2012-10-03 14:21:48 -05:00
|
|
|
fn remove(k: K) -> bool {
|
2012-09-07 19:24:02 -05:00
|
|
|
match self.search_tbl(&k, k.hash_keyed(0,0) as uint) {
|
2012-09-10 17:38:28 -05:00
|
|
|
NotFound => false,
|
|
|
|
FoundFirst(idx, entry) => {
|
2012-05-22 12:02:34 -05:00
|
|
|
self.count -= 1u;
|
|
|
|
self.chains[idx] = entry.next;
|
2012-08-21 17:55:17 -05:00
|
|
|
true
|
2012-05-22 12:02:34 -05:00
|
|
|
}
|
2012-09-10 17:38:28 -05:00
|
|
|
FoundAfter(eprev, entry) => {
|
2012-05-22 12:02:34 -05:00
|
|
|
self.count -= 1u;
|
|
|
|
eprev.next = entry.next;
|
2012-08-21 17:55:17 -05:00
|
|
|
true
|
2012-05-22 12:02:34 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-12-06 21:56:47 -06:00
|
|
|
|
2012-07-08 18:04:57 -05:00
|
|
|
fn clear() {
|
|
|
|
self.count = 0u;
|
|
|
|
self.chains = chains(initial_capacity);
|
|
|
|
}
|
|
|
|
|
2012-10-04 21:58:31 -05:00
|
|
|
pure fn each(blk: fn(key: K, value: V) -> bool) {
|
2012-08-02 17:42:56 -05:00
|
|
|
self.each_ref(|k, v| blk(*k, *v))
|
|
|
|
}
|
|
|
|
|
2012-10-03 14:21:48 -05:00
|
|
|
pure fn each_key(blk: fn(key: K) -> bool) {
|
2012-08-02 17:42:56 -05:00
|
|
|
self.each_key_ref(|p| blk(*p))
|
|
|
|
}
|
|
|
|
|
2012-10-03 14:21:48 -05:00
|
|
|
pure fn each_value(blk: fn(value: V) -> bool) {
|
2012-08-02 17:42:56 -05:00
|
|
|
self.each_value_ref(|p| blk(*p))
|
|
|
|
}
|
|
|
|
|
2012-08-27 18:26:35 -05:00
|
|
|
pure fn each_ref(blk: fn(key: &K, value: &V) -> bool) {
|
2012-06-30 18:19:07 -05:00
|
|
|
for self.each_entry |entry| {
|
2012-08-02 17:42:56 -05:00
|
|
|
if !blk(&entry.key, &entry.value) { break; }
|
2012-05-22 12:02:34 -05:00
|
|
|
}
|
|
|
|
}
|
2011-12-06 21:56:47 -06:00
|
|
|
|
2012-08-27 18:26:35 -05:00
|
|
|
pure fn each_key_ref(blk: fn(key: &K) -> bool) {
|
2012-08-02 17:42:56 -05:00
|
|
|
self.each_ref(|k, _v| blk(k))
|
|
|
|
}
|
2011-12-06 21:56:47 -06:00
|
|
|
|
2012-08-27 18:26:35 -05:00
|
|
|
pure fn each_value_ref(blk: fn(value: &V) -> bool) {
|
2012-08-02 17:42:56 -05:00
|
|
|
self.each_ref(|_k, v| blk(v))
|
|
|
|
}
|
2012-05-22 12:02:34 -05:00
|
|
|
}
|
2011-12-06 21:56:47 -06:00
|
|
|
|
2012-11-29 20:37:33 -06:00
|
|
|
impl<K:Eq IterBytes Hash Copy ToStr, V: ToStr Copy> T<K, V> {
|
2012-08-14 15:38:35 -05:00
|
|
|
fn to_writer(wr: io::Writer) {
|
2012-07-13 02:01:26 -05:00
|
|
|
if self.count == 0u {
|
2012-08-03 13:22:35 -05:00
|
|
|
wr.write_str(~"{}");
|
2012-08-01 19:30:05 -05:00
|
|
|
return;
|
2012-07-13 02:01:26 -05:00
|
|
|
}
|
|
|
|
|
2012-08-03 13:22:35 -05:00
|
|
|
wr.write_str(~"{ ");
|
2012-07-13 02:01:26 -05:00
|
|
|
let mut first = true;
|
|
|
|
for self.each_entry |entry| {
|
|
|
|
if !first {
|
2012-08-03 13:22:35 -05:00
|
|
|
wr.write_str(~", ");
|
2012-07-13 02:01:26 -05:00
|
|
|
}
|
|
|
|
first = false;
|
|
|
|
wr.write_str(entry.key.to_str());
|
2012-08-03 13:22:35 -05:00
|
|
|
wr.write_str(~": ");
|
2012-07-13 02:01:26 -05:00
|
|
|
wr.write_str((copy entry.value).to_str());
|
|
|
|
};
|
2012-08-03 13:22:35 -05:00
|
|
|
wr.write_str(~" }");
|
2012-07-13 02:01:26 -05:00
|
|
|
}
|
2012-11-29 20:37:33 -06:00
|
|
|
}
|
2012-07-13 02:01:26 -05:00
|
|
|
|
2012-11-29 20:37:33 -06:00
|
|
|
impl<K:Eq IterBytes Hash Copy ToStr, V: ToStr Copy> T<K, V>: ToStr {
|
2013-01-23 13:43:58 -06:00
|
|
|
pure fn to_str() -> ~str {
|
|
|
|
unsafe {
|
|
|
|
// Meh -- this should be safe
|
|
|
|
do io::with_str_writer |wr| { self.to_writer(wr) }
|
|
|
|
}
|
2012-07-13 02:01:26 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-28 15:51:50 -06:00
|
|
|
impl<K:Eq IterBytes Hash Copy, V: Copy> T<K, V>: ops::Index<K, V> {
|
|
|
|
pure fn index(&self, k: K) -> V {
|
|
|
|
unsafe {
|
|
|
|
self.get(k)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-07-27 16:51:19 -05:00
|
|
|
|
2012-09-10 17:38:28 -05:00
|
|
|
fn chains<K,V>(nchains: uint) -> ~[mut Option<@Entry<K,V>>] {
|
2013-01-22 19:22:44 -06:00
|
|
|
vec::cast_to_mut(vec::from_elem(nchains, None))
|
2011-12-06 21:56:47 -06:00
|
|
|
}
|
|
|
|
|
2012-10-02 14:02:59 -05:00
|
|
|
pub fn mk<K:Eq IterBytes Hash, V: Copy>() -> T<K,V> {
|
2012-09-10 17:38:28 -05:00
|
|
|
let slf: T<K, V> = @HashMap_ {count: 0u,
|
2012-09-07 19:24:02 -05:00
|
|
|
chains: chains(initial_capacity)};
|
2012-03-07 18:48:57 -06:00
|
|
|
slf
|
2011-12-06 21:56:47 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-07 10:14:57 -06:00
|
|
|
/*
|
2012-03-14 14:07:23 -05:00
|
|
|
Function: hashmap
|
2011-12-07 10:14:57 -06:00
|
|
|
|
|
|
|
Construct a hashmap.
|
|
|
|
*/
|
2012-10-02 14:02:59 -05:00
|
|
|
pub fn HashMap<K:Eq IterBytes Hash Const, V: Copy>()
|
2012-09-10 17:38:28 -05:00
|
|
|
-> HashMap<K, V> {
|
2012-09-07 19:24:02 -05:00
|
|
|
chained::mk()
|
2011-12-06 21:56:47 -06:00
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Convenience function for adding keys to a hashmap with nil type keys
|
2012-10-03 14:21:48 -05:00
|
|
|
pub fn set_add<K:Eq IterBytes Hash Const Copy>(set: Set<K>, key: K) -> bool {
|
2012-08-02 17:42:56 -05:00
|
|
|
set.insert(key, ())
|
2012-05-31 12:26:05 -05:00
|
|
|
}
|
2012-01-17 21:05:07 -06:00
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Convert a set into a vector.
|
2012-10-03 21:25:24 -05:00
|
|
|
pub pure fn vec_from_set<T:Eq IterBytes Hash Copy>(s: Set<T>) -> ~[T] {
|
2012-09-21 20:43:30 -05:00
|
|
|
do vec::build_sized(s.size()) |push| {
|
|
|
|
for s.each_key() |k| {
|
|
|
|
push(k);
|
|
|
|
}
|
|
|
|
}
|
2012-05-16 17:45:06 -05:00
|
|
|
}
|
|
|
|
|
2012-07-04 16:53:12 -05:00
|
|
|
/// Construct a hashmap from a vector
|
2012-10-02 14:02:59 -05:00
|
|
|
pub fn hash_from_vec<K: Eq IterBytes Hash Const Copy, V: Copy>(
|
2012-09-10 17:38:28 -05:00
|
|
|
items: &[(K, V)]) -> HashMap<K, V> {
|
|
|
|
let map = HashMap();
|
2012-09-18 23:41:37 -05:00
|
|
|
for vec::each(items) |item| {
|
|
|
|
match *item {
|
2012-09-28 02:22:18 -05:00
|
|
|
(copy key, copy value) => {
|
2012-09-18 23:41:37 -05:00
|
|
|
map.insert(key, value);
|
|
|
|
}
|
|
|
|
}
|
2012-03-14 21:32:19 -05:00
|
|
|
}
|
|
|
|
map
|
|
|
|
}
|
|
|
|
|
2012-01-17 21:05:07 -06:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2012-12-27 20:24:18 -06:00
|
|
|
use map;
|
|
|
|
|
2013-01-08 21:37:25 -06:00
|
|
|
use core::option::None;
|
2012-12-27 20:24:18 -06:00
|
|
|
use core::option;
|
|
|
|
use core::uint;
|
2012-01-17 21:05:07 -06:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_simple() {
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("*** starting test_simple");
|
2012-08-02 17:42:56 -05:00
|
|
|
pure fn eq_uint(x: &uint, y: &uint) -> bool { *x == *y }
|
|
|
|
pure fn uint_id(x: &uint) -> uint { *x }
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("uint -> uint");
|
2012-09-10 17:38:28 -05:00
|
|
|
let hm_uu: map::HashMap<uint, uint> =
|
|
|
|
map::HashMap::<uint, uint>();
|
2012-01-17 21:05:07 -06:00
|
|
|
assert (hm_uu.insert(10u, 12u));
|
|
|
|
assert (hm_uu.insert(11u, 13u));
|
|
|
|
assert (hm_uu.insert(12u, 14u));
|
|
|
|
assert (hm_uu.get(11u) == 13u);
|
|
|
|
assert (hm_uu.get(12u) == 14u);
|
|
|
|
assert (hm_uu.get(10u) == 12u);
|
|
|
|
assert (!hm_uu.insert(12u, 14u));
|
|
|
|
assert (hm_uu.get(12u) == 14u);
|
|
|
|
assert (!hm_uu.insert(12u, 12u));
|
|
|
|
assert (hm_uu.get(12u) == 12u);
|
2012-07-14 00:57:48 -05:00
|
|
|
let ten: ~str = ~"ten";
|
|
|
|
let eleven: ~str = ~"eleven";
|
|
|
|
let twelve: ~str = ~"twelve";
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("str -> uint");
|
2012-09-10 17:38:28 -05:00
|
|
|
let hm_su: map::HashMap<~str, uint> =
|
|
|
|
map::HashMap::<~str, uint>();
|
2012-07-14 00:57:48 -05:00
|
|
|
assert (hm_su.insert(~"ten", 12u));
|
2012-01-17 21:05:07 -06:00
|
|
|
assert (hm_su.insert(eleven, 13u));
|
2012-07-14 00:57:48 -05:00
|
|
|
assert (hm_su.insert(~"twelve", 14u));
|
2012-01-17 21:05:07 -06:00
|
|
|
assert (hm_su.get(eleven) == 13u);
|
2012-07-14 00:57:48 -05:00
|
|
|
assert (hm_su.get(~"eleven") == 13u);
|
|
|
|
assert (hm_su.get(~"twelve") == 14u);
|
|
|
|
assert (hm_su.get(~"ten") == 12u);
|
|
|
|
assert (!hm_su.insert(~"twelve", 14u));
|
|
|
|
assert (hm_su.get(~"twelve") == 14u);
|
|
|
|
assert (!hm_su.insert(~"twelve", 12u));
|
|
|
|
assert (hm_su.get(~"twelve") == 12u);
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("uint -> str");
|
2012-09-10 17:38:28 -05:00
|
|
|
let hm_us: map::HashMap<uint, ~str> =
|
|
|
|
map::HashMap::<uint, ~str>();
|
2012-07-14 00:57:48 -05:00
|
|
|
assert (hm_us.insert(10u, ~"twelve"));
|
|
|
|
assert (hm_us.insert(11u, ~"thirteen"));
|
|
|
|
assert (hm_us.insert(12u, ~"fourteen"));
|
2012-08-02 17:42:56 -05:00
|
|
|
assert hm_us.get(11u) == ~"thirteen";
|
|
|
|
assert hm_us.get(12u) == ~"fourteen";
|
|
|
|
assert hm_us.get(10u) == ~"twelve";
|
2012-07-14 00:57:48 -05:00
|
|
|
assert (!hm_us.insert(12u, ~"fourteen"));
|
2012-08-02 17:42:56 -05:00
|
|
|
assert hm_us.get(12u) == ~"fourteen";
|
2012-07-14 00:57:48 -05:00
|
|
|
assert (!hm_us.insert(12u, ~"twelve"));
|
2012-08-02 17:42:56 -05:00
|
|
|
assert hm_us.get(12u) == ~"twelve";
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("str -> str");
|
2012-09-10 17:38:28 -05:00
|
|
|
let hm_ss: map::HashMap<~str, ~str> =
|
|
|
|
map::HashMap::<~str, ~str>();
|
2012-07-14 00:57:48 -05:00
|
|
|
assert (hm_ss.insert(ten, ~"twelve"));
|
|
|
|
assert (hm_ss.insert(eleven, ~"thirteen"));
|
|
|
|
assert (hm_ss.insert(twelve, ~"fourteen"));
|
2012-08-02 17:42:56 -05:00
|
|
|
assert hm_ss.get(~"eleven") == ~"thirteen";
|
|
|
|
assert hm_ss.get(~"twelve") == ~"fourteen";
|
|
|
|
assert hm_ss.get(~"ten") == ~"twelve";
|
2012-07-14 00:57:48 -05:00
|
|
|
assert (!hm_ss.insert(~"twelve", ~"fourteen"));
|
2012-08-02 17:42:56 -05:00
|
|
|
assert hm_ss.get(~"twelve") == ~"fourteen";
|
2012-07-14 00:57:48 -05:00
|
|
|
assert (!hm_ss.insert(~"twelve", ~"twelve"));
|
2012-08-02 17:42:56 -05:00
|
|
|
assert hm_ss.get(~"twelve") == ~"twelve";
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("*** finished test_simple");
|
2012-01-17 21:05:07 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Force map growth
|
|
|
|
*/
|
|
|
|
#[test]
|
|
|
|
fn test_growth() {
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("*** starting test_growth");
|
2012-01-17 21:05:07 -06:00
|
|
|
let num_to_insert: uint = 64u;
|
2012-08-02 17:42:56 -05:00
|
|
|
pure fn eq_uint(x: &uint, y: &uint) -> bool { *x == *y }
|
|
|
|
pure fn uint_id(x: &uint) -> uint { *x }
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("uint -> uint");
|
2012-09-10 17:38:28 -05:00
|
|
|
let hm_uu: map::HashMap<uint, uint> =
|
|
|
|
map::HashMap::<uint, uint>();
|
2012-03-22 10:39:41 -05:00
|
|
|
let mut i: uint = 0u;
|
2012-01-17 21:05:07 -06:00
|
|
|
while i < num_to_insert {
|
|
|
|
assert (hm_uu.insert(i, i * i));
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("inserting %u -> %u", i, i*i);
|
2012-01-17 21:05:07 -06:00
|
|
|
i += 1u;
|
|
|
|
}
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("-----");
|
2012-01-17 21:05:07 -06:00
|
|
|
i = 0u;
|
|
|
|
while i < num_to_insert {
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("get(%u) = %u", i, hm_uu.get(i));
|
2012-01-17 21:05:07 -06:00
|
|
|
assert (hm_uu.get(i) == i * i);
|
|
|
|
i += 1u;
|
|
|
|
}
|
|
|
|
assert (hm_uu.insert(num_to_insert, 17u));
|
|
|
|
assert (hm_uu.get(num_to_insert) == 17u);
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("-----");
|
2012-01-17 21:05:07 -06:00
|
|
|
i = 0u;
|
|
|
|
while i < num_to_insert {
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("get(%u) = %u", i, hm_uu.get(i));
|
2012-01-17 21:05:07 -06:00
|
|
|
assert (hm_uu.get(i) == i * i);
|
|
|
|
i += 1u;
|
|
|
|
}
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("str -> str");
|
2012-09-10 17:38:28 -05:00
|
|
|
let hm_ss: map::HashMap<~str, ~str> =
|
|
|
|
map::HashMap::<~str, ~str>();
|
2012-01-17 21:05:07 -06:00
|
|
|
i = 0u;
|
|
|
|
while i < num_to_insert {
|
|
|
|
assert hm_ss.insert(uint::to_str(i, 2u), uint::to_str(i * i, 2u));
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("inserting \"%s\" -> \"%s\"",
|
2012-01-17 21:05:07 -06:00
|
|
|
uint::to_str(i, 2u),
|
2012-08-22 19:24:52 -05:00
|
|
|
uint::to_str(i*i, 2u));
|
2012-01-17 21:05:07 -06:00
|
|
|
i += 1u;
|
|
|
|
}
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("-----");
|
2012-01-17 21:05:07 -06:00
|
|
|
i = 0u;
|
|
|
|
while i < num_to_insert {
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("get(\"%s\") = \"%s\"",
|
2012-01-17 21:05:07 -06:00
|
|
|
uint::to_str(i, 2u),
|
2012-08-22 19:24:52 -05:00
|
|
|
hm_ss.get(uint::to_str(i, 2u)));
|
2012-08-02 17:42:56 -05:00
|
|
|
assert hm_ss.get(uint::to_str(i, 2u)) == uint::to_str(i * i, 2u);
|
2012-01-17 21:05:07 -06:00
|
|
|
i += 1u;
|
|
|
|
}
|
|
|
|
assert (hm_ss.insert(uint::to_str(num_to_insert, 2u),
|
|
|
|
uint::to_str(17u, 2u)));
|
2012-08-02 17:42:56 -05:00
|
|
|
assert hm_ss.get(uint::to_str(num_to_insert, 2u)) ==
|
|
|
|
uint::to_str(17u, 2u);
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("-----");
|
2012-01-17 21:05:07 -06:00
|
|
|
i = 0u;
|
|
|
|
while i < num_to_insert {
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("get(\"%s\") = \"%s\"",
|
2012-01-17 21:05:07 -06:00
|
|
|
uint::to_str(i, 2u),
|
2012-08-22 19:24:52 -05:00
|
|
|
hm_ss.get(uint::to_str(i, 2u)));
|
2012-08-02 17:42:56 -05:00
|
|
|
assert hm_ss.get(uint::to_str(i, 2u)) == uint::to_str(i * i, 2u);
|
2012-01-17 21:05:07 -06:00
|
|
|
i += 1u;
|
|
|
|
}
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("*** finished test_growth");
|
2012-01-17 21:05:07 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_removal() {
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("*** starting test_removal");
|
2012-01-17 21:05:07 -06:00
|
|
|
let num_to_insert: uint = 64u;
|
2012-09-10 17:38:28 -05:00
|
|
|
let hm: map::HashMap<uint, uint> =
|
|
|
|
map::HashMap::<uint, uint>();
|
2012-03-22 10:39:41 -05:00
|
|
|
let mut i: uint = 0u;
|
2012-01-17 21:05:07 -06:00
|
|
|
while i < num_to_insert {
|
|
|
|
assert (hm.insert(i, i * i));
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("inserting %u -> %u", i, i*i);
|
2012-01-17 21:05:07 -06:00
|
|
|
i += 1u;
|
|
|
|
}
|
|
|
|
assert (hm.size() == num_to_insert);
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("-----");
|
|
|
|
debug!("removing evens");
|
2012-01-17 21:05:07 -06:00
|
|
|
i = 0u;
|
|
|
|
while i < num_to_insert {
|
|
|
|
let v = hm.remove(i);
|
2012-08-21 19:02:40 -05:00
|
|
|
assert v;
|
2012-01-17 21:05:07 -06:00
|
|
|
i += 2u;
|
|
|
|
}
|
|
|
|
assert (hm.size() == num_to_insert / 2u);
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("-----");
|
2012-01-17 21:05:07 -06:00
|
|
|
i = 1u;
|
|
|
|
while i < num_to_insert {
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("get(%u) = %u", i, hm.get(i));
|
2012-01-17 21:05:07 -06:00
|
|
|
assert (hm.get(i) == i * i);
|
|
|
|
i += 2u;
|
|
|
|
}
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("-----");
|
2012-01-17 21:05:07 -06:00
|
|
|
i = 1u;
|
|
|
|
while i < num_to_insert {
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("get(%u) = %u", i, hm.get(i));
|
2012-01-17 21:05:07 -06:00
|
|
|
assert (hm.get(i) == i * i);
|
|
|
|
i += 2u;
|
|
|
|
}
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("-----");
|
2012-01-17 21:05:07 -06:00
|
|
|
i = 0u;
|
|
|
|
while i < num_to_insert {
|
|
|
|
assert (hm.insert(i, i * i));
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("inserting %u -> %u", i, i*i);
|
2012-01-17 21:05:07 -06:00
|
|
|
i += 2u;
|
|
|
|
}
|
|
|
|
assert (hm.size() == num_to_insert);
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("-----");
|
2012-01-17 21:05:07 -06:00
|
|
|
i = 0u;
|
|
|
|
while i < num_to_insert {
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("get(%u) = %u", i, hm.get(i));
|
2012-01-17 21:05:07 -06:00
|
|
|
assert (hm.get(i) == i * i);
|
|
|
|
i += 1u;
|
|
|
|
}
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("-----");
|
2012-01-17 21:05:07 -06:00
|
|
|
assert (hm.size() == num_to_insert);
|
|
|
|
i = 0u;
|
|
|
|
while i < num_to_insert {
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("get(%u) = %u", i, hm.get(i));
|
2012-01-17 21:05:07 -06:00
|
|
|
assert (hm.get(i) == i * i);
|
|
|
|
i += 1u;
|
|
|
|
}
|
2012-08-22 19:24:52 -05:00
|
|
|
debug!("*** finished test_removal");
|
2012-01-17 21:05:07 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_contains_key() {
|
2012-07-14 00:57:48 -05:00
|
|
|
let key = ~"k";
|
2012-09-10 17:38:28 -05:00
|
|
|
let map = map::HashMap::<~str, ~str>();
|
2012-01-17 21:05:07 -06:00
|
|
|
assert (!map.contains_key(key));
|
2012-07-14 00:57:48 -05:00
|
|
|
map.insert(key, ~"val");
|
2012-01-17 21:05:07 -06:00
|
|
|
assert (map.contains_key(key));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn test_find() {
|
2012-07-14 00:57:48 -05:00
|
|
|
let key = ~"k";
|
2012-09-10 17:38:28 -05:00
|
|
|
let map = map::HashMap::<~str, ~str>();
|
2012-09-21 21:37:57 -05:00
|
|
|
assert (option::is_none(&map.find(key)));
|
2012-07-14 00:57:48 -05:00
|
|
|
map.insert(key, ~"val");
|
2012-10-19 13:37:00 -05:00
|
|
|
assert (option::get(map.find(key)) == ~"val");
|
2012-01-17 21:05:07 -06:00
|
|
|
}
|
2012-03-14 21:32:19 -05:00
|
|
|
|
2012-07-08 18:04:57 -05:00
|
|
|
#[test]
|
|
|
|
fn test_clear() {
|
2012-07-14 00:57:48 -05:00
|
|
|
let key = ~"k";
|
2012-09-10 17:38:28 -05:00
|
|
|
let map = map::HashMap::<~str, ~str>();
|
2012-07-14 00:57:48 -05:00
|
|
|
map.insert(key, ~"val");
|
2012-07-08 18:04:57 -05:00
|
|
|
assert (map.size() == 1);
|
|
|
|
assert (map.contains_key(key));
|
|
|
|
map.clear();
|
|
|
|
assert (map.size() == 0);
|
|
|
|
assert (!map.contains_key(key));
|
|
|
|
}
|
|
|
|
|
2012-03-14 21:32:19 -05:00
|
|
|
#[test]
|
|
|
|
fn test_hash_from_vec() {
|
2012-09-19 17:13:04 -05:00
|
|
|
let map = map::hash_from_vec(~[
|
2012-07-14 00:57:48 -05:00
|
|
|
(~"a", 1),
|
|
|
|
(~"b", 2),
|
|
|
|
(~"c", 3)
|
2012-06-29 18:26:56 -05:00
|
|
|
]);
|
2012-03-14 21:32:19 -05:00
|
|
|
assert map.size() == 3u;
|
2012-07-14 00:57:48 -05:00
|
|
|
assert map.get(~"a") == 1;
|
|
|
|
assert map.get(~"b") == 2;
|
|
|
|
assert map.get(~"c") == 3;
|
2012-03-14 21:32:19 -05:00
|
|
|
}
|
2012-11-14 23:33:32 -06:00
|
|
|
|
|
|
|
#[test]
|
2012-11-25 14:45:18 -06:00
|
|
|
fn test_update_with_key() {
|
2012-11-14 23:33:32 -06:00
|
|
|
let map = map::HashMap::<~str, uint>();
|
|
|
|
|
2012-11-21 01:33:31 -06:00
|
|
|
// given a new key, initialize it with this new count, given
|
|
|
|
// given an existing key, add more to its count
|
|
|
|
fn addMoreToCount(_k: ~str, v0: uint, v1: uint) -> uint {
|
|
|
|
v0 + v1
|
|
|
|
}
|
|
|
|
|
|
|
|
fn addMoreToCount_simple(v0: uint, v1: uint) -> uint {
|
2012-11-14 23:33:32 -06:00
|
|
|
v0 + v1
|
|
|
|
}
|
|
|
|
|
2012-11-21 01:33:31 -06:00
|
|
|
// count the number of several types of animal,
|
|
|
|
// adding in groups as we go
|
2012-11-25 14:45:18 -06:00
|
|
|
map.update(~"cat", 1, addMoreToCount_simple);
|
|
|
|
map.update_with_key(~"mongoose", 1, addMoreToCount);
|
|
|
|
map.update(~"cat", 7, addMoreToCount_simple);
|
|
|
|
map.update_with_key(~"ferret", 3, addMoreToCount);
|
|
|
|
map.update_with_key(~"cat", 2, addMoreToCount);
|
2012-11-14 23:33:32 -06:00
|
|
|
|
2012-11-21 01:33:31 -06:00
|
|
|
// check the total counts
|
2012-11-14 23:33:32 -06:00
|
|
|
assert 10 == option::get(map.find(~"cat"));
|
|
|
|
assert 3 == option::get(map.find(~"ferret"));
|
|
|
|
assert 1 == option::get(map.find(~"mongoose"));
|
|
|
|
|
2012-11-21 01:33:31 -06:00
|
|
|
// sadly, no mythical animals were counted!
|
2012-11-14 23:33:32 -06:00
|
|
|
assert None == map.find(~"unicorn");
|
|
|
|
}
|
2012-01-27 22:39:16 -06:00
|
|
|
}
|