This repository has been archived by the owner on Aug 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
spiral-util.el
314 lines (251 loc) · 10.5 KB
/
spiral-util.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
;;; spiral-util.el --- Common utility functions -*- lexical-binding: t; -*-
;;
;; Filename: spiral-util.el
;; Author: Daniel Barreto <daniel@barreto.tech>
;; Maintainer: Daniel Barreto <daniel@barreto.tech>
;; Copyright (C) 2017 Daniel Barreto
;; Created: Thu Nov 16 01:09:49 2017 (+0100)
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;; Commentary:
;;
;; Common utility functions
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or (at
;; your option) any later version.
;;
;; This program is distributed in the hope that it will be useful, but
;; WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
;; General Public License for more details.
;;
;; You should have received a copy of the GNU General Public License
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;
;;; Code:
(require 'ansi-color)
(require 'clojure-mode)
(require 'find-func)
(require 'parseclj)
(require 'subr-x)
(require 'treepy)
(defcustom spiral-debug t
"Annoyingly raise errors."
:type 'boolean
:group 'spiral)
(defcustom spiral-eval-result-prefix "=> "
"Prefix displayed before a evaluation result value."
:type 'string
:group 'spiral)
(defcustom spiral-handle-rich-media t
"Handle attachments and mime tags."
:type 'boolean
:group 'spiral)
(defvar spiral--mode-buffers nil
"Alist with (mode . buffer) pairs.")
;; Custom classpath
;; -------------------------------------------------------------------
(defcustom spiral-classpath '()
"Global classpath for UNREPL aux connections.
Ideal for REPL tooling."
:type 'list
:group 'spiral)
(defun spiral-classpath ()
"Return a joined list with default tooling paths and the customized `spiral-classpath'."
(append spiral-classpath
(list (expand-file-name "tools/src/" (spiral-dir)))
(let ((vendor-dir (expand-file-name "tools/vendor/" (spiral-dir))))
(mapcar (lambda (jar-file)
(expand-file-name jar-file vendor-dir))
(directory-files vendor-dir nil "\\.jar$")))))
;; Connection utilities
;; -------------------------------------------------------------------
(defun spiral-make-conn-id (host port)
"Return a symbol of the form HOST:PORT."
(intern (format "%s:%S" host port)))
(defun spiral-conn-host-port (conn-id)
"Return a tuple of host<string>, port<integer> from CONN-ID."
(let* ((s-host-port (split-string (symbol-name conn-id) ":"))
(host (car s-host-port))
(port (string-to-number (cadr s-host-port))))
(cons host port)))
;; Random utilities
;; -------------------------------------------------------------------
(defun spiral-dir ()
"Return the directory where `spiral-connect' is defined."
(let ((spiral-file (cdr (find-function-library 'spiral-connect))))
(file-name-directory spiral-file)))
(defvar spiral-filename-function
(with-no-warnings
(if (eq system-type 'cygwin)
#'cygwin-convert-file-name-to-windows
#'identity))
"Function that translates file names to windows when in cygwin.")
(defun spiral-clojure-dir () ;; TODO: self-hosted clojurescript
"Try to guess current buffer's project dir."
(when-let ((dir (clojure-project-dir)))
(expand-file-name dir)))
(defun spiral-edn-file-p (&optional file-name)
"Predicate that determines if current buffer's file is an EDN file.
If FILE-NAME is non nil, uses it instead of current buffer's file."
(let ((file-name (or file-name buffer-file-name)))
(and file-name (equal (file-name-extension file-name) "edn"))))
(defun spiral-file-string (file)
"Read the contents of a FILE and return it as a string."
(with-current-buffer (find-file-noselect file)
(substring-no-properties (buffer-string))))
(defun spiral-keyword-name (keyword)
"Return the name of KEYWORD, without the leading colon `:'."
(substring (symbol-name keyword) 1))
;; Structural navigation / editing
(defun spiral-last-sexp (&optional bounds)
"Return the sexp preceding the point.
If BOUNDS is non-nil, return a list of its starting and ending position
instead.
If BOUNDS is 'marker-bounds, this list will have markers instead of
numbered positions.
BORROWED FROM CIDER."
(let* ((bound-points (save-excursion
(clojure-backward-logical-sexp 1)
(list (point)
(progn (clojure-forward-logical-sexp 1)
(skip-chars-forward "[:blank:]")
;; (when (looking-at-p "\n") (forward-char 1))
(point)))))
(bound-points (if (eql bounds 'marker-bounds)
(mapcar (lambda (bp)
(let ((m (make-marker)))
(set-marker m bp)
m))
bound-points)
bounds)))
(apply (if bounds #'list #'buffer-substring-no-properties)
bound-points)))
(defun spiral-top-level-form-at-point (&optional bounds)
"Return the text of the top level sexp at point.
If BOUNDS is non-nil, return a list of its starting and ending position
instead.
If BOUNDS is 'marker-bounds, this list will have markers instead of
numbered positions.
BORROWED FROM CIDER."
(save-excursion
(save-match-data
(end-of-defun)
(forward-char -1)
(let ((end (point)))
(clojure-backward-logical-sexp 1)
(let ((bound-points (if (eql bounds 'marker-bounds)
(mapcar (lambda (bp)
(let ((m (make-marker)))
(set-marker m bp)
m))
(list (point) end))
(list (point) end))))
(apply (if bounds #'list #'buffer-substring-no-properties)
bound-points))))))
(defun spiral-symbol-name-at-point (&optional look-back)
"Return the name of the symbol at point, otherwise nil.
Ignores the REPL prompt. If LOOK-BACK is non-nil, move backwards trying to
find a symbol if there isn't one at point.
BORROWED FROM CIDER."
(or (when-let (str (thing-at-point 'symbol))
(unless (text-property-any 0 (length str) 'field 'spiral-repl-prompt-field str)
(substring-no-properties str)))
(when look-back
(save-excursion
(ignore-errors
(while (not (looking-at "\\sw\\|\\s_\\|\\`"))
(forward-sexp -1)))
(spiral-symbol-name-at-point)))))
(defun spiral-namespace-qualified-p (sym)
"Return t if SYM is namespace-qualified.
BORROWED FROM CIDER."
(string-match-p "[^/]+/" sym))
(defun spiral-in-string-p ()
"Return non-nil if point is in a string.
BORROWED FROM CIDER."
(let ((beg (save-excursion (beginning-of-defun) (point))))
(nth 3 (parse-partial-sexp beg (point)))))
(defun spiral-in-comment-p ()
"Return non-nil if point is in a comment.
BORROWED FROM CIDER."
(let ((beg (save-excursion (beginning-of-defun) (point))))
(nth 4 (parse-partial-sexp beg (point)))))
;; Font locking
(defun spiral--make-buffer-for-mode (mode)
"Return a temp buffer using MODE as `major-mode'.
Buffers are stored in `spiral--mode-buffers', and are reused whenever
possible. `spiral--mode-buffers' is updated each time this function runs,
by eliminating killed buffers from it.
BORROWED FROM CIDER."
(setq spiral--mode-buffers (map-filter (lambda (_mode buffer) (buffer-live-p buffer))
spiral--mode-buffers))
(or (map-elt spiral--mode-buffers mode)
(let ((buffer (generate-new-buffer (format " *spiral-temp %s*" mode))))
(map-put spiral--mode-buffers mode buffer)
(with-current-buffer buffer
;; suppress major mode hooks as we care only about their font-locking
;; otherwise modes like whitespace-mode and paredit might interfere
(setq-local delay-mode-hooks t)
(setq delayed-mode-hooks nil)
(funcall mode))
buffer)))
(defun spiral-font-lock-as (mode string)
"Font-lock STRING as in MODE.
BORROWED FROM CIDER."
(let ((string (if (string-match "^\\[" string)
(substring-no-properties (ansi-color-apply string))
string)))
(with-current-buffer (spiral--make-buffer-for-mode mode)
(erase-buffer)
(insert string)
(font-lock-fontify-region (point-min) (point-max))
(buffer-string))))
(defmacro spiral-propertize-region (props &rest body)
"Add PROPS to all the inserted text while executing BODY.
More precisely, PROPS are added to the region between the point's
positions before and after executing BODY.
BORROWED FROM CIDER."
(declare (indent 1))
(let ((start (make-symbol "start")))
`(let ((,start (point)))
(prog1 (progn ,@body)
(add-text-properties ,start (point) ,props)))))
;; Debugging
;; -------------------------------------------------------------------
(defmacro comment (&rest _body)
"A wannabe 'clojure-like' comment macro."
nil)
(defun spiral-make-blob ()
"Generate a new UNREPL blob, an place it in `spiral--find-default-blob'."
(interactive)
(let* ((spiral-file (cdr (find-function-library 'spiral-connect)))
(spiral-dir (file-name-directory spiral-file))
(default-directory (expand-file-name "unrepl" spiral-dir)))
(message "... generating new blob.clj")
(shell-command-to-string "lein unrepl-make-blob ../blob.clj ../session-actions.edn")
(message "done.")))
(comment ;; For debugging purposes.
(defun spiral-debug-retry ()
"Reload everything and connect again."
(interactive)
(let ((spiral-dir (file-name-directory buffer-file-name)))
(add-to-list 'load-path spiral-dir)
(add-to-list 'load-path (expand-file-name "parseclj" spiral-dir))
(mapc (lambda (filename)
(load (expand-file-name filename spiral-dir)))
(directory-files default-directory nil "^spiral.*\\.el$")))
(spiral-disconnect 'localhost:5555)
(spiral--connect-to "localhost" 5555))
(global-set-key (kbd "C-c C-u r") #'spiral-debug-retry)
(global-set-key (kbd "C-c C-u m") #'spiral-make-blob)
)
(provide 'spiral-util)
;;; spiral-util.el ends here