]> git.notmuchmail.org Git - notmuch/blob - emacs/notmuch.el
emacs: s/tags/tag-changes/ for arguments of tagging functions
[notmuch] / emacs / notmuch.el
1 ;; notmuch.el --- run notmuch within emacs
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 emacs-based interface to the notmuch mail system.
23 ;;
24 ;; You will first need to have the notmuch program installed and have a
25 ;; notmuch database built in order to use this. See
26 ;; http://notmuchmail.org for details.
27 ;;
28 ;; To install this software, copy it to a directory that is on the
29 ;; `load-path' variable within emacs (a good candidate is
30 ;; /usr/local/share/emacs/site-lisp). If you are viewing this from the
31 ;; notmuch source distribution then you can simply run:
32 ;;
33 ;;      sudo make install-emacs
34 ;;
35 ;; to install it.
36 ;;
37 ;; Then, to actually run it, add:
38 ;;
39 ;;      (require 'notmuch)
40 ;;
41 ;; to your ~/.emacs file, and then run "M-x notmuch" from within emacs,
42 ;; or run:
43 ;;
44 ;;      emacs -f notmuch
45 ;;
46 ;; Have fun, and let us know if you have any comment, questions, or
47 ;; kudos: Notmuch list <notmuch@notmuchmail.org> (subscription is not
48 ;; required, but is available from http://notmuchmail.org).
49
50 (eval-when-compile (require 'cl))
51 (require 'crm)
52 (require 'mm-view)
53 (require 'message)
54
55 (require 'notmuch-lib)
56 (require 'notmuch-show)
57 (require 'notmuch-mua)
58 (require 'notmuch-hello)
59 (require 'notmuch-maildir-fcc)
60 (require 'notmuch-message)
61
62 (defcustom notmuch-search-result-format
63   `(("date" . "%s ")
64     ("count" . "%-7s ")
65     ("authors" . "%-20s ")
66     ("subject" . "%s ")
67     ("tags" . "(%s)"))
68   "Search result formatting. Supported fields are:
69         date, count, authors, subject, tags
70 For example:
71         (setq notmuch-search-result-format \(\(\"authors\" . \"%-40s\"\)
72                                              \(\"subject\" . \"%s\"\)\)\)"
73   :type '(alist :key-type (string) :value-type (string))
74   :group 'notmuch-search)
75
76 (defvar notmuch-query-history nil
77   "Variable to store minibuffer history for notmuch queries")
78
79 (defvar notmuch-select-tag-history nil
80   "Variable to store minibuffer history for
81 `notmuch-select-tag-with-completion' function.")
82
83 (defvar notmuch-read-tag-changes-history nil
84   "Variable to store minibuffer history for
85 `notmuch-read-tag-changes' function.")
86
87 (defun notmuch-tag-completions (&optional search-terms)
88   (split-string
89    (with-output-to-string
90      (with-current-buffer standard-output
91        (apply 'call-process notmuch-command nil t
92               nil "search-tags" search-terms)))
93    "\n+" t))
94
95 (defun notmuch-select-tag-with-completion (prompt &rest search-terms)
96   (let ((tag-list (notmuch-tag-completions search-terms)))
97     (completing-read prompt tag-list nil nil nil 'notmuch-select-tag-history)))
98
99 (defun notmuch-read-tag-changes (&optional initial-input &rest search-terms)
100   (let* ((all-tag-list (notmuch-tag-completions))
101          (add-tag-list (mapcar (apply-partially 'concat "+") all-tag-list))
102          (remove-tag-list (mapcar (apply-partially 'concat "-")
103                                   (if (null search-terms)
104                                       all-tag-list
105                                     (notmuch-tag-completions search-terms))))
106          (tag-list (append add-tag-list remove-tag-list))
107          (crm-separator " ")
108          ;; By default, space is bound to "complete word" function.
109          ;; Re-bind it to insert a space instead.  Note that <tab>
110          ;; still does the completion.
111          (crm-local-completion-map
112           (let ((map (make-sparse-keymap)))
113             (set-keymap-parent map crm-local-completion-map)
114             (define-key map " " 'self-insert-command)
115             map)))
116     (delete "" (completing-read-multiple "Tags (+add -drop): "
117                 tag-list nil nil initial-input
118                 'notmuch-read-tag-changes-history))))
119
120 (defun notmuch-update-tags (tags tag-changes)
121   "Return a copy of TAGS with additions and removals from TAG-CHANGES.
122
123 TAG-CHANGES must be a list of tags names, each prefixed with
124 either a \"+\" to indicate the tag should be added to TAGS if not
125 present or a \"-\" to indicate that the tag should be removed
126 from TAGS if present."
127   (let ((result-tags (copy-sequence tags)))
128     (dolist (tag-change tag-changes)
129       (let ((op (string-to-char tag-change))
130             (tag (unless (string= tag-change "") (substring tag-change 1))))
131         (case op
132           (?+ (unless (member tag result-tags)
133                 (push tag result-tags)))
134           (?- (setq result-tags (delete tag result-tags)))
135           (otherwise
136            (error "Changed tag must be of the form `+this_tag' or `-that_tag'")))))
137     (sort result-tags 'string<)))
138
139 (defun notmuch-foreach-mime-part (function mm-handle)
140   (cond ((stringp (car mm-handle))
141          (dolist (part (cdr mm-handle))
142            (notmuch-foreach-mime-part function part)))
143         ((bufferp (car mm-handle))
144          (funcall function mm-handle))
145         (t (dolist (part mm-handle)
146              (notmuch-foreach-mime-part function part)))))
147
148 (defun notmuch-count-attachments (mm-handle)
149   (let ((count 0))
150     (notmuch-foreach-mime-part
151      (lambda (p)
152        (let ((disposition (mm-handle-disposition p)))
153          (and (listp disposition)
154               (or (equal (car disposition) "attachment")
155                   (and (equal (car disposition) "inline")
156                        (assq 'filename disposition)))
157               (incf count))))
158      mm-handle)
159     count))
160
161 (defun notmuch-save-attachments (mm-handle &optional queryp)
162   (notmuch-foreach-mime-part
163    (lambda (p)
164      (let ((disposition (mm-handle-disposition p)))
165        (and (listp disposition)
166             (or (equal (car disposition) "attachment")
167                 (and (equal (car disposition) "inline")
168                      (assq 'filename disposition)))
169             (or (not queryp)
170                 (y-or-n-p
171                  (concat "Save '" (cdr (assq 'filename disposition)) "' ")))
172             (mm-save-part p))))
173    mm-handle))
174
175 (defun notmuch-documentation-first-line (symbol)
176   "Return the first line of the documentation string for SYMBOL."
177   (let ((doc (documentation symbol)))
178     (if doc
179         (with-temp-buffer
180           (insert (documentation symbol t))
181           (goto-char (point-min))
182           (let ((beg (point)))
183             (end-of-line)
184             (buffer-substring beg (point))))
185       "")))
186
187 (defun notmuch-prefix-key-description (key)
188   "Given a prefix key code, return a human-readable string representation.
189
190 This is basically just `format-kbd-macro' but we also convert ESC to M-."
191   (let ((desc (format-kbd-macro (vector key))))
192     (if (string= desc "ESC")
193         "M-"
194       (concat desc " "))))
195
196 ;; I would think that emacs would have code handy for walking a keymap
197 ;; and generating strings for each key, and I would prefer to just call
198 ;; that. But I couldn't find any (could be all implemented in C I
199 ;; suppose), so I wrote my own here.
200 (defun notmuch-substitute-one-command-key-with-prefix (prefix binding)
201   "For a key binding, return a string showing a human-readable
202 representation of the prefixed key as well as the first line of
203 documentation from the bound function.
204
205 For a mouse binding, return nil."
206   (let ((key (car binding))
207         (action (cdr binding)))
208     (if (mouse-event-p key)
209         nil
210       (if (keymapp action)
211           (let ((substitute (apply-partially 'notmuch-substitute-one-command-key-with-prefix (notmuch-prefix-key-description key)))
212                 (as-list))
213             (map-keymap (lambda (a b)
214                           (push (cons a b) as-list))
215                         action)
216             (mapconcat substitute as-list "\n"))
217         (concat prefix (format-kbd-macro (vector key))
218                 "\t"
219                 (notmuch-documentation-first-line action))))))
220
221 (defun notmuch-substitute-command-keys-one (key)
222   ;; A `keymap' key indicates inheritance from a parent keymap - the
223   ;; inherited mappings follow, so there is nothing to print for
224   ;; `keymap' itself.
225   (when (not (eq key 'keymap))
226     (notmuch-substitute-one-command-key-with-prefix nil key)))
227
228 (defun notmuch-substitute-command-keys (doc)
229   "Like `substitute-command-keys' but with documentation, not function names."
230   (let ((beg 0))
231     (while (string-match "\\\\{\\([^}[:space:]]*\\)}" doc beg)
232       (let* ((keymap-name (substring doc (match-beginning 1) (match-end 1)))
233              (keymap (symbol-value (intern keymap-name))))
234         (setq doc (replace-match
235                    (mapconcat #'notmuch-substitute-command-keys-one
236                               (cdr keymap) "\n")
237                    1 1 doc)))
238       (setq beg (match-end 0)))
239     doc))
240
241 (defun notmuch-help ()
242   "Display help for the current notmuch mode."
243   (interactive)
244   (let* ((mode major-mode)
245          (doc (substitute-command-keys (notmuch-substitute-command-keys (documentation mode t)))))
246     (with-current-buffer (generate-new-buffer "*notmuch-help*")
247       (insert doc)
248       (goto-char (point-min))
249       (set-buffer-modified-p nil)
250       (view-buffer (current-buffer) 'kill-buffer-if-not-modified))))
251
252 (defcustom notmuch-search-hook '(hl-line-mode)
253   "List of functions to call when notmuch displays the search results."
254   :type 'hook
255   :options '(hl-line-mode)
256   :group 'notmuch-search
257   :group 'notmuch-hooks)
258
259 (defvar notmuch-search-mode-map
260   (let ((map (make-sparse-keymap)))
261     (define-key map "?" 'notmuch-help)
262     (define-key map "q" 'notmuch-search-quit)
263     (define-key map "x" 'notmuch-search-quit)
264     (define-key map (kbd "<DEL>") 'notmuch-search-scroll-down)
265     (define-key map "b" 'notmuch-search-scroll-down)
266     (define-key map " " 'notmuch-search-scroll-up)
267     (define-key map "<" 'notmuch-search-first-thread)
268     (define-key map ">" 'notmuch-search-last-thread)
269     (define-key map "p" 'notmuch-search-previous-thread)
270     (define-key map "n" 'notmuch-search-next-thread)
271     (define-key map "r" 'notmuch-search-reply-to-thread-sender)
272     (define-key map "R" 'notmuch-search-reply-to-thread)
273     (define-key map "m" 'notmuch-mua-new-mail)
274     (define-key map "s" 'notmuch-search)
275     (define-key map "o" 'notmuch-search-toggle-order)
276     (define-key map "c" 'notmuch-search-stash-map)
277     (define-key map "=" 'notmuch-search-refresh-view)
278     (define-key map "G" 'notmuch-search-poll-and-refresh-view)
279     (define-key map "t" 'notmuch-search-filter-by-tag)
280     (define-key map "f" 'notmuch-search-filter)
281     (define-key map [mouse-1] 'notmuch-search-show-thread)
282     (define-key map "*" 'notmuch-search-tag-all)
283     (define-key map "a" 'notmuch-search-archive-thread)
284     (define-key map "-" 'notmuch-search-remove-tag)
285     (define-key map "+" 'notmuch-search-add-tag)
286     (define-key map (kbd "RET") 'notmuch-search-show-thread)
287     map)
288   "Keymap for \"notmuch search\" buffers.")
289 (fset 'notmuch-search-mode-map notmuch-search-mode-map)
290
291 (defvar notmuch-search-stash-map
292   (let ((map (make-sparse-keymap)))
293     (define-key map "i" 'notmuch-search-stash-thread-id)
294     map)
295   "Submap for stash commands")
296 (fset 'notmuch-search-stash-map notmuch-search-stash-map)
297
298 (defun notmuch-search-stash-thread-id ()
299   "Copy thread ID of current thread to kill-ring."
300   (interactive)
301   (notmuch-common-do-stash (notmuch-search-find-thread-id)))
302
303 (defvar notmuch-search-query-string)
304 (defvar notmuch-search-target-thread)
305 (defvar notmuch-search-target-line)
306 (defvar notmuch-search-continuation)
307
308 (defvar notmuch-search-disjunctive-regexp      "\\<[oO][rR]\\>")
309
310 (defun notmuch-search-quit ()
311   "Exit the search buffer, calling any defined continuation function."
312   (interactive)
313   (let ((continuation notmuch-search-continuation))
314     (notmuch-kill-this-buffer)
315     (when continuation
316       (funcall continuation))))
317
318 (defun notmuch-search-scroll-up ()
319   "Move forward through search results by one window's worth."
320   (interactive)
321   (condition-case nil
322       (scroll-up nil)
323     ((end-of-buffer) (notmuch-search-last-thread))))
324
325 (defun notmuch-search-scroll-down ()
326   "Move backward through the search results by one window's worth."
327   (interactive)
328   ;; I don't know why scroll-down doesn't signal beginning-of-buffer
329   ;; the way that scroll-up signals end-of-buffer, but c'est la vie.
330   ;;
331   ;; So instead of trapping a signal we instead check whether the
332   ;; window begins on the first line of the buffer and if so, move
333   ;; directly to that position. (We have to count lines since the
334   ;; window-start position is not the same as point-min due to the
335   ;; invisible thread-ID characters on the first line.
336   (if (equal (count-lines (point-min) (window-start)) 0)
337       (goto-char (point-min))
338     (scroll-down nil)))
339
340 (defun notmuch-search-next-thread ()
341   "Select the next thread in the search results."
342   (interactive)
343   (forward-line 1))
344
345 (defun notmuch-search-previous-thread ()
346   "Select the previous thread in the search results."
347   (interactive)
348   (forward-line -1))
349
350 (defun notmuch-search-last-thread ()
351   "Select the last thread in the search results."
352   (interactive)
353   (goto-char (point-max))
354   (forward-line -2))
355
356 (defun notmuch-search-first-thread ()
357   "Select the first thread in the search results."
358   (interactive)
359   (goto-char (point-min)))
360
361 (defface notmuch-message-summary-face
362  '((((class color) (background light)) (:background "#f0f0f0"))
363    (((class color) (background dark)) (:background "#303030")))
364  "Face for the single-line message summary in notmuch-show-mode."
365  :group 'notmuch-show
366  :group 'notmuch-faces)
367
368 (defface notmuch-search-date
369   '((t :inherit default))
370   "Face used in search mode for dates."
371   :group 'notmuch-search
372   :group 'notmuch-faces)
373
374 (defface notmuch-search-count
375   '((t :inherit default))
376   "Face used in search mode for the count matching the query."
377   :group 'notmuch-search
378   :group 'notmuch-faces)
379
380 (defface notmuch-search-subject
381   '((t :inherit default))
382   "Face used in search mode for subjects."
383   :group 'notmuch-search
384   :group 'notmuch-faces)
385
386 (defface notmuch-search-matching-authors
387   '((t :inherit default))
388   "Face used in search mode for authors matching the query."
389   :group 'notmuch-search
390   :group 'notmuch-faces)
391
392 (defface notmuch-search-non-matching-authors
393   '((((class color)
394       (background dark))
395      (:foreground "grey30"))
396     (((class color)
397       (background light))
398      (:foreground "grey60"))
399     (t
400      (:italic t)))
401   "Face used in search mode for authors not matching the query."
402   :group 'notmuch-search
403   :group 'notmuch-faces)
404
405 (defface notmuch-tag-face
406   '((((class color)
407       (background dark))
408      (:foreground "OliveDrab1"))
409     (((class color)
410       (background light))
411      (:foreground "navy blue" :bold t))
412     (t
413      (:bold t)))
414   "Face used in search mode face for tags."
415   :group 'notmuch-search
416   :group 'notmuch-faces)
417
418 (defun notmuch-search-mode ()
419   "Major mode displaying results of a notmuch search.
420
421 This buffer contains the results of a \"notmuch search\" of your
422 email archives. Each line in the buffer represents a single
423 thread giving a summary of the thread (a relative date, the
424 number of matched messages and total messages in the thread,
425 participants in the thread, a representative subject line, and
426 any tags).
427
428 Pressing \\[notmuch-search-show-thread] on any line displays that thread. The '\\[notmuch-search-add-tag]' and '\\[notmuch-search-remove-tag]'
429 keys can be used to add or remove tags from a thread. The '\\[notmuch-search-archive-thread]' key
430 is a convenience for archiving a thread (removing the \"inbox\"
431 tag). The '\\[notmuch-search-tag-all]' key can be used to add or remove a tag from all
432 threads in the current buffer.
433
434 Other useful commands are '\\[notmuch-search-filter]' for filtering the current search
435 based on an additional query string, '\\[notmuch-search-filter-by-tag]' for filtering to include
436 only messages with a given tag, and '\\[notmuch-search]' to execute a new, global
437 search.
438
439 Complete list of currently available key bindings:
440
441 \\{notmuch-search-mode-map}"
442   (interactive)
443   (kill-all-local-variables)
444   (make-local-variable 'notmuch-search-query-string)
445   (make-local-variable 'notmuch-search-oldest-first)
446   (make-local-variable 'notmuch-search-target-thread)
447   (make-local-variable 'notmuch-search-target-line)
448   (set (make-local-variable 'notmuch-search-continuation) nil)
449   (set (make-local-variable 'scroll-preserve-screen-position) t)
450   (add-to-invisibility-spec (cons 'ellipsis t))
451   (use-local-map notmuch-search-mode-map)
452   (setq truncate-lines t)
453   (setq major-mode 'notmuch-search-mode
454         mode-name "notmuch-search")
455   (setq buffer-read-only t))
456
457 (defun notmuch-search-properties-in-region (property beg end)
458   (save-excursion
459     (let ((output nil)
460           (last-line (line-number-at-pos end))
461           (max-line (- (line-number-at-pos (point-max)) 2)))
462       (goto-char beg)
463       (beginning-of-line)
464       (while (<= (line-number-at-pos) (min last-line max-line))
465         (setq output (cons (get-text-property (point) property) output))
466         (forward-line 1))
467       output)))
468
469 (defun notmuch-search-find-thread-id ()
470   "Return the thread for the current thread"
471   (get-text-property (point) 'notmuch-search-thread-id))
472
473 (defun notmuch-search-find-thread-id-region (beg end)
474   "Return a list of threads for the current region"
475   (notmuch-search-properties-in-region 'notmuch-search-thread-id beg end))
476
477 (defun notmuch-search-find-thread-id-region-search (beg end)
478   "Return a search string for threads for the current region"
479   (mapconcat 'identity (notmuch-search-find-thread-id-region beg end) " or "))
480
481 (defun notmuch-search-find-authors ()
482   "Return the authors for the current thread"
483   (get-text-property (point) 'notmuch-search-authors))
484
485 (defun notmuch-search-find-authors-region (beg end)
486   "Return a list of authors for the current region"
487   (notmuch-search-properties-in-region 'notmuch-search-authors beg end))
488
489 (defun notmuch-search-find-subject ()
490   "Return the subject for the current thread"
491   (get-text-property (point) 'notmuch-search-subject))
492
493 (defun notmuch-search-find-subject-region (beg end)
494   "Return a list of authors for the current region"
495   (notmuch-search-properties-in-region 'notmuch-search-subject beg end))
496
497 (defun notmuch-search-show-thread (&optional crypto-switch)
498   "Display the currently selected thread."
499   (interactive "P")
500   (let ((thread-id (notmuch-search-find-thread-id))
501         (subject (notmuch-prettify-subject (notmuch-search-find-subject))))
502     (if (> (length thread-id) 0)
503         (notmuch-show thread-id
504                       (current-buffer)
505                       notmuch-search-query-string
506                       ;; Name the buffer based on the subject.
507                       (concat "*" (truncate-string-to-width subject 30 nil nil t) "*")
508                       crypto-switch)
509       (message "End of search results."))))
510
511 (defun notmuch-search-reply-to-thread (&optional prompt-for-sender)
512   "Begin composing a reply-all to the entire current thread in a new buffer."
513   (interactive "P")
514   (let ((message-id (notmuch-search-find-thread-id)))
515     (notmuch-mua-new-reply message-id prompt-for-sender t)))
516
517 (defun notmuch-search-reply-to-thread-sender (&optional prompt-for-sender)
518   "Begin composing a reply to the entire current thread in a new buffer."
519   (interactive "P")
520   (let ((message-id (notmuch-search-find-thread-id)))
521     (notmuch-mua-new-reply message-id prompt-for-sender nil)))
522
523 (defun notmuch-call-notmuch-process (&rest args)
524   "Synchronously invoke \"notmuch\" with the given list of arguments.
525
526 Output from the process will be presented to the user as an error
527 and will also appear in a buffer named \"*Notmuch errors*\"."
528   (let ((error-buffer (get-buffer-create "*Notmuch errors*")))
529     (with-current-buffer error-buffer
530         (erase-buffer))
531     (if (eq (apply 'call-process notmuch-command nil error-buffer nil args) 0)
532         (point)
533       (progn
534         (with-current-buffer error-buffer
535           (let ((beg (point-min))
536                 (end (- (point-max) 1)))
537             (error (buffer-substring beg end))
538             ))))))
539
540 (defun notmuch-tag (query &rest tag-changes)
541   "Add/remove tags in TAG-CHANGES to messages matching QUERY.
542
543 TAG-CHANGES should be a list of strings of the form \"+tag\" or
544 \"-tag\" and QUERY should be a string containing the
545 search-query.
546
547 Note: Other code should always use this function alter tags of
548 messages instead of running (notmuch-call-notmuch-process \"tag\" ..)
549 directly, so that hooks specified in notmuch-before-tag-hook and
550 notmuch-after-tag-hook will be run."
551   ;; Perform some validation
552   (mapc (lambda (tag-change)
553           (unless (string-match-p "^[-+]\\S-+$" tag-change)
554             (error "Tag must be of the form `+this_tag' or `-that_tag'")))
555         tag-changes)
556   (unless (null tag-changes)
557     (run-hooks 'notmuch-before-tag-hook)
558     (apply 'notmuch-call-notmuch-process "tag"
559            (append tag-changes (list "--" query)))
560     (run-hooks 'notmuch-after-tag-hook)))
561
562 (defcustom notmuch-before-tag-hook nil
563   "Hooks that are run before tags of a message are modified.
564
565 'tags' will contain the tags that are about to be added or removed as
566 a list of strings of the form \"+TAG\" or \"-TAG\".
567 'query' will be a string containing the search query that determines
568 the messages that are about to be tagged"
569
570   :type 'hook
571   :options '(hl-line-mode)
572   :group 'notmuch-hooks)
573
574 (defcustom notmuch-after-tag-hook nil
575   "Hooks that are run after tags of a message are modified.
576
577 'tags' will contain the tags that were added or removed as
578 a list of strings of the form \"+TAG\" or \"-TAG\".
579 'query' will be a string containing the search query that determines
580 the messages that were tagged"
581   :type 'hook
582   :options '(hl-line-mode)
583   :group 'notmuch-hooks)
584
585 (defun notmuch-search-set-tags (tags)
586   (save-excursion
587     (end-of-line)
588     (re-search-backward "(")
589     (forward-char)
590     (let ((beg (point))
591           (inhibit-read-only t))
592       (re-search-forward ")")
593       (backward-char)
594       (let ((end (point)))
595         (delete-region beg end)
596         (insert (propertize (mapconcat  'identity tags " ")
597                             'face 'notmuch-tag-face))))))
598
599 (defun notmuch-search-get-tags ()
600   (save-excursion
601     (end-of-line)
602     (re-search-backward "(")
603     (let ((beg (+ (point) 1)))
604       (re-search-forward ")")
605       (let ((end (- (point) 1)))
606         (split-string (buffer-substring-no-properties beg end))))))
607
608 (defun notmuch-search-get-tags-region (beg end)
609   (save-excursion
610     (let ((output nil)
611           (last-line (line-number-at-pos end))
612           (max-line (- (line-number-at-pos (point-max)) 2)))
613       (goto-char beg)
614       (while (<= (line-number-at-pos) (min last-line max-line))
615         (setq output (append output (notmuch-search-get-tags)))
616         (forward-line 1))
617       output)))
618
619 (defun notmuch-search-tag-thread (&rest tag-changes)
620   "Change tags for the currently selected thread.
621
622 See `notmuch-search-tag-region' for details."
623   (apply 'notmuch-search-tag-region (point) (point) tag-changes))
624
625 (defun notmuch-search-tag-region (beg end &rest tag-changes)
626   "Change tags for threads in the given region.
627
628 TAGS is a list of tag operations for `notmuch-tag'.  The tags are
629 added or removed for all threads in the region from BEG to END."
630   (let ((search-string (notmuch-search-find-thread-id-region-search beg end)))
631     (apply 'notmuch-tag search-string tag-changes)
632     (save-excursion
633       (let ((last-line (line-number-at-pos end))
634             (max-line (- (line-number-at-pos (point-max)) 2)))
635         (goto-char beg)
636         (while (<= (line-number-at-pos) (min last-line max-line))
637           (notmuch-search-set-tags
638            (notmuch-update-tags (notmuch-search-get-tags) tag-changes))
639           (forward-line))))))
640
641 (defun notmuch-search-tag (&optional initial-input)
642   "Change tags for the currently selected thread or region."
643   (interactive)
644   (let* ((beg (if (region-active-p) (region-beginning) (point)))
645          (end (if (region-active-p) (region-end) (point)))
646          (search-string (notmuch-search-find-thread-id-region-search beg end))
647          (tags (notmuch-read-tag-changes initial-input search-string)))
648     (apply 'notmuch-search-tag-region beg end tags)))
649
650 (defun notmuch-search-add-tag ()
651   "Same as `notmuch-search-tag' but sets initial input to '+'."
652   (interactive)
653   (notmuch-search-tag "+"))
654
655 (defun notmuch-search-remove-tag ()
656   "Same as `notmuch-search-tag' but sets initial input to '-'."
657   (interactive)
658   (notmuch-search-tag "-"))
659
660 (defun notmuch-search-archive-thread ()
661   "Archive the currently selected thread (remove its \"inbox\" tag).
662
663 This function advances the next thread when finished."
664   (interactive)
665   (notmuch-search-tag-thread "-inbox")
666   (notmuch-search-next-thread))
667
668 (defvar notmuch-search-process-filter-data nil
669   "Data that has not yet been processed.")
670 (make-variable-buffer-local 'notmuch-search-process-filter-data)
671
672 (defun notmuch-search-process-sentinel (proc msg)
673   "Add a message to let user know when \"notmuch search\" exits"
674   (let ((buffer (process-buffer proc))
675         (status (process-status proc))
676         (exit-status (process-exit-status proc))
677         (never-found-target-thread nil))
678     (if (memq status '(exit signal))
679         (if (buffer-live-p buffer)
680             (with-current-buffer buffer
681               (save-excursion
682                 (let ((inhibit-read-only t)
683                       (atbob (bobp)))
684                   (goto-char (point-max))
685                   (if (eq status 'signal)
686                       (insert "Incomplete search results (search process was killed).\n"))
687                   (when (eq status 'exit)
688                     (if notmuch-search-process-filter-data
689                         (insert (concat "Error: Unexpected output from notmuch search:\n" notmuch-search-process-filter-data)))
690                     (insert "End of search results.")
691                     (unless (= exit-status 0)
692                       (insert (format " (process returned %d)" exit-status)))
693                     (insert "\n")
694                     (if (and atbob
695                              (not (string= notmuch-search-target-thread "found")))
696                         (set 'never-found-target-thread t)))))
697               (when (and never-found-target-thread
698                        notmuch-search-target-line)
699                   (goto-char (point-min))
700                   (forward-line (1- notmuch-search-target-line))))))))
701
702 (defcustom notmuch-search-line-faces nil
703   "Tag/face mapping for line highlighting in notmuch-search.
704
705 Here is an example of how to color search results based on tags.
706  (the following text would be placed in your ~/.emacs file):
707
708  (setq notmuch-search-line-faces '((\"delete\" . (:foreground \"red\"
709                                                   :background \"blue\"))
710                                    (\"unread\" . (:foreground \"green\"))))
711
712 The attributes defined for matching tags are merged, with later
713 attributes overriding earlier. A message having both \"delete\"
714 and \"unread\" tags with the above settings would have a green
715 foreground and blue background."
716   :type '(alist :key-type (string) :value-type (custom-face-edit))
717   :group 'notmuch-search
718   :group 'notmuch-faces)
719
720 (defun notmuch-search-color-line (start end line-tag-list)
721   "Colorize lines in `notmuch-show' based on tags."
722   ;; Create the overlay only if the message has tags which match one
723   ;; of those specified in `notmuch-search-line-faces'.
724   (let (overlay)
725     (mapc (lambda (elem)
726             (let ((tag (car elem))
727                   (attributes (cdr elem)))
728               (when (member tag line-tag-list)
729                 (when (not overlay)
730                   (setq overlay (make-overlay start end)))
731                 ;; Merge the specified properties with any already
732                 ;; applied from an earlier match.
733                 (overlay-put overlay 'face
734                              (append (overlay-get overlay 'face) attributes)))))
735           notmuch-search-line-faces)))
736
737 (defun notmuch-search-author-propertize (authors)
738   "Split `authors' into matching and non-matching authors and
739 propertize appropriately. If no boundary between authors and
740 non-authors is found, assume that all of the authors match."
741   (if (string-match "\\(.*\\)|\\(.*\\)" authors)
742       (concat (propertize (concat (match-string 1 authors) ",")
743                           'face 'notmuch-search-matching-authors)
744               (propertize (match-string 2 authors)
745                           'face 'notmuch-search-non-matching-authors))
746     (propertize authors 'face 'notmuch-search-matching-authors)))
747
748 (defun notmuch-search-insert-authors (format-string authors)
749   ;; Save the match data to avoid interfering with
750   ;; `notmuch-search-process-filter'.
751   (save-match-data
752     (let* ((formatted-authors (format format-string authors))
753            (formatted-sample (format format-string ""))
754            (visible-string formatted-authors)
755            (invisible-string "")
756            (padding ""))
757
758       ;; Truncate the author string to fit the specification.
759       (if (> (length formatted-authors)
760              (length formatted-sample))
761           (let ((visible-length (- (length formatted-sample)
762                                    (length "... "))))
763             ;; Truncate the visible string according to the width of
764             ;; the display string.
765             (setq visible-string (substring formatted-authors 0 visible-length)
766                   invisible-string (substring formatted-authors visible-length))
767             ;; If possible, truncate the visible string at a natural
768             ;; break (comma or pipe), as incremental search doesn't
769             ;; match across the visible/invisible border.
770             (when (string-match "\\(.*\\)\\([,|] \\)\\([^,|]*\\)" visible-string)
771               ;; Second clause is destructive on `visible-string', so
772               ;; order is important.
773               (setq invisible-string (concat (match-string 3 visible-string)
774                                              invisible-string)
775                     visible-string (concat (match-string 1 visible-string)
776                                            (match-string 2 visible-string))))
777             ;; `visible-string' may be shorter than the space allowed
778             ;; by `format-string'. If so we must insert some padding
779             ;; after `invisible-string'.
780             (setq padding (make-string (- (length formatted-sample)
781                                           (length visible-string)
782                                           (length "..."))
783                                        ? ))))
784
785       ;; Use different faces to show matching and non-matching authors.
786       (if (string-match "\\(.*\\)|\\(.*\\)" visible-string)
787           ;; The visible string contains both matching and
788           ;; non-matching authors.
789           (setq visible-string (notmuch-search-author-propertize visible-string)
790                 ;; The invisible string must contain only non-matching
791                 ;; authors, as the visible-string contains both.
792                 invisible-string (propertize invisible-string
793                                              'face 'notmuch-search-non-matching-authors))
794         ;; The visible string contains only matching authors.
795         (setq visible-string (propertize visible-string
796                                          'face 'notmuch-search-matching-authors)
797               ;; The invisible string may contain both matching and
798               ;; non-matching authors.
799               invisible-string (notmuch-search-author-propertize invisible-string)))
800
801       ;; If there is any invisible text, add it as a tooltip to the
802       ;; visible text.
803       (when (not (string= invisible-string ""))
804         (setq visible-string (propertize visible-string 'help-echo (concat "..." invisible-string))))
805
806       ;; Insert the visible and, if present, invisible author strings.
807       (insert visible-string)
808       (when (not (string= invisible-string ""))
809         (let ((start (point))
810               overlay)
811           (insert invisible-string)
812           (setq overlay (make-overlay start (point)))
813           (overlay-put overlay 'invisible 'ellipsis)
814           (overlay-put overlay 'isearch-open-invisible #'delete-overlay)))
815       (insert padding))))
816
817 (defun notmuch-search-insert-field (field date count authors subject tags)
818   (cond
819    ((string-equal field "date")
820     (insert (propertize (format (cdr (assoc field notmuch-search-result-format)) date)
821                         'face 'notmuch-search-date)))
822    ((string-equal field "count")
823     (insert (propertize (format (cdr (assoc field notmuch-search-result-format)) count)
824                         'face 'notmuch-search-count)))
825    ((string-equal field "subject")
826     (insert (propertize (format (cdr (assoc field notmuch-search-result-format)) subject)
827                         'face 'notmuch-search-subject)))
828
829    ((string-equal field "authors")
830     (notmuch-search-insert-authors (cdr (assoc field notmuch-search-result-format)) authors))
831
832    ((string-equal field "tags")
833     (insert (concat "(" (propertize tags 'font-lock-face 'notmuch-tag-face) ")")))))
834
835 (defun notmuch-search-show-result (date count authors subject tags)
836   (let ((fields) (field))
837     (setq fields (mapcar 'car notmuch-search-result-format))
838     (loop for field in fields
839           do (notmuch-search-insert-field field date count authors subject tags)))
840   (insert "\n"))
841
842 (defun notmuch-search-process-filter (proc string)
843   "Process and filter the output of \"notmuch search\""
844   (let ((buffer (process-buffer proc))
845         (found-target nil))
846     (if (buffer-live-p buffer)
847         (with-current-buffer buffer
848           (save-excursion
849             (let ((line 0)
850                   (more t)
851                   (inhibit-read-only t)
852                   (string (concat notmuch-search-process-filter-data string)))
853               (setq notmuch-search-process-filter-data nil)
854               (while more
855                 (while (and (< line (length string)) (= (elt string line) ?\n))
856                   (setq line (1+ line)))
857                 (if (string-match "^\\(thread:[0-9A-Fa-f]*\\) \\([^][]*\\) \\(\\[[0-9/]*\\]\\) \\([^;]*\\); \\(.*\\) (\\([^()]*\\))$" string line)
858                     (let* ((thread-id (match-string 1 string))
859                            (date (match-string 2 string))
860                            (count (match-string 3 string))
861                            (authors (match-string 4 string))
862                            (subject (match-string 5 string))
863                            (tags (match-string 6 string))
864                            (tag-list (if tags (save-match-data (split-string tags)))))
865                       (goto-char (point-max))
866                       (if (/= (match-beginning 1) line)
867                           (insert (concat "Error: Unexpected output from notmuch search:\n" (substring string line (match-beginning 1)) "\n")))
868                       (let ((beg (point)))
869                         (notmuch-search-show-result date count authors
870                                                     (notmuch-prettify-subject subject) tags)
871                         (notmuch-search-color-line beg (point) tag-list)
872                         (put-text-property beg (point) 'notmuch-search-thread-id thread-id)
873                         (put-text-property beg (point) 'notmuch-search-authors authors)
874                         (put-text-property beg (point) 'notmuch-search-subject subject)
875                         (when (string= thread-id notmuch-search-target-thread)
876                           (set 'found-target beg)
877                           (set 'notmuch-search-target-thread "found")))
878                       (set 'line (match-end 0)))
879                   (set 'more nil)
880                   (while (and (< line (length string)) (= (elt string line) ?\n))
881                     (setq line (1+ line)))
882                   (if (< line (length string))
883                       (setq notmuch-search-process-filter-data (substring string line)))
884                   ))))
885           (if found-target
886               (goto-char found-target)))
887       (delete-process proc))))
888
889 (defun notmuch-search-tag-all (&rest tag-changes)
890   "Add/remove tags from all matching messages.
891
892 This command adds or removes tags from all messages matching the
893 current search terms. When called interactively, this command
894 will prompt for tags to be added or removed. Tags prefixed with
895 '+' will be added and tags prefixed with '-' will be removed.
896
897 Each character of the tag name may consist of alphanumeric
898 characters as well as `_.+-'.
899 "
900   (interactive (notmuch-read-tag-changes))
901   (apply 'notmuch-tag notmuch-search-query-string tag-changes))
902
903 (defun notmuch-search-buffer-title (query)
904   "Returns the title for a buffer with notmuch search results."
905   (let* ((saved-search
906           (let (longest
907                 (longest-length 0))
908             (loop for tuple in notmuch-saved-searches
909                   if (let ((quoted-query (regexp-quote (cdr tuple))))
910                        (and (string-match (concat "^" quoted-query) query)
911                             (> (length (match-string 0 query))
912                                longest-length)))
913                   do (setq longest tuple))
914             longest))
915          (saved-search-name (car saved-search))
916          (saved-search-query (cdr saved-search)))
917     (cond ((and saved-search (equal saved-search-query query))
918            ;; Query is the same as saved search (ignoring case)
919            (concat "*notmuch-saved-search-" saved-search-name "*"))
920           (saved-search
921            (concat "*notmuch-search-"
922                    (replace-regexp-in-string (concat "^" (regexp-quote saved-search-query))
923                                              (concat "[ " saved-search-name " ]")
924                                              query)
925                    "*"))
926           (t
927            (concat "*notmuch-search-" query "*"))
928           )))
929
930 (defun notmuch-read-query (prompt)
931   "Read a notmuch-query from the minibuffer with completion.
932
933 PROMPT is the string to prompt with."
934   (lexical-let
935       ((completions
936         (append (list "folder:" "thread:" "id:" "date:" "from:" "to:"
937                       "subject:" "attachment:")
938                 (mapcar (lambda (tag)
939                           (concat "tag:" tag))
940                         (process-lines notmuch-command "search" "--output=tags" "*")))))
941     (let ((keymap (copy-keymap minibuffer-local-map))
942           (minibuffer-completion-table
943            (completion-table-dynamic
944             (lambda (string)
945               ;; generate a list of possible completions for the current input
946               (cond
947                ;; this ugly regexp is used to get the last word of the input
948                ;; possibly preceded by a '('
949                ((string-match "\\(^\\|.* (?\\)\\([^ ]*\\)$" string)
950                 (mapcar (lambda (compl)
951                           (concat (match-string-no-properties 1 string) compl))
952                         (all-completions (match-string-no-properties 2 string)
953                                          completions)))
954                (t (list string)))))))
955       ;; this was simpler than convincing completing-read to accept spaces:
956       (define-key keymap (kbd "<tab>") 'minibuffer-complete)
957       (let ((history-delete-duplicates t))
958         (read-from-minibuffer prompt nil keymap nil
959                               'notmuch-search-history nil nil)))))
960
961 ;;;###autoload
962 (defun notmuch-search (&optional query oldest-first target-thread target-line continuation)
963   "Run \"notmuch search\" with the given `query' and display results.
964
965 If `query' is nil, it is read interactively from the minibuffer.
966 Other optional parameters are used as follows:
967
968   oldest-first: A Boolean controlling the sort order of returned threads
969   target-thread: A thread ID (with the thread: prefix) that will be made
970                  current if it appears in the search results.
971   target-line: The line number to move to if the target thread does not
972                appear in the search results."
973   (interactive)
974   (if (null query)
975       (setq query (notmuch-read-query "Notmuch search: ")))
976   (let ((buffer (get-buffer-create (notmuch-search-buffer-title query))))
977     (switch-to-buffer buffer)
978     (notmuch-search-mode)
979     ;; Don't track undo information for this buffer
980     (set 'buffer-undo-list t)
981     (set 'notmuch-search-query-string query)
982     (set 'notmuch-search-oldest-first oldest-first)
983     (set 'notmuch-search-target-thread target-thread)
984     (set 'notmuch-search-target-line target-line)
985     (set 'notmuch-search-continuation continuation)
986     (let ((proc (get-buffer-process (current-buffer)))
987           (inhibit-read-only t))
988       (if proc
989           (error "notmuch search process already running for query `%s'" query)
990         )
991       (erase-buffer)
992       (goto-char (point-min))
993       (save-excursion
994         (let ((proc (start-process
995                      "notmuch-search" buffer
996                      notmuch-command "search"
997                      (if oldest-first
998                          "--sort=oldest-first"
999                        "--sort=newest-first")
1000                      query)))
1001           (set-process-sentinel proc 'notmuch-search-process-sentinel)
1002           (set-process-filter proc 'notmuch-search-process-filter)
1003           (set-process-query-on-exit-flag proc nil))))
1004     (run-hooks 'notmuch-search-hook)))
1005
1006 (defun notmuch-search-refresh-view ()
1007   "Refresh the current view.
1008
1009 Kills the current buffer and runs a new search with the same
1010 query string as the current search. If the current thread is in
1011 the new search results, then point will be placed on the same
1012 thread. Otherwise, point will be moved to attempt to be in the
1013 same relative position within the new buffer."
1014   (interactive)
1015   (let ((target-line (line-number-at-pos))
1016         (oldest-first notmuch-search-oldest-first)
1017         (target-thread (notmuch-search-find-thread-id))
1018         (query notmuch-search-query-string)
1019         (continuation notmuch-search-continuation))
1020     (notmuch-kill-this-buffer)
1021     (notmuch-search query oldest-first target-thread target-line continuation)
1022     (goto-char (point-min))))
1023
1024 (defcustom notmuch-poll-script nil
1025   "An external script to incorporate new mail into the notmuch database.
1026
1027 This variable controls the action invoked by
1028 `notmuch-search-poll-and-refresh-view' and
1029 `notmuch-hello-poll-and-update' (each have a default keybinding
1030 of 'G') to incorporate new mail into the notmuch database.
1031
1032 If set to nil (the default), new mail is processed by invoking
1033 \"notmuch new\". Otherwise, this should be set to a string that
1034 gives the name of an external script that processes new mail. If
1035 set to the empty string, no command will be run.
1036
1037 The external script could do any of the following depending on
1038 the user's needs:
1039
1040 1. Invoke a program to transfer mail to the local mail store
1041 2. Invoke \"notmuch new\" to incorporate the new mail
1042 3. Invoke one or more \"notmuch tag\" commands to classify the mail
1043
1044 Note that the recommended way of achieving the same is using
1045 \"notmuch new\" hooks."
1046   :type '(choice (const :tag "notmuch new" nil)
1047                  (const :tag "Disabled" "")
1048                  (string :tag "Custom script"))
1049   :group 'notmuch-external)
1050
1051 (defun notmuch-poll ()
1052   "Run \"notmuch new\" or an external script to import mail.
1053
1054 Invokes `notmuch-poll-script', \"notmuch new\", or does nothing
1055 depending on the value of `notmuch-poll-script'."
1056   (interactive)
1057   (if (stringp notmuch-poll-script)
1058       (unless (string= notmuch-poll-script "")
1059         (call-process notmuch-poll-script nil nil))
1060     (call-process notmuch-command nil nil nil "new")))
1061
1062 (defun notmuch-search-poll-and-refresh-view ()
1063   "Invoke `notmuch-poll' to import mail, then refresh the current view."
1064   (interactive)
1065   (notmuch-poll)
1066   (notmuch-search-refresh-view))
1067
1068 (defun notmuch-search-toggle-order ()
1069   "Toggle the current search order.
1070
1071 By default, the \"inbox\" view created by `notmuch' is displayed
1072 in chronological order (oldest thread at the beginning of the
1073 buffer), while any global searches created by `notmuch-search'
1074 are displayed in reverse-chronological order (newest thread at
1075 the beginning of the buffer).
1076
1077 This command toggles the sort order for the current search.
1078
1079 Note that any filtered searches created by
1080 `notmuch-search-filter' retain the search order of the parent
1081 search."
1082   (interactive)
1083   (set 'notmuch-search-oldest-first (not notmuch-search-oldest-first))
1084   (notmuch-search-refresh-view))
1085
1086 (defun notmuch-search-filter (query)
1087   "Filter the current search results based on an additional query string.
1088
1089 Runs a new search matching only messages that match both the
1090 current search results AND the additional query string provided."
1091   (interactive (list (notmuch-read-query "Filter search: ")))
1092   (let ((grouped-query (if (string-match-p notmuch-search-disjunctive-regexp query)
1093                            (concat "( " query " )")
1094                          query)))
1095     (notmuch-search (if (string= notmuch-search-query-string "*")
1096                         grouped-query
1097                       (concat notmuch-search-query-string " and " grouped-query)) notmuch-search-oldest-first)))
1098
1099 (defun notmuch-search-filter-by-tag (tag)
1100   "Filter the current search results based on a single tag.
1101
1102 Runs a new search matching only messages that match both the
1103 current search results AND that are tagged with the given tag."
1104   (interactive
1105    (list (notmuch-select-tag-with-completion "Filter by tag: ")))
1106   (notmuch-search (concat notmuch-search-query-string " and tag:" tag) notmuch-search-oldest-first))
1107
1108 ;;;###autoload
1109 (defun notmuch ()
1110   "Run notmuch and display saved searches, known tags, etc."
1111   (interactive)
1112   (notmuch-hello))
1113
1114 (defun notmuch-interesting-buffer (b)
1115   "Is the current buffer of interest to a notmuch user?"
1116   (with-current-buffer b
1117     (memq major-mode '(notmuch-show-mode
1118                        notmuch-search-mode
1119                        notmuch-hello-mode
1120                        message-mode))))
1121
1122 ;;;###autoload
1123 (defun notmuch-cycle-notmuch-buffers ()
1124   "Cycle through any existing notmuch buffers (search, show or hello).
1125
1126 If the current buffer is the only notmuch buffer, bury it. If no
1127 notmuch buffers exist, run `notmuch'."
1128   (interactive)
1129
1130   (let (start first)
1131     ;; If the current buffer is a notmuch buffer, remember it and then
1132     ;; bury it.
1133     (when (notmuch-interesting-buffer (current-buffer))
1134       (setq start (current-buffer))
1135       (bury-buffer))
1136
1137     ;; Find the first notmuch buffer.
1138     (setq first (loop for buffer in (buffer-list)
1139                      if (notmuch-interesting-buffer buffer)
1140                      return buffer))
1141
1142     (if first
1143         ;; If the first one we found is any other than the starting
1144         ;; buffer, switch to it.
1145         (unless (eq first start)
1146           (switch-to-buffer first))
1147       (notmuch))))
1148
1149 (setq mail-user-agent 'notmuch-user-agent)
1150
1151 (provide 'notmuch)