rust/src/comp/syntax/util/interner.rs

35 lines
1003 B
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.
2011-09-12 18:13:28 -05:00
import std::{vec, map, option};
import std::map::{hashmap, hashfn, eqfn};
import std::option::{none, some};
type interner<T> =
{map: hashmap<T, uint>,
mutable vect: [T],
hasher: hashfn<T>,
eqer: eqfn<T>};
fn mk<@T>(hasher: hashfn<T>, eqer: eqfn<T>) -> interner<T> {
let m = map::mk_hashmap::<T, uint>(hasher, eqer);
ret {map: m, mutable vect: [], hasher: hasher, eqer: eqer};
}
2011-08-04 12:46:10 -05:00
fn intern<@T>(itr: interner<T>, val: T) -> uint {
2011-07-27 07:19:39 -05:00
alt itr.map.find(val) {
some(idx) { ret idx; }
none. {
let new_idx = vec::len::<T>(itr.vect);
2011-07-27 07:19:39 -05:00
itr.map.insert(val, new_idx);
itr.vect += [val];
2011-07-27 07:19:39 -05:00
ret new_idx;
}
}
}
2011-08-04 12:46:10 -05:00
pure fn get<@T>(itr: interner<T>, idx: uint) -> T { ret itr.vect[idx]; }
pure fn len<T>(itr: interner<T>) -> uint { ret vec::len(itr.vect); }
2011-08-04 12:46:10 -05:00