-
Notifications
You must be signed in to change notification settings - Fork 37
/
ebib-filters.el
376 lines (338 loc) · 16.1 KB
/
ebib-filters.el
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
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
;;; ebib-filters.el --- Part of Ebib, a BibTeX database manager -*- lexical-binding: nil -*-
;; Copyright (c) 2003-2024 Joost Kremers
;; All rights reserved.
;; Author: Joost Kremers <[email protected]>
;; Maintainer: Joost Kremers <[email protected]>
;; Redistribution and use in source and binary forms, with or without
;; modification, are permitted provided that the following conditions
;; are met:
;;
;; 1. Redistributions of source code must retain the above copyright
;; notice, this list of conditions and the following disclaimer.
;; 2. Redistributions in binary form must reproduce the above copyright
;; notice, this list of conditions and the following disclaimer in the
;; documentation and/or other materials provided with the distribution.
;; 3. The name of the author may not be used to endorse or promote products
;; derived from this software without specific prior written permission.
;;
;; THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
;; IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
;; OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
;; IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
;; INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
;; NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ; LOSS OF USE,
;; DATA, OR PROFITS ; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
;; THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
;; (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
;; THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
;;; Commentary:
;; This file is part of Ebib, a BibTeX database manager for Emacs. It contains
;; the filter code.
;;
;; Note: this file must be compiled with `lexical-binding' set to nil, due to
;; the local macro definition `contains' in `ebib--filters-run-filter'.
;;; Code:
(require 'cl-lib)
(require 'ebib-utils)
(require 'ebib-keywords)
(require 'ebib-db)
(defgroup ebib-filters nil "Filter settings for Ebib." :group 'ebib)
(defcustom ebib-filters-display-as-lisp nil
"If set, display filters as Lisp expressions."
:group 'ebib-filters
:type 'boolean)
(defcustom ebib-filters-ignore-case t
"If set, ignore case in filter names."
:group 'ebib-filters
:type 'boolean)
(defcustom ebib-filters-include-crossref nil
"If set, include field values from cross-referenced entries.
By default, if an entry inherits field values from a
cross-referenced entry, those field values are not checked
against the filter. If this option is set, those field values
are checked, so that entries for which the filter matches on a
cross-referenced field are included in the results as well."
:group 'ebib-filters
:type 'boolean)
(defcustom ebib-filters-default-file "~/.emacs.d/ebib-filters"
"File for saving filters."
:group 'ebib-filters
:type 'file)
(defvar ebib--filters-alist nil "Alist of saved filters.")
(defvar ebib--filters-last-filter nil "The last used filter.")
(defvar ebib--filters-modified nil "T if `ebib--filters-alist' has been modified.")
(defun ebib--filters-create-filter (bool not)
"Create a filter interactively and store it in the current database.
BOOL is the operator to be used, either `and' or `or'. If NOT<0,
a logical `not' is applied to the selection."
(let* ((dialect (ebib--get-dialect ebib--cur-db))
(field (completing-read (format "Filter: %s<field> contains <search string>%s. Enter field: "
(if (< not 0) "not " "")
(if (< not 0) "" ""))
(append (list "any" "=type=") (seq-uniq (seq-concatenate 'list (ebib--list-fields-uniquely dialect) (cdr (assq dialect ebib-extra-fields)))))
nil nil nil 'ebib--field-history)))
(let* ((prompt (format "Filter: %s%s contains <search string>%s. Enter %s: "
(if (< not 0) "not " "")
field
(if (< not 0) "" "")
(if (string= field "=type=") "entry type" "regexp")))
(regexp (cond
((string= field "=type=")
(completing-read prompt (ebib--list-entry-types dialect t) nil t nil 'ebib--filters-history))
((cl-equalp field "keywords")
(completing-read prompt ebib--keywords-completion-list nil nil nil 'ebib--keywords-history))
(t
(read-string prompt nil 'ebib--filters-history)))))
(ebib--execute-when
(filtered-db
(ebib-db-set-filter `(,bool ,(ebib-db-get-filter ebib--cur-db)
,(if (>= not 0)
`(contains ,field ,regexp)
`(not (contains ,field ,regexp))))
ebib--cur-db))
(real-db
(ebib-db-set-filter (if (>= not 0)
`(contains ,field ,regexp)
`(not (contains ,field ,regexp)))
ebib--cur-db))))))
;; The filters keymap
(eval-and-compile
(define-prefix-command 'ebib-filters-map)
(suppress-keymap 'ebib-filters-map 'no-digits)
(define-key ebib-filters-map "&" 'ebib-filters-logical-and)
(define-key ebib-filters-map "|" 'ebib-filters-logical-or)
(define-key ebib-filters-map "~" 'ebib-filters-logical-not)
(define-key ebib-filters-map "a" 'ebib-filters-apply-filter)
(define-key ebib-filters-map "c" 'ebib-filters-cancel-filter)
(define-key ebib-filters-map "d" 'ebib-filters-delete-filter)
(define-key ebib-filters-map "D" 'ebib-filters-delete-all-filters)
(define-key ebib-filters-map "l" 'ebib-filters-load-from-file)
(define-key ebib-filters-map "L" 'ebib-filters-reapply-last-filter)
(define-key ebib-filters-map "r" 'ebib-filters-reapply-filter)
(define-key ebib-filters-map "R" 'ebib-filters-rename-filter)
(define-key ebib-filters-map "s" 'ebib-filters-store-filter)
(define-key ebib-filters-map "S" 'ebib-filters-save-filters)
(define-key ebib-filters-map "v" 'ebib-filters-view-filter)
(define-key ebib-filters-map "V" 'ebib-filters-view-all-filters)
(define-key ebib-filters-map "w" 'ebib-filters-write-to-file)
(define-key ebib-filters-map "x" 'ebib-filters-toggle-crossref))
(defun ebib-filters-view-filter ()
"Display the currently active filter in the minibuffer."
(interactive)
(ebib--execute-when
(filtered-db
(message (ebib--filters-pp-filter (ebib-db-get-filter ebib--cur-db))))
(default
(error "[Ebib] No filter is active"))))
(defun ebib-filters-view-all-filters ()
"Display all filters in a *Help* buffer."
(interactive)
(with-help-window (help-buffer)
(let ((print-length nil)
(print-level nil)
(print-circle nil))
(princ "Currently stored filters:\n\n")
(if ebib--filters-alist
(pp ebib--filters-alist)
(princ "None.")))))
(defun ebib--filters-select-filter (prompt)
"Select a filter from the saved filters.
PROMPT is the prompt string to be shown when asking the user for
a filter. Return the filter as a list (NAME FILTER)."
(if (not ebib--filters-alist)
(error "[Ebib] No stored filters")
(let* ((completion-ignore-case ebib-filters-ignore-case)
(name (completing-read prompt
(sort (copy-alist ebib--filters-alist)
(lambda (x y) (string-lessp (car x) (car y))))
nil t)))
(ebib--filters-get-filter name))))
(defun ebib-filters-rename-filter ()
"Rename a filter."
(interactive)
(let ((filter (ebib--filters-select-filter "Rename filter: "))
(new-name (read-from-minibuffer "Enter new name: ")))
(if (ebib--filters-exists-p new-name)
(error (format "[Ebib] A filter named `%s' already exists" new-name))
(setcar filter new-name)
(setq ebib--filters-modified t))))
(defun ebib-filters-store-filter ()
"Store the current filter."
(interactive)
(let ((filter (or (ebib-db-get-filter ebib--cur-db)
ebib--filters-last-filter)))
(if filter
(let ((name (read-from-minibuffer "Enter filter name: ")))
(when (or (not (ebib--filters-exists-p name))
(y-or-n-p (format "Filter `%s' already exists. Overwrite? " name)))
(ebib--filters-add-filter filter name 'overwrite)
(setq ebib--filters-modified t)
(message "Filter stored.")))
(message "No filter to store"))))
(defun ebib-filters-delete-filter ()
"Delete a filter from the stored filters."
(interactive)
(let ((filter (ebib--filters-select-filter "Delete filter: ")))
(when filter
(setq ebib--filters-alist (delq filter ebib--filters-alist))
(setq ebib--filters-modified t)
(message "Filter %s deleted" (car filter)))))
(defun ebib-filters-delete-all-filters ()
"Delete all stored filters."
(interactive)
(setq ebib--filters-alist nil)
(setq ebib--filters-modified t)
(message "All stored filters deleted."))
(defun ebib-filters-load-from-file (file)
"Read filters from FILE.
If there are stored filters, ask whether they should be
overwritten en bloc or whether the new filters should be
appended."
(interactive "fRead filters from file: ")
(setq file (expand-file-name file))
(setq ebib--log-error nil)
(let ((overwrite
(if ebib--filters-alist
(eq ?o (read-char-choice "There are stored filters: (o)verwrite/(a)ppend? " '(?o ?a))))))
(ebib--filters-load-file file overwrite)
(setq ebib--filters-modified t))
(if (and ebib--log-error
(= ebib--log-error 0))
(message "No filters found in %s" file)
(message "Filters loaded from %s" file)))
(defun ebib-filters-save-filters ()
"Save all filters in `ebib-filters-default-file'.
If there are no stored filters, the filter file is deleted."
(interactive)
(ebib--filters-update-filters-file)
(setq ebib--filters-modified nil))
(defun ebib-filters-write-to-file ()
"Write filters to FILE."
(interactive)
(if (not ebib--filters-alist)
(message "No stored filters")
(let ((file (read-file-name "Save filters to file: ")))
(ebib--filters-save-file file))))
(defvar ebib-entry nil "Variable used to store an entry during filtering.
See `ebib--filters-run-filter'.")
(defun ebib--filters-run-filter (db)
"Run the filter of DB and return a list of matching keys."
;; The filter uses a macro `contains', which we locally define here. This
;; macro in turn uses a dynamic variable `ebib-entry', which we must set
;; before eval'ing the filter.
(let ((filter (ebib-db-get-filter db)))
(eval
`(cl-macrolet ((contains (field regexp)
`(ebib--search-in-entry ,regexp ebib-entry ,(unless (cl-equalp field "any") field))))
(seq-filter (lambda (key)
(let ((ebib-entry (if ebib-filters-include-crossref
(ebib-get-entry key db 'noerror 'xref)
(ebib-db-get-entry key db 'noerror))))
(when ,filter
key)))
(ebib-db-list-keys db))))))
(defun ebib--filters-pp-filter (filter)
"Convert FILTER into a string suitable for displaying.
If `ebib-filters-display-as-lisp' is set, this simply converts
FILTER into a string representation of the Lisp expression.
Otherwise, it is converted into infix notation. If FILTER is nil,
return value is also nil."
(when filter
(if ebib-filters-display-as-lisp
(format "%S" filter)
(cl-labels ((pp-filter (f)
(cond
((listp f) ; `f' is either a list or a string.
(pcase (cl-first f)
('not
(format "not %s" (pp-filter (cl-second f))))
('contains
(format "(%s contains \"%s\")" (pp-filter (cl-second f)) (pp-filter (cl-third f))))
(`,(or 'and 'or)
(format "(%s %s %s)" (pp-filter (cl-second f)) (cl-first f) (pp-filter (cl-third f))))))
((string= f "any") "any field")
(t f))))
(let ((pretty-filter (pp-filter filter)))
(if (not pretty-filter)
"Filtered"
(if (string-match "\\`(\\(.*\\))\\'" pretty-filter) ; Remove the outer parentheses.
(match-string 1 pretty-filter)
pretty-filter)))))))
(defun ebib--filters-load-file (file &optional overwrite)
"Load filters from FILE.
If OVERWRITE in non-nil, the existing filters are discarded.
Otherwise the new filters are added to the existing ones, unless
there is a name conflict."
(when (file-readable-p file)
(with-temp-buffer
(insert-file-contents file)
(goto-char (point-min))
(let ((flist (when (search-forward "(" nil t)
(forward-char -1)
(read (current-buffer)))))
(if (not (listp flist))
(ebib--log 'warning "No filters found in `%s'\n" file)
(ebib--log 'log "Loading filters from file `%s'.\n" file)
(if overwrite
(setq ebib--filters-alist nil))
(mapc (lambda (filter)
(ebib--filters-add-filter (cadr filter) (car filter)))
flist))))))
(defun ebib--filters-save-file (file)
"Write `ebib--filters-alist' to FILE."
(if (file-writable-p file)
(with-temp-buffer
(let ((print-length nil)
(print-level nil)
(print-circle nil))
(insert ";; -*- mode: lisp-data -*-\n\n")
(insert (format ";; Ebib filters file\n;; Saved on %s\n\n" (format-time-string "%Y.%m.%d %H:%M")))
(pp ebib--filters-alist (current-buffer))
(write-region (point-min) (point-max) file)))
(ebib--log 'warning "Could not write to filters file `%s'" file)))
(defun ebib--filters-update-filters-file ()
"Update the filters file.
If changes have been made to the stored filters there are stored
filters, they are saved to `ebib-filters-default-file', otherwise
this file is deleted."
(when ebib--filters-modified
(if ebib--filters-alist
(ebib--filters-save-file ebib-filters-default-file)
(condition-case nil
(when (file-exists-p ebib-filters-default-file)
(delete-file ebib-filters-default-file delete-by-moving-to-trash)
(message "Filter file %s deleted." ebib-filters-default-file))
(file-error (message "Can't delete %s" ebib-filters-default-file))))))
(defun ebib--filters-add-filter (filter name &optional overwrite)
"Add FILTER under NAME in `ebib--filters-alist'.
If a filter with NAME already exists, the filter is not added,
unless OVERWRITE is non-nil."
(if (ebib--filters-exists-p name)
(if overwrite
(setcdr (ebib--filters-get-filter name) (list filter))
(ebib--log 'message "Filter name conflict: `%s'.\n" name))
(push (list name filter) ebib--filters-alist)))
(defun ebib--filters-get-filter (name &optional noerror)
"Return the filter record corresponding to NAME.
Return a list (NAME FILTER) if found. If there is no
filter named NAME, raise an error, unless NOERROR is non-nil."
(or (assoc-string name ebib--filters-alist ebib-filters-ignore-case)
(unless noerror
(error "[Ebib] Invalid filter %s" name))))
(defun ebib--filters-exists-p (name)
"Return non-nil if a filter with NAME already exists."
(assoc-string name ebib--filters-alist ebib-filters-ignore-case))
;; Special filters
(defun ebib--newer-than (date)
"Function for use in filters.
Return t if the entry being tested is newer than DATE. DATE must
be a list of the format returned by `current-time' and is
compared to the timestamp of the entry being tested. If the
entry has no timestamp, or a timestamp that cannot be converted
into a date representation, return nil."
(let ((timestamp (cdr (assoc-string "timestamp" ebib-entry))))
(when (and timestamp
(setq timestamp (ignore-errors (date-to-time timestamp))))
(time-less-p date timestamp))))
(provide 'ebib-filters)
;;; ebib-filters.el ends here