forked from tonini/alchemist.el
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalchemist-eval.el
219 lines (178 loc) · 8.39 KB
/
alchemist-eval.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
;;; alchemist-eval.el --- Elixir code inline evaluation functionality
;; Copyright © 2014-2017 Samuel Tonini
;; Author: Samuel Tonini <[email protected]
;; This file is not part of GNU Emacs.
;; 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 this program. If not, see <http://www.gnu.org/licenses/>.
;;; Commentary:
;; Elixir code inline evaluation functionality
;;; Code:
(require 'elixir-mode)
(require 'alchemist-server)
(require 'alchemist-interact)
(defgroup alchemist-eval nil
"Elixir code inline evaluation functionality."
:prefix "alchemist-eval-"
:group 'alchemist)
(defconst alchemist-eval-buffer-name "*alchemist-eval-mode*"
"Name of the Elixir evaluation buffer.")
(defvar alchemist-eval-mode-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "q") #'quit-window)
map)
"Keymap for `alchemist-eval-mode'.")
(defvar alchemist-eval-filter-output nil)
;; Private functions
(defun alchemist-eval--insert (string)
(let ((lines (split-string string "\n")))
(if (> (length lines) 1)
(progn
(save-excursion
(end-of-line)
(mapc (lambda (s)
(newline)
(insert (format "# => %s" s))
(indent-according-to-mode))
lines)))
(save-excursion
(end-of-line)
(insert (format " # => %s" string))))))
(defun alchemist-eval--expression (expression)
(let ((file (make-temp-file "alchemist-eval" nil ".exs")))
(with-temp-file file
(insert expression))
(alchemist-server-eval (format "{ :eval, '%s' }" file) #'alchemist-eval-filter)))
(defun alchemist-eval--expression-and-print (expression)
(let ((file (make-temp-file "alchemist-eval" nil ".exs")))
(with-temp-file file
(insert expression))
(alchemist-server-eval (format "{ :eval, '%s' }" file) #'alchemist-eval-insert-filter)))
(defun alchemist-eval--quote-expression (expression)
(let ((file (make-temp-file "alchemist-eval" nil ".exs")))
(with-temp-file file
(insert expression))
(alchemist-server-eval (format "{ :quote, '%s' }" file) #'alchemist-eval-quoted-filter)))
(defun alchemist-eval--quote-expression-and-print (expression)
(let ((file (make-temp-file "alchemist-eval" nil ".exs")))
(with-temp-file file
(insert expression))
(alchemist-server-eval (format "{ :quote, '%s' }" file) #'alchemist-eval-quoted-insert-filter)))
(defun alchemist-eval-filter (_process output)
(setq alchemist-eval-filter-output (cons output alchemist-eval-filter-output))
(when (alchemist-server-contains-end-marker-p output)
(alchemist-interact-create-popup alchemist-eval-buffer-name
(alchemist-server-prepare-filter-output alchemist-eval-filter-output)
#'(lambda ()
(elixir-mode)
(alchemist-eval-mode)
(ansi-color-apply-on-region (point-min) (point-max))))
(setq alchemist-eval-filter-output nil)))
(defun alchemist-eval-insert-filter (_process output)
(setq alchemist-eval-filter-output (cons output alchemist-eval-filter-output))
(when (alchemist-server-contains-end-marker-p output)
(alchemist-interact-insert-as-comment
(alchemist-server-prepare-filter-output alchemist-eval-filter-output))
(setq alchemist-eval-filter-output nil)))
(defun alchemist-eval-quoted-filter (_process output)
(setq alchemist-eval-filter-output (cons output alchemist-eval-filter-output))
(when (alchemist-server-contains-end-marker-p output)
(alchemist-interact-create-popup alchemist-eval-buffer-name
(alchemist-server-prepare-filter-output alchemist-eval-filter-output)
#'alchemist-eval-mode)
(setq alchemist-eval-filter-output nil)))
(defun alchemist-eval-quoted-insert-filter (_process output)
(setq alchemist-eval-filter-output (cons output alchemist-eval-filter-output))
(when (alchemist-server-contains-end-marker-p output)
(alchemist-interact-insert-as-comment
(alchemist-server-prepare-filter-output alchemist-eval-filter-output))
(setq alchemist-eval-filter-output nil)))
;; Public functions
(defun alchemist-eval-current-line ()
"Evaluate the Elixir code on the current line."
(interactive)
(alchemist-eval--expression (thing-at-point 'line)))
(defun alchemist-eval-print-current-line ()
"Evaluate the Elixir code on the current line and insert the result."
(interactive)
(alchemist-eval--expression-and-print (thing-at-point 'line)))
(defun alchemist-eval-region (beg end)
"Evaluate the Elixir code on marked region."
(interactive (list (point) (mark)))
(unless (and beg end)
(error "The mark is not set now, so there is no region"))
(let ((string (buffer-substring-no-properties beg end)))
(alchemist-eval--expression string)))
(defun alchemist-eval-print-region (beg end)
"Evaluate the Elixir code on marked region and insert the result."
(interactive (list (point) (mark)))
(unless (and beg end)
(error "The mark is not set now, so there is no region"))
(let ((string (buffer-substring-no-properties beg end)))
(when (> end beg)
(exchange-point-and-mark))
(alchemist-eval--expression-and-print string)))
(defun alchemist-eval-buffer ()
"Evaluate the Elixir code in the current buffer."
(interactive)
(let ((string (buffer-substring-no-properties (point-min) (point-max))))
(alchemist-eval--expression string)))
(defun alchemist-eval-print-buffer ()
"Evaluate the Elixir code in the current buffer and insert the result."
(interactive)
(let ((string (buffer-substring-no-properties (point-min) (point-max))))
(goto-char (point-max))
(alchemist-eval--expression-and-print string)))
(defun alchemist-eval-quoted-current-line ()
"Get the Elixir code representation of the expression on the current line."
(interactive)
(alchemist-eval--quote-expression (thing-at-point 'line)))
(defun alchemist-eval-print-quoted-current-line ()
"Get the Elixir code representation of the expression on the current line and insert the result."
(interactive)
(alchemist-eval--quote-expression-and-print (thing-at-point 'line)))
(defun alchemist-eval-quoted-region (beg end)
"Get the Elixir code representation of the expression on marked region."
(interactive (list (point) (mark)))
(unless (and beg end)
(error "The mark is not set now, so there is no region"))
(let ((string (buffer-substring-no-properties beg end)))
(alchemist-eval--quote-expression string)))
(defun alchemist-eval-print-quoted-region (beg end)
"Get the Elixir code representation of the expression on marked region and insert the result."
(interactive (list (point) (mark)))
(unless (and beg end)
(error "The mark is not set now, so there is no region"))
(let ((string (buffer-substring-no-properties beg end)))
(when (> end beg)
(exchange-point-and-mark))
(alchemist-eval--quote-expression-and-print string)))
(defun alchemist-eval-quoted-buffer ()
"Get the Elixir code representation of the expression in the current buffer."
(interactive)
(let ((string (buffer-substring-no-properties (point-min) (point-max))))
(alchemist-eval--quote-expression string)))
(defun alchemist-eval-print-quoted-buffer ()
"Get the Elixir code representation of the expression in the current buffer and insert result."
(interactive)
(let ((string (buffer-substring-no-properties (point-min) (point-max))))
(alchemist-eval--quote-expression-and-print string)))
(defun alchemist-eval-close-popup ()
"Quit the evaluation buffer window."
(interactive)
(quit-windows-on alchemist-eval-buffer-name))
(define-minor-mode alchemist-eval-mode
"Minor mode for Alchemist Elixir code evaluation.
\\{alchemist-eval-mode-map}"
nil
" Alchemist-Eval"
alchemist-eval-mode-map)
(provide 'alchemist-eval)
;;; alchemist-eval.el ends here