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.
|
|
|
|
|
2011-07-05 04:48:19 -05:00
|
|
|
// 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.
|
2013-01-08 21:37:25 -06:00
|
|
|
|
2013-06-24 19:40:33 -05:00
|
|
|
use std::cmp::Equiv;
|
|
|
|
use std::hashmap::HashMap;
|
2011-07-05 04:48:19 -05:00
|
|
|
|
2013-02-09 15:22:21 -06:00
|
|
|
pub struct Interner<T> {
|
2013-04-03 08:28:36 -05:00
|
|
|
priv map: @mut HashMap<T, uint>,
|
2013-03-07 17:37:22 -06:00
|
|
|
priv vect: @mut ~[T],
|
2012-08-02 17:34:13 -05:00
|
|
|
}
|
|
|
|
|
2013-02-09 15:22:21 -06:00
|
|
|
// when traits can extend traits, we should extend index<uint,T> to get []
|
2013-07-18 19:12:46 -05:00
|
|
|
impl<T:Eq + IterBytes + Hash + Freeze + Clone + 'static> Interner<T> {
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn new() -> Interner<T> {
|
2013-02-09 15:22:21 -06:00
|
|
|
Interner {
|
2013-04-03 08:28:36 -05:00
|
|
|
map: @mut HashMap::new(),
|
2013-03-07 17:37:22 -06:00
|
|
|
vect: @mut ~[],
|
2013-02-09 15:22:21 -06:00
|
|
|
}
|
|
|
|
}
|
2012-08-02 17:34:13 -05:00
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn prefill(init: &[T]) -> Interner<T> {
|
2013-02-09 15:22:21 -06:00
|
|
|
let rv = Interner::new();
|
2013-08-03 11:45:23 -05:00
|
|
|
for v in init.iter() {
|
2013-07-02 14:47:32 -05:00
|
|
|
rv.intern((*v).clone());
|
|
|
|
}
|
2013-02-09 15:22:21 -06:00
|
|
|
rv
|
|
|
|
}
|
2011-08-04 12:46:10 -05:00
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn intern(&self, val: T) -> uint {
|
2013-02-05 21:41:45 -06:00
|
|
|
match self.map.find(&val) {
|
2013-02-09 15:22:21 -06:00
|
|
|
Some(&idx) => return idx,
|
|
|
|
None => (),
|
2012-07-17 13:22:11 -05:00
|
|
|
}
|
2013-02-09 15:22:21 -06:00
|
|
|
|
2013-03-15 14:24:24 -05:00
|
|
|
let vect = &mut *self.vect;
|
2013-03-16 13:11:31 -05:00
|
|
|
let new_idx = vect.len();
|
2013-07-02 14:47:32 -05:00
|
|
|
self.map.insert(val.clone(), new_idx);
|
2013-03-15 14:24:24 -05:00
|
|
|
vect.push(val);
|
2013-02-09 15:22:21 -06:00
|
|
|
new_idx
|
2011-09-24 18:33:26 -05:00
|
|
|
}
|
2013-02-09 15:22:21 -06:00
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn gensym(&self, val: T) -> uint {
|
2013-03-16 13:11:31 -05:00
|
|
|
let new_idx = {
|
|
|
|
let vect = &*self.vect;
|
|
|
|
vect.len()
|
|
|
|
};
|
2012-07-18 18:18:02 -05:00
|
|
|
// leave out of .map to avoid colliding
|
|
|
|
self.vect.push(val);
|
2013-02-09 15:22:21 -06:00
|
|
|
new_idx
|
2012-07-18 18:18:02 -05:00
|
|
|
}
|
2011-08-04 12:46:10 -05:00
|
|
|
|
2013-07-02 14:47:32 -05:00
|
|
|
pub fn get(&self, idx: uint) -> T {
|
|
|
|
self.vect[idx].clone()
|
|
|
|
}
|
2012-07-17 19:05:38 -05:00
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn len(&self) -> uint { let vect = &*self.vect; vect.len() }
|
2013-04-02 18:20:02 -05:00
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn find_equiv<Q:Hash + IterBytes + Equiv<T>>(&self, val: &Q)
|
2013-04-02 18:20:02 -05:00
|
|
|
-> Option<uint> {
|
|
|
|
match self.map.find_equiv(val) {
|
|
|
|
Some(v) => Some(*v),
|
|
|
|
None => None,
|
|
|
|
}
|
|
|
|
}
|
2012-09-19 11:41:06 -05:00
|
|
|
}
|
2013-01-23 19:29:08 -06:00
|
|
|
|
2013-05-07 14:34:52 -05:00
|
|
|
// A StrInterner differs from Interner<String> in that it accepts
|
|
|
|
// borrowed pointers rather than @ ones, resulting in less allocation.
|
2013-05-02 03:16:07 -05:00
|
|
|
pub struct StrInterner {
|
2013-06-12 12:02:55 -05:00
|
|
|
priv map: @mut HashMap<@str, uint>,
|
|
|
|
priv vect: @mut ~[@str],
|
2013-05-02 03:16:07 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// when traits can extend traits, we should extend index<uint,T> to get []
|
2013-05-31 17:17:22 -05:00
|
|
|
impl StrInterner {
|
|
|
|
pub fn new() -> StrInterner {
|
2013-05-02 03:16:07 -05:00
|
|
|
StrInterner {
|
|
|
|
map: @mut HashMap::new(),
|
|
|
|
vect: @mut ~[],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn prefill(init: &[&str]) -> StrInterner {
|
2013-05-02 03:16:07 -05:00
|
|
|
let rv = StrInterner::new();
|
2013-08-03 11:45:23 -05:00
|
|
|
for &v in init.iter() { rv.intern(v); }
|
2013-05-02 03:16:07 -05:00
|
|
|
rv
|
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn intern(&self, val: &str) -> uint {
|
2013-06-12 12:02:55 -05:00
|
|
|
match self.map.find_equiv(&val) {
|
2013-05-02 03:16:07 -05:00
|
|
|
Some(&idx) => return idx,
|
|
|
|
None => (),
|
|
|
|
}
|
|
|
|
|
|
|
|
let new_idx = self.len();
|
2013-06-12 12:02:55 -05:00
|
|
|
let val = val.to_managed();
|
|
|
|
self.map.insert(val, new_idx);
|
|
|
|
self.vect.push(val);
|
2013-05-02 03:16:07 -05:00
|
|
|
new_idx
|
|
|
|
}
|
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn gensym(&self, val: &str) -> uint {
|
2013-05-02 03:16:07 -05:00
|
|
|
let new_idx = self.len();
|
|
|
|
// leave out of .map to avoid colliding
|
2013-06-12 12:02:55 -05:00
|
|
|
self.vect.push(val.to_managed());
|
2013-05-02 03:16:07 -05:00
|
|
|
new_idx
|
|
|
|
}
|
|
|
|
|
|
|
|
// this 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.
|
2013-06-12 12:02:55 -05:00
|
|
|
pub fn get(&self, idx: uint) -> @str { self.vect[idx] }
|
2013-05-02 03:16:07 -05:00
|
|
|
|
2013-05-31 17:17:22 -05:00
|
|
|
pub fn len(&self) -> uint { let vect = &*self.vect; vect.len() }
|
2013-05-02 03:16:07 -05:00
|
|
|
|
2013-06-12 12:02:55 -05:00
|
|
|
pub fn find_equiv<Q:Hash + IterBytes + Equiv<@str>>(&self, val: &Q)
|
2013-05-31 17:17:22 -05:00
|
|
|
-> Option<uint> {
|
2013-05-02 03:16:07 -05:00
|
|
|
match self.map.find_equiv(val) {
|
|
|
|
Some(v) => Some(*v),
|
|
|
|
None => None,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-15 10:08:52 -05:00
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
#[test]
|
|
|
|
#[should_fail]
|
|
|
|
fn i1 () {
|
2013-06-12 12:02:55 -05:00
|
|
|
let i : Interner<@str> = Interner::new();
|
2013-04-15 10:08:52 -05:00
|
|
|
i.get(13);
|
|
|
|
}
|
2013-01-23 19:29:08 -06:00
|
|
|
|
2013-04-15 10:08:52 -05:00
|
|
|
#[test]
|
|
|
|
fn i2 () {
|
2013-06-12 12:02:55 -05:00
|
|
|
let i : Interner<@str> = Interner::new();
|
2013-04-15 10:08:52 -05:00
|
|
|
// first one is zero:
|
2013-06-12 12:02:55 -05:00
|
|
|
assert_eq!(i.intern (@"dog"), 0);
|
2013-04-15 10:08:52 -05:00
|
|
|
// re-use gets the same entry:
|
2013-06-12 12:02:55 -05:00
|
|
|
assert_eq!(i.intern (@"dog"), 0);
|
2013-04-15 10:08:52 -05:00
|
|
|
// different string gets a different #:
|
2013-06-12 12:02:55 -05:00
|
|
|
assert_eq!(i.intern (@"cat"), 1);
|
|
|
|
assert_eq!(i.intern (@"cat"), 1);
|
2013-04-15 10:08:52 -05:00
|
|
|
// dog is still at zero
|
2013-06-12 12:02:55 -05:00
|
|
|
assert_eq!(i.intern (@"dog"), 0);
|
2013-04-15 10:08:52 -05:00
|
|
|
// gensym gets 3
|
2013-06-12 12:02:55 -05:00
|
|
|
assert_eq!(i.gensym (@"zebra" ), 2);
|
2013-04-15 10:08:52 -05:00
|
|
|
// gensym of same string gets new number :
|
2013-06-12 12:02:55 -05:00
|
|
|
assert_eq!(i.gensym (@"zebra" ), 3);
|
2013-04-15 10:08:52 -05:00
|
|
|
// gensym of *existing* string gets new number:
|
2013-06-12 12:02:55 -05:00
|
|
|
assert_eq!(i.gensym (@"dog"), 4);
|
|
|
|
assert_eq!(i.get(0), @"dog");
|
|
|
|
assert_eq!(i.get(1), @"cat");
|
|
|
|
assert_eq!(i.get(2), @"zebra");
|
|
|
|
assert_eq!(i.get(3), @"zebra");
|
|
|
|
assert_eq!(i.get(4), @"dog");
|
2013-04-15 10:08:52 -05:00
|
|
|
}
|
2013-01-23 19:29:08 -06:00
|
|
|
|
2013-04-15 10:08:52 -05:00
|
|
|
#[test]
|
|
|
|
fn i3 () {
|
2013-06-12 12:02:55 -05:00
|
|
|
let i : Interner<@str> = Interner::prefill([@"Alan",@"Bob",@"Carol"]);
|
|
|
|
assert_eq!(i.get(0), @"Alan");
|
|
|
|
assert_eq!(i.get(1), @"Bob");
|
|
|
|
assert_eq!(i.get(2), @"Carol");
|
|
|
|
assert_eq!(i.intern(@"Bob"), 1);
|
2013-04-15 10:08:52 -05:00
|
|
|
}
|
2013-04-03 11:41:40 -05:00
|
|
|
}
|