]> code.delx.au - gnu-emacs-elpa/blob - context-coloring.el
Fix bugs where parsing left point after a scope.
[gnu-emacs-elpa] / context-coloring.el
1 ;;; context-coloring.el --- Highlight by scope -*- lexical-binding: t; -*-
2
3 ;; Copyright (C) 2014-2015 Free Software Foundation, Inc.
4
5 ;; Author: Jackson Ray Hamilton <jackson@jacksonrayhamilton.com>
6 ;; Version: 6.4.1
7 ;; Keywords: convenience faces tools
8 ;; Package-Requires: ((emacs "24") (js2-mode "20150126"))
9 ;; URL: https://github.com/jacksonrayhamilton/context-coloring
10
11 ;; This file is part of GNU Emacs.
12
13 ;; This program is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation, either version 3 of the License, or
16 ;; (at your option) any later version.
17
18 ;; This program is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
25
26 ;;; Commentary:
27
28 ;; Highlights code by scope. Top-level scopes are one color, second-level
29 ;; scopes are another color, and so on. Variables retain the color of the scope
30 ;; in which they are defined. A variable defined in an outer scope referenced
31 ;; by an inner scope is colored the same as the outer scope.
32
33 ;; By default, comments and strings are still highlighted syntactically.
34
35 ;;; Code:
36
37 (require 'js2-mode)
38
39
40 ;;; Utilities
41
42 (defun context-coloring-join (strings delimiter)
43 "Join a list of STRINGS with the string DELIMITER."
44 (mapconcat #'identity strings delimiter))
45
46 (defsubst context-coloring-trim-right (string)
47 "Remove leading whitespace from STRING."
48 (if (string-match "[ \t\n\r]+\\'" string)
49 (replace-match "" t t string)
50 string))
51
52 (defsubst context-coloring-trim-left (string)
53 "Remove trailing whitespace from STRING."
54 (if (string-match "\\`[ \t\n\r]+" string)
55 (replace-match "" t t string)
56 string))
57
58 (defsubst context-coloring-trim (string)
59 "Remove leading and trailing whitespace from STRING."
60 (context-coloring-trim-left (context-coloring-trim-right string)))
61
62
63 ;;; Faces
64
65 (defun context-coloring-defface (level tty light dark)
66 "Define a face for LEVEL with colors for TTY, LIGHT and DARK
67 backgrounds."
68 (let ((face (intern (format "context-coloring-level-%s-face" level)))
69 (doc (format "Context coloring face, level %s." level)))
70 (custom-declare-face
71 face
72 `((((type tty)) (:foreground ,tty))
73 (((background light)) (:foreground ,light))
74 (((background dark)) (:foreground ,dark)))
75 doc
76 :group 'context-coloring)))
77
78 (defun context-coloring-defface-neutral (level)
79 "Define a face for LEVEL with the default neutral colors."
80 (context-coloring-defface level nil "#3f3f3f" "#cdcdcd"))
81
82 (context-coloring-defface 0 nil "#000000" "#ffffff")
83 (context-coloring-defface 1 "yellow" "#008b8b" "#00ffff")
84 (context-coloring-defface 2 "green" "#0000ff" "#87cefa")
85 (context-coloring-defface 3 "cyan" "#483d8b" "#b0c4de")
86 (context-coloring-defface 4 "blue" "#a020f0" "#eedd82")
87 (context-coloring-defface 5 "magenta" "#a0522d" "#98fb98")
88 (context-coloring-defface 6 "red" "#228b22" "#7fffd4")
89 (context-coloring-defface-neutral 7)
90
91 (defvar context-coloring-maximum-face nil
92 "Index of the highest face available for coloring.")
93
94 (defvar context-coloring-original-maximum-face nil
95 "Fallback value for `context-coloring-maximum-face' when all
96 themes have been disabled.")
97
98 (setq context-coloring-maximum-face 7)
99
100 (setq context-coloring-original-maximum-face
101 context-coloring-maximum-face)
102
103 ;; Theme authors can have up to 26 levels: 1 (0th) for globals, 24 (1st-24th)
104 ;; for nested levels, and 1 (25th) for infinity.
105 (dotimes (number 18)
106 (context-coloring-defface-neutral (+ number context-coloring-maximum-face 1)))
107
108
109 ;;; Face functions
110
111 (defsubst context-coloring-level-face (level)
112 "Return the symbol for a face with LEVEL."
113 ;; `concat' is faster than `format' here.
114 (intern-soft
115 (concat "context-coloring-level-" (number-to-string level) "-face")))
116
117 (defsubst context-coloring-bounded-level-face (level)
118 "Return the symbol for a face with LEVEL, bounded by
119 `context-coloring-maximum-face'."
120 (context-coloring-level-face (min level context-coloring-maximum-face)))
121
122
123 ;;; Change detection
124
125 (defvar-local context-coloring-changed-p nil
126 "Indication that the buffer has changed recently, which implies
127 that it should be colored again by
128 `context-coloring-maybe-colorize-idle-timer' if that timer is
129 being used.")
130
131 (defvar-local context-coloring-changed-start nil
132 "Beginning of last text that changed.")
133
134 (defvar-local context-coloring-changed-end nil
135 "End of last text that changed.")
136
137 (defvar-local context-coloring-changed-length nil
138 "Length of last text that changed.")
139
140 (defun context-coloring-change-function (start end length)
141 "Register a change so that a buffer can be colorized soon.
142
143 START, END and LENGTH are recorded for later use."
144 ;; Tokenization is obsolete if there was a change.
145 (context-coloring-cancel-scopification)
146 (setq context-coloring-changed-start start)
147 (setq context-coloring-changed-end end)
148 (setq context-coloring-changed-length length)
149 (setq context-coloring-changed-p t))
150
151 (defun context-coloring-maybe-colorize-with-buffer (buffer)
152 "Color BUFFER and if it has changed."
153 (when (and (eq buffer (current-buffer))
154 context-coloring-changed-p)
155 (context-coloring-colorize-with-buffer buffer)
156 (setq context-coloring-changed-p nil)
157 (setq context-coloring-changed-start nil)
158 (setq context-coloring-changed-end nil)
159 (setq context-coloring-changed-length nil)))
160
161 (defvar-local context-coloring-maybe-colorize-idle-timer nil
162 "The currently-running idle timer for conditional coloring.")
163
164 (defvar-local context-coloring-colorize-idle-timer nil
165 "The currently-running idle timer for unconditional coloring.")
166
167 (defcustom context-coloring-default-delay 0.25
168 "Default (sometimes overridden) delay between a buffer update
169 and colorization.
170
171 Increase this if your machine is high-performing. Decrease it if
172 it ain't.
173
174 Supported modes: `js-mode', `js3-mode'"
175 :group 'context-coloring)
176
177 (make-obsolete-variable
178 'context-coloring-delay
179 'context-coloring-default-delay
180 "6.4.0")
181
182 (defun context-coloring-cancel-timer (timer)
183 "Cancel TIMER."
184 (when timer
185 (cancel-timer timer)))
186
187 (defun context-coloring-schedule-coloring (time)
188 "Schedule coloring to occur once after Emacs is idle for TIME."
189 (context-coloring-cancel-timer context-coloring-colorize-idle-timer)
190 (setq context-coloring-colorize-idle-timer
191 (run-with-idle-timer
192 time
193 nil
194 #'context-coloring-colorize-with-buffer
195 (current-buffer))))
196
197 (defun context-coloring-setup-idle-change-detection ()
198 "Setup idle change detection."
199 (let ((dispatch (context-coloring-get-dispatch-for-mode major-mode)))
200 (add-hook
201 'after-change-functions #'context-coloring-change-function nil t)
202 (add-hook
203 'kill-buffer-hook #'context-coloring-teardown-idle-change-detection nil t)
204 (setq context-coloring-maybe-colorize-idle-timer
205 (run-with-idle-timer
206 (or (plist-get dispatch :delay) context-coloring-default-delay)
207 t
208 #'context-coloring-maybe-colorize-with-buffer
209 (current-buffer)))))
210
211 (defun context-coloring-teardown-idle-change-detection ()
212 "Teardown idle change detection."
213 (context-coloring-cancel-scopification)
214 (dolist (timer (list context-coloring-colorize-idle-timer
215 context-coloring-maybe-colorize-idle-timer))
216 (context-coloring-cancel-timer timer))
217 (remove-hook
218 'kill-buffer-hook #'context-coloring-teardown-idle-change-detection t)
219 (remove-hook
220 'after-change-functions #'context-coloring-change-function t))
221
222
223 ;;; Colorization utilities
224
225 (defsubst context-coloring-colorize-region (start end level)
226 "Color characters from the 1-indexed START point (inclusive) to
227 the END point (exclusive) with the face corresponding to LEVEL."
228 (add-text-properties
229 start
230 end
231 `(face ,(context-coloring-bounded-level-face level))))
232
233 (make-obsolete-variable
234 'context-coloring-comments-and-strings
235 "use `context-coloring-syntactic-comments' and
236 `context-coloring-syntactic-strings' instead."
237 "6.1.0")
238
239 (defcustom context-coloring-syntactic-comments t
240 "If non-nil, also color comments using `font-lock'."
241 :group 'context-coloring)
242
243 (defcustom context-coloring-syntactic-strings t
244 "If non-nil, also color strings using `font-lock'."
245 :group 'context-coloring)
246
247 (defun context-coloring-font-lock-syntactic-comment-function (state)
248 "Tell `font-lock' to color a comment but not a string according
249 to STATE."
250 (if (nth 3 state) nil font-lock-comment-face))
251
252 (defun context-coloring-font-lock-syntactic-string-function (state)
253 "Tell `font-lock' to color a string but not a comment according
254 to STATE."
255 (if (nth 3 state) font-lock-string-face nil))
256
257 (defsubst context-coloring-colorize-comments-and-strings (&optional min max)
258 "Color the current buffer's comments or strings if
259 `context-coloring-syntactic-comments' or
260 `context-coloring-syntactic-strings' are non-nil. MIN defaults
261 to the beginning of the buffer and MAX defaults to the end."
262 (when (or context-coloring-syntactic-comments
263 context-coloring-syntactic-strings)
264 (let ((min (or min (point-min)))
265 (max (or max (point-max)))
266 (font-lock-syntactic-face-function
267 (cond
268 ((and context-coloring-syntactic-comments
269 (not context-coloring-syntactic-strings))
270 #'context-coloring-font-lock-syntactic-comment-function)
271 ((and context-coloring-syntactic-strings
272 (not context-coloring-syntactic-comments))
273 #'context-coloring-font-lock-syntactic-string-function)
274 (t
275 font-lock-syntactic-face-function))))
276 (save-excursion
277 (font-lock-fontify-syntactically-region min max)
278 ;; TODO: Make configurable at the dispatch level.
279 (when (eq major-mode 'emacs-lisp-mode)
280 (font-lock-fontify-keywords-region min max))))))
281
282
283 ;;; js2-mode colorization
284
285 (defvar-local context-coloring-js2-scope-level-hash-table nil
286 "Associate `js2-scope' structures and with their scope
287 levels.")
288
289 (defcustom context-coloring-js-block-scopes nil
290 "If non-nil, also color block scopes in the scope hierarchy in JavaScript.
291
292 The block-scoped `let' and `const' are introduced in ES6. Enable
293 this for ES6 code; disable it elsewhere.
294
295 Supported modes: `js2-mode'"
296 :group 'context-coloring)
297
298 (defsubst context-coloring-js2-scope-level (scope)
299 "Return the level of SCOPE."
300 (cond ((gethash scope context-coloring-js2-scope-level-hash-table))
301 (t
302 (let ((level 0)
303 (current-scope scope)
304 enclosing-scope)
305 (while (and current-scope
306 (js2-node-parent current-scope)
307 (setq enclosing-scope
308 (js2-node-get-enclosing-scope current-scope)))
309 (when (or context-coloring-js-block-scopes
310 (let ((type (js2-scope-type current-scope)))
311 (or (= type js2-SCRIPT)
312 (= type js2-FUNCTION)
313 (= type js2-CATCH))))
314 (setq level (+ level 1)))
315 (setq current-scope enclosing-scope))
316 (puthash scope level context-coloring-js2-scope-level-hash-table)))))
317
318 (defsubst context-coloring-js2-local-name-node-p (node)
319 "Determine if NODE is a `js2-name-node' representing a local
320 variable."
321 (and (js2-name-node-p node)
322 (let ((parent (js2-node-parent node)))
323 (not (or (and (js2-object-prop-node-p parent)
324 (eq node (js2-object-prop-node-left parent)))
325 (and (js2-prop-get-node-p parent)
326 ;; For nested property lookup, the node on the left is a
327 ;; `js2-prop-get-node', so this always works.
328 (eq node (js2-prop-get-node-right parent))))))))
329
330 (defvar-local context-coloring-point-max nil
331 "Cached value of `point-max'.")
332
333 (defsubst context-coloring-js2-colorize-node (node level)
334 "Color NODE with the color for LEVEL."
335 (let ((start (js2-node-abs-pos node)))
336 (context-coloring-colorize-region
337 start
338 (min
339 ;; End
340 (+ start (js2-node-len node))
341 ;; Somes nodes (like the ast when there is an unterminated multiline
342 ;; comment) will stretch to the value of `point-max'.
343 context-coloring-point-max)
344 level)))
345
346 (defun context-coloring-js2-colorize ()
347 "Color the current buffer using the abstract syntax tree
348 generated by `js2-mode'."
349 ;; Reset the hash table; the old one could be obsolete.
350 (setq context-coloring-js2-scope-level-hash-table (make-hash-table :test #'eq))
351 (setq context-coloring-point-max (point-max))
352 (with-silent-modifications
353 (js2-visit-ast
354 js2-mode-ast
355 (lambda (node end-p)
356 (when (null end-p)
357 (cond
358 ((js2-scope-p node)
359 (context-coloring-js2-colorize-node
360 node
361 (context-coloring-js2-scope-level node)))
362 ((context-coloring-js2-local-name-node-p node)
363 (let* ((enclosing-scope (js2-node-get-enclosing-scope node))
364 (defining-scope (js2-get-defining-scope
365 enclosing-scope
366 (js2-name-node-name node))))
367 ;; The tree seems to be walked lexically, so an entire scope will
368 ;; be colored, including its name nodes, before they are reached.
369 ;; Coloring the nodes defined in that scope would be redundant, so
370 ;; don't do it.
371 (when (not (eq defining-scope enclosing-scope))
372 (context-coloring-js2-colorize-node
373 node
374 (context-coloring-js2-scope-level defining-scope))))))
375 ;; The `t' indicates to search children.
376 t)))
377 (context-coloring-colorize-comments-and-strings)))
378
379
380 ;;; Emacs Lisp colorization
381
382 (defsubst context-coloring-forward-sws ()
383 "Move forward through whitespace and comments."
384 (while (forward-comment 1)))
385
386 (defsubst context-coloring-elisp-forward-sws ()
387 "Move forward through whitespace and comments, colorizing
388 comments along the way."
389 (let ((start (point)))
390 (context-coloring-forward-sws)
391 (context-coloring-colorize-comments-and-strings start (point))))
392
393 (defsubst context-coloring-elisp-forward-sexp ()
394 "Like `forward-sexp', but colorize comments and strings along
395 the way."
396 (let ((start (point)))
397 (forward-sexp)
398 (context-coloring-elisp-colorize-comments-and-strings-in-region
399 start (point))))
400
401 (defsubst context-coloring-get-syntax-code ()
402 "Get the syntax code at point."
403 (syntax-class
404 ;; Faster version of `syntax-after':
405 (aref (syntax-table) (char-after (point)))))
406
407 (defsubst context-coloring-exact-regexp (word)
408 "Create a regexp matching exactly WORD."
409 (concat "\\`" (regexp-quote word) "\\'"))
410
411 (defsubst context-coloring-exact-or-regexp (words)
412 "Create a regexp matching any exact word in WORDS."
413 (context-coloring-join
414 (mapcar #'context-coloring-exact-regexp words) "\\|"))
415
416 (defconst context-coloring-elisp-ignored-word-regexp
417 (context-coloring-join (list "\\`[-+]?[0-9]"
418 "\\`[&:].+"
419 (context-coloring-exact-or-regexp
420 '("t" "nil" "." "?")))
421 "\\|")
422 "Match words that might be considered symbols but can't be
423 bound as variables.")
424
425 (defconst context-coloring-WORD-CODE 2)
426 (defconst context-coloring-SYMBOL-CODE 3)
427 (defconst context-coloring-OPEN-PARENTHESIS-CODE 4)
428 (defconst context-coloring-CLOSE-PARENTHESIS-CODE 5)
429 (defconst context-coloring-EXPRESSION-PREFIX-CODE 6)
430 (defconst context-coloring-STRING-QUOTE-CODE 7)
431 (defconst context-coloring-ESCAPE-CODE 9)
432 (defconst context-coloring-COMMENT-START-CODE 11)
433 (defconst context-coloring-COMMENT-END-CODE 12)
434
435 (defconst context-coloring-OCTOTHORPE-CHAR (string-to-char "#"))
436 (defconst context-coloring-APOSTROPHE-CHAR (string-to-char "'"))
437 (defconst context-coloring-OPEN-PARENTHESIS-CHAR (string-to-char "("))
438 (defconst context-coloring-COMMA-CHAR (string-to-char ","))
439 (defconst context-coloring-AT-CHAR (string-to-char "@"))
440 (defconst context-coloring-BACKTICK-CHAR (string-to-char "`"))
441
442 (defsubst context-coloring-elisp-identifier-p (syntax-code)
443 "Check if SYNTAX-CODE is an elisp identifier constituent."
444 (or (= syntax-code context-coloring-WORD-CODE)
445 (= syntax-code context-coloring-SYMBOL-CODE)))
446
447 (defvar context-coloring-parse-interruptable-p t
448 "Set this to nil to force parse to continue until finished.")
449
450 (defconst context-coloring-elisp-sexps-per-pause 1000
451 "Pause after this many iterations to check for user input.
452 If user input is pending, stop the parse. This makes for a
453 smoother user experience for large files.")
454
455 (defvar context-coloring-elisp-sexp-count 0
456 "Current number of sexps leading up to the next pause.")
457
458 (defsubst context-coloring-elisp-increment-sexp-count ()
459 "Maybe check if the current parse should be interrupted as a
460 result of pending user input."
461 (setq context-coloring-elisp-sexp-count
462 (1+ context-coloring-elisp-sexp-count))
463 (when (and (zerop (% context-coloring-elisp-sexp-count
464 context-coloring-elisp-sexps-per-pause))
465 context-coloring-parse-interruptable-p
466 (input-pending-p))
467 (throw 'interrupted t)))
468
469 (defvar context-coloring-elisp-scope-stack '()
470 "List of scopes in the current parse.")
471
472 (defsubst context-coloring-elisp-make-scope (level)
473 "Make a scope object for LEVEL."
474 (list
475 :level level
476 :variables '()))
477
478 (defsubst context-coloring-elisp-scope-get-level (scope)
479 "Get the level of SCOPE object."
480 (plist-get scope :level))
481
482 (defsubst context-coloring-elisp-scope-add-variable (scope variable)
483 "Add to SCOPE a VARIABLE."
484 (plist-put scope :variables (cons variable (plist-get scope :variables))))
485
486 (defsubst context-coloring-elisp-scope-has-variable (scope variable)
487 "Check if SCOPE has VARIABLE."
488 (member variable (plist-get scope :variables)))
489
490 (defsubst context-coloring-elisp-get-variable-level (variable)
491 "Search up the scope chain for the first instance of VARIABLE
492 and return its level, or 0 (global) if it isn't found."
493 (let* ((scope-stack context-coloring-elisp-scope-stack)
494 scope
495 level)
496 (while (and scope-stack (not level))
497 (setq scope (car scope-stack))
498 (cond
499 ((context-coloring-elisp-scope-has-variable scope variable)
500 (setq level (context-coloring-elisp-scope-get-level scope)))
501 (t
502 (setq scope-stack (cdr scope-stack)))))
503 ;; Assume a global variable.
504 (or level 0)))
505
506 (defsubst context-coloring-elisp-get-current-scope-level ()
507 "Get the nesting level of the current scope."
508 (cond
509 ((car context-coloring-elisp-scope-stack)
510 (context-coloring-elisp-scope-get-level (car context-coloring-elisp-scope-stack)))
511 (t
512 0)))
513
514 (defsubst context-coloring-elisp-push-scope ()
515 "Add a new scope to the bottom of the scope chain."
516 (push (context-coloring-elisp-make-scope
517 (1+ (context-coloring-elisp-get-current-scope-level)))
518 context-coloring-elisp-scope-stack))
519
520 (defsubst context-coloring-elisp-pop-scope ()
521 "Remove the scope on the bottom of the scope chain."
522 (pop context-coloring-elisp-scope-stack))
523
524 (defsubst context-coloring-elisp-add-variable (variable)
525 "Add VARIABLE to the current scope."
526 (context-coloring-elisp-scope-add-variable
527 (car context-coloring-elisp-scope-stack)
528 variable))
529
530 (defsubst context-coloring-elisp-parse-bindable (callback)
531 "Parse the symbol at point, and if the symbol can be bound,
532 invoke CALLBACK with it."
533 (let* ((arg-string (buffer-substring-no-properties
534 (point)
535 (progn (context-coloring-elisp-forward-sexp)
536 (point)))))
537 (when (not (string-match-p
538 context-coloring-elisp-ignored-word-regexp
539 arg-string))
540 (funcall callback arg-string))))
541
542 (defun context-coloring-elisp-parse-let-varlist (type)
543 "Parse the list of variable initializers at point. If TYPE is
544 `let', all the variables are bound after all their initializers
545 are parsed; if TYPE is `let*', each variable is bound immediately
546 after its own initializer is parsed."
547 (let ((varlist '())
548 syntax-code)
549 ;; Enter.
550 (forward-char)
551 (while (/= (setq syntax-code (context-coloring-get-syntax-code))
552 context-coloring-CLOSE-PARENTHESIS-CODE)
553 (cond
554 ((= syntax-code context-coloring-OPEN-PARENTHESIS-CODE)
555 (forward-char)
556 (context-coloring-elisp-forward-sws)
557 (setq syntax-code (context-coloring-get-syntax-code))
558 (when (context-coloring-elisp-identifier-p syntax-code)
559 (context-coloring-elisp-parse-bindable
560 (lambda (var)
561 (push var varlist)))
562 (context-coloring-elisp-forward-sws)
563 (setq syntax-code (context-coloring-get-syntax-code))
564 (when (/= syntax-code context-coloring-CLOSE-PARENTHESIS-CODE)
565 (context-coloring-elisp-colorize-sexp)))
566 (context-coloring-elisp-forward-sws)
567 ;; Skip past the closing parenthesis.
568 (forward-char))
569 ((context-coloring-elisp-identifier-p syntax-code)
570 (context-coloring-elisp-parse-bindable
571 (lambda (var)
572 (push var varlist))))
573 (t
574 ;; Ignore artifacts.
575 (context-coloring-elisp-forward-sexp)))
576 (when (eq type 'let*)
577 (context-coloring-elisp-add-variable (pop varlist)))
578 (context-coloring-elisp-forward-sws))
579 (when (eq type 'let)
580 (while varlist
581 (context-coloring-elisp-add-variable (pop varlist))))
582 ;; Exit.
583 (forward-char)))
584
585 (defun context-coloring-elisp-parse-arglist ()
586 "Parse the list of function arguments at point."
587 (let (syntax-code)
588 ;; Enter.
589 (forward-char)
590 (while (/= (setq syntax-code (context-coloring-get-syntax-code))
591 context-coloring-CLOSE-PARENTHESIS-CODE)
592 (cond
593 ((context-coloring-elisp-identifier-p syntax-code)
594 (context-coloring-elisp-parse-bindable
595 (lambda (arg)
596 (context-coloring-elisp-add-variable arg))))
597 (t
598 ;; Ignore artifacts.
599 (context-coloring-elisp-forward-sexp)))
600 (context-coloring-elisp-forward-sws))
601 ;; Exit.
602 (forward-char)))
603
604 (defun context-coloring-elisp-skip-callee-name ()
605 "Skip past the opening parenthesis and name of a function."
606 ;; Enter.
607 (forward-char)
608 (context-coloring-elisp-forward-sws)
609 ;; Skip past the function name.
610 (forward-sexp)
611 (context-coloring-elisp-forward-sws))
612
613 (defun context-coloring-elisp-colorize-scope (callback)
614 "Color the whole scope at point with its one color. Handle a
615 header in CALLBACK."
616 (let ((start (point))
617 (end (progn (forward-sexp)
618 (point))))
619 (context-coloring-elisp-push-scope)
620 ;; Splash the whole thing in one color.
621 (context-coloring-colorize-region
622 start
623 end
624 (context-coloring-elisp-get-current-scope-level))
625 ;; Even if the parse is interrupted, this region should still be colored
626 ;; syntactically.
627 (context-coloring-elisp-colorize-comments-and-strings-in-region
628 start
629 end)
630 (goto-char start)
631 (context-coloring-elisp-skip-callee-name)
632 (funcall callback)
633 (context-coloring-elisp-colorize-region (point) (1- end))
634 ;; Exit.
635 (forward-char)
636 (context-coloring-elisp-pop-scope)))
637
638 (defun context-coloring-elisp-parse-header (callback)
639 "Parse a function header at point with CALLBACK."
640 (when (= (context-coloring-get-syntax-code) context-coloring-OPEN-PARENTHESIS-CODE)
641 (funcall callback)))
642
643 (defun context-coloring-elisp-colorize-defun-like (callback)
644 "Color the defun-like function at point, parsing the header
645 with CALLBACK."
646 (context-coloring-elisp-colorize-scope
647 (lambda ()
648 (when (context-coloring-elisp-identifier-p (context-coloring-get-syntax-code))
649 ;; Color the defun's name with the top-level color.
650 (context-coloring-colorize-region
651 (point)
652 (progn (forward-sexp)
653 (point))
654 0)
655 (context-coloring-elisp-forward-sws)
656 (context-coloring-elisp-parse-header callback)))))
657
658 (defun context-coloring-elisp-colorize-defun ()
659 "Color the `defun' at point."
660 (context-coloring-elisp-colorize-defun-like
661 'context-coloring-elisp-parse-arglist))
662
663 (defun context-coloring-elisp-colorize-defadvice ()
664 "Color the `defadvice' at point."
665 (context-coloring-elisp-colorize-defun-like
666 (lambda ()
667 (let (syntax-code)
668 ;; Enter.
669 (forward-char)
670 (while (/= (setq syntax-code (context-coloring-get-syntax-code))
671 context-coloring-CLOSE-PARENTHESIS-CODE)
672 (cond
673 ((= syntax-code context-coloring-OPEN-PARENTHESIS-CODE)
674 (context-coloring-elisp-parse-arglist))
675 (t
676 ;; Ignore artifacts.
677 (context-coloring-elisp-forward-sexp)))
678 (context-coloring-elisp-forward-sws))))))
679
680 (defun context-coloring-elisp-colorize-lambda-like (callback)
681 "Color the lambda-like function at point, parsing the header
682 with CALLBACK."
683 (context-coloring-elisp-colorize-scope
684 (lambda ()
685 (context-coloring-elisp-parse-header callback))))
686
687 (defun context-coloring-elisp-colorize-lambda ()
688 "Color the `lambda' at point."
689 (context-coloring-elisp-colorize-lambda-like
690 'context-coloring-elisp-parse-arglist))
691
692 (defun context-coloring-elisp-colorize-let ()
693 "Color the `let' at point."
694 (context-coloring-elisp-colorize-lambda-like
695 (lambda ()
696 (context-coloring-elisp-parse-let-varlist 'let))))
697
698 (defun context-coloring-elisp-colorize-let* ()
699 "Color the `let*' at point."
700 (context-coloring-elisp-colorize-lambda-like
701 (lambda ()
702 (context-coloring-elisp-parse-let-varlist 'let*))))
703
704 (defun context-coloring-elisp-colorize-cond ()
705 "Color the `cond' at point."
706 (let (syntax-code)
707 (context-coloring-elisp-skip-callee-name)
708 (while (/= (setq syntax-code (context-coloring-get-syntax-code))
709 context-coloring-CLOSE-PARENTHESIS-CODE)
710 (cond
711 ((= syntax-code context-coloring-OPEN-PARENTHESIS-CODE)
712 ;; Colorize inside the parens.
713 (let ((start (point)))
714 (forward-sexp)
715 (context-coloring-elisp-colorize-region
716 (1+ start) (1- (point)))
717 ;; Exit.
718 (forward-char)))
719 (t
720 ;; Ignore artifacts.
721 (context-coloring-elisp-forward-sexp)))
722 (context-coloring-elisp-forward-sws))
723 ;; Exit.
724 (forward-char)))
725
726 (defun context-coloring-elisp-colorize-condition-case ()
727 "Color the `condition-case' at point."
728 (let (syntax-code
729 variable
730 case-pos
731 case-end)
732 (context-coloring-elisp-colorize-scope
733 (lambda ()
734 (setq syntax-code (context-coloring-get-syntax-code))
735 ;; Gracefully ignore missing variables.
736 (when (context-coloring-elisp-identifier-p syntax-code)
737 (context-coloring-elisp-parse-bindable
738 (lambda (parsed-variable)
739 (setq variable parsed-variable)))
740 (context-coloring-elisp-forward-sws))
741 (context-coloring-elisp-colorize-sexp)
742 (context-coloring-elisp-forward-sws)
743 ;; Parse the handlers with the error variable in scope.
744 (when variable
745 (context-coloring-elisp-add-variable variable))
746 (while (/= (setq syntax-code (context-coloring-get-syntax-code))
747 context-coloring-CLOSE-PARENTHESIS-CODE)
748 (cond
749 ((= syntax-code context-coloring-OPEN-PARENTHESIS-CODE)
750 (setq case-pos (point))
751 (context-coloring-elisp-forward-sexp)
752 (setq case-end (point))
753 (goto-char case-pos)
754 ;; Enter.
755 (forward-char)
756 (context-coloring-elisp-forward-sws)
757 (setq syntax-code (context-coloring-get-syntax-code))
758 (when (/= syntax-code context-coloring-CLOSE-PARENTHESIS-CODE)
759 ;; Skip the condition name(s).
760 (context-coloring-elisp-forward-sexp)
761 ;; Color the remaining portion of the handler.
762 (context-coloring-elisp-colorize-region
763 (point)
764 (1- case-end)))
765 ;; Exit.
766 (forward-char))
767 (t
768 ;; Ignore artifacts.
769 (context-coloring-elisp-forward-sexp)))
770 (context-coloring-elisp-forward-sws))))))
771
772 (defun context-coloring-elisp-colorize-dolist ()
773 "Color the `dolist' at point."
774 (let (syntax-code
775 (index 0))
776 (context-coloring-elisp-colorize-scope
777 (lambda ()
778 (setq syntax-code (context-coloring-get-syntax-code))
779 (when (= syntax-code context-coloring-OPEN-PARENTHESIS-CODE)
780 (forward-char)
781 (context-coloring-elisp-forward-sws)
782 (while (/= (setq syntax-code (context-coloring-get-syntax-code))
783 context-coloring-CLOSE-PARENTHESIS-CODE)
784 (cond
785 ((and
786 (or (= index 0) (= index 2))
787 (context-coloring-elisp-identifier-p syntax-code))
788 ;; Add the first or third name to the scope.
789 (context-coloring-elisp-parse-bindable
790 (lambda (variable)
791 (context-coloring-elisp-add-variable variable))))
792 (t
793 ;; Color artifacts.
794 (context-coloring-elisp-colorize-sexp)))
795 (context-coloring-elisp-forward-sws)
796 (setq index (1+ index)))
797 ;; Exit.
798 (forward-char))))))
799
800 (defun context-coloring-elisp-colorize-quote ()
801 "Color the `quote' at point."
802 (let* ((start (point))
803 (end (progn (forward-sexp)
804 (point))))
805 (context-coloring-colorize-region
806 start
807 end
808 (context-coloring-elisp-get-current-scope-level))
809 (context-coloring-elisp-colorize-comments-and-strings-in-region start end)))
810
811 (defvar context-coloring-elisp-callee-dispatch-hash-table
812 (let ((table (make-hash-table :test 'equal)))
813 (dolist (callee '("defun" "defun*" "defsubst" "defmacro" "cl-defun" "cl-defsubst" "cl-defmacro"))
814 (puthash callee #'context-coloring-elisp-colorize-defun table))
815 (dolist (callee '("condition-case" "condition-case-unless-debug"))
816 (puthash callee #'context-coloring-elisp-colorize-condition-case table))
817 (dolist (callee '("dolist" "dotimes"))
818 (puthash callee #'context-coloring-elisp-colorize-dolist table))
819 (puthash "let" #'context-coloring-elisp-colorize-let table)
820 (puthash "let*" #'context-coloring-elisp-colorize-let* table)
821 (puthash "lambda" #'context-coloring-elisp-colorize-lambda table)
822 (puthash "cond" #'context-coloring-elisp-colorize-cond table)
823 (puthash "defadvice" #'context-coloring-elisp-colorize-defadvice table)
824 (puthash "quote" #'context-coloring-elisp-colorize-quote table)
825 (puthash "backquote" #'context-coloring-elisp-colorize-backquote table)
826 table)
827 "Map function names to their coloring functions.")
828
829 (defun context-coloring-elisp-colorize-parenthesized-sexp ()
830 "Color the sexp enclosed by parenthesis at point."
831 (context-coloring-elisp-increment-sexp-count)
832 (let* ((start (point))
833 (end (progn (forward-sexp)
834 (point)))
835 (syntax-code (progn (goto-char start)
836 (forward-char)
837 ;; Coloring is unnecessary here, it'll happen
838 ;; presently.
839 (context-coloring-forward-sws)
840 (context-coloring-get-syntax-code)))
841 dispatch-function)
842 ;; Figure out if the sexp is a special form.
843 (cond
844 ((and (context-coloring-elisp-identifier-p syntax-code)
845 (setq dispatch-function (gethash
846 (buffer-substring-no-properties
847 (point)
848 (progn (forward-sexp)
849 (point)))
850 context-coloring-elisp-callee-dispatch-hash-table)))
851 (goto-char start)
852 (funcall dispatch-function))
853 ;; Not a special form; just colorize the remaining region.
854 (t
855 (context-coloring-colorize-region
856 start
857 end
858 (context-coloring-elisp-get-current-scope-level))
859 (context-coloring-elisp-colorize-region (point) (1- end))
860 (forward-char)))))
861
862 (defun context-coloring-elisp-colorize-symbol ()
863 "Color the symbol at point."
864 (context-coloring-elisp-increment-sexp-count)
865 (let* ((symbol-pos (point))
866 (symbol-end (progn (forward-sexp)
867 (point)))
868 (symbol-string (buffer-substring-no-properties
869 symbol-pos
870 symbol-end)))
871 (cond
872 ((string-match-p context-coloring-elisp-ignored-word-regexp symbol-string))
873 (t
874 (context-coloring-colorize-region
875 symbol-pos
876 symbol-end
877 (context-coloring-elisp-get-variable-level
878 symbol-string))))))
879
880 (defun context-coloring-elisp-colorize-backquote-form ()
881 "Color the backquote form at point."
882 (let ((start (point))
883 (end (progn (forward-sexp)
884 (point)))
885 char)
886 (goto-char start)
887 (while (> end (progn (forward-char)
888 (point)))
889 (setq char (char-after))
890 (when (= char context-coloring-COMMA-CHAR)
891 (forward-char)
892 (when (= (char-after) context-coloring-AT-CHAR)
893 ;; If we don't do this "@" could be interpreted as a symbol.
894 (forward-char))
895 (context-coloring-elisp-forward-sws)
896 (context-coloring-elisp-colorize-sexp)))
897 ;; We could probably do this as part of the above loop but it'd be
898 ;; repetitive.
899 (context-coloring-elisp-colorize-comments-and-strings-in-region
900 start end)))
901
902 (defun context-coloring-elisp-colorize-backquote ()
903 "Color the `backquote' at point."
904 (context-coloring-elisp-skip-callee-name)
905 (context-coloring-elisp-colorize-backquote-form)
906 ;; Exit.
907 (forward-char))
908
909 (defun context-coloring-elisp-colorize-expression-prefix ()
910 "Color the expression prefix and the following expression at
911 point. It could be a quoted or backquoted expression."
912 (context-coloring-elisp-increment-sexp-count)
913 (cond
914 ((/= (char-after) context-coloring-BACKTICK-CHAR)
915 (context-coloring-elisp-forward-sexp))
916 (t
917 (context-coloring-elisp-colorize-backquote-form))))
918
919 (defun context-coloring-elisp-colorize-comment ()
920 "Color the comment at point."
921 (context-coloring-elisp-increment-sexp-count)
922 (context-coloring-elisp-forward-sws))
923
924 (defun context-coloring-elisp-colorize-string ()
925 "Color the string at point."
926 (context-coloring-elisp-increment-sexp-count)
927 (let ((start (point)))
928 (forward-sexp)
929 (context-coloring-colorize-comments-and-strings start (point))))
930
931 ;; Elisp has whitespace, words, symbols, open/close parenthesis, expression
932 ;; prefix, string quote, comment starters/enders and escape syntax classes only.
933
934 (defun context-coloring-elisp-colorize-sexp ()
935 "Color the sexp at point."
936 (let ((syntax-code (context-coloring-get-syntax-code)))
937 (cond
938 ((= syntax-code context-coloring-OPEN-PARENTHESIS-CODE)
939 (context-coloring-elisp-colorize-parenthesized-sexp))
940 ((context-coloring-elisp-identifier-p syntax-code)
941 (context-coloring-elisp-colorize-symbol))
942 ((= syntax-code context-coloring-EXPRESSION-PREFIX-CODE)
943 (context-coloring-elisp-colorize-expression-prefix))
944 ((= syntax-code context-coloring-STRING-QUOTE-CODE)
945 (context-coloring-elisp-colorize-string))
946 ((= syntax-code context-coloring-ESCAPE-CODE)
947 (forward-char 2)))))
948
949 (defun context-coloring-elisp-colorize-comments-and-strings-in-region (start end)
950 "Color comments and strings between START and END."
951 (let (syntax-code)
952 (goto-char start)
953 (while (> end (progn (skip-syntax-forward "^\"<\\" end)
954 (point)))
955 (setq syntax-code (context-coloring-get-syntax-code))
956 (cond
957 ((= syntax-code context-coloring-STRING-QUOTE-CODE)
958 (context-coloring-elisp-colorize-string))
959 ((= syntax-code context-coloring-COMMENT-START-CODE)
960 (context-coloring-elisp-colorize-comment))
961 ((= syntax-code context-coloring-ESCAPE-CODE)
962 (forward-char 2))))))
963
964 (defun context-coloring-elisp-colorize-region (start end)
965 "Color everything between START and END."
966 (let (syntax-code)
967 (goto-char start)
968 (while (> end (progn (skip-syntax-forward "^w_('\"<\\" end)
969 (point)))
970 (setq syntax-code (context-coloring-get-syntax-code))
971 (cond
972 ((= syntax-code context-coloring-OPEN-PARENTHESIS-CODE)
973 (context-coloring-elisp-colorize-parenthesized-sexp))
974 ((context-coloring-elisp-identifier-p syntax-code)
975 (context-coloring-elisp-colorize-symbol))
976 ((= syntax-code context-coloring-EXPRESSION-PREFIX-CODE)
977 (context-coloring-elisp-colorize-expression-prefix))
978 ((= syntax-code context-coloring-STRING-QUOTE-CODE)
979 (context-coloring-elisp-colorize-string))
980 ((= syntax-code context-coloring-COMMENT-START-CODE)
981 (context-coloring-elisp-colorize-comment))
982 ((= syntax-code context-coloring-ESCAPE-CODE)
983 (forward-char 2))))))
984
985 (defun context-coloring-elisp-colorize-region-initially (start end)
986 "Begin coloring everything between START and END."
987 (setq context-coloring-elisp-sexp-count 0)
988 (setq context-coloring-elisp-scope-stack '())
989 (let ((inhibit-point-motion-hooks t)
990 (case-fold-search nil)
991 ;; This is a recursive-descent parser, so give it a big stack.
992 (max-lisp-eval-depth (max max-lisp-eval-depth 3000))
993 (max-specpdl-size (max max-specpdl-size 3000)))
994 (context-coloring-elisp-colorize-region start end)))
995
996 (defun context-coloring-elisp-colorize ()
997 "Color the current buffer, parsing elisp to determine its
998 scopes and variables."
999 (interactive)
1000 (with-silent-modifications
1001 (save-excursion
1002 (condition-case nil
1003 (cond
1004 ;; Just colorize the changed region.
1005 (context-coloring-changed-p
1006 (let* (;; Prevent `beginning-of-defun' from making poor assumptions.
1007 (open-paren-in-column-0-is-defun-start nil)
1008 ;; Seek the beginning and end of the previous and next
1009 ;; offscreen defuns, so just enough is colored.
1010 (start (progn (goto-char context-coloring-changed-start)
1011 (while (and (< (point-min) (point))
1012 (pos-visible-in-window-p))
1013 (end-of-line 0))
1014 (beginning-of-defun)
1015 (point)))
1016 (end (progn (goto-char context-coloring-changed-end)
1017 (while (and (> (point-max) (point))
1018 (pos-visible-in-window-p))
1019 (forward-line 1))
1020 (end-of-defun)
1021 (point))))
1022 (context-coloring-elisp-colorize-region-initially start end)
1023 ;; Fast coloring is nice, but if the code is not well-formed
1024 ;; (e.g. an unclosed string literal is parsed at any time) then
1025 ;; there could be leftover incorrectly-colored code offscreen. So
1026 ;; do a clean sweep as soon as appropriate.
1027 (context-coloring-schedule-coloring context-coloring-default-delay)))
1028 (t
1029 (context-coloring-elisp-colorize-region-initially (point-min) (point-max))))
1030 ;; Scan errors can happen virtually anywhere if parenthesis are
1031 ;; unbalanced. Just swallow them. (`progn' for test coverage.)
1032 (scan-error (progn))))))
1033
1034
1035 ;;; Shell command scopification / colorization
1036
1037 (defun context-coloring-apply-tokens (tokens)
1038 "Process a string of TOKENS to apply context-based coloring to
1039 the current buffer. Tokens are 3 integers: start, end, level. A
1040 new token occurrs after every 3rd element, and the elements are
1041 separated by commas."
1042 (let* ((tokens (mapcar #'string-to-number (split-string tokens ","))))
1043 (while tokens
1044 (context-coloring-colorize-region
1045 (pop tokens)
1046 (pop tokens)
1047 (pop tokens))))
1048 (context-coloring-colorize-comments-and-strings))
1049
1050 (defun context-coloring-parse-array (array)
1051 "Parse ARRAY as a flat JSON array of numbers and use the tokens
1052 to colorize the buffer."
1053 (let* ((braceless (substring-no-properties (context-coloring-trim array) 1 -1)))
1054 (when (> (length braceless) 0)
1055 (with-silent-modifications
1056 (context-coloring-apply-tokens braceless)))))
1057
1058 (defvar-local context-coloring-scopifier-cancel-function nil
1059 "Kills the current scopification process.")
1060
1061 (defvar-local context-coloring-scopifier-process nil
1062 "The single scopifier process that can be running.")
1063
1064 (defun context-coloring-cancel-scopification ()
1065 "Stop the currently-running scopifier from scopifying."
1066 (when context-coloring-scopifier-cancel-function
1067 (funcall context-coloring-scopifier-cancel-function)
1068 (setq context-coloring-scopifier-cancel-function nil))
1069 (when (not (null context-coloring-scopifier-process))
1070 (delete-process context-coloring-scopifier-process)
1071 (setq context-coloring-scopifier-process nil)))
1072
1073 (defun context-coloring-shell-command (command callback)
1074 "Invoke COMMAND, read its response asynchronously and invoke
1075 CALLBACK with its output. Return the command process."
1076 (let ((process (start-process-shell-command "context-coloring-process" nil command))
1077 (output ""))
1078 ;; The process may produce output in multiple chunks. This filter
1079 ;; accumulates the chunks into a message.
1080 (set-process-filter
1081 process
1082 (lambda (_process chunk)
1083 (setq output (concat output chunk))))
1084 ;; When the process's message is complete, this sentinel parses it as JSON
1085 ;; and applies the tokens to the buffer.
1086 (set-process-sentinel
1087 process
1088 (lambda (_process event)
1089 (when (equal "finished\n" event)
1090 (funcall callback output))))
1091 process))
1092
1093 (defun context-coloring-scopify-shell-command (command callback)
1094 "Invoke a scopifier via COMMAND, read its response
1095 asynchronously and invoke CALLBACK with its output."
1096 ;; Prior running tokenization is implicitly obsolete if this function is
1097 ;; called.
1098 (context-coloring-cancel-scopification)
1099 ;; Start the process.
1100 (setq context-coloring-scopifier-process
1101 (context-coloring-shell-command command callback)))
1102
1103 (defun context-coloring-send-buffer-to-scopifier ()
1104 "Give the scopifier process its input so it can begin
1105 scopifying."
1106 (process-send-region
1107 context-coloring-scopifier-process
1108 (point-min) (point-max))
1109 (process-send-eof
1110 context-coloring-scopifier-process))
1111
1112 (defun context-coloring-start-scopifier-server (command host port callback)
1113 "Connect to or start a scopifier server with COMMAND, HOST and PORT.
1114 Invoke CALLBACK with a network stream when the server is ready
1115 for connections."
1116 (let* ((connect
1117 (lambda ()
1118 (let ((stream (open-network-stream "context-coloring-stream" nil host port)))
1119 (funcall callback stream)))))
1120 ;; Try to connect in case a server is running, otherwise start one.
1121 (condition-case nil
1122 (progn
1123 (funcall connect))
1124 (error
1125 (let ((server (start-process-shell-command
1126 "context-coloring-scopifier-server" nil
1127 (context-coloring-join
1128 (list command
1129 "--server"
1130 "--host" host
1131 "--port" (number-to-string port))
1132 " ")))
1133 (output ""))
1134 ;; Connect as soon as the "listening" message is printed.
1135 (set-process-filter
1136 server
1137 (lambda (_process chunk)
1138 (setq output (concat output chunk))
1139 (when (string-match-p (format "^Scopifier listening at %s:%s$" host port) output)
1140 (funcall connect)))))))))
1141
1142 (defun context-coloring-send-buffer-to-scopifier-server (command host port callback)
1143 "Send the current buffer to the scopifier server running with
1144 COMMAND, HOST and PORT. Invoke CALLBACK with the server's
1145 response (a stringified JSON array)."
1146 (context-coloring-start-scopifier-server
1147 command host port
1148 (lambda (process)
1149 (let* ((body (buffer-substring-no-properties (point-min) (point-max)))
1150 (header (concat "POST / HTTP/1.0\r\n"
1151 "Host: localhost\r\n"
1152 "Content-Type: application/x-www-form-urlencoded"
1153 "; charset=UTF8\r\n"
1154 (format "Content-Length: %d\r\n" (length body))
1155 "\r\n"))
1156 (output "")
1157 (active t))
1158 (set-process-filter
1159 process
1160 (lambda (_process chunk)
1161 (setq output (concat output chunk))))
1162 (set-process-sentinel
1163 process
1164 (lambda (_process event)
1165 (when (and (equal "connection broken by remote peer\n" event)
1166 active)
1167 ;; Strip the response headers.
1168 (string-match "\r\n\r\n" output)
1169 (setq output (substring-no-properties output (match-end 0)))
1170 (funcall callback output))))
1171 (process-send-string process (concat header body "\r\n"))
1172 (setq context-coloring-scopifier-cancel-function
1173 (lambda ()
1174 "Cancel this scopification."
1175 (setq active nil)))))))
1176
1177 (defun context-coloring-scopify-and-colorize-server (command host port &optional callback)
1178 "Color the current buffer via the server started with COMMAND,
1179 HOST and PORT. Invoke CALLBACK when complete."
1180 (let ((buffer (current-buffer)))
1181 (context-coloring-send-buffer-to-scopifier-server
1182 command host port
1183 (lambda (output)
1184 (with-current-buffer buffer
1185 (context-coloring-parse-array output))
1186 (when callback (funcall callback))))))
1187
1188 (defun context-coloring-scopify-and-colorize (command &optional callback)
1189 "Color the current buffer via COMMAND. Invoke CALLBACK when
1190 complete."
1191 (let ((buffer (current-buffer)))
1192 (context-coloring-scopify-shell-command
1193 command
1194 (lambda (output)
1195 (with-current-buffer buffer
1196 (context-coloring-parse-array output))
1197 (setq context-coloring-scopifier-process nil)
1198 (when callback (funcall callback)))))
1199 (context-coloring-send-buffer-to-scopifier))
1200
1201
1202 ;;; Dispatch
1203
1204 (defvar context-coloring-dispatch-hash-table (make-hash-table :test #'eq)
1205 "Map dispatch strategy names to their corresponding property
1206 lists, which contain details about the strategies.")
1207
1208 (defvar context-coloring-mode-hash-table (make-hash-table :test #'eq)
1209 "Map major mode names to dispatch property lists.")
1210
1211 (defun context-coloring-get-dispatch-for-mode (mode)
1212 "Return the dispatch for MODE (or a derivative mode)."
1213 (let ((parent mode)
1214 dispatch)
1215 (while (and parent
1216 (not (setq dispatch (gethash parent context-coloring-mode-hash-table)))
1217 (setq parent (get parent 'derived-mode-parent))))
1218 dispatch))
1219
1220 (defun context-coloring-define-dispatch (symbol &rest properties)
1221 "Define a new dispatch named SYMBOL with PROPERTIES.
1222
1223 A \"dispatch\" is a property list describing a strategy for
1224 coloring a buffer. There are three possible strategies: Parse
1225 and color in a single function (`:colorizer'), parse with a shell
1226 command that returns scope data (`:command'), or parse with a
1227 server that returns scope data (`:command', `:host' and `:port').
1228 In the latter two cases, the scope data will be used to
1229 automatically color the buffer.
1230
1231 PROPERTIES must include `:modes' and one of `:colorizer',
1232 `:scopifier' or `:command'.
1233
1234 `:modes' - List of major modes this dispatch is valid for.
1235
1236 `:colorizer' - Symbol referring to a function that parses and
1237 colors the buffer.
1238
1239 `:executable' - Optional name of an executable required by
1240 `:command'.
1241
1242 `:command' - Shell command to execute with the current buffer
1243 sent via stdin, and with a flat JSON array of start, end and
1244 level data returned via stdout.
1245
1246 `:host' - Hostname of the scopifier server, e.g. \"localhost\".
1247
1248 `:port' - Port number of the scopifier server, e.g. 80, 1337.
1249
1250 `:delay' - Delay between buffer update and colorization, to
1251 override `context-coloring-default-delay'.
1252
1253 `:version' - Minimum required version that should be printed when
1254 executing `:command' with a \"--version\" flag. The version
1255 should be numeric, e.g. \"2\", \"19700101\", \"1.2.3\",
1256 \"v1.2.3\" etc.
1257
1258 `:setup' - Arbitrary code to set up this dispatch when
1259 `context-coloring-mode' is enabled.
1260
1261 `:teardown' - Arbitrary code to tear down this dispatch when
1262 `context-coloring-mode' is disabled."
1263 (let ((modes (plist-get properties :modes))
1264 (colorizer (plist-get properties :colorizer))
1265 (command (plist-get properties :command)))
1266 (when (null modes)
1267 (error "No mode defined for dispatch"))
1268 (when (not (or colorizer
1269 command))
1270 (error "No colorizer or command defined for dispatch"))
1271 (puthash symbol properties context-coloring-dispatch-hash-table)
1272 (dolist (mode modes)
1273 (puthash mode properties context-coloring-mode-hash-table))))
1274
1275
1276 ;;; Colorization
1277
1278 (defvar context-coloring-colorize-hook nil
1279 "Hooks to run after coloring a buffer.")
1280
1281 (defun context-coloring-colorize (&optional callback)
1282 "Color the current buffer by function context.
1283
1284 Invoke CALLBACK when complete; see `context-coloring-dispatch'."
1285 (interactive)
1286 (context-coloring-dispatch
1287 (lambda ()
1288 (when callback (funcall callback))
1289 (run-hooks 'context-coloring-colorize-hook))))
1290
1291 (defun context-coloring-colorize-with-buffer (buffer)
1292 "Color BUFFER."
1293 ;; Don't select deleted buffers.
1294 (when (get-buffer buffer)
1295 (with-current-buffer buffer
1296 (context-coloring-colorize))))
1297
1298
1299 ;;; Versioning
1300
1301 (defun context-coloring-parse-version (string)
1302 "Extract segments of a version STRING into a list. \"v1.0.0\"
1303 produces (1 0 0), \"19700101\" produces (19700101), etc."
1304 (let (version)
1305 (while (string-match "[0-9]+" string)
1306 (setq version (append version
1307 (list (string-to-number (match-string 0 string)))))
1308 (setq string (substring string (match-end 0))))
1309 version))
1310
1311 (defun context-coloring-check-version (expected actual)
1312 "Check that version EXPECTED is less than or equal to ACTUAL."
1313 (let ((expected (context-coloring-parse-version expected))
1314 (actual (context-coloring-parse-version actual))
1315 (continue t)
1316 (acceptable t))
1317 (while (and continue expected)
1318 (let ((an-expected (car expected))
1319 (an-actual (car actual)))
1320 (cond
1321 ((> an-actual an-expected)
1322 (setq acceptable t)
1323 (setq continue nil))
1324 ((< an-actual an-expected)
1325 (setq acceptable nil)
1326 (setq continue nil))))
1327 (setq expected (cdr expected))
1328 (setq actual (cdr actual)))
1329 acceptable))
1330
1331 (defvar context-coloring-check-scopifier-version-hook nil
1332 "Hooks to run after checking the scopifier version.")
1333
1334 (defun context-coloring-check-scopifier-version (&optional callback)
1335 "Asynchronously invoke CALLBACK with a predicate indicating
1336 whether the current scopifier version satisfies the minimum
1337 version number required for the current major mode."
1338 (let ((dispatch (context-coloring-get-dispatch-for-mode major-mode)))
1339 (when dispatch
1340 (let ((version (plist-get dispatch :version))
1341 (command (plist-get dispatch :command)))
1342 (context-coloring-shell-command
1343 (context-coloring-join (list command "--version") " ")
1344 (lambda (output)
1345 (cond
1346 ((context-coloring-check-version version output)
1347 (when callback (funcall callback t)))
1348 (t
1349 (when callback (funcall callback nil))))
1350 (run-hooks 'context-coloring-check-scopifier-version-hook)))))))
1351
1352
1353 ;;; Themes
1354
1355 (defvar context-coloring-theme-hash-table (make-hash-table :test #'eq)
1356 "Map theme names to theme properties.")
1357
1358 (defun context-coloring-theme-p (theme)
1359 "Return t if THEME is defined, nil otherwise."
1360 (and (gethash theme context-coloring-theme-hash-table)))
1361
1362 (defconst context-coloring-level-face-regexp
1363 "context-coloring-level-\\([[:digit:]]+\\)-face"
1364 "Extract a level from a face.")
1365
1366 (defvar context-coloring-originally-set-theme-hash-table
1367 (make-hash-table :test #'eq)
1368 "Cache custom themes who originally set their own
1369 `context-coloring-level-N-face' faces.")
1370
1371 (defun context-coloring-theme-originally-set-p (theme)
1372 "Return t if there is a `context-coloring-level-N-face'
1373 originally set for THEME, nil otherwise."
1374 (let (originally-set)
1375 (cond
1376 ;; `setq' might return a non-nil value for the sake of this `cond'.
1377 ((setq
1378 originally-set
1379 (gethash
1380 theme
1381 context-coloring-originally-set-theme-hash-table))
1382 (eq originally-set 'yes))
1383 (t
1384 (let* ((settings (get theme 'theme-settings))
1385 (tail settings)
1386 found)
1387 (while (and tail (not found))
1388 (and (eq (nth 0 (car tail)) 'theme-face)
1389 (string-match
1390 context-coloring-level-face-regexp
1391 (symbol-name (nth 1 (car tail))))
1392 (setq found t))
1393 (setq tail (cdr tail)))
1394 found)))))
1395
1396 (defun context-coloring-cache-originally-set (theme originally-set)
1397 "Remember if THEME had colors originally set for it. If
1398 ORIGINALLY-SET is non-nil, it did, otherwise it didn't."
1399 ;; Caching whether a theme was originally set is kind of dirty, but we have to
1400 ;; do it to remember the past state of the theme. There are probably some
1401 ;; edge cases where caching will be an issue, but they are probably rare.
1402 (puthash
1403 theme
1404 (if originally-set 'yes 'no)
1405 context-coloring-originally-set-theme-hash-table))
1406
1407 (defun context-coloring-warn-theme-originally-set (theme)
1408 "Warn the user that the colors for THEME are already originally
1409 set."
1410 (warn "Context coloring colors for theme `%s' are already defined" theme))
1411
1412 (defun context-coloring-theme-highest-level (theme)
1413 "Return the highest level N of a face like
1414 `context-coloring-level-N-face' set for THEME, or `-1' if there
1415 is none."
1416 (let* ((settings (get theme 'theme-settings))
1417 (tail settings)
1418 face-string
1419 number
1420 (found -1))
1421 (while tail
1422 (and (eq (nth 0 (car tail)) 'theme-face)
1423 (setq face-string (symbol-name (nth 1 (car tail))))
1424 (string-match
1425 context-coloring-level-face-regexp
1426 face-string)
1427 (setq number (string-to-number
1428 (substring face-string
1429 (match-beginning 1)
1430 (match-end 1))))
1431 (> number found)
1432 (setq found number))
1433 (setq tail (cdr tail)))
1434 found))
1435
1436 (defun context-coloring-apply-theme (theme)
1437 "Apply THEME's properties to its respective custom theme,
1438 which must already exist and which *should* already be enabled."
1439 (let* ((properties (gethash theme context-coloring-theme-hash-table))
1440 (colors (plist-get properties :colors))
1441 (level -1))
1442 ;; Only clobber when we have to.
1443 (when (custom-theme-enabled-p theme)
1444 (setq context-coloring-maximum-face (- (length colors) 1)))
1445 (apply
1446 #'custom-theme-set-faces
1447 theme
1448 (mapcar
1449 (lambda (color)
1450 (setq level (+ level 1))
1451 `(,(context-coloring-level-face level) ((t (:foreground ,color)))))
1452 colors))))
1453
1454 (defun context-coloring-define-theme (theme &rest properties)
1455 "Define a context theme named THEME for coloring scope levels.
1456
1457 PROPERTIES is a property list specifiying the following details:
1458
1459 `:aliases': List of symbols of other custom themes that these
1460 colors are applicable to.
1461
1462 `:colors': List of colors that this context theme uses.
1463
1464 `:override': If non-nil, this context theme is intentionally
1465 overriding colors set by a custom theme. Don't set this non-nil
1466 unless there is a custom theme you want to use which sets
1467 `context-coloring-level-N-face' faces that you want to replace.
1468
1469 `:recede': If non-nil, this context theme should not apply its
1470 colors if a custom theme already sets
1471 `context-coloring-level-N-face' faces. This option is
1472 optimistic; set this non-nil if you would rather confer the duty
1473 of picking colors to a custom theme author (if / when he ever
1474 gets around to it).
1475
1476 By default, context themes will always override custom themes,
1477 even if those custom themes set `context-coloring-level-N-face'
1478 faces. If a context theme does override a custom theme, a
1479 warning will be raised, at which point you may want to enable the
1480 `:override' option, or just delete your context theme and opt to
1481 use your custom theme's author's colors instead.
1482
1483 Context themes only work for the custom theme with the highest
1484 precedence, i.e. the car of `custom-enabled-themes'."
1485 (let ((aliases (plist-get properties :aliases))
1486 (override (plist-get properties :override))
1487 (recede (plist-get properties :recede)))
1488 (dolist (name (append `(,theme) aliases))
1489 (puthash name properties context-coloring-theme-hash-table)
1490 (when (custom-theme-p name)
1491 (let ((originally-set (context-coloring-theme-originally-set-p name)))
1492 (context-coloring-cache-originally-set name originally-set)
1493 ;; In the particular case when you innocently define colors that a
1494 ;; custom theme originally set, warn. Arguably this only has to be
1495 ;; done at enable time, but it is probably more useful to do it at
1496 ;; definition time for prompter feedback.
1497 (when (and originally-set
1498 (not recede)
1499 (not override))
1500 (context-coloring-warn-theme-originally-set name))
1501 ;; Set (or overwrite) colors.
1502 (when (not (and originally-set
1503 recede))
1504 (context-coloring-apply-theme name)))))))
1505
1506 (defun context-coloring-enable-theme (theme)
1507 "Apply THEME if its colors are not already set, else just set
1508 `context-coloring-maximum-face' to the correct value for THEME."
1509 (let* ((properties (gethash theme context-coloring-theme-hash-table))
1510 (recede (plist-get properties :recede))
1511 (override (plist-get properties :override)))
1512 (cond
1513 (recede
1514 (let ((highest-level (context-coloring-theme-highest-level theme)))
1515 (cond
1516 ;; This can be true whether originally set by a custom theme or by a
1517 ;; context theme.
1518 ((> highest-level -1)
1519 (setq context-coloring-maximum-face highest-level))
1520 ;; It is possible that the corresponding custom theme did not exist at
1521 ;; the time of defining this context theme, and in that case the above
1522 ;; condition proves the custom theme did not originally set any faces,
1523 ;; so we have license to apply the context theme for the first time
1524 ;; here.
1525 (t
1526 (context-coloring-apply-theme theme)))))
1527 (t
1528 (let ((originally-set (context-coloring-theme-originally-set-p theme)))
1529 ;; Cache now in case the context theme was defined after the custom
1530 ;; theme.
1531 (context-coloring-cache-originally-set theme originally-set)
1532 (when (and originally-set
1533 (not override))
1534 (context-coloring-warn-theme-originally-set theme))
1535 (context-coloring-apply-theme theme))))))
1536
1537 (defadvice enable-theme (after context-coloring-enable-theme (theme) activate)
1538 "Enable colors for context themes just-in-time."
1539 (when (and (not (eq theme 'user)) ; Called internally by `enable-theme'.
1540 (custom-theme-p theme) ; Guard against non-existent themes.
1541 (context-coloring-theme-p theme))
1542 (when (= (length custom-enabled-themes) 1)
1543 ;; Cache because we can't reliably figure it out in reverse.
1544 (setq context-coloring-original-maximum-face
1545 context-coloring-maximum-face))
1546 (context-coloring-enable-theme theme)))
1547
1548 (defadvice disable-theme (after context-coloring-disable-theme (theme) activate)
1549 "Update `context-coloring-maximum-face'."
1550 (when (custom-theme-p theme) ; Guard against non-existent themes.
1551 (let ((enabled-theme (car custom-enabled-themes)))
1552 (cond
1553 ((context-coloring-theme-p enabled-theme)
1554 (context-coloring-enable-theme enabled-theme))
1555 (t
1556 ;; Assume we are back to no theme; act as if nothing ever happened.
1557 ;; This is still prone to intervention, but rather extraordinarily.
1558 (setq context-coloring-maximum-face
1559 context-coloring-original-maximum-face))))))
1560
1561 (context-coloring-define-theme
1562 'ample
1563 :recede t
1564 :colors '("#bdbdb3"
1565 "#baba36"
1566 "#6aaf50"
1567 "#5180b3"
1568 "#ab75c3"
1569 "#cd7542"
1570 "#df9522"
1571 "#454545"))
1572
1573 (context-coloring-define-theme
1574 'anti-zenburn
1575 :recede t
1576 :colors '("#232333"
1577 "#6c1f1c"
1578 "#401440"
1579 "#0f2050"
1580 "#205070"
1581 "#336c6c"
1582 "#23733c"
1583 "#6b400c"
1584 "#603a60"
1585 "#2f4070"
1586 "#235c5c"))
1587
1588 (context-coloring-define-theme
1589 'grandshell
1590 :recede t
1591 :colors '("#bebebe"
1592 "#5af2ee"
1593 "#b2baf6"
1594 "#f09fff"
1595 "#efc334"
1596 "#f6df92"
1597 "#acfb5a"
1598 "#888888"))
1599
1600 (context-coloring-define-theme
1601 'leuven
1602 :recede t
1603 :colors '("#333333"
1604 "#0000ff"
1605 "#6434a3"
1606 "#ba36a5"
1607 "#d0372d"
1608 "#036a07"
1609 "#006699"
1610 "#006fe0"
1611 "#808080"))
1612
1613 (context-coloring-define-theme
1614 'monokai
1615 :recede t
1616 :colors '("#f8f8f2"
1617 "#66d9ef"
1618 "#a1efe4"
1619 "#a6e22e"
1620 "#e6db74"
1621 "#fd971f"
1622 "#f92672"
1623 "#fd5ff0"
1624 "#ae81ff"))
1625
1626 (context-coloring-define-theme
1627 'solarized
1628 :recede t
1629 :aliases '(solarized-light
1630 solarized-dark
1631 sanityinc-solarized-light
1632 sanityinc-solarized-dark)
1633 :colors '("#839496"
1634 "#268bd2"
1635 "#2aa198"
1636 "#859900"
1637 "#b58900"
1638 "#cb4b16"
1639 "#dc322f"
1640 "#d33682"
1641 "#6c71c4"
1642 "#69b7f0"
1643 "#69cabf"
1644 "#b4c342"
1645 "#deb542"
1646 "#f2804f"
1647 "#ff6e64"
1648 "#f771ac"
1649 "#9ea0e5"))
1650
1651 (context-coloring-define-theme
1652 'spacegray
1653 :recede t
1654 :colors '("#ffffff"
1655 "#89aaeb"
1656 "#c189eb"
1657 "#bf616a"
1658 "#dca432"
1659 "#ebcb8b"
1660 "#b4eb89"
1661 "#89ebca"))
1662
1663 (context-coloring-define-theme
1664 'tango
1665 :recede t
1666 :colors '("#2e3436"
1667 "#346604"
1668 "#204a87"
1669 "#5c3566"
1670 "#a40000"
1671 "#b35000"
1672 "#c4a000"
1673 "#8ae234"
1674 "#8cc4ff"
1675 "#ad7fa8"
1676 "#ef2929"
1677 "#fcaf3e"
1678 "#fce94f"))
1679
1680 (context-coloring-define-theme
1681 'zenburn
1682 :recede t
1683 :colors '("#dcdccc"
1684 "#93e0e3"
1685 "#bfebbf"
1686 "#f0dfaf"
1687 "#dfaf8f"
1688 "#cc9393"
1689 "#dc8cc3"
1690 "#94bff3"
1691 "#9fc59f"
1692 "#d0bf8f"
1693 "#dca3a3"))
1694
1695
1696 ;;; Built-in dispatches
1697
1698 (context-coloring-define-dispatch
1699 'javascript-node
1700 :modes '(js-mode js3-mode)
1701 :executable "scopifier"
1702 :command "scopifier"
1703 :version "v1.2.1"
1704 :host "localhost"
1705 :port 6969)
1706
1707 (context-coloring-define-dispatch
1708 'javascript-js2
1709 :modes '(js2-mode)
1710 :colorizer #'context-coloring-js2-colorize
1711 :setup
1712 (lambda ()
1713 (add-hook 'js2-post-parse-callbacks #'context-coloring-colorize nil t))
1714 :teardown
1715 (lambda ()
1716 (remove-hook 'js2-post-parse-callbacks #'context-coloring-colorize t)))
1717
1718 (context-coloring-define-dispatch
1719 'emacs-lisp
1720 :modes '(emacs-lisp-mode)
1721 :colorizer #'context-coloring-elisp-colorize
1722 :delay 0.016 ;; Thanks to lazy colorization this can be 60 frames per second.
1723 :setup #'context-coloring-setup-idle-change-detection
1724 :teardown #'context-coloring-teardown-idle-change-detection)
1725
1726 (defun context-coloring-dispatch (&optional callback)
1727 "Determine the optimal track for scopification / coloring of
1728 the current buffer, then execute it.
1729
1730 Invoke CALLBACK when complete. It is invoked synchronously for
1731 elisp tracks, and asynchronously for shell command tracks."
1732 (let* ((dispatch (context-coloring-get-dispatch-for-mode major-mode))
1733 (colorizer (plist-get dispatch :colorizer))
1734 (command (plist-get dispatch :command))
1735 (host (plist-get dispatch :host))
1736 (port (plist-get dispatch :port))
1737 interrupted-p)
1738 (cond
1739 (colorizer
1740 (setq interrupted-p
1741 (catch 'interrupted
1742 (funcall colorizer)))
1743 (when (and (not interrupted-p)
1744 callback)
1745 (funcall callback)))
1746 (command
1747 (cond
1748 ((and host port)
1749 (context-coloring-scopify-and-colorize-server command host port callback))
1750 (t
1751 (context-coloring-scopify-and-colorize command callback)))))))
1752
1753
1754 ;;; Minor mode
1755
1756 ;;;###autoload
1757 (define-minor-mode context-coloring-mode
1758 "Toggle contextual code coloring.
1759 With a prefix argument ARG, enable Context Coloring mode if ARG
1760 is positive, and disable it otherwise. If called from Lisp,
1761 enable the mode if ARG is omitted or nil.
1762
1763 Context Coloring mode is a buffer-local minor mode. When
1764 enabled, code is colored by scope. Scopes are colored
1765 hierarchically. Variables referenced from nested scopes retain
1766 the color of their defining scopes. Certain syntax, like
1767 comments and strings, is still colored with `font-lock'.
1768
1769 The entire buffer is colored initially. Changes to the buffer
1770 trigger recoloring.
1771
1772 Certain custom themes have predefined colors from their palettes
1773 to use for coloring. See `context-coloring-theme-hash-table' for
1774 the supported themes. If the currently-enabled custom theme is
1775 not among these, you can define colors for it with
1776 `context-coloring-define-theme', which see.
1777
1778 New language / major mode support can be added with
1779 `context-coloring-define-dispatch', which see.
1780
1781 Feature inspired by Douglas Crockford."
1782 nil " Context" nil
1783 (cond
1784 (context-coloring-mode
1785 ;; Font lock is incompatible with this mode; the converse is also true.
1786 (font-lock-mode 0)
1787 (jit-lock-mode nil)
1788 ;; ...but we do use font-lock functions here.
1789 (font-lock-set-defaults)
1790 ;; Safely change the value of this function as necessary.
1791 (make-local-variable 'font-lock-syntactic-face-function)
1792 (let ((dispatch (context-coloring-get-dispatch-for-mode major-mode)))
1793 (cond
1794 (dispatch
1795 (let ((command (plist-get dispatch :command))
1796 (version (plist-get dispatch :version))
1797 (executable (plist-get dispatch :executable))
1798 (setup (plist-get dispatch :setup))
1799 (colorize-initially-p t))
1800 (when command
1801 ;; Shell commands recolor on change, idly.
1802 (cond
1803 ((and executable
1804 (null (executable-find executable)))
1805 (message "Executable \"%s\" not found" executable)
1806 (setq colorize-initially-p nil))
1807 (version
1808 (context-coloring-check-scopifier-version
1809 (lambda (sufficient-p)
1810 (cond
1811 (sufficient-p
1812 (context-coloring-setup-idle-change-detection)
1813 (context-coloring-colorize))
1814 (t
1815 (message "Update to the minimum version of \"%s\" (%s)"
1816 executable version)))))
1817 (setq colorize-initially-p nil))
1818 (t
1819 (context-coloring-setup-idle-change-detection))))
1820 (when setup
1821 (funcall setup))
1822 ;; Colorize once initially.
1823 (when colorize-initially-p
1824 (let ((context-coloring-parse-interruptable-p nil))
1825 (context-coloring-colorize)))))
1826 (t
1827 (message "Context coloring is not available for this major mode")))))
1828 (t
1829 (let ((dispatch (context-coloring-get-dispatch-for-mode major-mode)))
1830 (when dispatch
1831 (let ((command (plist-get dispatch :command))
1832 (teardown (plist-get dispatch :teardown)))
1833 (when command
1834 (context-coloring-teardown-idle-change-detection))
1835 (when teardown
1836 (funcall teardown)))))
1837 (font-lock-mode)
1838 (jit-lock-mode t))))
1839
1840 (provide 'context-coloring)
1841
1842 ;;; context-coloring.el ends here