]> git.notmuchmail.org Git - notmuch/blob - emacs/notmuch-lib.el
69867ada9a6a68ff7cb7851e25cbb7b232c1d10c
[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 'json)
27 (require 'cl)
28
29 (defvar notmuch-command "notmuch"
30   "Command to run the notmuch binary.")
31
32 (defgroup notmuch nil
33   "Notmuch mail reader for Emacs."
34   :group 'mail)
35
36 (defgroup notmuch-hello nil
37   "Overview of saved searches, tags, etc."
38   :group 'notmuch)
39
40 (defgroup notmuch-search nil
41   "Searching and sorting mail."
42   :group 'notmuch)
43
44 (defgroup notmuch-show nil
45   "Showing messages and threads."
46   :group 'notmuch)
47
48 (defgroup notmuch-send nil
49   "Sending messages from Notmuch."
50   :group 'notmuch)
51
52 (custom-add-to-group 'notmuch-send 'message 'custom-group)
53
54 (defgroup notmuch-crypto nil
55   "Processing and display of cryptographic MIME parts."
56   :group 'notmuch)
57
58 (defgroup notmuch-hooks nil
59   "Running custom code on well-defined occasions."
60   :group 'notmuch)
61
62 (defgroup notmuch-external nil
63   "Running external commands from within Notmuch."
64   :group 'notmuch)
65
66 (defgroup notmuch-faces nil
67   "Graphical attributes for displaying text"
68   :group 'notmuch)
69
70 (defcustom notmuch-search-oldest-first t
71   "Show the oldest mail first when searching."
72   :type 'boolean
73   :group 'notmuch-search)
74
75 ;;
76
77 (defvar notmuch-search-history nil
78   "Variable to store notmuch searches history.")
79
80 (defcustom notmuch-saved-searches nil
81   "A list of saved searches to display."
82   :type '(alist :key-type string :value-type string)
83   :group 'notmuch-hello)
84
85 (defcustom notmuch-archive-tags '("-inbox")
86   "List of tag changes to apply to a message or a thread when it is archived.
87
88 Tags starting with \"+\" (or not starting with either \"+\" or
89 \"-\") in the list will be added, and tags starting with \"-\"
90 will be removed from the message or thread being archived.
91
92 For example, if you wanted to remove an \"inbox\" tag and add an
93 \"archived\" tag, you would set:
94     (\"-inbox\" \"+archived\")"
95   :type '(repeat string)
96   :group 'notmuch-search
97   :group 'notmuch-show)
98
99 (defvar notmuch-folders nil
100   "Deprecated name for what is now known as `notmuch-saved-searches'.")
101
102 (defun notmuch-saved-searches ()
103   "Common function for querying the notmuch-saved-searches variable.
104
105 We do this as a function to support the old name of the
106 variable (`notmuch-folders') as well as for the default value if
107 the user hasn't set this variable with the old or new value."
108   (if notmuch-saved-searches
109       notmuch-saved-searches
110     (if notmuch-folders
111         notmuch-folders
112       '(("inbox" . "tag:inbox")
113         ("unread" . "tag:unread")))))
114
115 (defun notmuch-version ()
116   "Return a string with the notmuch version number."
117   (let ((long-string
118          ;; Trim off the trailing newline.
119          (substring (shell-command-to-string
120                      (concat notmuch-command " --version"))
121                     0 -1)))
122     (if (string-match "^notmuch\\( version\\)? \\(.*\\)$"
123                       long-string)
124         (match-string 2 long-string)
125       "unknown")))
126
127 (defun notmuch-config-get (item)
128   "Return a value from the notmuch configuration."
129   ;; Trim off the trailing newline
130   (substring (shell-command-to-string
131               (concat notmuch-command " config get " item))
132               0 -1))
133
134 (defun notmuch-database-path ()
135   "Return the database.path value from the notmuch configuration."
136   (notmuch-config-get "database.path"))
137
138 (defun notmuch-user-name ()
139   "Return the user.name value from the notmuch configuration."
140   (notmuch-config-get "user.name"))
141
142 (defun notmuch-user-primary-email ()
143   "Return the user.primary_email value from the notmuch configuration."
144   (notmuch-config-get "user.primary_email"))
145
146 (defun notmuch-user-other-email ()
147   "Return the user.other_email value (as a list) from the notmuch configuration."
148   (split-string (notmuch-config-get "user.other_email") "\n"))
149
150 (defun notmuch-kill-this-buffer ()
151   "Kill the current buffer."
152   (interactive)
153   (kill-buffer (current-buffer)))
154
155 (defun notmuch-prettify-subject (subject)
156   ;; This function is used by `notmuch-search-process-filter' which
157   ;; requires that we not disrupt its' matching state.
158   (save-match-data
159     (if (and subject
160              (string-match "^[ \t]*$" subject))
161         "[No Subject]"
162       subject)))
163
164 (defun notmuch-id-to-query (id)
165   "Return a query that matches the message with id ID."
166   (concat "id:\"" (replace-regexp-in-string "\"" "\"\"" id t t) "\""))
167
168 ;;
169
170 (defun notmuch-common-do-stash (text)
171   "Common function to stash text in kill ring, and display in minibuffer."
172   (kill-new text)
173   (message "Stashed: %s" text))
174
175 ;;
176
177 (defun notmuch-remove-if-not (predicate list)
178   "Return a copy of LIST with all items not satisfying PREDICATE removed."
179   (let (out)
180     (while list
181       (when (funcall predicate (car list))
182         (push (car list) out))
183       (setq list (cdr list)))
184     (nreverse out)))
185
186 ;; This lets us avoid compiling these replacement functions when emacs
187 ;; is sufficiently new enough to supply them alone. We do the macro
188 ;; treatment rather than just wrapping our defun calls in a when form
189 ;; specifically so that the compiler never sees the code on new emacs,
190 ;; (since the code is triggering warnings that we don't know how to get
191 ;; rid of.
192 ;;
193 ;; A more clever macro here would accept a condition and a list of forms.
194 (defmacro compile-on-emacs-prior-to-23 (form)
195   "Conditionally evaluate form only on emacs < emacs-23."
196   (list 'when (< emacs-major-version 23)
197         form))
198
199 (defun notmuch-split-content-type (content-type)
200   "Split content/type into 'content' and 'type'"
201   (split-string content-type "/"))
202
203 (defun notmuch-match-content-type (t1 t2)
204   "Return t if t1 and t2 are matching content types, taking wildcards into account"
205   (let ((st1 (notmuch-split-content-type t1))
206         (st2 (notmuch-split-content-type t2)))
207     (if (or (string= (cadr st1) "*")
208             (string= (cadr st2) "*"))
209         ;; Comparison of content types should be case insensitive.
210         (string= (downcase (car st1)) (downcase (car st2)))
211       (string= (downcase t1) (downcase t2)))))
212
213 (defvar notmuch-multipart/alternative-discouraged
214   '(
215     ;; Avoid HTML parts.
216     "text/html"
217     ;; multipart/related usually contain a text/html part and some associated graphics.
218     "multipart/related"
219     ))
220
221 (defun notmuch-multipart/alternative-choose (types)
222   "Return a list of preferred types from the given list of types"
223   ;; Based on `mm-preferred-alternative-precedence'.
224   (let ((seq types))
225     (dolist (pref (reverse notmuch-multipart/alternative-discouraged))
226       (dolist (elem (copy-sequence seq))
227         (when (string-match pref elem)
228           (setq seq (nconc (delete elem seq) (list elem))))))
229     seq))
230
231 (defun notmuch-parts-filter-by-type (parts type)
232   "Given a list of message parts, return a list containing the ones matching
233 the given type."
234   (remove-if-not
235    (lambda (part) (notmuch-match-content-type (plist-get part :content-type) type))
236    parts))
237
238 ;; Helper for parts which are generally not included in the default
239 ;; JSON output.
240 (defun notmuch-get-bodypart-internal (query part-number process-crypto)
241   (let ((args '("show" "--format=raw"))
242         (part-arg (format "--part=%s" part-number)))
243     (setq args (append args (list part-arg)))
244     (if process-crypto
245         (setq args (append args '("--decrypt"))))
246     (setq args (append args (list query)))
247     (with-temp-buffer
248       (let ((coding-system-for-read 'no-conversion))
249         (progn
250           (apply 'call-process (append (list notmuch-command nil (list t nil) nil) args))
251           (buffer-string))))))
252
253 (defun notmuch-get-bodypart-content (msg part nth process-crypto)
254   (or (plist-get part :content)
255       (notmuch-get-bodypart-internal (notmuch-id-to-query (plist-get msg :id)) nth process-crypto)))
256
257 ;; Workaround: The call to `mm-display-part' below triggers a bug in
258 ;; Emacs 24 if it attempts to use the shr renderer to display an HTML
259 ;; part with images in it (demonstrated in 24.1 and 24.2 on Debian and
260 ;; Fedora 17, though unreproducable in other configurations).
261 ;; `mm-shr' references the variable `gnus-inhibit-images' without
262 ;; first loading gnus-art, which defines it, resulting in a
263 ;; void-variable error.  Hence, we advise `mm-shr' to ensure gnus-art
264 ;; is loaded.
265 (if (>= emacs-major-version 24)
266     (defadvice mm-shr (before load-gnus-arts activate)
267       (require 'gnus-art nil t)
268       (ad-disable-advice 'mm-shr 'before 'load-gnus-arts)))
269
270 (defun notmuch-mm-display-part-inline (msg part nth content-type process-crypto)
271   "Use the mm-decode/mm-view functions to display a part in the
272 current buffer, if possible."
273   (let ((display-buffer (current-buffer)))
274     (with-temp-buffer
275       ;; In case there is :content, the content string is already converted
276       ;; into emacs internal format. `gnus-decoded' is a fake charset,
277       ;; which means no further decoding (to be done by mm- functions).
278       (let* ((charset (if (plist-member part :content)
279                           'gnus-decoded
280                         (plist-get part :content-charset)))
281              (handle (mm-make-handle (current-buffer) `(,content-type (charset . ,charset)))))
282         ;; If the user wants the part inlined, insert the content and
283         ;; test whether we are able to inline it (which includes both
284         ;; capability and suitability tests).
285         (when (mm-inlined-p handle)
286           (insert (notmuch-get-bodypart-content msg part nth process-crypto))
287           (when (mm-inlinable-p handle)
288             (set-buffer display-buffer)
289             (mm-display-part handle)
290             t))))))
291
292 ;; Converts a plist of headers to an alist of headers. The input plist should
293 ;; have symbols of the form :Header as keys, and the resulting alist will have
294 ;; symbols of the form 'Header as keys.
295 (defun notmuch-headers-plist-to-alist (plist)
296   (loop for (key value . rest) on plist by #'cddr
297         collect (cons (intern (substring (symbol-name key) 1)) value)))
298
299 (defun notmuch-combine-face-text-property (start end face)
300   "Combine FACE into the 'face text property between START and END.
301
302 This function combines FACE with any existing faces between START
303 and END.  Attributes specified by FACE take precedence over
304 existing attributes.  FACE must be a face name (a symbol or
305 string), a property list of face attributes, or a list of these."
306
307   (let ((pos start))
308     (while (< pos end)
309       (let ((cur (get-text-property pos 'face))
310             (next (next-single-property-change pos 'face nil end)))
311         (put-text-property pos next 'face (cons face cur))
312         (setq pos next)))))
313
314 ;; Compatibility functions for versions of emacs before emacs 23.
315 ;;
316 ;; Both functions here were copied from emacs 23 with the following copyright:
317 ;;
318 ;; Copyright (C) 1985, 1986, 1992, 1994, 1995, 1999, 2000, 2001, 2002, 2003,
319 ;;   2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc.
320 ;;
321 ;; and under the GPL version 3 (or later) exactly as notmuch itself.
322 (compile-on-emacs-prior-to-23
323  (defun apply-partially (fun &rest args)
324    "Return a function that is a partial application of FUN to ARGS.
325 ARGS is a list of the first N arguments to pass to FUN.
326 The result is a new function which does the same as FUN, except that
327 the first N arguments are fixed at the values with which this function
328 was called."
329    (lexical-let ((fun fun) (args1 args))
330      (lambda (&rest args2) (apply fun (append args1 args2))))))
331
332 (compile-on-emacs-prior-to-23
333  (defun mouse-event-p (object)
334    "Return non-nil if OBJECT is a mouse click event."
335    (memq (event-basic-type object) '(mouse-1 mouse-2 mouse-3 mouse-movement))))
336
337 ;; This variable is used only buffer local, but it needs to be
338 ;; declared globally first to avoid compiler warnings.
339 (defvar notmuch-show-process-crypto nil)
340 (make-variable-buffer-local 'notmuch-show-process-crypto)
341
342 ;; Incremental JSON parsing
343
344 (defun notmuch-json-create-parser (buffer)
345   "Return a streaming JSON parser that consumes input from BUFFER.
346
347 This parser is designed to read streaming JSON whose structure is
348 known to the caller.  Like a typical JSON parsing interface, it
349 provides a function to read a complete JSON value from the input.
350 However, it extends this with an additional function that
351 requires the next value in the input to be a compound value and
352 descends into it, allowing its elements to be read one at a time
353 or further descended into.  Both functions can return 'retry to
354 indicate that not enough input is available.
355
356 The parser always consumes input from BUFFER's point.  Hence, the
357 caller is allowed to delete and data before point and may
358 resynchronize after an error by moving point."
359
360   (list buffer
361         ;; Terminator stack: a stack of characters that indicate the
362         ;; end of the compound values enclosing point
363         '()
364         ;; Next: One of
365         ;; * 'expect-value if the next token must be a value, but a
366         ;;   value has not yet been reached
367         ;; * 'value if point is at the beginning of a value
368         ;; * 'expect-comma if the next token must be a comma
369         'expect-value
370         ;; Allow terminator: non-nil if the next token may be a
371         ;; terminator
372         nil
373         ;; Partial parse position: If state is 'value, a marker for
374         ;; the position of the partial parser or nil if no partial
375         ;; parsing has happened yet
376         nil
377         ;; Partial parse state: If state is 'value, the current
378         ;; `parse-partial-sexp' state
379         nil))
380
381 (defmacro notmuch-json-buffer (jp) `(first ,jp))
382 (defmacro notmuch-json-term-stack (jp) `(second ,jp))
383 (defmacro notmuch-json-next (jp) `(third ,jp))
384 (defmacro notmuch-json-allow-term (jp) `(fourth ,jp))
385 (defmacro notmuch-json-partial-pos (jp) `(fifth ,jp))
386 (defmacro notmuch-json-partial-state (jp) `(sixth ,jp))
387
388 (defvar notmuch-json-syntax-table
389   (let ((table (make-syntax-table)))
390     ;; The standard syntax table is what we need except that "." needs
391     ;; to have word syntax instead of punctuation syntax.
392     (modify-syntax-entry ?. "w" table)
393     table)
394   "Syntax table used for incremental JSON parsing.")
395
396 (defun notmuch-json-scan-to-value (jp)
397   ;; Helper function that consumes separators, terminators, and
398   ;; whitespace from point.  Returns nil if it successfully reached
399   ;; the beginning of a value, 'end if it consumed a terminator, or
400   ;; 'retry if not enough input was available to reach a value.  Upon
401   ;; nil return, (notmuch-json-next jp) is always 'value.
402
403   (if (eq (notmuch-json-next jp) 'value)
404       ;; We're already at a value
405       nil
406     ;; Drive the state toward 'expect-value
407     (skip-chars-forward " \t\r\n")
408     (or (when (eobp) 'retry)
409         ;; Test for the terminator for the current compound
410         (when (and (notmuch-json-allow-term jp)
411                    (eq (char-after) (car (notmuch-json-term-stack jp))))
412           ;; Consume it and expect a comma or terminator next
413           (forward-char)
414           (setf (notmuch-json-term-stack jp) (cdr (notmuch-json-term-stack jp))
415                 (notmuch-json-next jp) 'expect-comma
416                 (notmuch-json-allow-term jp) t)
417           'end)
418         ;; Test for a separator
419         (when (eq (notmuch-json-next jp) 'expect-comma)
420           (when (/= (char-after) ?,)
421             (signal 'json-readtable-error (list "expected ','")))
422           ;; Consume it, switch to 'expect-value, and disallow a
423           ;; terminator
424           (forward-char)
425           (skip-chars-forward " \t\r\n")
426           (setf (notmuch-json-next jp) 'expect-value
427                 (notmuch-json-allow-term jp) nil)
428           ;; We moved point, so test for eobp again and fall through
429           ;; to the next test if there's more input
430           (when (eobp) 'retry))
431         ;; Next must be 'expect-value and we know this isn't
432         ;; whitespace, EOB, or a terminator, so point must be on a
433         ;; value
434         (progn
435           (assert (eq (notmuch-json-next jp) 'expect-value))
436           (setf (notmuch-json-next jp) 'value)
437           nil))))
438
439 (defun notmuch-json-begin-compound (jp)
440   "Parse the beginning of a compound value and traverse inside it.
441
442 Returns 'retry if there is insufficient input to parse the
443 beginning of the compound.  If this is able to parse the
444 beginning of a compound, it moves point past the token that opens
445 the compound and returns t.  Later calls to `notmuch-json-read'
446 will return the compound's elements.
447
448 Entering JSON objects is currently unimplemented."
449
450   (with-current-buffer (notmuch-json-buffer jp)
451     ;; Disallow terminators
452     (setf (notmuch-json-allow-term jp) nil)
453     (or (notmuch-json-scan-to-value jp)
454         (if (/= (char-after) ?\[)
455             (signal 'json-readtable-error (list "expected '['"))
456           (forward-char)
457           (push ?\] (notmuch-json-term-stack jp))
458           ;; Expect a value or terminator next
459           (setf (notmuch-json-next jp) 'expect-value
460                 (notmuch-json-allow-term jp) t)
461           t))))
462
463 (defun notmuch-json-read (jp)
464   "Parse the value at point in JP's buffer.
465
466 Returns 'retry if there is insufficient input to parse a complete
467 JSON value (though it may still move point over separators or
468 whitespace).  If the parser is currently inside a compound value
469 and the next token ends the list or object, this moves point just
470 past the terminator and returns 'end.  Otherwise, this moves
471 point to just past the end of the value and returns the value."
472
473   (with-current-buffer (notmuch-json-buffer jp)
474     (or
475      ;; Get to a value state
476      (notmuch-json-scan-to-value jp)
477
478      ;; Can we parse a complete value?
479      (let ((complete
480             (if (looking-at "[-+0-9tfn]")
481                 ;; This is a number or a keyword, so the partial
482                 ;; parser isn't going to help us because a truncated
483                 ;; number or keyword looks like a complete symbol to
484                 ;; it.  Look for something that clearly ends it.
485                 (save-excursion
486                   (skip-chars-forward "^]},: \t\r\n")
487                   (not (eobp)))
488
489               ;; We're looking at a string, object, or array, which we
490               ;; can partial parse.  If we just reached the value, set
491               ;; up the partial parser.
492               (when (null (notmuch-json-partial-state jp))
493                 (setf (notmuch-json-partial-pos jp) (point-marker)))
494
495               ;; Extend the partial parse until we either reach EOB or
496               ;; get the whole value
497               (save-excursion
498                 (let ((pstate
499                        (with-syntax-table notmuch-json-syntax-table
500                          (parse-partial-sexp
501                           (notmuch-json-partial-pos jp) (point-max) 0 nil
502                           (notmuch-json-partial-state jp)))))
503                   ;; A complete value is available if we've reached
504                   ;; depth 0 or less and encountered a complete
505                   ;; subexpression.
506                   (if (and (<= (first pstate) 0) (third pstate))
507                       t
508                     ;; Not complete.  Update the partial parser state
509                     (setf (notmuch-json-partial-pos jp) (point-marker)
510                           (notmuch-json-partial-state jp) pstate)
511                     nil))))))
512
513        (if (not complete)
514            'retry
515          ;; We have a value.  Reset the partial parse state and expect
516          ;; a comma or terminator after the value.
517          (setf (notmuch-json-next jp) 'expect-comma
518                (notmuch-json-allow-term jp) t
519                (notmuch-json-partial-pos jp) nil
520                (notmuch-json-partial-state jp) nil)
521          ;; Parse the value
522          (let ((json-object-type 'plist)
523                (json-array-type 'list)
524                (json-false nil))
525            (json-read)))))))
526
527 (defun notmuch-json-eof (jp)
528   "Signal a json-error if there is more data in JP's buffer.
529
530 Moves point to the beginning of any trailing data or to the end
531 of the buffer if there is only trailing whitespace."
532
533   (with-current-buffer (notmuch-json-buffer jp)
534     (skip-chars-forward " \t\r\n")
535     (unless (eobp)
536       (signal 'json-error (list "Trailing garbage following JSON data")))))
537
538 (provide 'notmuch-lib)
539
540 ;; Local Variables:
541 ;; byte-compile-warnings: (not cl-functions)
542 ;; End: