]> git.notmuchmail.org Git - notmuch/blob - emacs/notmuch-lib.el
7c6cf61ac53ff498706cd3edf10514aa88cc07de
[notmuch] / emacs / notmuch-lib.el
1 ;; notmuch-lib.el --- common variables, functions and function declarations
2 ;;
3 ;; Copyright © Carl Worth
4 ;;
5 ;; This file is part of Notmuch.
6 ;;
7 ;; Notmuch is free software: you can redistribute it and/or modify it
8 ;; under the terms of the GNU General Public License as published by
9 ;; the Free Software Foundation, either version 3 of the License, or
10 ;; (at your option) any later version.
11 ;;
12 ;; Notmuch is distributed in the hope that it will be useful, but
13 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
14 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 ;; General Public License for more details.
16 ;;
17 ;; You should have received a copy of the GNU General Public License
18 ;; along with Notmuch.  If not, see <http://www.gnu.org/licenses/>.
19 ;;
20 ;; Authors: Carl Worth <cworth@cworth.org>
21
22 ;; This is an part of an emacs-based interface to the notmuch mail system.
23
24 (require 'mm-view)
25 (require 'mm-decode)
26 (require 'json)
27 (require 'cl)
28
29 (defvar notmuch-command "notmuch"
30   "Command to run the notmuch binary.")
31
32 (defgroup notmuch nil
33   "Notmuch mail reader for Emacs."
34   :group 'mail)
35
36 (defgroup notmuch-hello nil
37   "Overview of saved searches, tags, etc."
38   :group 'notmuch)
39
40 (defgroup notmuch-search nil
41   "Searching and sorting mail."
42   :group 'notmuch)
43
44 (defgroup notmuch-show nil
45   "Showing messages and threads."
46   :group 'notmuch)
47
48 (defgroup notmuch-send nil
49   "Sending messages from Notmuch."
50   :group 'notmuch)
51
52 (custom-add-to-group 'notmuch-send 'message 'custom-group)
53
54 (defgroup notmuch-crypto nil
55   "Processing and display of cryptographic MIME parts."
56   :group 'notmuch)
57
58 (defgroup notmuch-hooks nil
59   "Running custom code on well-defined occasions."
60   :group 'notmuch)
61
62 (defgroup notmuch-external nil
63   "Running external commands from within Notmuch."
64   :group 'notmuch)
65
66 (defgroup notmuch-faces nil
67   "Graphical attributes for displaying text"
68   :group 'notmuch)
69
70 (defcustom notmuch-search-oldest-first t
71   "Show the oldest mail first when searching."
72   :type 'boolean
73   :group 'notmuch-search)
74
75 ;;
76
77 (defvar notmuch-search-history nil
78   "Variable to store notmuch searches history.")
79
80 (defcustom notmuch-saved-searches '(("inbox" . "tag:inbox")
81                                     ("unread" . "tag:unread"))
82   "A list of saved searches to display."
83   :type '(alist :key-type string :value-type string)
84   :group 'notmuch-hello)
85
86 (defcustom notmuch-archive-tags '("-inbox")
87   "List of tag changes to apply to a message or a thread when it is archived.
88
89 Tags starting with \"+\" (or not starting with either \"+\" or
90 \"-\") in the list will be added, and tags starting with \"-\"
91 will be removed from the message or thread being archived.
92
93 For example, if you wanted to remove an \"inbox\" tag and add an
94 \"archived\" tag, you would set:
95     (\"-inbox\" \"+archived\")"
96   :type '(repeat string)
97   :group 'notmuch-search
98   :group 'notmuch-show)
99
100 ;; By default clicking on a button does not select the window
101 ;; containing the button (as opposed to clicking on a widget which
102 ;; does). This means that the button action is then executed in the
103 ;; current selected window which can cause problems if the button
104 ;; changes the buffer (e.g., id: links) or moves point.
105 ;;
106 ;; This provides a button type which overrides mouse-action so that
107 ;; the button's window is selected before the action is run. Other
108 ;; notmuch buttons can get the same behaviour by inheriting from this
109 ;; button type.
110 (define-button-type 'notmuch-button-type
111   'mouse-action (lambda (button)
112                   (select-window (posn-window (event-start last-input-event)))
113                   (button-activate button)))
114
115 (defun notmuch-command-to-string (&rest args)
116   "Synchronously invoke \"notmuch\" with the given list of arguments.
117
118 If notmuch exits with a non-zero status, output from the process
119 will appear in a buffer named \"*Notmuch errors*\" and an error
120 will be signaled.
121
122 Otherwise the output will be returned"
123   (with-temp-buffer
124     (let* ((status (apply #'call-process notmuch-command nil t nil args))
125            (output (buffer-string)))
126       (notmuch-check-exit-status status (cons notmuch-command args) output)
127       output)))
128
129 (defun notmuch-version ()
130   "Return a string with the notmuch version number."
131   (let ((long-string
132          ;; Trim off the trailing newline.
133          (substring (notmuch-command-to-string "--version") 0 -1)))
134     (if (string-match "^notmuch\\( version\\)? \\(.*\\)$"
135                       long-string)
136         (match-string 2 long-string)
137       "unknown")))
138
139 (defun notmuch-config-get (item)
140   "Return a value from the notmuch configuration."
141   ;; Trim off the trailing newline
142   (substring (notmuch-command-to-string "config" "get" item) 0 -1))
143
144 (defun notmuch-database-path ()
145   "Return the database.path value from the notmuch configuration."
146   (notmuch-config-get "database.path"))
147
148 (defun notmuch-user-name ()
149   "Return the user.name value from the notmuch configuration."
150   (notmuch-config-get "user.name"))
151
152 (defun notmuch-user-primary-email ()
153   "Return the user.primary_email value from the notmuch configuration."
154   (notmuch-config-get "user.primary_email"))
155
156 (defun notmuch-user-other-email ()
157   "Return the user.other_email value (as a list) from the notmuch configuration."
158   (split-string (notmuch-config-get "user.other_email") "\n"))
159
160 (defun notmuch-kill-this-buffer ()
161   "Kill the current buffer."
162   (interactive)
163   (kill-buffer (current-buffer)))
164
165 (defun notmuch-prettify-subject (subject)
166   ;; This function is used by `notmuch-search-process-filter' which
167   ;; requires that we not disrupt its' matching state.
168   (save-match-data
169     (if (and subject
170              (string-match "^[ \t]*$" subject))
171         "[No Subject]"
172       subject)))
173
174 (defun notmuch-escape-boolean-term (term)
175   "Escape a boolean term for use in a query.
176
177 The caller is responsible for prepending the term prefix and a
178 colon.  This performs minimal escaping in order to produce
179 user-friendly queries."
180
181   (save-match-data
182     (if (or (equal term "")
183             (string-match "[ ()]\\|^\"" term))
184         ;; Requires escaping
185         (concat "\"" (replace-regexp-in-string "\"" "\"\"" term t t) "\"")
186       term)))
187
188 (defun notmuch-id-to-query (id)
189   "Return a query that matches the message with id ID."
190   (concat "id:" (notmuch-escape-boolean-term id)))
191
192 ;;
193
194 (defun notmuch-common-do-stash (text)
195   "Common function to stash text in kill ring, and display in minibuffer."
196   (if text
197       (progn
198         (kill-new text)
199         (message "Stashed: %s" text))
200     ;; There is nothing to stash so stash an empty string so the user
201     ;; doesn't accidentally paste something else somewhere.
202     (kill-new "")
203     (message "Nothing to stash!")))
204
205 ;;
206
207 (defun notmuch-remove-if-not (predicate list)
208   "Return a copy of LIST with all items not satisfying PREDICATE removed."
209   (let (out)
210     (while list
211       (when (funcall predicate (car list))
212         (push (car list) out))
213       (setq list (cdr list)))
214     (nreverse out)))
215
216 (defun notmuch-split-content-type (content-type)
217   "Split content/type into 'content' and 'type'"
218   (split-string content-type "/"))
219
220 (defun notmuch-match-content-type (t1 t2)
221   "Return t if t1 and t2 are matching content types, taking wildcards into account"
222   (let ((st1 (notmuch-split-content-type t1))
223         (st2 (notmuch-split-content-type t2)))
224     (if (or (string= (cadr st1) "*")
225             (string= (cadr st2) "*"))
226         ;; Comparison of content types should be case insensitive.
227         (string= (downcase (car st1)) (downcase (car st2)))
228       (string= (downcase t1) (downcase t2)))))
229
230 (defvar notmuch-multipart/alternative-discouraged
231   '(
232     ;; Avoid HTML parts.
233     "text/html"
234     ;; multipart/related usually contain a text/html part and some associated graphics.
235     "multipart/related"
236     ))
237
238 (defun notmuch-multipart/alternative-choose (types)
239   "Return a list of preferred types from the given list of types"
240   ;; Based on `mm-preferred-alternative-precedence'.
241   (let ((seq types))
242     (dolist (pref (reverse notmuch-multipart/alternative-discouraged))
243       (dolist (elem (copy-sequence seq))
244         (when (string-match pref elem)
245           (setq seq (nconc (delete elem seq) (list elem))))))
246     seq))
247
248 (defun notmuch-parts-filter-by-type (parts type)
249   "Given a list of message parts, return a list containing the ones matching
250 the given type."
251   (remove-if-not
252    (lambda (part) (notmuch-match-content-type (plist-get part :content-type) type))
253    parts))
254
255 ;; Helper for parts which are generally not included in the default
256 ;; JSON output.
257 (defun notmuch-get-bodypart-internal (query part-number process-crypto)
258   (let ((args '("show" "--format=raw"))
259         (part-arg (format "--part=%s" part-number)))
260     (setq args (append args (list part-arg)))
261     (if process-crypto
262         (setq args (append args '("--decrypt"))))
263     (setq args (append args (list query)))
264     (with-temp-buffer
265       (let ((coding-system-for-read 'no-conversion))
266         (progn
267           (apply 'call-process (append (list notmuch-command nil (list t nil) nil) args))
268           (buffer-string))))))
269
270 (defun notmuch-get-bodypart-content (msg part nth process-crypto)
271   (or (plist-get part :content)
272       (notmuch-get-bodypart-internal (notmuch-id-to-query (plist-get msg :id)) nth process-crypto)))
273
274 ;; Workaround: The call to `mm-display-part' below triggers a bug in
275 ;; Emacs 24 if it attempts to use the shr renderer to display an HTML
276 ;; part with images in it (demonstrated in 24.1 and 24.2 on Debian and
277 ;; Fedora 17, though unreproducable in other configurations).
278 ;; `mm-shr' references the variable `gnus-inhibit-images' without
279 ;; first loading gnus-art, which defines it, resulting in a
280 ;; void-variable error.  Hence, we advise `mm-shr' to ensure gnus-art
281 ;; is loaded.
282 (if (>= emacs-major-version 24)
283     (defadvice mm-shr (before load-gnus-arts activate)
284       (require 'gnus-art nil t)
285       (ad-disable-advice 'mm-shr 'before 'load-gnus-arts)))
286
287 (defun notmuch-mm-display-part-inline (msg part nth content-type process-crypto)
288   "Use the mm-decode/mm-view functions to display a part in the
289 current buffer, if possible."
290   (let ((display-buffer (current-buffer)))
291     (with-temp-buffer
292       ;; In case there is :content, the content string is already converted
293       ;; into emacs internal format. `gnus-decoded' is a fake charset,
294       ;; which means no further decoding (to be done by mm- functions).
295       (let* ((charset (if (plist-member part :content)
296                           'gnus-decoded
297                         (plist-get part :content-charset)))
298              (handle (mm-make-handle (current-buffer) `(,content-type (charset . ,charset)))))
299         ;; If the user wants the part inlined, insert the content and
300         ;; test whether we are able to inline it (which includes both
301         ;; capability and suitability tests).
302         (when (mm-inlined-p handle)
303           (insert (notmuch-get-bodypart-content msg part nth process-crypto))
304           (when (mm-inlinable-p handle)
305             (set-buffer display-buffer)
306             (mm-display-part handle)
307             t))))))
308
309 ;; Converts a plist of headers to an alist of headers. The input plist should
310 ;; have symbols of the form :Header as keys, and the resulting alist will have
311 ;; symbols of the form 'Header as keys.
312 (defun notmuch-headers-plist-to-alist (plist)
313   (loop for (key value . rest) on plist by #'cddr
314         collect (cons (intern (substring (symbol-name key) 1)) value)))
315
316 (defun notmuch-face-ensure-list-form (face)
317   "Return FACE in face list form.
318
319 If FACE is already a face list, it will be returned as-is.  If
320 FACE is a face name or face plist, it will be returned as a
321 single element face list."
322   (if (and (listp face) (not (keywordp (car face))))
323       face
324     (list face)))
325
326 (defun notmuch-combine-face-text-property (start end face &optional below object)
327   "Combine FACE into the 'face text property between START and END.
328
329 This function combines FACE with any existing faces between START
330 and END in OBJECT (which defaults to the current buffer).
331 Attributes specified by FACE take precedence over existing
332 attributes unless BELOW is non-nil.  FACE must be a face name (a
333 symbol or string), a property list of face attributes, or a list
334 of these.  For convenience when applied to strings, this returns
335 OBJECT."
336
337   ;; A face property can have three forms: a face name (a string or
338   ;; symbol), a property list, or a list of these two forms.  In the
339   ;; list case, the faces will be combined, with the earlier faces
340   ;; taking precedent.  Here we canonicalize everything to list form
341   ;; to make it easy to combine.
342   (let ((pos start)
343         (face-list (notmuch-face-ensure-list-form face)))
344     (while (< pos end)
345       (let* ((cur (get-text-property pos 'face object))
346              (cur-list (notmuch-face-ensure-list-form cur))
347              (new (cond ((null cur-list) face)
348                         (below (append cur-list face-list))
349                         (t (append face-list cur-list))))
350              (next (next-single-property-change pos 'face object end)))
351         (put-text-property pos next 'face new object)
352         (setq pos next))))
353   object)
354
355 (defun notmuch-combine-face-text-property-string (string face &optional below)
356   (notmuch-combine-face-text-property
357    0
358    (length string)
359    face
360    below
361    string))
362
363 (defun notmuch-map-text-property (start end prop func &optional object)
364   "Transform text property PROP using FUNC.
365
366 Applies FUNC to each distinct value of the text property PROP
367 between START and END of OBJECT, setting PROP to the value
368 returned by FUNC."
369   (while (< start end)
370     (let ((value (get-text-property start prop object))
371           (next (next-single-property-change start prop object end)))
372       (put-text-property start next prop (funcall func value) object)
373       (setq start next))))
374
375 (defun notmuch-logged-error (msg &optional extra)
376   "Log MSG and EXTRA to *Notmuch errors* and signal MSG.
377
378 This logs MSG and EXTRA to the *Notmuch errors* buffer and
379 signals MSG as an error.  If EXTRA is non-nil, text referring the
380 user to the *Notmuch errors* buffer will be appended to the
381 signaled error.  This function does not return."
382
383   (with-current-buffer (get-buffer-create "*Notmuch errors*")
384     (goto-char (point-max))
385     (unless (bobp)
386       (newline))
387     (save-excursion
388       (insert "[" (current-time-string) "]\n" msg)
389       (unless (bolp)
390         (newline))
391       (when extra
392         (insert extra)
393         (unless (bolp)
394           (newline)))))
395   (error "%s" (concat msg (when extra
396                             " (see *Notmuch errors* for more details)"))))
397
398 (defun notmuch-check-async-exit-status (proc msg)
399   "If PROC exited abnormally, pop up an error buffer and signal an error.
400
401 This is a wrapper around `notmuch-check-exit-status' for
402 asynchronous process sentinels.  PROC and MSG must be the
403 arguments passed to the sentinel."
404   (let ((exit-status
405          (case (process-status proc)
406            ((exit) (process-exit-status proc))
407            ((signal) msg))))
408     (when exit-status
409       (notmuch-check-exit-status exit-status (process-command proc)))))
410
411 (defun notmuch-check-exit-status (exit-status command &optional output err-file)
412   "If EXIT-STATUS is non-zero, pop up an error buffer and signal an error.
413
414 If EXIT-STATUS is non-zero, pop up a notmuch error buffer
415 describing the error and signal an Elisp error.  EXIT-STATUS must
416 be a number indicating the exit status code of a process or a
417 string describing the signal that terminated the process (such as
418 returned by `call-process').  COMMAND must be a list giving the
419 command and its arguments.  OUTPUT, if provided, is a string
420 giving the output of command.  ERR-FILE, if provided, is the name
421 of a file containing the error output of command.  OUTPUT and the
422 contents of ERR-FILE will be included in the error message."
423
424   (cond
425    ((eq exit-status 0) t)
426    ((eq exit-status 20)
427     (notmuch-logged-error "notmuch CLI version mismatch
428 Emacs requested an older output format than supported by the notmuch CLI.
429 You may need to restart Emacs or upgrade your notmuch Emacs package."))
430    ((eq exit-status 21)
431     (notmuch-logged-error "notmuch CLI version mismatch
432 Emacs requested a newer output format than supported by the notmuch CLI.
433 You may need to restart Emacs or upgrade your notmuch package."))
434    (t
435     (let* ((err (when err-file
436                   (with-temp-buffer
437                     (insert-file-contents err-file)
438                     (unless (eobp)
439                       (buffer-string)))))
440            (extra
441             (concat
442              "command: " (mapconcat #'shell-quote-argument command " ") "\n"
443              (if (integerp exit-status)
444                  (format "exit status: %s\n" exit-status)
445                (format "exit signal: %s\n" exit-status))
446              (when err
447                (concat "stderr:\n" err))
448              (when output
449                (concat "stdout:\n" output)))))
450         (if err
451             ;; We have an error message straight from the CLI.
452             (notmuch-logged-error
453              (replace-regexp-in-string "[ \n\r\t\f]*\\'" "" err) extra)
454           ;; We only have combined output from the CLI; don't inundate
455           ;; the user with it.  Mimic `process-lines'.
456           (notmuch-logged-error (format "%s exited with status %s"
457                                         (car command) exit-status)
458                                 extra))
459         ;; `notmuch-logged-error' does not return.
460         ))))
461
462 (defun notmuch-call-notmuch-json (&rest args)
463   "Invoke `notmuch-command' with `args' and return the parsed JSON output.
464
465 The returned output will represent objects using property lists
466 and arrays as lists.  If notmuch exits with a non-zero status,
467 this will pop up a buffer containing notmuch's output and signal
468 an error."
469
470   (with-temp-buffer
471     (let ((err-file (make-temp-file "nmerr")))
472       (unwind-protect
473           (let ((status (apply #'call-process
474                                notmuch-command nil (list t err-file) nil args)))
475             (notmuch-check-exit-status status (cons notmuch-command args)
476                                        (buffer-string) err-file)
477             (goto-char (point-min))
478             (let ((json-object-type 'plist)
479                   (json-array-type 'list)
480                   (json-false 'nil))
481               (json-read)))
482         (delete-file err-file)))))
483
484 ;; This variable is used only buffer local, but it needs to be
485 ;; declared globally first to avoid compiler warnings.
486 (defvar notmuch-show-process-crypto nil)
487 (make-variable-buffer-local 'notmuch-show-process-crypto)
488
489 ;; Incremental JSON parsing
490
491 ;; These two variables are internal variables to the parsing
492 ;; routines. They are always used buffer local but need to be declared
493 ;; globally to avoid compiler warnings.
494
495 (defvar notmuch-json-parser nil
496   "Internal incremental JSON parser object: local to the buffer being parsed.")
497
498 (defvar notmuch-json-state nil
499   "State of the internal JSON parser: local to the buffer being parsed.")
500
501 (defun notmuch-json-create-parser (buffer)
502   "Return a streaming JSON parser that consumes input from BUFFER.
503
504 This parser is designed to read streaming JSON whose structure is
505 known to the caller.  Like a typical JSON parsing interface, it
506 provides a function to read a complete JSON value from the input.
507 However, it extends this with an additional function that
508 requires the next value in the input to be a compound value and
509 descends into it, allowing its elements to be read one at a time
510 or further descended into.  Both functions can return 'retry to
511 indicate that not enough input is available.
512
513 The parser always consumes input from BUFFER's point.  Hence, the
514 caller is allowed to delete and data before point and may
515 resynchronize after an error by moving point."
516
517   (list buffer
518         ;; Terminator stack: a stack of characters that indicate the
519         ;; end of the compound values enclosing point
520         '()
521         ;; Next: One of
522         ;; * 'expect-value if the next token must be a value, but a
523         ;;   value has not yet been reached
524         ;; * 'value if point is at the beginning of a value
525         ;; * 'expect-comma if the next token must be a comma
526         'expect-value
527         ;; Allow terminator: non-nil if the next token may be a
528         ;; terminator
529         nil
530         ;; Partial parse position: If state is 'value, a marker for
531         ;; the position of the partial parser or nil if no partial
532         ;; parsing has happened yet
533         nil
534         ;; Partial parse state: If state is 'value, the current
535         ;; `parse-partial-sexp' state
536         nil))
537
538 (defmacro notmuch-json-buffer (jp) `(first ,jp))
539 (defmacro notmuch-json-term-stack (jp) `(second ,jp))
540 (defmacro notmuch-json-next (jp) `(third ,jp))
541 (defmacro notmuch-json-allow-term (jp) `(fourth ,jp))
542 (defmacro notmuch-json-partial-pos (jp) `(fifth ,jp))
543 (defmacro notmuch-json-partial-state (jp) `(sixth ,jp))
544
545 (defvar notmuch-json-syntax-table
546   (let ((table (make-syntax-table)))
547     ;; The standard syntax table is what we need except that "." needs
548     ;; to have word syntax instead of punctuation syntax.
549     (modify-syntax-entry ?. "w" table)
550     table)
551   "Syntax table used for incremental JSON parsing.")
552
553 (defun notmuch-json-scan-to-value (jp)
554   ;; Helper function that consumes separators, terminators, and
555   ;; whitespace from point.  Returns nil if it successfully reached
556   ;; the beginning of a value, 'end if it consumed a terminator, or
557   ;; 'retry if not enough input was available to reach a value.  Upon
558   ;; nil return, (notmuch-json-next jp) is always 'value.
559
560   (if (eq (notmuch-json-next jp) 'value)
561       ;; We're already at a value
562       nil
563     ;; Drive the state toward 'expect-value
564     (skip-chars-forward " \t\r\n")
565     (or (when (eobp) 'retry)
566         ;; Test for the terminator for the current compound
567         (when (and (notmuch-json-allow-term jp)
568                    (eq (char-after) (car (notmuch-json-term-stack jp))))
569           ;; Consume it and expect a comma or terminator next
570           (forward-char)
571           (setf (notmuch-json-term-stack jp) (cdr (notmuch-json-term-stack jp))
572                 (notmuch-json-next jp) 'expect-comma
573                 (notmuch-json-allow-term jp) t)
574           'end)
575         ;; Test for a separator
576         (when (eq (notmuch-json-next jp) 'expect-comma)
577           (when (/= (char-after) ?,)
578             (signal 'json-readtable-error (list "expected ','")))
579           ;; Consume it, switch to 'expect-value, and disallow a
580           ;; terminator
581           (forward-char)
582           (skip-chars-forward " \t\r\n")
583           (setf (notmuch-json-next jp) 'expect-value
584                 (notmuch-json-allow-term jp) nil)
585           ;; We moved point, so test for eobp again and fall through
586           ;; to the next test if there's more input
587           (when (eobp) 'retry))
588         ;; Next must be 'expect-value and we know this isn't
589         ;; whitespace, EOB, or a terminator, so point must be on a
590         ;; value
591         (progn
592           (assert (eq (notmuch-json-next jp) 'expect-value))
593           (setf (notmuch-json-next jp) 'value)
594           nil))))
595
596 (defun notmuch-json-begin-compound (jp)
597   "Parse the beginning of a compound value and traverse inside it.
598
599 Returns 'retry if there is insufficient input to parse the
600 beginning of the compound.  If this is able to parse the
601 beginning of a compound, it moves point past the token that opens
602 the compound and returns t.  Later calls to `notmuch-json-read'
603 will return the compound's elements.
604
605 Entering JSON objects is currently unimplemented."
606
607   (with-current-buffer (notmuch-json-buffer jp)
608     ;; Disallow terminators
609     (setf (notmuch-json-allow-term jp) nil)
610     ;; Save "next" so we can restore it if there's a syntax error
611     (let ((saved-next (notmuch-json-next jp)))
612       (or (notmuch-json-scan-to-value jp)
613           (if (/= (char-after) ?\[)
614               (progn
615                 (setf (notmuch-json-next jp) saved-next)
616                 (signal 'json-readtable-error (list "expected '['")))
617             (forward-char)
618             (push ?\] (notmuch-json-term-stack jp))
619             ;; Expect a value or terminator next
620             (setf (notmuch-json-next jp) 'expect-value
621                   (notmuch-json-allow-term jp) t)
622             t)))))
623
624 (defun notmuch-json-read (jp)
625   "Parse the value at point in JP's buffer.
626
627 Returns 'retry if there is insufficient input to parse a complete
628 JSON value (though it may still move point over separators or
629 whitespace).  If the parser is currently inside a compound value
630 and the next token ends the list or object, this moves point just
631 past the terminator and returns 'end.  Otherwise, this moves
632 point to just past the end of the value and returns the value."
633
634   (with-current-buffer (notmuch-json-buffer jp)
635     (or
636      ;; Get to a value state
637      (notmuch-json-scan-to-value jp)
638
639      ;; Can we parse a complete value?
640      (let ((complete
641             (if (looking-at "[-+0-9tfn]")
642                 ;; This is a number or a keyword, so the partial
643                 ;; parser isn't going to help us because a truncated
644                 ;; number or keyword looks like a complete symbol to
645                 ;; it.  Look for something that clearly ends it.
646                 (save-excursion
647                   (skip-chars-forward "^]},: \t\r\n")
648                   (not (eobp)))
649
650               ;; We're looking at a string, object, or array, which we
651               ;; can partial parse.  If we just reached the value, set
652               ;; up the partial parser.
653               (when (null (notmuch-json-partial-state jp))
654                 (setf (notmuch-json-partial-pos jp) (point-marker)))
655
656               ;; Extend the partial parse until we either reach EOB or
657               ;; get the whole value
658               (save-excursion
659                 (let ((pstate
660                        (with-syntax-table notmuch-json-syntax-table
661                          (parse-partial-sexp
662                           (notmuch-json-partial-pos jp) (point-max) 0 nil
663                           (notmuch-json-partial-state jp)))))
664                   ;; A complete value is available if we've reached
665                   ;; depth 0 or less and encountered a complete
666                   ;; subexpression.
667                   (if (and (<= (first pstate) 0) (third pstate))
668                       t
669                     ;; Not complete.  Update the partial parser state
670                     (setf (notmuch-json-partial-pos jp) (point-marker)
671                           (notmuch-json-partial-state jp) pstate)
672                     nil))))))
673
674        (if (not complete)
675            'retry
676          ;; We have a value.  Reset the partial parse state and expect
677          ;; a comma or terminator after the value.
678          (setf (notmuch-json-next jp) 'expect-comma
679                (notmuch-json-allow-term jp) t
680                (notmuch-json-partial-pos jp) nil
681                (notmuch-json-partial-state jp) nil)
682          ;; Parse the value
683          (let ((json-object-type 'plist)
684                (json-array-type 'list)
685                (json-false nil))
686            (json-read)))))))
687
688 (defun notmuch-json-eof (jp)
689   "Signal a json-error if there is more data in JP's buffer.
690
691 Moves point to the beginning of any trailing data or to the end
692 of the buffer if there is only trailing whitespace."
693
694   (with-current-buffer (notmuch-json-buffer jp)
695     (skip-chars-forward " \t\r\n")
696     (unless (eobp)
697       (signal 'json-error (list "Trailing garbage following JSON data")))))
698
699 (defun notmuch-json-parse-partial-list (result-function error-function results-buf)
700   "Parse a partial JSON list from current buffer.
701
702 This function consumes a JSON list from the current buffer,
703 applying RESULT-FUNCTION in buffer RESULT-BUFFER to each complete
704 value in the list.  It operates incrementally and should be
705 called whenever the buffer has been extended with additional
706 data.
707
708 If there is a syntax error, this will attempt to resynchronize
709 with the input and will apply ERROR-FUNCTION in buffer
710 RESULT-BUFFER to any input that was skipped.
711
712 It sets up all the needed internal variables: the caller just
713 needs to call it with point in the same place that the parser
714 left it."
715   (let (done)
716     (unless (local-variable-p 'notmuch-json-parser)
717       (set (make-local-variable 'notmuch-json-parser)
718            (notmuch-json-create-parser (current-buffer)))
719       (set (make-local-variable 'notmuch-json-state) 'begin))
720     (while (not done)
721       (condition-case nil
722           (case notmuch-json-state
723                 ((begin)
724                  ;; Enter the results list
725                  (if (eq (notmuch-json-begin-compound
726                           notmuch-json-parser) 'retry)
727                      (setq done t)
728                    (setq notmuch-json-state 'result)))
729                 ((result)
730                  ;; Parse a result
731                  (let ((result (notmuch-json-read notmuch-json-parser)))
732                    (case result
733                          ((retry) (setq done t))
734                          ((end) (setq notmuch-json-state 'end))
735                          (otherwise (with-current-buffer results-buf
736                                       (funcall result-function result))))))
737                 ((end)
738                  ;; Any trailing data is unexpected
739                  (notmuch-json-eof notmuch-json-parser)
740                  (setq done t)))
741         (json-error
742          ;; Do our best to resynchronize and ensure forward
743          ;; progress
744          (let ((bad (buffer-substring (line-beginning-position)
745                                       (line-end-position))))
746            (forward-line)
747            (with-current-buffer results-buf
748              (funcall error-function "%s" bad))))))
749     ;; Clear out what we've parsed
750     (delete-region (point-min) (point))))
751
752
753
754
755 (provide 'notmuch-lib)
756
757 ;; Local Variables:
758 ;; byte-compile-warnings: (not cl-functions)
759 ;; End: