164 lines
4.4 KiB
Factor
164 lines
4.4 KiB
Factor
! Copyright (C) 2004, 2005 Slava Pestov.
|
|
! See http://factor.sf.net/license.txt for BSD license.
|
|
IN: kernel-internals
|
|
|
|
DEFER: hash-array
|
|
DEFER: set-hash-array
|
|
DEFER: set-hash-size
|
|
|
|
IN: hashtables
|
|
USING: generic kernel lists math sequences vectors ;
|
|
|
|
! We put hash-size in the hashtables vocabulary, and
|
|
! the other words in kernel-internals.
|
|
BUILTIN: hashtable 10
|
|
[ 1 "hash-size" set-hash-size ]
|
|
[ 2 hash-array set-hash-array ] ;
|
|
|
|
! A hashtable is implemented as an array of buckets. The
|
|
! array index is determined using a hash function, and the
|
|
! buckets are associative lists which are searched
|
|
! linearly.
|
|
|
|
! The unsafe words go in kernel internals. Everything else, even
|
|
! if it is somewhat 'implementation detail', is in the
|
|
! public 'hashtables' vocabulary.
|
|
|
|
IN: kernel-internals
|
|
|
|
: hash-bucket ( n hash -- alist )
|
|
>r >fixnum r> hash-array array-nth ;
|
|
|
|
: set-hash-bucket ( obj n hash -- )
|
|
>r >fixnum r> hash-array set-array-nth ;
|
|
|
|
: change-bucket ( n hash quot -- )
|
|
-rot hash-array
|
|
[ array-nth swap call ] 2keep
|
|
set-array-nth ; inline
|
|
|
|
: hash-size+ ( hash -- ) dup hash-size 1 + swap set-hash-size ;
|
|
: hash-size- ( hash -- ) dup hash-size 1 - swap set-hash-size ;
|
|
|
|
IN: hashtables
|
|
|
|
: bucket-count ( hash -- n ) hash-array array-capacity ;
|
|
|
|
: (hashcode) ( key table -- index )
|
|
#! Compute the index of the bucket for a key.
|
|
>r hashcode r> bucket-count rem ; inline
|
|
|
|
: hash* ( key table -- [[ key value ]] )
|
|
#! Look up a value in the hashtable.
|
|
2dup (hashcode) swap hash-bucket assoc* ;
|
|
|
|
: hash ( key table -- value ) hash* cdr ;
|
|
|
|
: set-hash* ( key hash quot -- )
|
|
#! Apply the quotation to yield a new association list.
|
|
#! If the association list already contains the key,
|
|
#! decrement the hash size, since it will get removed.
|
|
-rot 2dup (hashcode) over [
|
|
( quot key hash assoc -- )
|
|
swapd 2dup
|
|
assoc* [ rot hash-size- ] [ rot drop ] ifte
|
|
rot call
|
|
] change-bucket ; inline
|
|
|
|
: rehash? ( hash -- ? )
|
|
dup bucket-count 3 * 2 /i swap hash-size < ;
|
|
|
|
: grow-hash ( hash -- )
|
|
#! A good way to earn a living.
|
|
dup hash-size 2 * <array> swap set-hash-array ;
|
|
|
|
: (hash>alist) ( alist n hash -- alist )
|
|
2dup bucket-count >= [
|
|
2drop
|
|
] [
|
|
[ hash-bucket [ swons ] each ] 2keep
|
|
>r 1 + r> (hash>alist)
|
|
] ifte ;
|
|
|
|
: hash>alist ( hash -- alist )
|
|
#! Push a list of key/value pairs in a hashtable.
|
|
[ ] 0 rot (hash>alist) ;
|
|
|
|
: (set-hash) ( value key hash -- )
|
|
dup hash-size+ [ set-assoc ] set-hash* ;
|
|
|
|
: rehash ( hash -- )
|
|
#! Increase the hashtable size if its too small.
|
|
dup rehash? [
|
|
dup hash>alist
|
|
over grow-hash
|
|
0 pick set-hash-size
|
|
[ unswons rot (set-hash) ] each-with
|
|
] [
|
|
drop
|
|
] ifte ;
|
|
|
|
: set-hash ( value key table -- )
|
|
#! Store the value in the hashtable. Either replaces an
|
|
#! existing value in the appropriate bucket, or adds a new
|
|
#! key/value pair.
|
|
dup rehash (set-hash) ;
|
|
|
|
: remove-hash ( key table -- )
|
|
#! Remove a value from a hashtable.
|
|
[ remove-assoc ] set-hash* ;
|
|
|
|
: hash-clear ( hash -- )
|
|
#! Remove all entries from a hashtable.
|
|
0 over set-hash-size
|
|
dup bucket-count [
|
|
[ f swap pick set-hash-bucket ] keep
|
|
] repeat drop ;
|
|
|
|
: buckets>list ( hash -- list )
|
|
#! Push a list of key/value pairs in a hashtable.
|
|
hash-array >list ;
|
|
|
|
: alist>hash ( alist -- hash )
|
|
dup length 1 max <hashtable> swap
|
|
[ unswons pick set-hash ] each ;
|
|
|
|
: hash-keys ( hash -- list )
|
|
#! Push a list of keys in a hashtable.
|
|
hash>alist [ car ] map ;
|
|
|
|
: hash-values ( hash -- alist )
|
|
#! Push a list of values in a hashtable.
|
|
hash>alist [ cdr ] map ;
|
|
|
|
: hash-each ( hash code -- )
|
|
#! Apply the code to each key/value pair of the hashtable.
|
|
>r hash>alist r> each ; inline
|
|
|
|
M: hashtable clone ( hash -- hash )
|
|
dup bucket-count <hashtable>
|
|
over hash-size over set-hash-size [
|
|
hash-array swap hash-array dup array-capacity copy-array
|
|
] keep ;
|
|
|
|
: hash-subset? ( subset of -- ? )
|
|
hash>alist [ uncons >r swap hash r> = ] all-with? ;
|
|
|
|
M: hashtable = ( obj hash -- ? )
|
|
2dup eq? [
|
|
2drop t
|
|
] [
|
|
over hashtable? [
|
|
2dup hash-subset? >r swap hash-subset? r> and
|
|
] [
|
|
2drop f
|
|
] ifte
|
|
] ifte ;
|
|
|
|
M: hashtable hashcode ( hash -- n )
|
|
dup bucket-count 0 number= [
|
|
drop 0
|
|
] [
|
|
0 swap hash-bucket hashcode
|
|
] ifte ;
|