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