rust/src/libsyntax/util/interner.rs

41 lines
1.2 KiB
Rust
Raw Normal View History

// An "interner" is a data structure that associates values with uint tags and
// allows bidirectional lookup; i.e. given a value, one can easily find the
// type, and vice versa.
import std::map;
2011-09-12 18:13:28 -05:00
import std::map::{hashmap, hashfn, eqfn};
2012-05-15 15:40:01 -05:00
import dvec::{dvec, extensions};
type interner<T> =
{map: hashmap<T, uint>,
2012-05-15 15:40:01 -05:00
vect: dvec<T>,
hasher: hashfn<T>,
eqer: eqfn<T>};
fn mk<T: copy>(hasher: hashfn<T>, eqer: eqfn<T>) -> interner<T> {
let m = map::hashmap::<T, uint>(hasher, eqer);
2012-05-15 15:40:01 -05:00
ret {map: m, vect: dvec(), hasher: hasher, eqer: eqer};
}
2011-08-04 12:46:10 -05:00
fn intern<T: copy>(itr: interner<T>, val: T) -> uint {
2011-07-27 07:19:39 -05:00
alt itr.map.find(val) {
some(idx) { ret idx; }
none {
2012-05-15 15:40:01 -05:00
let new_idx = itr.vect.len();
2011-07-27 07:19:39 -05:00
itr.map.insert(val, new_idx);
2012-05-15 15:40:01 -05:00
itr.vect.push(val);
2011-07-27 07:19:39 -05:00
ret new_idx;
}
}
}
2011-08-04 12:46:10 -05:00
// |get| isn't "pure" in the traditional sense, because it can go from
// failing to returning a value as items are interned. But for typestate,
// where we first check a pred and then rely on it, ceasing to fail is ok.
pure fn get<T: copy>(itr: interner<T>, idx: uint) -> T {
unchecked {
2012-05-15 15:40:01 -05:00
itr.vect.get_elt(idx)
}
}
2011-08-04 12:46:10 -05:00
2012-05-15 15:40:01 -05:00
fn len<T>(itr: interner<T>) -> uint { ret itr.vect.len(); }