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