1 ;;; registry.el --- Track and remember data items by various fields
3 ;; Copyright (C) 2011-2013 Free Software Foundation, Inc.
5 ;; Author: Teodor Zlatanov <tzz@lifelogs.com>
8 ;; This file is part of GNU Emacs.
10 ;; GNU Emacs is free software: you can redistribute it and/or modify
11 ;; it under the terms of the GNU General Public License as published by
12 ;; the Free Software Foundation, either version 3 of the License, or
13 ;; (at your option) any later version.
15 ;; GNU Emacs is distributed in the hope that it will be useful,
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 ;; GNU General Public License for more details.
20 ;; You should have received a copy of the GNU General Public License
21 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
25 ;; This library provides a general-purpose EIEIO-based registry
26 ;; database with persistence, initialized with these fields:
28 ;; version: a float, 0.1 currently (don't change it)
30 ;; max-hard: an integer, default 5000000
32 ;; max-soft: an integer, default 50000
34 ;; precious: a list of symbols
36 ;; tracked: a list of symbols
38 ;; tracker: a hashtable tuned for 100 symbols to track (you should
39 ;; only access this with the :lookup2-function and the
40 ;; :lookup2+-function)
42 ;; data: a hashtable with default size 10K and resize threshold 2.0
43 ;; (this reflects the expected usage so override it if you know better)
45 ;; ...plus methods to do all the work: `registry-search',
46 ;; `registry-lookup', `registry-lookup-secondary',
47 ;; `registry-lookup-secondary-value', `registry-insert',
48 ;; `registry-delete', `registry-prune', `registry-size' which see
50 ;; and with the following properties:
52 ;; Every piece of data has a unique ID and some general-purpose fields
53 ;; (F1=D1, F2=D2, F3=(a b c)...) expressed as an alist, e.g.
55 ;; ((F1 D1) (F2 D2) (F3 a b c))
57 ;; Note that whether a field has one or many pieces of data, the data
58 ;; is always a list of values.
60 ;; The user decides which fields are "precious", F2 for example. At
61 ;; PRUNE TIME (when the :prune-function is called), the registry will
62 ;; trim any entries without the F2 field until the size is :max-soft
63 ;; or less. No entries with the F2 field will be removed at PRUNE
66 ;; When an entry is inserted, the registry will reject new entries
67 ;; if they bring it over the max-hard limit, even if they have the F2
70 ;; The user decides which fields are "tracked", F1 for example. Any
71 ;; new entry is then indexed by all the tracked fields so it can be
72 ;; quickly looked up that way. The data is always a list (see example
73 ;; above) and each list element is indexed.
75 ;; Precious and tracked field names must be symbols. All other
76 ;; fields can be any other Emacs Lisp types.
80 (eval-when-compile (require 'cl
))
83 (or (ignore-errors (progn
85 (require 'eieio-base
)))
86 ;; gnus-fallback-lib/ from gnus/lisp/gnus-fallback-lib
88 (let ((load-path (cons (expand-file-name
89 "gnus-fallback-lib/eieio"
90 (file-name-directory (locate-library "gnus")))
93 (require 'eieio-base
)))
95 "eieio not found in `load-path' or gnus-fallback-lib/ directory.")))
97 (defclass registry-db
(eieio-persistent)
98 ((version :initarg
:version
102 :documentation
"The registry version.")
103 (max-hard :initarg
:max-hard
107 :documentation
"Never accept more than this many elements.")
108 (max-soft :initarg
:max-soft
112 :documentation
"Prune as much as possible to get to this size.")
114 :initarg
:prune-factor
118 :documentation
"At the max-hard limit, prune size * this entries.")
119 (tracked :initarg
:tracked
122 :documentation
"The tracked (indexed) fields, a list of symbols.")
123 (precious :initarg
:precious
126 :documentation
"The precious fields, a list of symbols.")
127 (tracker :initarg
:tracker
129 :documentation
"The field tracking hashtable.")
132 :documentation
"The data hashtable.")))
135 (defmethod initialize-instance :AFTER
((this registry-db
) slots
)
136 "Set value of data slot of THIS after initialization."
137 (with-slots (data tracker
) this
138 (unless (member :data slots
)
140 (make-hash-table :size
10000 :rehash-size
2.0 :test
'equal
)))
141 (unless (member :tracker slots
)
142 (setq tracker
(make-hash-table :size
100 :rehash-size
2.0)))))
144 (defmethod registry-lookup ((db registry-db
) keys
)
145 "Search for KEYS in the registry-db THIS.
146 Returns an alist of the key followed by the entry in a list, not a cons cell."
147 (let ((data (oref db
:data
)))
151 (when (gethash k data
)
152 (list k
(gethash k data
))))
155 (defmethod registry-lookup-breaks-before-lexbind ((db registry-db
) keys
)
156 "Search for KEYS in the registry-db THIS.
157 Returns an alist of the key followed by the entry in a list, not a cons cell."
158 (let ((data (oref db
:data
)))
160 (loop for key in keys
161 when
(gethash key data
)
162 collect
(list key
(gethash key data
))))))
164 (defmethod registry-lookup-secondary ((db registry-db
) tracksym
166 "Search for TRACKSYM in the registry-db THIS.
167 When CREATE is not nil, create the secondary index hashtable if needed."
168 (let ((h (gethash tracksym
(oref db
:tracker
))))
173 (make-hash-table :size
800 :rehash-size
2.0 :test
'equal
)
175 (gethash tracksym
(oref db
:tracker
))))))
177 (defmethod registry-lookup-secondary-value ((db registry-db
) tracksym val
179 "Search for TRACKSYM with value VAL in the registry-db THIS.
180 When SET is not nil, set it for VAL (use t for an empty list)."
181 ;; either we're asked for creation or there should be an existing index
182 (when (or set
(registry-lookup-secondary db tracksym
))
183 ;; set the entry if requested,
185 (puthash val
(if (eq t set
) '() set
)
186 (registry-lookup-secondary db tracksym t
)))
187 (gethash val
(registry-lookup-secondary db tracksym
)))))
189 (defun registry--match (mode entry check-list
)
192 (let ((key (nth 0 (nth 0 check-list
)))
193 (vals (cdr-safe (nth 0 check-list
)))
195 (while (and key vals
(not found
))
196 (setq found
(case mode
198 (member (car-safe vals
) (cdr-safe (assoc key entry
))))
200 (string-match (car vals
)
203 (cdr-safe (assoc key entry
))
205 vals
(cdr-safe vals
)))
207 (registry--match mode entry
(cdr-safe check-list
))))))
210 (defmethod registry-search ((db registry-db
) &rest spec
)
211 "Search for SPEC across the registry-db THIS.
212 For example calling with :member '(a 1 2) will match entry '((a 3 1)).
213 Calling with :all t (any non-nil value) will match all.
214 Calling with :regex '\(a \"h.llo\") will match entry '((a \"hullo\" \"bye\").
215 The test order is to check :all first, then :member, then :regex."
217 (let ((all (plist-get spec
:all
))
218 (member (plist-get spec
:member
))
219 (regex (plist-get spec
:regex
)))
220 (loop for k being the hash-keys of
(oref db
:data
)
221 using
(hash-values v
)
223 ;; :all non-nil returns all
226 (and member
(registry--match :member v member
))
228 (and regex
(registry--match :regex v regex
)))
231 (defmethod registry-delete ((db registry-db
) keys assert
&rest spec
)
232 "Delete KEYS from the registry-db THIS.
233 If KEYS is nil, use SPEC to do a search.
234 Updates the secondary ('tracked') indices as well.
235 With assert non-nil, errors out if the key does not exist already."
236 (let* ((data (oref db
:data
))
238 (apply 'registry-search db spec
)))
239 (tracked (oref db
:tracked
)))
242 (let ((entry (gethash key data
)))
245 "Key %s does not exists in database" key
))
246 ;; clean entry from the secondary indices
248 ;; is this tracked symbol indexed?
249 (when (registry-lookup-secondary db tr
)
250 ;; for every value in the entry under that key...
251 (dolist (val (cdr-safe (assq tr entry
)))
252 (let* ((value-keys (registry-lookup-secondary-value
254 (when (member key value-keys
)
255 ;; override the previous value
256 (registry-lookup-secondary-value
258 ;; with the indexed keys MINUS the current key
259 ;; (we pass t when the list is empty)
260 (or (delete key value-keys
) t
)))))))
264 (defmethod registry-full ((db registry-db
))
265 "Checks if registry-db THIS is full."
266 (>= (registry-size db
)
267 (oref db
:max-hard
)))
269 (defmethod registry-insert ((db registry-db
) key entry
)
270 "Insert ENTRY under KEY into the registry-db THIS.
271 Updates the secondary ('tracked') indices as well.
272 Errors out if the key exists already."
274 (assert (not (gethash key
(oref db
:data
))) nil
275 "Key already exists in database")
277 (assert (not (registry-full db
))
279 "registry max-hard size limit reached")
282 (puthash key entry
(oref db
:data
))
284 ;; store the secondary indices
285 (dolist (tr (oref db
:tracked
))
286 ;; for every value in the entry under that key...
287 (dolist (val (cdr-safe (assq tr entry
)))
288 (let* ((value-keys (registry-lookup-secondary-value db tr val
)))
289 (pushnew key value-keys
:test
'equal
)
290 (registry-lookup-secondary-value db tr val value-keys
))))
293 (defmethod registry-reindex ((db registry-db
))
294 "Rebuild the secondary indices of registry-db THIS."
296 (expected (* (length (oref db
:tracked
)) (registry-size db
))))
297 (dolist (tr (oref db
:tracked
))
302 (when (and (< 0 expected
)
303 (= 0 (mod count
1000)))
304 (message "reindexing: %d of %d (%.2f%%)"
305 count expected
(/ (* 100 count
) expected
)))
306 (dolist (val (cdr-safe (assq tr v
)))
307 (let* ((value-keys (registry-lookup-secondary-value db tr val
)))
308 (push key value-keys
)
309 (registry-lookup-secondary-value db tr val value-keys
))))
312 (defmethod registry-size ((db registry-db
))
313 "Returns the size of the registry-db object THIS.
314 This is the key count of the :data slot."
315 (hash-table-count (oref db
:data
)))
317 (defmethod registry-prune ((db registry-db
) &optional sortfun
)
318 "Prunes the registry-db object THIS.
319 Removes only entries without the :precious keys if it can,
320 then removes oldest entries first.
321 Returns the number of deleted entries.
322 If SORTFUN is given, tries to keep entries that sort *higher*.
323 SORTFUN is passed only the two keys so it must look them up directly."
324 (dolist (collector '(registry-prune-soft-candidates
325 registry-prune-hard-candidates
))
326 (let* ((size (registry-size db
))
327 (collected (funcall collector db
))
328 (limit (nth 0 collected
))
329 (candidates (nth 1 collected
))
330 ;; sort the candidates if SORTFUN was given
331 (candidates (if sortfun
(sort candidates sortfun
) candidates
))
332 (candidates-count (length candidates
))
333 ;; are we over max-soft?
334 (prune-needed (> size limit
)))
336 ;; while we have more candidates than we need to remove...
337 (while (and (> candidates-count
(- size limit
)) candidates
)
338 (decf candidates-count
)
339 (setq candidates
(cdr candidates
)))
341 (registry-delete db candidates nil
)
342 (length candidates
))))
344 (defmethod registry-prune-soft-candidates ((db registry-db
))
345 "Collects pruning candidates from the registry-db object THIS.
346 Proposes only entries without the :precious keys."
347 (let* ((precious (oref db
:precious
))
348 (precious-p (lambda (entry-key)
349 (cdr (memq (car entry-key
) precious
))))
350 (data (oref db
:data
))
351 (limit (oref db
:max-soft
))
352 (candidates (loop for k being the hash-keys of data
353 using
(hash-values v
)
354 when
(notany precious-p v
)
356 (list limit candidates
)))
358 (defmethod registry-prune-hard-candidates ((db registry-db
))
359 "Collects pruning candidates from the registry-db object THIS.
360 Proposes any entries over the max-hard limit minus size * prune-factor."
361 (let* ((data (oref db
:data
))
362 ;; prune to (size * prune-factor) below the max-hard limit so
363 ;; we're not pruning all the time
364 (limit (max 0 (- (oref db
:max-hard
)
365 (* (registry-size db
) (oref db
:prune-factor
)))))
366 (candidates (loop for k being the hash-keys of data
368 (list limit candidates
))))
371 ;;; registry.el ends here