]> git.notmuchmail.org Git - notmuch/blob - emacs/notmuch-address.el
emacs: improve how cl-lib and pcase are required
[notmuch] / emacs / notmuch-address.el
1 ;;; notmuch-address.el --- address completion with notmuch  -*- lexical-binding: t -*-
2 ;;
3 ;; Copyright © David Edmondson
4 ;;
5 ;; This file is part of Notmuch.
6 ;;
7 ;; Notmuch is free software: you can redistribute it and/or modify it
8 ;; under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation, either version 3 of the License, or
10 ;; (at your option) any later version.
11 ;;
12 ;; Notmuch is distributed in the hope that it will be useful, but
13 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 ;; General Public License for more details.
16 ;;
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with Notmuch.  If not, see <https://www.gnu.org/licenses/>.
19 ;;
20 ;; Authors: David Edmondson <dme@dme.org>
21
22 ;;; Code:
23
24 (require 'message)
25 (require 'notmuch-parser)
26 (require 'notmuch-lib)
27 (require 'notmuch-company)
28
29 (declare-function company-manual-begin "company")
30
31 ;;; Cache internals
32
33 (defvar notmuch-address-last-harvest 0
34   "Time of last address harvest.")
35
36 (defvar notmuch-address-completions (make-hash-table :test 'equal)
37   "Hash of email addresses for completion during email composition.
38 This variable is set by calling `notmuch-address-harvest'.")
39
40 (defvar notmuch-address-full-harvest-finished nil
41   "Whether full completion address harvesting has finished.
42 Use `notmuch-address--harvest-ready' to access as that will load
43 a saved hash if necessary (and available).")
44
45 (defun notmuch-address--harvest-ready ()
46   "Return t if there is a full address hash available.
47
48 If the hash is not present it attempts to load a saved hash."
49   (or notmuch-address-full-harvest-finished
50       (notmuch-address--load-address-hash)))
51
52 ;;; Options
53
54 (defcustom notmuch-address-command 'internal
55   "Determines how address completion candidates are generated.
56
57 If it is a string then that string should be an external program
58 which must take a single argument (searched string) and output a
59 list of completion candidates, one per line.
60
61 Alternatively, it can be the symbol `internal', in which case
62 internal completion is used; the variable
63 `notmuch-address-internal-completion' can be used to customize
64 this case.
65
66 Finally, if this variable is nil then address completion is
67 disabled."
68   :type '(radio
69           (const :tag "Use internal address completion" internal)
70           (const :tag "Disable address completion" nil)
71           (string :tag "Use external completion command"))
72   :group 'notmuch-send
73   :group 'notmuch-address
74   :group 'notmuch-external)
75
76 (defcustom notmuch-address-internal-completion '(sent nil)
77   "Determines how internal address completion generates candidates.
78
79 This should be a list of the form (DIRECTION FILTER), where
80 DIRECTION is either sent or received and specifies whether the
81 candidates are searched in messages sent by the user or received
82 by the user (note received by is much faster), and FILTER is
83 either nil or a filter-string, such as \"date:1y..\" to append to
84 the query."
85   :type '(list :tag "Use internal address completion"
86                (radio
87                 :tag "Base completion on messages you have"
88                 :value sent
89                 (const :tag "sent (more accurate)" sent)
90                 (const :tag "received (faster)" received))
91                (radio :tag "Filter messages used for completion"
92                       (const :tag "Use all messages" nil)
93                       (string :tag "Filter query")))
94   ;; We override set so that we can clear the cache when this changes
95   :set (lambda (symbol value)
96          (set-default symbol value)
97          (setq notmuch-address-last-harvest 0)
98          (setq notmuch-address-completions (clrhash notmuch-address-completions))
99          (setq notmuch-address-full-harvest-finished nil))
100   :group 'notmuch-send
101   :group 'notmuch-address
102   :group 'notmuch-external)
103
104 (defcustom notmuch-address-save-filename nil
105   "Filename to save the cached completion addresses.
106
107 All the addresses notmuch uses for address completion will be
108 cached in this file.  This has obvious privacy implications so
109 you should make sure it is not somewhere publicly readable."
110   :type '(choice (const :tag "Off" nil)
111                  (file :tag "Filename"))
112   :group 'notmuch-send
113   :group 'notmuch-address
114   :group 'notmuch-external)
115
116 (defcustom notmuch-address-selection-function 'notmuch-address-selection-function
117   "The function to select address from given list.
118
119 The function is called with PROMPT, COLLECTION, and INITIAL-INPUT
120 as arguments (subset of what `completing-read' can be called
121 with).  While executed the value of `completion-ignore-case'
122 is t.  See documentation of function
123 `notmuch-address-selection-function' to know how address
124 selection is made by default."
125   :type 'function
126   :group 'notmuch-send
127   :group 'notmuch-address
128   :group 'notmuch-external)
129
130 (defcustom notmuch-address-post-completion-functions nil
131   "Functions called after completing address.
132
133 The completed address is passed as an argument to each function.
134 Note that this hook will be invoked for completion in headers
135 matching `notmuch-address-completion-headers-regexp'."
136   :type 'hook
137   :group 'notmuch-address
138   :group 'notmuch-hooks)
139
140 (defcustom notmuch-address-use-company t
141   "If available, use company mode for address completion."
142   :type 'boolean
143   :group 'notmuch-send
144   :group 'notmuch-address)
145
146 ;;; Setup
147
148 (defun notmuch-address-selection-function (prompt collection initial-input)
149   "Call (`completing-read'
150       PROMPT COLLECTION nil nil INITIAL-INPUT 'notmuch-address-history)"
151   (completing-read
152    prompt collection nil nil initial-input 'notmuch-address-history))
153
154 (defvar notmuch-address-completion-headers-regexp
155   "^\\(Resent-\\)?\\(To\\|B?Cc\\|Reply-To\\|From\\|Mail-Followup-To\\|Mail-Copies-To\\):")
156
157 (defvar notmuch-address-history nil)
158
159 (defun notmuch-address-message-insinuate ()
160   (message "calling notmuch-address-message-insinuate is no longer needed"))
161
162 (defun notmuch-address-setup ()
163   (when (and notmuch-address-use-company
164              (require 'company nil t))
165     (notmuch-company-setup))
166   (cl-pushnew (cons notmuch-address-completion-headers-regexp
167                     #'notmuch-address-expand-name)
168               message-completion-alist :test #'equal))
169
170 (defun notmuch-address-toggle-internal-completion ()
171   "Toggle use of internal completion for current buffer.
172
173 This overrides the global setting for address completion and
174 toggles the setting in this buffer."
175   (interactive)
176   (if (local-variable-p 'notmuch-address-command)
177       (kill-local-variable 'notmuch-address-command)
178     (setq-local notmuch-address-command 'internal))
179   (when (boundp 'company-idle-delay)
180     (if (local-variable-p 'company-idle-delay)
181         (kill-local-variable 'company-idle-delay)
182       (setq-local company-idle-delay nil))))
183
184 ;;; Completion
185
186 (defun notmuch-address-matching (substring)
187   "Returns a list of completion candidates matching SUBSTRING.
188 The candidates are taken from `notmuch-address-completions'."
189   (let ((candidates)
190         (re (regexp-quote substring)))
191     (maphash (lambda (key _val)
192                (when (string-match re key)
193                  (push key candidates)))
194              notmuch-address-completions)
195     candidates))
196
197 (defun notmuch-address-options (original)
198   "Return a list of completion candidates.
199 Use either elisp-based implementation or older implementation
200 requiring external commands."
201   (cond
202    ((eq notmuch-address-command 'internal)
203     (unless (notmuch-address--harvest-ready)
204       ;; First, run quick synchronous harvest based on what the user
205       ;; entered so far.
206       (notmuch-address-harvest original t))
207     (prog1 (notmuch-address-matching original)
208       ;; Then start the (potentially long-running) full asynchronous
209       ;; harvest if necessary.
210       (notmuch-address-harvest-trigger)))
211    (t
212     (process-lines notmuch-address-command original))))
213
214 (defun notmuch-address-expand-name ()
215   (cond
216    ((and (eq notmuch-address-command 'internal)
217          notmuch-address-use-company
218          (bound-and-true-p company-mode))
219     (company-manual-begin))
220    (notmuch-address-command
221     (let* ((end (point))
222            (beg (save-excursion
223                   (re-search-backward "\\(\\`\\|[\n:,]\\)[ \t]*")
224                   (goto-char (match-end 0))
225                   (point)))
226            (orig (buffer-substring-no-properties beg end))
227            (completion-ignore-case t)
228            (options (with-temp-message "Looking for completion candidates..."
229                       (notmuch-address-options orig)))
230            (num-options (length options))
231            (chosen (cond
232                     ((eq num-options 0)
233                      nil)
234                     ((eq num-options 1)
235                      (car options))
236                     (t
237                      (funcall notmuch-address-selection-function
238                               (format "Address (%s matches): " num-options)
239                               ;; We put the first match as the initial
240                               ;; input; we put all the matches as
241                               ;; possible completions, moving the
242                               ;; first match to the end of the list
243                               ;; makes cursor up/down in the list work
244                               ;; better.
245                               (append (cdr options) (list (car options)))
246                               (car options))))))
247       (if chosen
248           (progn
249             (push chosen notmuch-address-history)
250             (delete-region beg end)
251             (insert chosen)
252             (run-hook-with-args 'notmuch-address-post-completion-functions
253                                 chosen))
254         (message "No matches.")
255         (ding))))
256    (t nil)))
257
258 ;;; Harvest
259
260 (defun notmuch-address-harvest-addr (result)
261   (puthash (plist-get result :name-addr)
262            t notmuch-address-completions))
263
264 (defun notmuch-address-harvest-filter (proc string)
265   (when (buffer-live-p (process-buffer proc))
266     (with-current-buffer (process-buffer proc)
267       (save-excursion
268         (goto-char (point-max))
269         (insert string))
270       (notmuch-sexp-parse-partial-list
271        'notmuch-address-harvest-addr (process-buffer proc)))))
272
273 (defvar notmuch-address-harvest-procs '(nil . nil)
274   "The currently running harvests.
275
276 The car is a partial harvest, and the cdr is a full harvest.")
277
278 (defun notmuch-address-harvest (&optional addr-prefix synchronous callback)
279   "Collect addresses completion candidates.
280
281 It queries the notmuch database for messages sent/received (as
282 configured with `notmuch-address-command') by the user, collects
283 destination/source addresses from those messages and stores them
284 in `notmuch-address-completions'.
285
286 If ADDR-PREFIX is not nil, only messages with to/from addresses
287 matching ADDR-PREFIX*' are queried.
288
289 Address harvesting may take some time so the address collection runs
290 asynchronously unless SYNCHRONOUS is t. In case of asynchronous
291 execution, CALLBACK is called when harvesting finishes."
292   (let* ((sent (eq (car notmuch-address-internal-completion) 'sent))
293          (config-query (cadr notmuch-address-internal-completion))
294          (prefix-query (and addr-prefix
295                             (format "%s:%s*"
296                                     (if sent "to" "from")
297                                     addr-prefix)))
298          (from-or-to-me-query
299           (mapconcat (lambda (x)
300                        (concat (if sent "from:" "to:") x))
301                      (notmuch-user-emails) " or "))
302          (query (if (or prefix-query config-query)
303                     (concat (format "(%s)" from-or-to-me-query)
304                             (and prefix-query
305                                  (format " and (%s)" prefix-query))
306                             (and config-query
307                                  (format " and (%s)" config-query)))
308                   from-or-to-me-query))
309          (args `("address" "--format=sexp" "--format-version=4"
310                  ,(if sent "--output=recipients" "--output=sender")
311                  "--deduplicate=address"
312                  ,query)))
313     (if synchronous
314         (mapc #'notmuch-address-harvest-addr
315               (apply 'notmuch-call-notmuch-sexp args))
316       ;; Asynchronous
317       (let* ((current-proc (if addr-prefix
318                                (car notmuch-address-harvest-procs)
319                              (cdr notmuch-address-harvest-procs)))
320              (proc-name (format "notmuch-address-%s-harvest"
321                                 (if addr-prefix "partial" "full")))
322              (proc-buf (concat " *" proc-name "*")))
323         ;; Kill any existing process
324         (when current-proc
325           (kill-buffer (process-buffer current-proc))) ; this also kills the process
326         (setq current-proc
327               (apply 'notmuch-start-notmuch proc-name proc-buf
328                      callback                           ; process sentinel
329                      args))
330         (set-process-filter current-proc 'notmuch-address-harvest-filter)
331         (set-process-query-on-exit-flag current-proc nil)
332         (if addr-prefix
333             (setcar notmuch-address-harvest-procs current-proc)
334           (setcdr notmuch-address-harvest-procs current-proc)))))
335   ;; return value
336   nil)
337
338 (defvar notmuch-address--save-hash-version 1
339   "Version format of the save hash.")
340
341 (defun notmuch-address--get-address-hash ()
342   "Return the saved address hash as a plist.
343
344 Returns nil if the save file does not exist, or it does not seem
345 to be a saved address hash."
346   (and notmuch-address-save-filename
347        (condition-case nil
348            (with-temp-buffer
349              (insert-file-contents notmuch-address-save-filename)
350              (let ((name (read (current-buffer)))
351                    (plist (read (current-buffer))))
352                ;; We do two simple sanity checks on the loaded file.
353                ;; We just check a version is specified, not that
354                ;; it is the current version, as we are allowed to
355                ;; over-write and a save-file with an older version.
356                (and (string= name "notmuch-address-hash")
357                     (plist-get plist :version)
358                     plist)))
359          ;; The error case catches any of the reads failing.
360          (error nil))))
361
362 (defun notmuch-address--load-address-hash ()
363   "Read the saved address hash and set the corresponding variables."
364   (let ((load-plist (notmuch-address--get-address-hash)))
365     (when (and load-plist
366                ;; If the user's setting have changed, or the version
367                ;; has changed, return nil to make sure the new settings
368                ;; take effect.
369                (equal (plist-get load-plist :completion-settings)
370                       notmuch-address-internal-completion)
371                (equal (plist-get load-plist :version)
372                       notmuch-address--save-hash-version))
373       (setq notmuch-address-last-harvest (plist-get load-plist :last-harvest))
374       (setq notmuch-address-completions (plist-get load-plist :completions))
375       (setq notmuch-address-full-harvest-finished t)
376       ;; Return t to say load was successful.
377       t)))
378
379 (defun notmuch-address--save-address-hash ()
380   (when notmuch-address-save-filename
381     (if (or (not (file-exists-p notmuch-address-save-filename))
382             ;; The file exists, check it is a file we saved.
383             (notmuch-address--get-address-hash))
384         (with-temp-file notmuch-address-save-filename
385           (let ((save-plist
386                  (list :version notmuch-address--save-hash-version
387                        :completion-settings notmuch-address-internal-completion
388                        :last-harvest notmuch-address-last-harvest
389                        :completions notmuch-address-completions)))
390             (print "notmuch-address-hash" (current-buffer))
391             (print save-plist (current-buffer))))
392       (message "\
393 Warning: notmuch-address-save-filename %s exists but doesn't
394 appear to be an address savefile.  Not overwriting."
395                notmuch-address-save-filename))))
396
397 (defun notmuch-address-harvest-trigger ()
398   (let ((now (float-time)))
399     (when (> (- now notmuch-address-last-harvest) 86400)
400       (setq notmuch-address-last-harvest now)
401       (notmuch-address-harvest
402        nil nil
403        (lambda (_proc event)
404          ;; If harvest fails, we want to try
405          ;; again when the trigger is next called.
406          (if (string= event "finished\n")
407              (progn
408                (notmuch-address--save-address-hash)
409                (setq notmuch-address-full-harvest-finished t))
410            (setq notmuch-address-last-harvest 0)))))))
411
412 ;;; Standalone completion
413
414 (defun notmuch-address-from-minibuffer (prompt)
415   (if (not notmuch-address-command)
416       (read-string prompt)
417     (let ((rmap (copy-keymap minibuffer-local-map))
418           (omap minibuffer-local-map))
419       ;; Configure TAB to start completion when executing read-string.
420       ;; "Original" minibuffer keymap is restored just before calling
421       ;; notmuch-address-expand-name as it may also use minibuffer-local-map
422       ;; (completing-read probably does not but if something else is used there).
423       (define-key rmap (kbd "TAB") (lambda ()
424                                      (interactive)
425                                      (let ((enable-recursive-minibuffers t)
426                                            (minibuffer-local-map omap))
427                                        (notmuch-address-expand-name))))
428       (let ((minibuffer-local-map rmap))
429         (read-string prompt)))))
430
431 ;;; _
432
433 (provide 'notmuch-address)
434
435 ;;; notmuch-address.el ends here