]> git.notmuchmail.org Git - notmuch/blob - emacs/notmuch-lib.el
emacs: Remove broken `notmuch-get-bodypart-content' API
[notmuch] / emacs / notmuch-lib.el
1 ;; notmuch-lib.el --- common variables, functions and function declarations
2 ;;
3 ;; Copyright © Carl Worth
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 <http://www.gnu.org/licenses/>.
19 ;;
20 ;; Authors: Carl Worth <cworth@cworth.org>
21
22 ;; This is an part of an emacs-based interface to the notmuch mail system.
23
24 (require 'mm-view)
25 (require 'mm-decode)
26 (require 'cl)
27
28 (autoload 'notmuch-jump-search "notmuch-jump"
29   "Jump to a saved search by shortcut key." t)
30
31 (defgroup notmuch nil
32   "Notmuch mail reader for Emacs."
33   :group 'mail)
34
35 (defgroup notmuch-hello nil
36   "Overview of saved searches, tags, etc."
37   :group 'notmuch)
38
39 (defgroup notmuch-search nil
40   "Searching and sorting mail."
41   :group 'notmuch)
42
43 (defgroup notmuch-show nil
44   "Showing messages and threads."
45   :group 'notmuch)
46
47 (defgroup notmuch-send nil
48   "Sending messages from Notmuch."
49   :group 'notmuch)
50
51 (custom-add-to-group 'notmuch-send 'message 'custom-group)
52
53 (defgroup notmuch-crypto nil
54   "Processing and display of cryptographic MIME parts."
55   :group 'notmuch)
56
57 (defgroup notmuch-hooks nil
58   "Running custom code on well-defined occasions."
59   :group 'notmuch)
60
61 (defgroup notmuch-external nil
62   "Running external commands from within Notmuch."
63   :group 'notmuch)
64
65 (defgroup notmuch-faces nil
66   "Graphical attributes for displaying text"
67   :group 'notmuch)
68
69 (defcustom notmuch-command "notmuch"
70   "Name of the notmuch binary.
71
72 This can be a relative or absolute path to the notmuch binary.
73 If this is a relative path, it will be searched for in all of the
74 directories given in `exec-path' (which is, by default, based on
75 $PATH)."
76   :type 'string
77   :group 'notmuch-external)
78
79 (defcustom notmuch-search-oldest-first t
80   "Show the oldest mail first when searching.
81
82 This variable defines the default sort order for displaying
83 search results. Note that any filtered searches created by
84 `notmuch-search-filter' retain the search order of the parent
85 search."
86   :type 'boolean
87   :group 'notmuch-search)
88
89 (defcustom notmuch-poll-script nil
90   "[Deprecated] Command to run to incorporate new mail into the notmuch database.
91
92 This option has been deprecated in favor of \"notmuch new\"
93 hooks (see man notmuch-hooks).  To change the path to the notmuch
94 binary, customize `notmuch-command'.
95
96 This variable controls the action invoked by
97 `notmuch-poll-and-refresh-this-buffer' (bound by default to 'G')
98 to incorporate new mail into the notmuch database.
99
100 If set to nil (the default), new mail is processed by invoking
101 \"notmuch new\". Otherwise, this should be set to a string that
102 gives the name of an external script that processes new mail. If
103 set to the empty string, no command will be run.
104
105 The external script could do any of the following depending on
106 the user's needs:
107
108 1. Invoke a program to transfer mail to the local mail store
109 2. Invoke \"notmuch new\" to incorporate the new mail
110 3. Invoke one or more \"notmuch tag\" commands to classify the mail"
111   :type '(choice (const :tag "notmuch new" nil)
112                  (const :tag "Disabled" "")
113                  (string :tag "Custom script"))
114   :group 'notmuch-external)
115
116 ;;
117
118 (defvar notmuch-search-history nil
119   "Variable to store notmuch searches history.")
120
121 (defcustom notmuch-archive-tags '("-inbox")
122   "List of tag changes to apply to a message or a thread when it is archived.
123
124 Tags starting with \"+\" (or not starting with either \"+\" or
125 \"-\") in the list will be added, and tags starting with \"-\"
126 will be removed from the message or thread being archived.
127
128 For example, if you wanted to remove an \"inbox\" tag and add an
129 \"archived\" tag, you would set:
130     (\"-inbox\" \"+archived\")"
131   :type '(repeat string)
132   :group 'notmuch-search
133   :group 'notmuch-show)
134
135 (defvar notmuch-common-keymap
136   (let ((map (make-sparse-keymap)))
137     (define-key map "?" 'notmuch-help)
138     (define-key map "q" 'notmuch-bury-or-kill-this-buffer)
139     (define-key map "s" 'notmuch-search)
140     (define-key map "z" 'notmuch-tree)
141     (define-key map "m" 'notmuch-mua-new-mail)
142     (define-key map "=" 'notmuch-refresh-this-buffer)
143     (define-key map "G" 'notmuch-poll-and-refresh-this-buffer)
144     (define-key map "j" 'notmuch-jump-search)
145     map)
146   "Keymap shared by all notmuch modes.")
147
148 ;; By default clicking on a button does not select the window
149 ;; containing the button (as opposed to clicking on a widget which
150 ;; does). This means that the button action is then executed in the
151 ;; current selected window which can cause problems if the button
152 ;; changes the buffer (e.g., id: links) or moves point.
153 ;;
154 ;; This provides a button type which overrides mouse-action so that
155 ;; the button's window is selected before the action is run. Other
156 ;; notmuch buttons can get the same behaviour by inheriting from this
157 ;; button type.
158 (define-button-type 'notmuch-button-type
159   'mouse-action (lambda (button)
160                   (select-window (posn-window (event-start last-input-event)))
161                   (button-activate button)))
162
163 (defun notmuch-command-to-string (&rest args)
164   "Synchronously invoke \"notmuch\" with the given list of arguments.
165
166 If notmuch exits with a non-zero status, output from the process
167 will appear in a buffer named \"*Notmuch errors*\" and an error
168 will be signaled.
169
170 Otherwise the output will be returned"
171   (with-temp-buffer
172     (let* ((status (apply #'call-process notmuch-command nil t nil args))
173            (output (buffer-string)))
174       (notmuch-check-exit-status status (cons notmuch-command args) output)
175       output)))
176
177 (defvar notmuch--cli-sane-p nil
178   "Cache whether the CLI seems to be configured sanely.")
179
180 (defun notmuch-cli-sane-p ()
181   "Return t if the cli seems to be configured sanely."
182   (unless notmuch--cli-sane-p
183     (let ((status (call-process notmuch-command nil nil nil
184                                 "config" "get" "user.primary_email")))
185       (setq notmuch--cli-sane-p (= status 0))))
186   notmuch--cli-sane-p)
187
188 (defun notmuch-assert-cli-sane ()
189   (unless (notmuch-cli-sane-p)
190     (notmuch-logged-error
191      "notmuch cli seems misconfigured or unconfigured."
192 "Perhaps you haven't run \"notmuch setup\" yet? Try running this
193 on the command line, and then retry your notmuch command")))
194
195 (defun notmuch-version ()
196   "Return a string with the notmuch version number."
197   (let ((long-string
198          ;; Trim off the trailing newline.
199          (substring (notmuch-command-to-string "--version") 0 -1)))
200     (if (string-match "^notmuch\\( version\\)? \\(.*\\)$"
201                       long-string)
202         (match-string 2 long-string)
203       "unknown")))
204
205 (defun notmuch-config-get (item)
206   "Return a value from the notmuch configuration."
207   (let* ((val (notmuch-command-to-string "config" "get" item))
208          (len (length val)))
209     ;; Trim off the trailing newline (if the value is empty or not
210     ;; configured, there will be no newline)
211     (if (and (> len 0) (= (aref val (- len 1)) ?\n))
212         (substring val 0 -1)
213       val)))
214
215 (defun notmuch-database-path ()
216   "Return the database.path value from the notmuch configuration."
217   (notmuch-config-get "database.path"))
218
219 (defun notmuch-user-name ()
220   "Return the user.name value from the notmuch configuration."
221   (notmuch-config-get "user.name"))
222
223 (defun notmuch-user-primary-email ()
224   "Return the user.primary_email value from the notmuch configuration."
225   (notmuch-config-get "user.primary_email"))
226
227 (defun notmuch-user-other-email ()
228   "Return the user.other_email value (as a list) from the notmuch configuration."
229   (split-string (notmuch-config-get "user.other_email") "\n" t))
230
231 (defun notmuch-poll ()
232   "Run \"notmuch new\" or an external script to import mail.
233
234 Invokes `notmuch-poll-script', \"notmuch new\", or does nothing
235 depending on the value of `notmuch-poll-script'."
236   (interactive)
237   (if (stringp notmuch-poll-script)
238       (unless (string= notmuch-poll-script "")
239         (call-process notmuch-poll-script nil nil))
240     (call-process notmuch-command nil nil nil "new")))
241
242 (defun notmuch-bury-or-kill-this-buffer ()
243   "Undisplay the current buffer.
244
245 Bury the current buffer, unless there is only one window showing
246 it, in which case it is killed."
247   (interactive)
248   (if (> (length (get-buffer-window-list nil nil t)) 1)
249       (bury-buffer)
250     (kill-buffer)))
251
252 (defun notmuch-documentation-first-line (symbol)
253   "Return the first line of the documentation string for SYMBOL."
254   (let ((doc (documentation symbol)))
255     (if doc
256         (with-temp-buffer
257           (insert (documentation symbol t))
258           (goto-char (point-min))
259           (let ((beg (point)))
260             (end-of-line)
261             (buffer-substring beg (point))))
262       "")))
263
264 (defun notmuch-prefix-key-description (key)
265   "Given a prefix key code, return a human-readable string representation.
266
267 This is basically just `format-kbd-macro' but we also convert ESC to M-."
268   (let* ((key-vector (if (vectorp key) key (vector key)))
269          (desc (format-kbd-macro key-vector)))
270     (if (string= desc "ESC")
271         "M-"
272       (concat desc " "))))
273
274
275 (defun notmuch-describe-key (actual-key binding prefix ua-keys tail)
276   "Prepend cons cells describing prefix-arg ACTUAL-KEY and ACTUAL-KEY to TAIL
277
278 It does not prepend if ACTUAL-KEY is already listed in TAIL."
279   (let ((key-string (concat prefix (format-kbd-macro actual-key))))
280     ;; We don't include documentation if the key-binding is
281     ;; over-ridden. Note, over-riding a binding automatically hides the
282     ;; prefixed version too.
283     (unless (assoc key-string tail)
284       (when (and ua-keys (symbolp binding)
285                  (get binding 'notmuch-prefix-doc))
286         ;; Documentation for prefixed command
287         (let ((ua-desc (key-description ua-keys)))
288           (push (cons (concat ua-desc " " prefix (format-kbd-macro actual-key))
289                       (get binding 'notmuch-prefix-doc))
290                 tail)))
291       ;; Documentation for command
292       (push (cons key-string
293                   (or (and (symbolp binding) (get binding 'notmuch-doc))
294                       (notmuch-documentation-first-line binding)))
295             tail)))
296     tail)
297
298 (defun notmuch-describe-remaps (remap-keymap ua-keys base-keymap prefix tail)
299   ;; Remappings are represented as a binding whose first "event" is
300   ;; 'remap.  Hence, if the keymap has any remappings, it will have a
301   ;; binding whose "key" is 'remap, and whose "binding" is itself a
302   ;; keymap that maps not from keys to commands, but from old (remapped)
303   ;; functions to the commands to use in their stead.
304   (map-keymap
305    (lambda (command binding)
306      (mapc
307       (lambda (actual-key)
308         (setq tail (notmuch-describe-key actual-key binding prefix ua-keys tail)))
309       (where-is-internal command base-keymap)))
310    remap-keymap)
311   tail)
312
313 (defun notmuch-describe-keymap (keymap ua-keys base-keymap &optional prefix tail)
314   "Return a list of cons cells, each describing one binding in KEYMAP.
315
316 Each cons cell consists of a string giving a human-readable
317 description of the key, and a one-line description of the bound
318 function.  See `notmuch-help' for an overview of how this
319 documentation is extracted.
320
321 UA-KEYS should be a key sequence bound to `universal-argument'.
322 It will be used to describe bindings of commands that support a
323 prefix argument.  PREFIX and TAIL are used internally."
324   (map-keymap
325    (lambda (key binding)
326      (cond ((mouse-event-p key) nil)
327            ((keymapp binding)
328             (setq tail
329                   (if (eq key 'remap)
330                       (notmuch-describe-remaps
331                        binding ua-keys base-keymap prefix tail)
332                     (notmuch-describe-keymap
333                      binding ua-keys base-keymap (notmuch-prefix-key-description key) tail))))
334            (binding
335             (setq tail (notmuch-describe-key (vector key) binding prefix ua-keys tail)))))
336    keymap)
337   tail)
338
339 (defun notmuch-substitute-command-keys (doc)
340   "Like `substitute-command-keys' but with documentation, not function names."
341   (let ((beg 0))
342     (while (string-match "\\\\{\\([^}[:space:]]*\\)}" doc beg)
343       (let ((desc
344              (save-match-data
345                (let* ((keymap-name (substring doc (match-beginning 1) (match-end 1)))
346                       (keymap (symbol-value (intern keymap-name)))
347                       (ua-keys (where-is-internal 'universal-argument keymap t))
348                       (desc-alist (notmuch-describe-keymap keymap ua-keys keymap))
349                       (desc-list (mapcar (lambda (arg) (concat (car arg) "\t" (cdr arg))) desc-alist)))
350                  (mapconcat #'identity desc-list "\n")))))
351         (setq doc (replace-match desc 1 1 doc)))
352       (setq beg (match-end 0)))
353     doc))
354
355 (defun notmuch-help ()
356   "Display help for the current notmuch mode.
357
358 This is similar to `describe-function' for the current major
359 mode, but bindings tables are shown with documentation strings
360 rather than command names.  By default, this uses the first line
361 of each command's documentation string.  A command can override
362 this by setting the 'notmuch-doc property of its command symbol.
363 A command that supports a prefix argument can explicitly document
364 its prefixed behavior by setting the 'notmuch-prefix-doc property
365 of its command symbol."
366   (interactive)
367   (let* ((mode major-mode)
368          (doc (substitute-command-keys (notmuch-substitute-command-keys (documentation mode t)))))
369     (with-current-buffer (generate-new-buffer "*notmuch-help*")
370       (insert doc)
371       (goto-char (point-min))
372       (set-buffer-modified-p nil)
373       (view-buffer (current-buffer) 'kill-buffer-if-not-modified))))
374
375 (defun notmuch-subkeymap-help ()
376   "Show help for a subkeymap."
377   (interactive)
378   (let* ((key (this-command-keys-vector))
379         (prefix (make-vector (1- (length key)) nil))
380         (i 0))
381     (while (< i (length prefix))
382       (aset prefix i (aref key i))
383       (setq i (1+ i)))
384
385     (let* ((subkeymap (key-binding prefix))
386            (ua-keys (where-is-internal 'universal-argument nil t))
387            (prefix-string (notmuch-prefix-key-description prefix))
388            (desc-alist (notmuch-describe-keymap subkeymap ua-keys subkeymap prefix-string))
389            (desc-list (mapcar (lambda (arg) (concat (car arg) "\t" (cdr arg))) desc-alist))
390            (desc (mapconcat #'identity desc-list "\n")))
391       (with-help-window (help-buffer)
392         (with-current-buffer standard-output
393           (insert "\nPress 'q' to quit this window.\n\n")
394           (insert desc)))
395       (pop-to-buffer (help-buffer)))))
396
397 (defvar notmuch-buffer-refresh-function nil
398   "Function to call to refresh the current buffer.")
399 (make-variable-buffer-local 'notmuch-buffer-refresh-function)
400
401 (defun notmuch-refresh-this-buffer ()
402   "Refresh the current buffer."
403   (interactive)
404   (when notmuch-buffer-refresh-function
405     (if (commandp notmuch-buffer-refresh-function)
406         ;; Pass prefix argument, etc.
407         (call-interactively notmuch-buffer-refresh-function)
408       (funcall notmuch-buffer-refresh-function))))
409
410 (defun notmuch-poll-and-refresh-this-buffer ()
411   "Invoke `notmuch-poll' to import mail, then refresh the current buffer."
412   (interactive)
413   (notmuch-poll)
414   (notmuch-refresh-this-buffer))
415
416 (defun notmuch-prettify-subject (subject)
417   ;; This function is used by `notmuch-search-process-filter' which
418   ;; requires that we not disrupt its' matching state.
419   (save-match-data
420     (if (and subject
421              (string-match "^[ \t]*$" subject))
422         "[No Subject]"
423       subject)))
424
425 (defun notmuch-sanitize (str)
426   "Sanitize control character in STR.
427
428 This includes newlines, tabs, and other funny characters."
429   (replace-regexp-in-string "[[:cntrl:]\x7f\u2028\u2029]+" " " str))
430
431 (defun notmuch-escape-boolean-term (term)
432   "Escape a boolean term for use in a query.
433
434 The caller is responsible for prepending the term prefix and a
435 colon.  This performs minimal escaping in order to produce
436 user-friendly queries."
437
438   (save-match-data
439     (if (or (equal term "")
440             ;; To be pessimistic, only pass through terms composed
441             ;; entirely of ASCII printing characters other than ", (,
442             ;; and ).
443             (string-match "[^!#-'*-~]" term))
444         ;; Requires escaping
445         (concat "\"" (replace-regexp-in-string "\"" "\"\"" term t t) "\"")
446       term)))
447
448 (defun notmuch-id-to-query (id)
449   "Return a query that matches the message with id ID."
450   (concat "id:" (notmuch-escape-boolean-term id)))
451
452 (defun notmuch-hex-encode (str)
453   "Hex-encode STR (e.g., as used by batch tagging).
454
455 This replaces spaces, percents, and double quotes in STR with
456 %NN where NN is the hexadecimal value of the character."
457   (replace-regexp-in-string
458    "[ %\"]" (lambda (match) (format "%%%02x" (aref match 0))) str))
459
460 ;;
461
462 (defun notmuch-common-do-stash (text)
463   "Common function to stash text in kill ring, and display in minibuffer."
464   (if text
465       (progn
466         (kill-new text)
467         (message "Stashed: %s" text))
468     ;; There is nothing to stash so stash an empty string so the user
469     ;; doesn't accidentally paste something else somewhere.
470     (kill-new "")
471     (message "Nothing to stash!")))
472
473 ;;
474
475 (defun notmuch-remove-if-not (predicate list)
476   "Return a copy of LIST with all items not satisfying PREDICATE removed."
477   (let (out)
478     (while list
479       (when (funcall predicate (car list))
480         (push (car list) out))
481       (setq list (cdr list)))
482     (nreverse out)))
483
484 (defun notmuch-plist-delete (plist property)
485   (let* ((xplist (cons nil plist))
486          (pred xplist))
487     (while (cdr pred)
488       (when (eq (cadr pred) property)
489         (setcdr pred (cdddr pred)))
490       (setq pred (cddr pred)))
491     (cdr xplist)))
492
493 (defun notmuch-split-content-type (content-type)
494   "Split content/type into 'content' and 'type'"
495   (split-string content-type "/"))
496
497 (defun notmuch-match-content-type (t1 t2)
498   "Return t if t1 and t2 are matching content types, taking wildcards into account"
499   (let ((st1 (notmuch-split-content-type t1))
500         (st2 (notmuch-split-content-type t2)))
501     (if (or (string= (cadr st1) "*")
502             (string= (cadr st2) "*"))
503         ;; Comparison of content types should be case insensitive.
504         (string= (downcase (car st1)) (downcase (car st2)))
505       (string= (downcase t1) (downcase t2)))))
506
507 (defvar notmuch-multipart/alternative-discouraged
508   '(
509     ;; Avoid HTML parts.
510     "text/html"
511     ;; multipart/related usually contain a text/html part and some associated graphics.
512     "multipart/related"
513     ))
514
515 (defun notmuch-multipart/alternative-choose (types)
516   "Return a list of preferred types from the given list of types"
517   ;; Based on `mm-preferred-alternative-precedence'.
518   (let ((seq types))
519     (dolist (pref (reverse notmuch-multipart/alternative-discouraged))
520       (dolist (elem (copy-sequence seq))
521         (when (string-match pref elem)
522           (setq seq (nconc (delete elem seq) (list elem))))))
523     seq))
524
525 (defun notmuch-parts-filter-by-type (parts type)
526   "Given a list of message parts, return a list containing the ones matching
527 the given type."
528   (remove-if-not
529    (lambda (part) (notmuch-match-content-type (plist-get part :content-type) type))
530    parts))
531
532 (defun notmuch-get-bodypart-binary (msg part process-crypto)
533   "Return the unprocessed content of PART in MSG.
534
535 This returns the \"raw\" content of the given part after content
536 transfer decoding, but with no further processing (see the
537 discussion of --format=raw in man notmuch-show).  In particular,
538 this does no charset conversion."
539   (let ((args `("show" "--format=raw"
540                 ,(format "--part=%d" (plist-get part :id))
541                 ,@(when process-crypto '("--decrypt"))
542                 ,(notmuch-id-to-query (plist-get msg :id)))))
543     (with-temp-buffer
544       (let ((coding-system-for-read 'no-conversion))
545         (apply #'call-process notmuch-command nil '(t nil) nil args)
546         (buffer-string)))))
547
548 (defun notmuch-get-bodypart-text (msg part process-crypto)
549   "Return the text content of PART in MSG.
550
551 This returns the content of the given part as a multibyte Lisp
552 string after performing content transfer decoding and any
553 necessary charset decoding.  It is an error to use this for
554 non-text/* parts."
555   (let ((content (plist-get part :content)))
556     (when (not content)
557       ;; Use show --format=sexp to fetch decoded content
558       (let* ((args `("show" "--format=sexp" "--include-html"
559                      ,(format "--part=%s" (plist-get part :id))
560                      ,@(when process-crypto '("--decrypt"))
561                      ,(notmuch-id-to-query (plist-get msg :id))))
562              (npart (apply #'notmuch-call-notmuch-sexp args)))
563         (setq content (plist-get npart :content))
564         (when (not content)
565           (error "Internal error: No :content from %S" args))))
566     content))
567
568 ;; Workaround: The call to `mm-display-part' below triggers a bug in
569 ;; Emacs 24 if it attempts to use the shr renderer to display an HTML
570 ;; part with images in it (demonstrated in 24.1 and 24.2 on Debian and
571 ;; Fedora 17, though unreproducable in other configurations).
572 ;; `mm-shr' references the variable `gnus-inhibit-images' without
573 ;; first loading gnus-art, which defines it, resulting in a
574 ;; void-variable error.  Hence, we advise `mm-shr' to ensure gnus-art
575 ;; is loaded.
576 (if (>= emacs-major-version 24)
577     (defadvice mm-shr (before load-gnus-arts activate)
578       (require 'gnus-art nil t)
579       (ad-disable-advice 'mm-shr 'before 'load-gnus-arts)
580       (ad-activate 'mm-shr)))
581
582 (defun notmuch-mm-display-part-inline (msg part content-type process-crypto)
583   "Use the mm-decode/mm-view functions to display a part in the
584 current buffer, if possible."
585   (let ((display-buffer (current-buffer)))
586     (with-temp-buffer
587       ;; In case we already have :content, use it and tell mm-* that
588       ;; it's already been charset-decoded by using the fake
589       ;; `gnus-decoded' charset.  Otherwise, we'll fetch the binary
590       ;; part content and let mm-* decode it.
591       (let* ((have-content (plist-member part :content))
592              (charset (if have-content 'gnus-decoded
593                         (plist-get part :content-charset)))
594              (handle (mm-make-handle (current-buffer) `(,content-type (charset . ,charset)))))
595         ;; If the user wants the part inlined, insert the content and
596         ;; test whether we are able to inline it (which includes both
597         ;; capability and suitability tests).
598         (when (mm-inlined-p handle)
599           (if have-content
600               (insert (notmuch-get-bodypart-text msg part process-crypto))
601             (insert (notmuch-get-bodypart-binary msg part process-crypto)))
602           (when (mm-inlinable-p handle)
603             (set-buffer display-buffer)
604             (mm-display-part handle)
605             t))))))
606
607 ;; Converts a plist of headers to an alist of headers. The input plist should
608 ;; have symbols of the form :Header as keys, and the resulting alist will have
609 ;; symbols of the form 'Header as keys.
610 (defun notmuch-headers-plist-to-alist (plist)
611   (loop for (key value . rest) on plist by #'cddr
612         collect (cons (intern (substring (symbol-name key) 1)) value)))
613
614 (defun notmuch-face-ensure-list-form (face)
615   "Return FACE in face list form.
616
617 If FACE is already a face list, it will be returned as-is.  If
618 FACE is a face name or face plist, it will be returned as a
619 single element face list."
620   (if (and (listp face) (not (keywordp (car face))))
621       face
622     (list face)))
623
624 (defun notmuch-apply-face (object face &optional below start end)
625   "Combine FACE into the 'face text property of OBJECT between START and END.
626
627 This function combines FACE with any existing faces between START
628 and END in OBJECT.  Attributes specified by FACE take precedence
629 over existing attributes unless BELOW is non-nil.
630
631 OBJECT may be a string, a buffer, or nil (which means the current
632 buffer).  If object is a string, START and END are 0-based;
633 otherwise they are buffer positions (integers or markers).  FACE
634 must be a face name (a symbol or string), a property list of face
635 attributes, or a list of these.  If START and/or END are omitted,
636 they default to the beginning/end of OBJECT.  For convenience
637 when applied to strings, this returns OBJECT."
638
639   ;; A face property can have three forms: a face name (a string or
640   ;; symbol), a property list, or a list of these two forms.  In the
641   ;; list case, the faces will be combined, with the earlier faces
642   ;; taking precedent.  Here we canonicalize everything to list form
643   ;; to make it easy to combine.
644   (let ((pos (cond (start start)
645                    ((stringp object) 0)
646                    (t 1)))
647         (end (cond (end end)
648                    ((stringp object) (length object))
649                    (t (1+ (buffer-size object)))))
650         (face-list (notmuch-face-ensure-list-form face)))
651     (while (< pos end)
652       (let* ((cur (get-text-property pos 'face object))
653              (cur-list (notmuch-face-ensure-list-form cur))
654              (new (cond ((null cur-list) face)
655                         (below (append cur-list face-list))
656                         (t (append face-list cur-list))))
657              (next (next-single-property-change pos 'face object end)))
658         (put-text-property pos next 'face new object)
659         (setq pos next))))
660   object)
661
662 (defun notmuch-map-text-property (start end prop func &optional object)
663   "Transform text property PROP using FUNC.
664
665 Applies FUNC to each distinct value of the text property PROP
666 between START and END of OBJECT, setting PROP to the value
667 returned by FUNC."
668   (while (< start end)
669     (let ((value (get-text-property start prop object))
670           (next (next-single-property-change start prop object end)))
671       (put-text-property start next prop (funcall func value) object)
672       (setq start next))))
673
674 (defun notmuch-logged-error (msg &optional extra)
675   "Log MSG and EXTRA to *Notmuch errors* and signal MSG.
676
677 This logs MSG and EXTRA to the *Notmuch errors* buffer and
678 signals MSG as an error.  If EXTRA is non-nil, text referring the
679 user to the *Notmuch errors* buffer will be appended to the
680 signaled error.  This function does not return."
681
682   (with-current-buffer (get-buffer-create "*Notmuch errors*")
683     (goto-char (point-max))
684     (unless (bobp)
685       (newline))
686     (save-excursion
687       (insert "[" (current-time-string) "]\n" msg)
688       (unless (bolp)
689         (newline))
690       (when extra
691         (insert extra)
692         (unless (bolp)
693           (newline)))))
694   (error "%s" (concat msg (when extra
695                             " (see *Notmuch errors* for more details)"))))
696
697 (defun notmuch-check-async-exit-status (proc msg &optional command err-file)
698   "If PROC exited abnormally, pop up an error buffer and signal an error.
699
700 This is a wrapper around `notmuch-check-exit-status' for
701 asynchronous process sentinels.  PROC and MSG must be the
702 arguments passed to the sentinel.  COMMAND and ERR-FILE, if
703 provided, are passed to `notmuch-check-exit-status'.  If COMMAND
704 is not provided, it is taken from `process-command'."
705   (let ((exit-status
706          (case (process-status proc)
707            ((exit) (process-exit-status proc))
708            ((signal) msg))))
709     (when exit-status
710       (notmuch-check-exit-status exit-status (or command (process-command proc))
711                                  nil err-file))))
712
713 (defun notmuch-check-exit-status (exit-status command &optional output err-file)
714   "If EXIT-STATUS is non-zero, pop up an error buffer and signal an error.
715
716 If EXIT-STATUS is non-zero, pop up a notmuch error buffer
717 describing the error and signal an Elisp error.  EXIT-STATUS must
718 be a number indicating the exit status code of a process or a
719 string describing the signal that terminated the process (such as
720 returned by `call-process').  COMMAND must be a list giving the
721 command and its arguments.  OUTPUT, if provided, is a string
722 giving the output of command.  ERR-FILE, if provided, is the name
723 of a file containing the error output of command.  OUTPUT and the
724 contents of ERR-FILE will be included in the error message."
725
726   (cond
727    ((eq exit-status 0) t)
728    ((eq exit-status 20)
729     (notmuch-logged-error "notmuch CLI version mismatch
730 Emacs requested an older output format than supported by the notmuch CLI.
731 You may need to restart Emacs or upgrade your notmuch Emacs package."))
732    ((eq exit-status 21)
733     (notmuch-logged-error "notmuch CLI version mismatch
734 Emacs requested a newer output format than supported by the notmuch CLI.
735 You may need to restart Emacs or upgrade your notmuch package."))
736    (t
737     (let* ((err (when err-file
738                   (with-temp-buffer
739                     (insert-file-contents err-file)
740                     (unless (eobp)
741                       (buffer-string)))))
742            (extra
743             (concat
744              "command: " (mapconcat #'shell-quote-argument command " ") "\n"
745              (if (integerp exit-status)
746                  (format "exit status: %s\n" exit-status)
747                (format "exit signal: %s\n" exit-status))
748              (when err
749                (concat "stderr:\n" err))
750              (when output
751                (concat "stdout:\n" output)))))
752         (if err
753             ;; We have an error message straight from the CLI.
754             (notmuch-logged-error
755              (replace-regexp-in-string "[ \n\r\t\f]*\\'" "" err) extra)
756           ;; We only have combined output from the CLI; don't inundate
757           ;; the user with it.  Mimic `process-lines'.
758           (notmuch-logged-error (format "%s exited with status %s"
759                                         (car command) exit-status)
760                                 extra))
761         ;; `notmuch-logged-error' does not return.
762         ))))
763
764 (defun notmuch-call-notmuch--helper (destination args)
765   "Helper for synchronous notmuch invocation commands.
766
767 This wraps `call-process'.  DESTINATION has the same meaning as
768 for `call-process'.  ARGS is as described for
769 `notmuch-call-notmuch-process'."
770
771   (let (stdin-string)
772     (while (keywordp (car args))
773       (case (car args)
774         (:stdin-string (setq stdin-string (cadr args)
775                              args (cddr args)))
776         (otherwise
777          (error "Unknown keyword argument: %s" (car args)))))
778     (if (null stdin-string)
779         (apply #'call-process notmuch-command nil destination nil args)
780       (insert stdin-string)
781       (apply #'call-process-region (point-min) (point-max)
782              notmuch-command t destination nil args))))
783
784 (defun notmuch-call-notmuch-process (&rest args)
785   "Synchronously invoke `notmuch-command' with ARGS.
786
787 The caller may provide keyword arguments before ARGS.  Currently
788 supported keyword arguments are:
789
790   :stdin-string STRING - Write STRING to stdin
791
792 If notmuch exits with a non-zero status, output from the process
793 will appear in a buffer named \"*Notmuch errors*\" and an error
794 will be signaled."
795   (with-temp-buffer
796     (let ((status (notmuch-call-notmuch--helper t args)))
797       (notmuch-check-exit-status status (cons notmuch-command args)
798                                  (buffer-string)))))
799
800 (defun notmuch-call-notmuch-sexp (&rest args)
801   "Invoke `notmuch-command' with ARGS and return the parsed S-exp output.
802
803 This is equivalent to `notmuch-call-notmuch-process', but parses
804 notmuch's output as an S-expression and returns the parsed value.
805 Like `notmuch-call-notmuch-process', if notmuch exits with a
806 non-zero status, this will report its output and signal an
807 error."
808
809   (with-temp-buffer
810     (let ((err-file (make-temp-file "nmerr")))
811       (unwind-protect
812           (let ((status (notmuch-call-notmuch--helper (list t err-file) args)))
813             (notmuch-check-exit-status status (cons notmuch-command args)
814                                        (buffer-string) err-file)
815             (goto-char (point-min))
816             (read (current-buffer)))
817         (delete-file err-file)))))
818
819 (defun notmuch-start-notmuch (name buffer sentinel &rest args)
820   "Start and return an asynchronous notmuch command.
821
822 This starts and returns an asynchronous process running
823 `notmuch-command' with ARGS.  The exit status is checked via
824 `notmuch-check-async-exit-status'.  Output written to stderr is
825 redirected and displayed when the process exits (even if the
826 process exits successfully).  NAME and BUFFER are the same as in
827 `start-process'.  SENTINEL is a process sentinel function to call
828 when the process exits, or nil for none.  The caller must *not*
829 invoke `set-process-sentinel' directly on the returned process,
830 as that will interfere with the handling of stderr and the exit
831 status."
832
833   ;; There is no way (as of Emacs 24.3) to capture stdout and stderr
834   ;; separately for asynchronous processes, or even to redirect stderr
835   ;; to a file, so we use a trivial shell wrapper to send stderr to a
836   ;; temporary file and clean things up in the sentinel.
837   (let* ((err-file (make-temp-file "nmerr"))
838          ;; Use a pipe
839          (process-connection-type nil)
840          ;; Find notmuch using Emacs' `exec-path'
841          (command (or (executable-find notmuch-command)
842                       (error "command not found: %s" notmuch-command)))
843          (proc (apply #'start-process name buffer
844                       "/bin/sh" "-c"
845                       "exec 2>\"$1\"; shift; exec \"$0\" \"$@\""
846                       command err-file args)))
847     (process-put proc 'err-file err-file)
848     (process-put proc 'sub-sentinel sentinel)
849     (process-put proc 'real-command (cons notmuch-command args))
850     (set-process-sentinel proc #'notmuch-start-notmuch-sentinel)
851     proc))
852
853 (defun notmuch-start-notmuch-sentinel (proc event)
854   (let ((err-file (process-get proc 'err-file))
855         (sub-sentinel (process-get proc 'sub-sentinel))
856         (real-command (process-get proc 'real-command)))
857     (condition-case err
858         (progn
859           ;; Invoke the sub-sentinel, if any
860           (when sub-sentinel
861             (funcall sub-sentinel proc event))
862           ;; Check the exit status.  This will signal an error if the
863           ;; exit status is non-zero.  Don't do this if the process
864           ;; buffer is dead since that means Emacs killed the process
865           ;; and there's no point in telling the user that (but we
866           ;; still check for and report stderr output below).
867           (when (buffer-live-p (process-buffer proc))
868             (notmuch-check-async-exit-status proc event real-command err-file))
869           ;; If that didn't signal an error, then any error output was
870           ;; really warning output.  Show warnings, if any.
871           (let ((warnings
872                  (with-temp-buffer
873                    (unless (= (second (insert-file-contents err-file)) 0)
874                      (end-of-line)
875                      ;; Show first line; stuff remaining lines in the
876                      ;; errors buffer.
877                      (let ((l1 (buffer-substring (point-min) (point))))
878                        (skip-chars-forward "\n")
879                        (cons l1 (unless (eobp)
880                                   (buffer-substring (point) (point-max)))))))))
881             (when warnings
882               (notmuch-logged-error (car warnings) (cdr warnings)))))
883       (error
884        ;; Emacs behaves strangely if an error escapes from a sentinel,
885        ;; so turn errors into messages.
886        (message "%s" (error-message-string err))))
887     (ignore-errors (delete-file err-file))))
888
889 ;; This variable is used only buffer local, but it needs to be
890 ;; declared globally first to avoid compiler warnings.
891 (defvar notmuch-show-process-crypto nil)
892 (make-variable-buffer-local 'notmuch-show-process-crypto)
893
894 (provide 'notmuch-lib)
895
896 ;; Local Variables:
897 ;; byte-compile-warnings: (not cl-functions)
898 ;; End: