-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcl-double-array.lisp
286 lines (262 loc) · 10.3 KB
/
cl-double-array.lisp
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
(defpackage cl-double-array
(:nicknames :clda)
(:use :cl)
(:export :*array-element-type-unsigned-byte*
:double-array
:build-double-array
:do-common-prefix-search
:common-prefix-search
:do-complete
:complete))
(in-package :cl-double-array)
(defstruct dictionary
(object-id (make-hash-table :test 'eq))
(id-object (make-array 0 :adjustable t :fill-pointer 0)))
(defun initialize-dictionary (dictionary)
(setf (gethash :end (dictionary-object-id dictionary)) 0)
(vector-push-extend :end (dictionary-id-object dictionary)))
(defun dictionary-size (dictionary)
(fill-pointer (dictionary-id-object dictionary)))
(defun register (dictionary objects)
(loop
with object-id = (dictionary-object-id dictionary)
with id-object = (dictionary-id-object dictionary)
for object in objects
unless (gethash object object-id)
do (setf (gethash object object-id) (fill-pointer id-object))
(vector-push-extend object id-object)))
(defun encode (dictionary string)
(loop
with object-id = (dictionary-object-id dictionary)
for object in (coerce string 'list)
collect (gethash object object-id)))
(declaim (inline encode-char))
(defun encode-char (dictionary char)
(gethash char (dictionary-object-id dictionary)))
(defun decode (dictionary ids)
(coerce (loop
with id-object = (dictionary-id-object dictionary)
for id in ids
collect (aref id-object id))
'string))
(declaim (inline decode-char))
(defun decode-char (dictionary id)
(aref (dictionary-id-object dictionary) id))
(defparameter *array-element-type-unsigned-byte* 32)
(defun element-type ()
`(unsigned-byte ,*array-element-type-unsigned-byte*))
(defstruct double-array
dictionary
base
check)
(declaim (inline set-value))
(defun set-value (array i element)
(unless (< i (array-total-size array))
(adjust-array array (expt 2 (1+ (floor (log i 2))))))
(setf (aref array i) element))
(declaim (inline get-value))
(defun get-value (array i)
(if (< i (array-total-size array))
(aref array i)
0))
(defun lists-to-tree (lists)
(let ((tree ()))
(dolist (list lists)
(cond
((null list)
(push '(0) tree))
((eq (caar tree) (car list))
(push (cdr list) (cdar tree)))
(t
(push `(,(car list) ,(cdr list)) tree))))
(dolist (node tree)
(setf (cdr node) (lists-to-tree (nreverse (cdr node)))))
tree))
(defun make-vector (element-type)
(make-array 2
:element-type element-type
:initial-element 0
:adjustable t
:fill-pointer 0))
(defun vector-last-index (vector)
(loop
with n = (array-total-size vector)
for element = (aref vector (decf n))
unless (zerop element)
return n))
(defun build-double-array (string-list &key complete-hook)
(declare (optimize (speed 3) (space 0) (safety 0)))
(let* ((dictionary (make-dictionary))
(base (make-vector (element-type)))
(check (make-vector (element-type)))
(used (make-vector 'bit))
(skip (make-vector (element-type)))
(string-list (sort (copy-list string-list) #'string<)))
(initialize-dictionary dictionary)
(dolist (string string-list)
(register dictionary (coerce string 'list)))
(let* ((encoded-list (loop
for string in string-list
collect (encode dictionary string)))
(tree (lists-to-tree (nreverse encoded-list))))
(labels ((f (n tree)
(unless tree
(when complete-hook
(funcall complete-hook n (pop string-list)))
(return-from f))
(let ((m (loop
with first-id = (caar tree)
with m = (skip 1 first-id)
when (and (= (get-value used m) 0) (check m tree))
return m
do (setf m (skip (1+ m) first-id)))))
(set-value base n m)
(set-value used m 1)
(dolist (node tree)
(let ((o (+ m (car node))))
(set-value check o m)
(set-value skip o (1+ (get-value skip (1+ o))))))
(dolist (node tree)
(f (+ m (car node)) (cdr node)))))
(check (m tree)
(dolist (node tree)
(unless (= (get-value check (+ m (car node))) 0)
(return-from check nil)))
t)
(skip (n id &aux (m n))
(loop
for offset = (get-value skip (+ m id))
until (zerop offset)
do (incf m offset))
(set-value skip (+ n id) (- m n))
m))
;(print encoded-list)
(f 1 tree)))
(setf (fill-pointer base) (1+ (vector-last-index base)))
; padding for range-check-less indexing
(let ((check-size (+ (vector-last-index check)
(dictionary-size dictionary)
1)))
(adjust-array check check-size)
(setf (fill-pointer check) check-size))
;(print base)
;(print check)(terpri)
(make-double-array :dictionary dictionary
:base (make-array (fill-pointer base)
:element-type (element-type)
:initial-contents base)
:check (make-array (fill-pointer check)
:element-type (element-type)
:initial-contents check))))
(defmacro do-common-prefix-search
((double-array string &key (start 0) end node subseq i) &body body)
(let ((double-array-sym (gensym "DOUBLE-ARRAY"))
(string-sym (gensym "STRING"))
(start-sym (gensym "START"))
(bindings '()))
(when node
(push `(,node n) bindings))
(when subseq
(push `(,subseq (subseq ,string-sym ,start-sym (1+ i))) bindings))
(when i
(push `(,i (1+ i)) bindings))
`(let* ((,double-array-sym ,double-array)
(,string-sym ,string)
(,start-sym ,start)
(dictionary (double-array-dictionary ,double-array-sym))
(base (double-array-base ,double-array-sym))
(check (double-array-check ,double-array-sym)))
(loop
with n fixnum = 1
until (zerop n)
for i fixnum from ,start-sym below (or ,end (length ,string-sym))
for id fixnum = (or (encode-char dictionary (schar ,string-sym i))
(return))
for m = (+ n id)
while (= n (aref check m))
do (setf n (aref base m))
when (= n (aref check n))
do (let ,bindings ,@body)))))
(defun common-prefix-search (double-array string &optional (start 0) end)
(let ((result '()))
(do-common-prefix-search (double-array string :start start :end end :subseq subseq)
(push subseq result))
(nreverse result)))
; common-prefix-search-all
(defun progress (double-array string &key (start 0) end)
(let* ((dictionary (double-array-dictionary double-array))
(base (double-array-base double-array))
(check (double-array-check double-array))
(dictionary-size (dictionary-size dictionary)))
(loop
with n = 1
until (zerop n)
for i from start below (or end (length string))
for id = (or (encode-char dictionary (char string i))
(return))
for m = (+ n id)
unless (= n (aref check m))
do (return)
do (setf n (aref base m))
finally (return n))))
(defmacro do-complete
((double-array string &key (start 0) end node completed) &body body)
(let* ((double-array-sym (gensym "DOUBLE-ARRAY"))
(string-sym (gensym "STRING"))
(start-sym (gensym "START"))
(end-sym (gensym "END"))
(body
(if completed
`(labels
((f (n)
(nconc (when (= n (aref check n))
(list (list n)))
(loop
for i from 1 below dictionary-size
for m = (+ n i)
when (= n (aref check m))
append (loop
with char = (decode-char dictionary i)
for x in (f (aref base m))
collect (cons char x))))))
(loop
with prefix = (subseq ,string-sym ,start-sym ,end-sym)
for result in (f n)
,@(if node
`(for ,node = (car (last result)))
'())
do (setf result (nbutlast result))
(let ((,completed (format nil "~a~{~a~}" prefix result)))
,@body)))
`(labels
((f (n)
(when (= n (aref check n))
,@(if node
`((let ((,node n))
,@body))
body))
(loop
for i from 1 below dictionary-size
for m = (+ n i)
when (= n (aref check m))
do (f (aref base m)))))
(f n)))))
`(let* ((,double-array-sym ,double-array)
(,string-sym ,string)
(,start-sym ,start)
(,end-sym ,end)
(dictionary (double-array-dictionary ,double-array-sym))
(base (double-array-base ,double-array-sym))
(check (double-array-check ,double-array-sym))
(dictionary-size (dictionary-size dictionary))
(n (progress ,double-array-sym
,string-sym
:start ,start-sym
:end ,end-sym)))
(when n
,body))))
(defun complete (double-array string &optional (start 0) end)
(let ((completed-list '()))
(do-complete (double-array string :start start :end end :completed completed)
(push completed completed-list))
completed-list))