123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309 |
- ;;; Copyright © Panu Kalliokoski (2005). All Rights Reserved.
- ;;; Made an R7RS library by Taylan Ulrich Bayırlı/Kammer, Copyright © 2014.
- ;;; Permission is hereby granted, free of charge, to any person obtaining a copy
- ;;; of this software and associated documentation files (the "Software"), to
- ;;; deal in the Software without restriction, including without limitation the
- ;;; rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
- ;;; sell copies of the Software, and to permit persons to whom the Software is
- ;;; furnished to do so, subject to the following conditions:
- ;;; The above copyright notice and this permission notice shall be included in
- ;;; all copies or substantial portions of the Software.
- ;;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- ;;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- ;;; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- ;;; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- ;;; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- ;;; FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- ;;; IN THE SOFTWARE.
- (define default-bound (make-parameter (- (expt 2 29) 3)))
- (define (%string-hash s ch-conv bound)
- (let ((hash 31)
- (len (string-length s)))
- (do ((index 0 (+ index 1)))
- ((>= index len) (modulo hash bound))
- (set! hash (modulo (+ (* 37 hash)
- (char->integer (ch-conv (string-ref s index))))
- (default-bound))))))
- (define string-hash
- (case-lambda
- ((s) (string-hash s (default-bound)))
- ((s bound)
- (%string-hash s (lambda (x) x) bound))))
- (define string-ci-hash
- (case-lambda
- ((s) (string-ci-hash s (default-bound)))
- ((s bound)
- (%string-hash s char-downcase bound))))
- (define symbol-hash
- (case-lambda
- ((s) (symbol-hash s (default-bound)))
- ((s bound)
- (%string-hash (symbol->string s) (lambda (x) x) bound))))
- (define hash
- (case-lambda
- ((obj) (hash obj (default-bound)))
- ((obj bound)
- (cond ((integer? obj) (modulo obj bound))
- ((string? obj) (string-hash obj bound))
- ((symbol? obj) (symbol-hash obj bound))
- ((real? obj) (modulo (+ (numerator obj) (denominator obj)) bound))
- ((number? obj)
- (modulo (+ (hash (real-part obj)) (* 3 (hash (imag-part obj))))
- bound))
- ((char? obj) (modulo (char->integer obj) bound))
- ((vector? obj) (vector-hash obj bound))
- ((pair? obj) (modulo (+ (hash (car obj)) (* 3 (hash (cdr obj))))
- bound))
- ((null? obj) 0)
- ((not obj) 0)
- ((procedure? obj) (error "hash: procedures cannot be hashed" obj))
- (else 1)))))
- (define hash-by-identity hash)
- (define (vector-hash v bound)
- (let ((hashvalue 571)
- (len (vector-length v)))
- (do ((index 0 (+ index 1)))
- ((>= index len) (modulo hashvalue bound))
- (set! hashvalue (modulo (+ (* 257 hashvalue) (hash (vector-ref v index)))
- (default-bound))))))
- (define %make-hash-node cons)
- (define %hash-node-set-value! set-cdr!)
- (define %hash-node-key car)
- (define %hash-node-value cdr)
- (define-record-type <srfi-hash-table>
- (%make-hash-table size hash compare associate entries)
- hash-table?
- (size hash-table-size hash-table-set-size!)
- (hash hash-table-hash-function)
- (compare hash-table-equivalence-function)
- (associate hash-table-association-function)
- (entries hash-table-entries hash-table-set-entries!))
- (define default-table-size (make-parameter 64))
- (define (appropriate-hash-function-for comparison)
- (or (and (eq? comparison eq?) hash-by-identity)
- (and (eq? comparison string=?) string-hash)
- (and (eq? comparison string-ci=?) string-ci-hash)
- hash))
- (define make-hash-table
- (case-lambda
- (()
- (make-hash-table equal?
- (appropriate-hash-function-for equal?)
- (default-table-size)))
- ((comparison)
- (make-hash-table comparison
- (appropriate-hash-function-for comparison)
- (default-table-size)))
- ((comparison hash)
- (make-hash-table comparison
- hash
- (default-table-size)))
- ((comparison hash size)
- (let ((association (or (and (eq? comparison eq?) assq)
- (and (eq? comparison eqv?) assv)
- (and (eq? comparison equal?) assoc)
- (rec (associate val alist)
- (cond
- ((null? alist) #f)
- ((comparison val (caar alist)) (car alist))
- (else (associate val (cdr alist))))))))
- (%make-hash-table
- 0 hash comparison association (make-vector size '()))))))
- (define (make-hash-table-maker comp hash)
- (lambda args (apply make-hash-table (cons comp (cons hash args)))))
- (define make-symbol-hash-table
- (make-hash-table-maker eq? symbol-hash))
- (define make-string-hash-table
- (make-hash-table-maker string=? string-hash))
- (define make-string-ci-hash-table
- (make-hash-table-maker string-ci=? string-ci-hash))
- (define make-integer-hash-table
- (make-hash-table-maker = modulo))
- (define (%hash-table-hash hash-table key)
- ((hash-table-hash-function hash-table)
- key (vector-length (hash-table-entries hash-table))))
- (define (%hash-table-find entries associate hash key)
- (associate key (vector-ref entries hash)))
- (define (%hash-table-add! entries hash key value)
- (vector-set! entries hash
- (cons (%make-hash-node key value)
- (vector-ref entries hash))))
- (define (%hash-table-delete! entries compare hash key)
- (let ((entrylist (vector-ref entries hash)))
- (cond ((null? entrylist) #f)
- ((compare key (caar entrylist))
- (vector-set! entries hash (cdr entrylist)) #t)
- (else
- (let loop ((current (cdr entrylist)) (previous entrylist))
- (cond ((null? current) #f)
- ((compare key (caar current))
- (set-cdr! previous (cdr current)) #t)
- (else (loop (cdr current) current))))))))
- (define (%hash-table-walk proc entries)
- (do ((index (- (vector-length entries) 1) (- index 1)))
- ((< index 0)) (for-each proc (vector-ref entries index))))
- (define (%hash-table-maybe-resize! hash-table)
- (let* ((old-entries (hash-table-entries hash-table))
- (hash-length (vector-length old-entries)))
- (if (> (hash-table-size hash-table) hash-length)
- (let* ((new-length (* 2 hash-length))
- (new-entries (make-vector new-length '()))
- (hash (hash-table-hash-function hash-table)))
- (%hash-table-walk
- (lambda (node)
- (%hash-table-add! new-entries
- (hash (%hash-node-key node) new-length)
- (%hash-node-key node) (%hash-node-value node)))
- old-entries)
- (hash-table-set-entries! hash-table new-entries)))))
- (define (not-found-error key)
- (lambda ()
- (error "No value associated with key:" key)))
- (define hash-table-ref
- (case-lambda
- ((hash-table key) (hash-table-ref hash-table key (not-found-error key)))
- ((hash-table key default-thunk)
- (cond ((%hash-table-find (hash-table-entries hash-table)
- (hash-table-association-function hash-table)
- (%hash-table-hash hash-table key) key)
- => %hash-node-value)
- (else (default-thunk))))))
- (define (hash-table-ref/default hash-table key default)
- (hash-table-ref hash-table key (lambda () default)))
- (define (hash-table-set! hash-table key value)
- (let ((hash (%hash-table-hash hash-table key))
- (entries (hash-table-entries hash-table)))
- (cond ((%hash-table-find entries
- (hash-table-association-function hash-table)
- hash key)
- => (lambda (node) (%hash-node-set-value! node value)))
- (else (%hash-table-add! entries hash key value)
- (hash-table-set-size! hash-table
- (+ 1 (hash-table-size hash-table)))
- (%hash-table-maybe-resize! hash-table)))))
- (define hash-table-update!
- (case-lambda
- ((hash-table key function)
- (hash-table-update! hash-table key function (not-found-error key)))
- ((hash-table key function default-thunk)
- (let ((hash (%hash-table-hash hash-table key))
- (entries (hash-table-entries hash-table)))
- (cond ((%hash-table-find entries
- (hash-table-association-function hash-table)
- hash key)
- => (lambda (node)
- (%hash-node-set-value!
- node (function (%hash-node-value node)))))
- (else (%hash-table-add! entries hash key
- (function (default-thunk)))
- (hash-table-set-size! hash-table
- (+ 1 (hash-table-size hash-table)))
- (%hash-table-maybe-resize! hash-table)))))))
- (define (hash-table-update!/default hash-table key function default)
- (hash-table-update! hash-table key function (lambda () default)))
- (define (hash-table-delete! hash-table key)
- (if (%hash-table-delete! (hash-table-entries hash-table)
- (hash-table-equivalence-function hash-table)
- (%hash-table-hash hash-table key) key)
- (hash-table-set-size! hash-table (- (hash-table-size hash-table) 1))))
- (define (hash-table-exists? hash-table key)
- (and (%hash-table-find (hash-table-entries hash-table)
- (hash-table-association-function hash-table)
- (%hash-table-hash hash-table key) key) #t))
- (define (hash-table-walk hash-table proc)
- (%hash-table-walk
- (lambda (node) (proc (%hash-node-key node) (%hash-node-value node)))
- (hash-table-entries hash-table)))
- (define (hash-table-fold hash-table f acc)
- (hash-table-walk hash-table
- (lambda (key value) (set! acc (f key value acc))))
- acc)
- (define (appropriate-size-for-alist alist)
- (max (default-table-size) (* 2 (length alist))))
- (define alist->hash-table
- (case-lambda
- ((alist)
- (alist->hash-table alist
- equal?
- (appropriate-hash-function-for equal?)
- (appropriate-size-for-alist alist)))
- ((alist comparison)
- (alist->hash-table alist
- comparison
- (appropriate-hash-function-for comparison)
- (appropriate-size-for-alist alist)))
- ((alist comparison hash)
- (alist->hash-table alist
- comparison
- hash
- (appropriate-size-for-alist alist)))
- ((alist comparison hash size)
- (let ((hash-table (make-hash-table comparison hash size)))
- (for-each
- (lambda (elem)
- (hash-table-update!/default
- hash-table (car elem) (lambda (x) x) (cdr elem)))
- alist)
- hash-table))))
- (define (hash-table->alist hash-table)
- (hash-table-fold hash-table
- (lambda (key val acc) (cons (cons key val) acc)) '()))
- (define (hash-table-copy hash-table)
- (let ((new (make-hash-table (hash-table-equivalence-function hash-table)
- (hash-table-hash-function hash-table)
- (max (default-table-size)
- (* 2 (hash-table-size hash-table))))))
- (hash-table-walk hash-table
- (lambda (key value) (hash-table-set! new key value)))
- new))
- (define (hash-table-merge! hash-table1 hash-table2)
- (hash-table-walk
- hash-table2
- (lambda (key value) (hash-table-set! hash-table1 key value)))
- hash-table1)
- (define (hash-table-keys hash-table)
- (hash-table-fold hash-table (lambda (key val acc) (cons key acc)) '()))
- (define (hash-table-values hash-table)
- (hash-table-fold hash-table (lambda (key val acc) (cons val acc)) '()))
|