1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
|
;; cdb.el - constant database (cdb) reader for Emacs Lisp.
;;
;; Author: Yusuke Shinyama, 2010/07/19
;; * public domain *
;;
;; Usage:
;; (cdb-init "foo.cdb") -> nil
;; (cdb-get "foo.cdb" "abc") -> "123"
;; (cdb-keys "foo.cdb") -> ("abc" ...)
;; (cdb-uninit "foo.cdb") -> nil
;;
(eval-when-compile
(require 'cl))
(defconst cdb-version "20100719+")
;; uint32le functions
;; Represents little endian uint32 value as a 4-byte string.
;; We need them for making up with Emacs' 30-bit integer system.
;; This should work on 64-bit machines, but I haven't tested yet.
;;
(defun uint32le (x)
"creates uint32le string from an integer."
(string (% x 256)
(% (lsh x -8) 256)
(% (lsh x -16) 256)
(% (lsh x -24) 256)))
(defun uint32le-int (v)
"converts uint32le string v into an integer (if they can fit)."
(logior (aref v 0)
(lsh (aref v 1) 8)
(lsh (aref v 2) 16)
(lsh (aref v 3) 24)))
(defun uint32le-int8l (v)
"returns the lower 8 bits of the value."
(aref v 0))
(defun uint32le-int24u (v)
"returns the upper 8 bits of the value."
(logior (aref v 1)
(lsh (aref v 2) 8)
(lsh (aref v 3) 16)))
(defun uint32le-eq (v1 v2)
"returns true of the two uint32le values are equal."
(and (= (aref v1 0) (aref v2 0))
(= (aref v1 1) (aref v2 1))
(= (aref v1 2) (aref v2 2))
(= (aref v1 3) (aref v2 3))))
(defun uint32le-add (v1 v2)
"adds two uint32le values v1 and v2."
(let ((a (string 0 0 0 0))
(x (+ (aref v1 0) (aref v2 0))))
(aset a 0 (% x 256))
(setq x (+ (aref v1 1) (aref v2 1) (/ x 256)))
(aset a 1 (% x 256))
(setq x (+ (aref v1 2) (aref v2 2) (/ x 256)))
(aset a 2 (% x 256))
(setq x (+ (aref v1 3) (aref v2 3) (/ x 256)))
(aset a 3 (% x 256))
a))
(defun uint32le-lsh (v n)
"left-shifts the value v by n bits."
(let ((a (string 0 0 0 0))
(x (lsh (aref v 0) n)))
(aset a 0 (% x 256))
(setq x (logior (lsh (aref v 1) n) (/ x 256)))
(aset a 1 (% x 256))
(setq x (logior (lsh (aref v 2) n) (/ x 256)))
(aset a 2 (% x 256))
(setq x (logior (lsh (aref v 3) n) (/ x 256)))
(aset a 3 (% x 256))
a))
(defun uint32le-xor (v1 v2)
"computes the exclusive-or of v1 and v2."
(string (logxor (aref v1 0) (aref v2 0))
(logxor (aref v1 1) (aref v2 1))
(logxor (aref v1 2) (aref v2 2))
(logxor (aref v1 3) (aref v2 3))))
;; cdb functions
;;
;; A cdb reader object is associated with a buffer.
;; Each cdb buffer contains a fixed-length (2048 bytes) header
;; and temporary strings that are read from the file.
;;
(defconst cdb-header-size 2048)
(defconst cdb-hash-initvalue 5381)
(defvar cdb-header nil)
(make-variable-buffer-local 'cdb-header)
(defun cdb-sget (s offset n)
(substring-no-properties s offset (+ n offset)))
(defun cdb-hash (s)
"computes an uint32le hash value for string s."
(let ((h (uint32le cdb-hash-initvalue)))
(mapc (lambda (c) (setq h (uint32le-xor (uint32le-add h (uint32le-lsh h 5)) (uint32le c))))
s)
h))
(defun cdb-buffer-name (path)
"returns a buffer name associated with a cdb file."
(concat " *cdb:" path "*"))
(defun cdb-read-file (path offset length)
"reads from a cdb file and returns its contents as a string."
(with-current-buffer (cdb-buffer-name path)
(erase-buffer)
(insert-file-contents-literally path nil offset (+ length offset))
(buffer-substring-no-properties (point-min) (point-max))))
(defun cdb-init (path)
"initializes an cdb reader that is associated with the given pathname."
(let ((buffer-name (cdb-buffer-name path)))
(unless (get-buffer buffer-name)
(with-current-buffer (get-buffer-create buffer-name)
(set-buffer-multibyte nil) ; necessary to handle binary bits.
(buffer-disable-undo)
(auto-save-mode -1)
(setq cdb-header (cdb-read-file path 0 cdb-header-size))))
buffer-name))
(defun cdb-uninit (path)
"uninitialize an cdb reader associated with the given pathname."
(let ((buffer (get-buffer (cdb-buffer-name path))))
(when buffer (kill-buffer buffer))))
(defun cdb-get (path key)
"obtains the value that is associated with a key, or nil if not found."
(let ((buffer (get-buffer (cdb-buffer-name path)))
(hashval (cdb-hash key)))
(unless buffer (error "cdb not initialized: %s" path))
(with-current-buffer buffer
(let* ((boffset (* 8 (uint32le-int8l hashval)))
(foffset (uint32le-int (cdb-sget cdb-header boffset 4)))
(nents (uint32le-int (cdb-sget cdb-header (+ 4 boffset) 4))))
;; get the subtable associated with the lower 8 bits of the hash value.
(let ((ents (cdb-read-file path foffset (* nents 8)))
(o (uint32le-int24u hashval))
(n 0))
(catch 'found
(while (< n nents)
;; check each hash value in the subtable.
(let ((i (% (+ o n) nents)))
(when (uint32le-eq hashval (cdb-sget ents (* i 8) 4))
(let ((foffset (uint32le-int (cdb-sget ents (+ 4 (* i 8)) 4))))
(unless (zerop foffset)
;; hash value matches, now look into the actual key.
(let ((keylen (uint32le-int (cdb-read-file path foffset 4))))
(when (equal key (cdb-read-file path (+ 8 foffset) keylen))
;; got it. get the value associated with the key.
(let ((vallen (uint32le-int (cdb-read-file path (+ 4 foffset) 4))))
(throw 'found (cdb-read-file path (+ keylen 8 foffset) vallen))
)))) ; unless
)) ; when
) ; let
(setq n (1+ n))
)) ; catch
)))))
(defun cdb-mapc (path func)
"apply the function to each key/value pair in the database."
(let ((buffer (get-buffer (cdb-buffer-name path))))
(unless buffer (error "cdb not initialized: %s" path))
(with-current-buffer buffer
(let ((nkeys 0)
(foffset cdb-header-size)
(foffset-end (uint32le-int (cdb-read-file path 0 4))))
;; read until it reaches the beginning of the first subtable.
(while (< foffset foffset-end)
(let ((keylen (uint32le-int (cdb-read-file path foffset 4)))
(vallen (uint32le-int (cdb-read-file path (+ 4 foffset) 4))))
;; get a key and value.
(funcall func
(cdb-read-file path (+ 8 foffset) keylen)
(cdb-read-file path (+ keylen 8 foffset) vallen))
(setq foffset (+ keylen vallen 8 foffset))
) ; let
(setq nkeys (1+ nkeys))
) ; while
nkeys))))
(defun cdb-keys (path)
"returns all keys in the database."
(let (keys)
(cdb-mapc path (lambda (key value) (setq keys (cons key keys))))
(nreverse keys)))
(defun cdb-values (path)
"returns all values in the database."
(let (values)
(cdb-mapc path (lambda (key value) (setq values (cons value values))))
(nreverse values)))
(provide 'cdb)
;; Simplistic test suite
;;
(defun cdb-test-simple (path)
;; test.cdb should be:
;; +2,8:de->00596d84
;; +2,8:eD->00596d84
;; +2,8:dE->00596da4
;; +3,8:xxx->0b8791dd
;; +5,8:xxxxx->0bb36ddd
;; +6,8:xxxxxx->82212905
;; +7,8:xxxxxxx->c64649dd
;; +3,8:abc->0b873285
;; +2,2:\xa4\xa2->\xa4\xa4
;;
(cdb-init path)
(assert (string= (cdb-get path "de") "00596d84"))
(assert (string= (cdb-get path "eD") "00596d84"))
(assert (string= (cdb-get path "dE") "00596da4"))
(assert (not (cdb-get path "ed")))
(assert (not (cdb-get path "x")))
(assert (string= (cdb-get path "xxx") "0b8791dd"))
(assert (not (cdb-get path "xxxx")))
(assert (string= (cdb-get path "xxxxx") "0bb36ddd"))
(assert (string= (cdb-get path "xxxxxx") "82212905"))
(assert (string= (cdb-get path "xxxxxxx") "c64649dd"))
(assert (string= (cdb-get path "abc") "0b873285"))
(assert (not (cdb-get path "bbbb")))
(assert (not (cdb-get path "dd")))
(assert (string= (cdb-get path "\244\242") "\244\244"))
(assert (equal (cdb-keys path)
'("de" "eD" "dE" "xxx" "xxxxx" "xxxxxx"
"xxxxxxx" "abc" "\244\242")))
(cdb-uninit path)
)
;(cdb-test-simple "test.cdb")
|