]> git.notmuchmail.org Git - notmuch/blob - notmuch.el
c334e2ffb9831d808d50d56815b10d9f380984af
[notmuch] / 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 (defvar notmuch-show-mode-map
23   (let ((map (make-sparse-keymap)))
24     ; I don't actually want all of these toggle commands occupying
25     ; keybindings. They steal valuable key-binding space, are hard
26     ; to remember, and act globally rather than locally.
27     ;
28     ; Will be much preferable to switch to direct manipulation for
29     ; toggling visibility of these components. Probably using
30     ; overlays-at to query and manipulate the current overlay.
31     (define-key map "a" 'notmuch-show-archive-thread)
32     (define-key map "b" 'notmuch-show-toggle-body-read-visible)
33     (define-key map "c" 'notmuch-show-toggle-citations-visible)
34     (define-key map "h" 'notmuch-show-toggle-headers-visible)
35     (define-key map "n" 'notmuch-show-mark-read-then-next-message)
36     (define-key map "p" 'notmuch-show-previous-message)
37     (define-key map "q" 'kill-this-buffer)
38     (define-key map "s" 'notmuch-show-toggle-signatures-visible)
39     (define-key map "x" 'kill-this-buffer)
40     (define-key map "+" 'notmuch-show-add-tag)
41     (define-key map "-" 'notmuch-show-remove-tag)
42     map)
43   "Keymap for \"notmuch show\" buffers.")
44 (fset 'notmuch-show-mode-map notmuch-show-mode-map)
45
46 (defvar notmuch-show-message-begin-regexp    "\fmessage{")
47 (defvar notmuch-show-message-end-regexp      "\fmessage}")
48 (defvar notmuch-show-header-begin-regexp     "\fheader{")
49 (defvar notmuch-show-header-end-regexp       "\fheader}")
50 (defvar notmuch-show-body-begin-regexp       "\fbody{")
51 (defvar notmuch-show-body-end-regexp         "\fbody}")
52 (defvar notmuch-show-attachment-begin-regexp "\fattachment{")
53 (defvar notmuch-show-attachment-end-regexp   "\fattachment}")
54 (defvar notmuch-show-part-begin-regexp       "\fpart{")
55 (defvar notmuch-show-part-end-regexp         "\fpart}")
56 (defvar notmuch-show-marker-regexp "\f\\(message\\|header\\|body\\|attachment\\|part\\)[{}].*$")
57
58 (defvar notmuch-show-id-regexp "ID: \\(.*\\)$")
59 (defvar notmuch-show-tags-regexp "(\\([^)]*\\))$")
60
61 (defun notmuch-show-get-message-id ()
62   (save-excursion
63     (beginning-of-line)
64     (if (not (looking-at notmuch-show-message-begin-regexp))
65         (re-search-backward notmuch-show-message-begin-regexp))
66     (re-search-forward notmuch-show-id-regexp)
67     (buffer-substring (match-beginning 1) (match-end 1))))
68
69 (defun notmuch-show-set-tags (tags)
70   (save-excursion
71     (beginning-of-line)
72     (if (not (looking-at notmuch-show-message-begin-regexp))
73         (re-search-backward notmuch-show-message-begin-regexp))
74     (re-search-forward notmuch-show-tags-regexp)
75     (let ((inhibit-read-only t)
76           (beg (match-beginning 1))
77           (end (match-end 1)))
78       (delete-region beg end)
79       (goto-char beg)
80       (insert (mapconcat 'identity tags " ")))))
81
82 (defun notmuch-show-get-tags ()
83   (save-excursion
84     (beginning-of-line)
85     (if (not (looking-at notmuch-show-message-begin-regexp))
86         (re-search-backward notmuch-show-message-begin-regexp))
87     (re-search-forward notmuch-show-tags-regexp)
88     (split-string (buffer-substring (match-beginning 1) (match-end 1)))))
89
90 (defun notmuch-show-add-tag (tag)
91   (interactive "sTag to add: ")
92   (notmuch-call-notmuch-process "tag" (concat "+" tag) (concat "id:" (notmuch-show-get-message-id)))
93   (notmuch-show-set-tags (delete-dups (sort (cons tag (notmuch-show-get-tags)) 'string<))))
94
95 (defun notmuch-show-remove-tag (tag)
96   (interactive "sTag to remove: ")
97   (notmuch-call-notmuch-process "tag" (concat "-" tag) (concat "id:" (notmuch-show-get-message-id)))
98   (notmuch-show-set-tags (delete tag (notmuch-show-get-tags))))
99
100 (defun notmuch-show-archive-thread ()
101   "Archive each message currrently shown by removing the \"inbox\" tag from each.
102
103 This command is safe from any race condition of new messages
104 being delivered to the same thread. It does not archive the
105 entire thread, but only the messages shown in the current
106 buffer."
107   (interactive)
108   (save-excursion
109     (goto-char (point-min))
110     (while (not (eobp))
111       (notmuch-show-remove-tag "inbox")
112       (if (not (eobp))
113           (forward-char))
114       (if (not (re-search-forward notmuch-show-message-begin-regexp nil t))
115           (goto-char (point-max))))))
116
117 (defun notmuch-show-next-message ()
118   "Advance point to the beginning of the next message in the buffer.
119
120 Does nothing if already on the last message."
121   (interactive)
122   ; First, ensure we get off the current message marker
123   (if (not (eobp))
124       (forward-char))
125   (re-search-forward notmuch-show-message-begin-regexp nil t)
126   ; This dance might look pointless, but it's important. I originally
127   ; just had (beginning-of-line) here which looked right on the
128   ; display but actually put point all the way back to the first
129   ; character of the first invisible line. That is, it put point into
130   ; the closing markers of the previous message rather than at the
131   ; beginning of the current message. And that in turn meant that
132   ; looking up the current message-ID would actually return the
133   ; previous message ID.
134   ;
135   ; So this dance ensures that we're actually on the current message
136   ; when it looks like we are.
137   (end-of-visible-line)
138   (beginning-of-line)
139   (recenter 0))
140
141 (defun notmuch-show-previous-message ()
142   "Backup to the beginning of the previous message in the buffer.
143
144 Does nothing if already on the first message in the buffer."
145   (interactive)
146   ; First, ensure we get off the current message marker
147   (if (not (bobp))
148       (previous-line))
149   (re-search-backward notmuch-show-message-begin-regexp nil t)
150   ; This dance might look pointless, but it's important. I originally
151   ; just had (beginning-of-line) here which looked right on the
152   ; display but actually put point all the way back to the first
153   ; character of the first invisible line. That is, it put point into
154   ; the closing markers of the previous message rather than at the
155   ; beginning of the current message. And that in turn meant that
156   ; looking up the current message-ID would actually return the
157   ; previous message ID.
158   ;
159   ; So this dance ensures that we're actually on the current message
160   ; when it looks like we are.
161   (end-of-visible-line)
162   (beginning-of-line)
163   (recenter 0))
164
165 (defun notmuch-show-mark-read-then-next-message ()
166   "Remove uread tag from current message, then advance to next message."
167   (interactive)
168   (if (member "unread" (notmuch-show-get-tags))
169       (notmuch-show-remove-tag "unread"))
170   (notmuch-show-next-message))
171
172 (defun notmuch-show-markup-citations-region (beg end)
173   (goto-char beg)
174   (beginning-of-line)
175   (while (< (point) end)
176     (let ((beg-sub (point)))
177       (if (looking-at ">")
178           (progn
179             (while (looking-at ">")
180               (next-line))
181             (let ((overlay (make-overlay beg-sub (point))))
182               (overlay-put overlay 'invisible 'notmuch-show-citation)
183               (overlay-put overlay 'before-string
184                            (concat "[" (number-to-string (count-lines beg-sub (point)))
185                                    " quoted lines.]")))))
186       (if (looking-at "--[ ]?$")
187           (let ((overlay (make-overlay beg-sub end)))
188             (overlay-put overlay 'invisible 'notmuch-show-signature)
189             (overlay-put overlay 'before-string
190                          (concat "[" (number-to-string (count-lines beg-sub (point)))
191                                  "-line signature.]"))
192             (goto-char end)))
193       (next-line))))
194
195 (defun notmuch-show-markup-body ()
196   (re-search-forward notmuch-show-body-begin-regexp)
197   (next-line 1)
198   (beginning-of-line)
199   (let ((beg (point)))
200     (re-search-forward notmuch-show-body-end-regexp)
201     (let ((end (match-beginning 0)))
202       (if (not (member "unread" (notmuch-show-get-tags)))
203           (overlay-put (make-overlay beg end)
204                        'invisible 'notmuch-show-body-read))
205       (notmuch-show-markup-citations-region beg end))))
206
207 (defun notmuch-show-markup-header ()
208   (re-search-forward notmuch-show-header-begin-regexp)
209   (next-line 2)
210   (beginning-of-line)
211   (let ((beg (point)))
212     (re-search-forward notmuch-show-header-end-regexp)
213     (overlay-put (make-overlay beg (match-beginning 0))
214                  'invisible 'notmuch-show-header)))
215
216 (defun notmuch-show-markup-message ()
217   (if (re-search-forward notmuch-show-message-begin-regexp nil t)
218       (progn
219         (notmuch-show-markup-header)
220         (notmuch-show-markup-body))
221     (goto-char (point-max))))
222
223 (defun notmuch-show-hide-markers ()
224   (save-excursion
225     (goto-char (point-min))
226     (while (not (eobp))
227       (if (re-search-forward notmuch-show-marker-regexp nil t)
228           (progn
229             (overlay-put (make-overlay (match-beginning 0) (+ (match-end 0) 1))
230                          'invisible 'notmuch-show-marker))
231         (goto-char (point-max))))))
232
233 (defun notmuch-show-markup-messages ()
234   (save-excursion
235     (goto-char (point-min))
236     (while (not (eobp))
237       (notmuch-show-markup-message)))
238   (notmuch-show-hide-markers))
239
240 (defun notmuch-show-toggle-citations-visible ()
241   "Toggle visibility of citations"
242   (interactive)
243   (if notmuch-show-citations-visible
244       (add-to-invisibility-spec 'notmuch-show-citation)
245     (remove-from-invisibility-spec 'notmuch-show-citation))
246   (set 'notmuch-show-citations-visible (not notmuch-show-citations-visible))
247   ; Need to force the redisplay for some reason
248   (force-window-update)
249   (redisplay t))
250
251 (defun notmuch-show-toggle-signatures-visible ()
252   "Toggle visibility of signatures"
253   (interactive)
254   (if notmuch-show-signatures-visible
255       (add-to-invisibility-spec 'notmuch-show-signature)
256     (remove-from-invisibility-spec 'notmuch-show-signature))
257   (set 'notmuch-show-signatures-visible (not notmuch-show-signatures-visible))
258   ; Need to force the redisplay for some reason
259   (force-window-update)
260   (redisplay t))
261
262 (defun notmuch-show-toggle-headers-visible ()
263   "Toggle visibility of header fields"
264   (interactive)
265   (if notmuch-show-headers-visible
266       (add-to-invisibility-spec 'notmuch-show-header)
267     (remove-from-invisibility-spec 'notmuch-show-header))
268   (set 'notmuch-show-headers-visible (not notmuch-show-headers-visible))
269   ; Need to force the redisplay for some reason
270   (force-window-update)
271   (redisplay t))
272
273 (defun notmuch-show-toggle-body-read-visible ()
274   "Toggle visibility of message bodies of read messages"
275   (interactive)
276   (if notmuch-show-body-read-visible
277       (add-to-invisibility-spec 'notmuch-show-body-read)
278     (remove-from-invisibility-spec 'notmuch-show-body-read))
279   (set 'notmuch-show-body-read-visible (not notmuch-show-body-read-visible))
280   ; Need to force the redisplay for some reason
281   (force-window-update)
282   (redisplay t))
283
284 ;;;###autoload
285 (defun notmuch-show-mode ()
286   "Major mode for handling the output of \"notmuch show\""
287   (interactive)
288   (kill-all-local-variables)
289   (set (make-local-variable 'notmuch-show-headers-visible) t)
290   (notmuch-show-toggle-headers-visible)
291   (set (make-local-variable 'notmuch-show-body-read-visible) t)
292   (notmuch-show-toggle-body-read-visible)
293   (set (make-local-variable 'notmuch-show-citations-visible) t)
294   (notmuch-show-toggle-citations-visible)
295   (set (make-local-variable 'notmuch-show-signatures-visible) t)
296   (notmuch-show-toggle-signatures-visible)
297   (add-to-invisibility-spec 'notmuch-show-marker)
298   (use-local-map notmuch-show-mode-map)
299   (setq major-mode 'notmuch-show-mode
300         mode-name "notmuch-show")
301   (setq buffer-read-only t))
302
303 (defun notmuch-show (thread-id)
304   "Run \"notmuch show\" with the given thread ID and display results."
305   (interactive "sNotmuch show: ")
306   (let ((buffer (get-buffer-create (concat "*notmuch-show-" thread-id "*"))))
307     (switch-to-buffer buffer)
308     (notmuch-show-mode)
309     (let ((proc (get-buffer-process (current-buffer)))
310           (inhibit-read-only t))
311       (if proc
312           (error "notmuch search process already running for query `%s'" query)
313         )
314       (erase-buffer)
315       (goto-char (point-min))
316       (save-excursion
317         (call-process "notmuch" nil t nil "show" thread-id)
318         (notmuch-show-markup-messages)
319         )
320       )))
321
322 (defvar notmuch-search-mode-map
323   (let ((map (make-sparse-keymap)))
324     (define-key map "a" 'notmuch-search-archive-thread)
325     (define-key map "f" 'notmuch-search-filter)
326     (define-key map "n" 'next-line)
327     (define-key map "p" 'previous-line)
328     (define-key map "q" 'kill-this-buffer)
329     (define-key map "s" 'notmuch-search)
330     (define-key map "x" 'kill-this-buffer)
331     (define-key map "\r" 'notmuch-search-show-thread)
332     (define-key map "+" 'notmuch-search-add-tag)
333     (define-key map "-" 'notmuch-search-remove-tag)
334     (define-key map "<" 'beginning-of-buffer)
335     (define-key map ">" 'notmuch-search-goto-last-thread)
336     (define-key map "=" 'notmuch-search-refresh-view)
337     (define-key map "\M->" 'notmuch-search-goto-last-thread)
338     map)
339   "Keymap for \"notmuch search\" buffers.")
340 (fset 'notmuch-search-mode-map notmuch-search-mode-map)
341
342 (defun notmuch-search-goto-last-thread (&optional arg)
343   "Move point to the last thread in the buffer."
344   (interactive "^P")
345   (end-of-buffer arg)
346   (beginning-of-line))
347
348 ;;;###autoload
349 (defun notmuch-search-mode ()
350   "Major mode for handling the output of \"notmuch search\""
351   (interactive)
352   (kill-all-local-variables)
353   (make-local-variable 'notmuch-search-query-string)
354   (add-to-invisibility-spec 'notmuch-search)
355   (use-local-map notmuch-search-mode-map)
356   (setq major-mode 'notmuch-search-mode
357         mode-name "notmuch-search")
358   (setq buffer-read-only t))
359
360 (defun notmuch-search-find-thread-id ()
361   (save-excursion
362     (beginning-of-line)
363     (let ((beg (point)))
364       (re-search-forward "[a-fA-F0-9]*")
365       (filter-buffer-substring beg (point)))))
366
367 (defun notmuch-search-markup-this-thread-id ()
368   (beginning-of-line)
369   (let ((beg (point)))
370     (re-search-forward "[a-fA-F0-9]*")
371     (forward-char)
372     (overlay-put (make-overlay beg (point)) 'invisible 'notmuch-search)))
373
374 (defun notmuch-search-markup-thread-ids ()
375   (save-excursion
376     (goto-char (point-min))
377     (while (not (eobp))
378       (notmuch-search-markup-this-thread-id)
379       (next-line))))
380
381 (defun notmuch-search-hide-thread-ids ()
382   (interactive)
383   (add-to-invisibility-spec 'notmuch-search)
384   (force-window-update)
385   (redisplay t))
386
387 (defun notmuch-search-show-thread-ids ()
388   (interactive)
389   (remove-from-invisibility-spec 'notmuch-search)
390   (force-window-update)
391   (redisplay t))
392
393 (defun notmuch-search-show-thread ()
394   (interactive)
395   (notmuch-show (notmuch-search-find-thread-id)))
396
397 (defun notmuch-call-notmuch-process (&rest args)
398   (let ((error-buffer (get-buffer-create "*Notmuch errors*")))
399     (with-current-buffer error-buffer
400         (erase-buffer))
401     (if (eq (apply 'call-process "notmuch" nil error-buffer nil args) 0)
402         (point)
403       (progn
404         (with-current-buffer error-buffer
405           (let ((beg (point-min))
406                 (end (- (point-max) 1)))
407             (error (buffer-substring beg end))
408             ))))))
409
410 (defun notmuch-search-set-tags (tags)
411   (save-excursion
412     (end-of-line)
413     (re-search-backward "(")
414     (forward-char)
415     (let ((beg (point))
416           (inhibit-read-only t))
417       (re-search-forward ")")
418       (backward-char)
419       (let ((end (point)))
420         (delete-region beg end)
421         (insert (mapconcat  'identity tags " "))))))
422
423 (defun notmuch-search-get-tags ()
424   (save-excursion
425     (end-of-line)
426     (re-search-backward "(")
427     (let ((beg (+ (point) 1)))
428       (re-search-forward ")")
429       (let ((end (- (point) 1)))
430         (split-string (buffer-substring beg end))))))
431
432 (defun notmuch-search-add-tag (tag)
433   (interactive "sTag to add: ")
434   (notmuch-call-notmuch-process "tag" (concat "+" tag) (concat "thread:" (notmuch-search-find-thread-id)))
435   (notmuch-search-set-tags (delete-dups (sort (cons tag (notmuch-search-get-tags)) 'string<))))
436
437 (defun notmuch-search-remove-tag (tag)
438   (interactive "sTag to remove: ")
439   (notmuch-call-notmuch-process "tag" (concat "-" tag) (concat "thread:" (notmuch-search-find-thread-id)))
440   (notmuch-search-set-tags (delete tag (notmuch-search-get-tags))))
441
442 (defun notmuch-search-archive-thread ()
443   (interactive)
444   (notmuch-search-remove-tag "inbox"))
445
446 (defun notmuch-search (query)
447   "Run \"notmuch search\" with the given query string and display results."
448   (interactive "sNotmuch search: ")
449   (let ((buffer (get-buffer-create (concat "*notmuch-search-" query "*"))))
450     (switch-to-buffer buffer)
451     (notmuch-search-mode)
452     (set 'notmuch-search-query-string query)
453     (let ((proc (get-buffer-process (current-buffer)))
454           (inhibit-read-only t))
455       (if proc
456           (error "notmuch search process already running for query `%s'" query)
457         )
458       (erase-buffer)
459       (goto-char (point-min))
460       (save-excursion
461         (call-process "notmuch" nil t nil "search" query)
462         (notmuch-search-markup-thread-ids)
463         ; A well-behaved program ends its output with a newline, but we
464         ; don't actually want the blank line at the end of the file.
465         (goto-char (point-max))
466         (if (looking-at "^$")
467             (delete-backward-char 1)
468           )
469         ))))
470
471 (defun notmuch-search-refresh-view ()
472   "Refresh the current view.
473
474 Kills the current buffer and runs a new search with the same
475 query string as the current search. If the current thread is in
476 the new search results, then point will be placed on the same
477 thread. Otherwise, point will be moved to attempt to be in the
478 same relative position within the new buffer."
479   (interactive)
480   (let ((here (point))
481         (thread (notmuch-search-find-thread-id))
482         (query notmuch-search-query-string))
483     (kill-this-buffer)
484     (notmuch-search query)
485     (goto-char (point-min))
486     (if (re-search-forward (concat "^" thread) nil t)
487         (beginning-of-line)
488       (goto-char here))))
489
490 (defun notmuch-search-filter (query)
491   "Run \"notmuch search\" to refine the current search results.
492
493 A search string will be constructed by appending QUERY to the
494 current search string, and the results of \"notmuch search\" for
495 the combined query will be displayed."
496   (interactive "sFilter search: ")
497   (notmuch-search (concat notmuch-search-query-string " and " query)))
498
499 (defun notmuch ()
500   "Run notmuch to display all mail with tag of 'inbox'"
501   (interactive)
502   (notmuch-search "tag:inbox"))
503
504 (provide 'notmuch)