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