forked from tonini/alchemist.el
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalchemist-macroexpand.el
156 lines (123 loc) · 6.07 KB
/
alchemist-macroexpand.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
;;; alchemist-macroexpand.el --- Macro expansion support -*- lexical-binding: t -*-
;; 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:
;; Macro expansion support
;;; Code:
(require 'alchemist-server)
(require 'alchemist-interact)
(defgroup alchemist-macroexpand nil
"Macro expansion support."
:prefix "alchemist-macroexpand-"
:group 'alchemist)
(defvar alchemist-macroexpand-filter-output nil)
(defconst alchemist-macroexpand-buffer-name "*alchemist macroexpand*"
"Name of the Elixir Macro expand buffer.")
(defun alchemist-macroexpand-filter (_process output)
(setq alchemist-macroexpand-filter-output (cons output alchemist-macroexpand-filter-output))
(when (alchemist-server-contains-end-marker-p output)
(alchemist-interact-create-popup alchemist-macroexpand-buffer-name
(alchemist-server-prepare-filter-output alchemist-macroexpand-filter-output)
#'(lambda ()
(elixir-mode)
(alchemist-macroexpand-mode)))
(setq alchemist-macroexpand-filter-output nil)))
(defun alchemist-macroexpand-insert-filter (_process output)
(setq alchemist-macroexpand-filter-output (cons output alchemist-macroexpand-filter-output))
(when (alchemist-server-contains-end-marker-p output)
(alchemist-interact-insert-as-comment
(alchemist-server-prepare-filter-output alchemist-macroexpand-filter-output))
(setq alchemist-macroexpand-filter-output nil)))
(defun alchemist-macroexpand-expand-request (expr)
(let ((file (make-temp-file "alchemist-expand" nil ".exs")))
(with-temp-file file
(insert expr))
(alchemist-server-eval (format "{ :expand, '%s' }" file) #'alchemist-macroexpand-filter)))
(defun alchemist-macroexpand-expand-and-print-request (expr)
(let ((file (make-temp-file "alchemist-expand" nil ".exs")))
(with-temp-file file
(insert expr))
(alchemist-server-eval (format "{ :expand, '%s' }" file) #'alchemist-macroexpand-insert-filter)))
(defun alchemist-macroexpand-expand-once-request (expr)
(let ((file (make-temp-file "alchemist-expand-once" nil ".exs")))
(with-temp-file file
(insert expr))
(alchemist-server-eval (format "{ :expand_once, '%s' }" file) #'alchemist-macroexpand-filter)))
(defun alchemist-macroexpand-expand-once-and-print-request (expr)
(let ((file (make-temp-file "alchemist-expand-once" nil ".exs")))
(with-temp-file file
(insert expr))
(alchemist-server-eval (format "{ :expand_once, '%s' }" file) #'alchemist-macroexpand-insert-filter)))
(defun alchemist-macroexpand-current-line ()
"Macro expand the Elixir code on the current line."
(interactive)
(alchemist-macroexpand-expand-request (thing-at-point 'line)))
(defun alchemist-macroexpand-print-current-line ()
"Macro expand the Elixir code on the current line and insert the result."
(interactive)
(alchemist-macroexpand-expand-and-print-request (thing-at-point 'line)))
(defun alchemist-macroexpand-once-current-line ()
"Macro expand the Elixir code on the current line."
(interactive)
(alchemist-macroexpand-expand-once-request (thing-at-point 'line)))
(defun alchemist-macroexpand-once-print-current-line ()
"Macro expand the Elixir code on the current line and insert the result."
(interactive)
(alchemist-macroexpand-expand-once-and-print-request (thing-at-point 'line)))
(defun alchemist-macroexpand-print-region (beg end)
"Macro expand 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-macroexpand-expand-and-print-request string)))
(defun alchemist-macroexpand-region (beg end)
"Macro expand 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-macroexpand-expand-request string)))
(defun alchemist-macroexpand-once-print-region (beg end)
"Macro expand the Elixir code on marked region once and insert the result."
(interactive "r")
(let ((string (buffer-substring-no-properties beg end)))
(when (> end beg)
(exchange-point-and-mark))
(alchemist-macroexpand-expand-once-and-print-request string)))
(defun alchemist-macroexpand-once-region (beg end)
"Macro expand the Elixir code on marked region once."
(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-macroexpand-expand-once-request string)))
(defun alchemist-macroexpand-close-popup ()
"Quit the macroexpand buffer window."
(interactive)
(quit-windows-on alchemist-macroexpand-buffer-name))
(defvar alchemist-macroexpand-mode-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "q") #'quit-window)
map)
"Keymap for `alchemist-macroexpand-mode'.")
(define-minor-mode alchemist-macroexpand-mode
"Minor mode for Alchemist Elixir macroexpand functionality.
\\{alchemist-macroexpand-mode-map}"
nil
alchemist-macroexpand-mode-map)
(provide 'alchemist-macroexpand)
;;; alchemist-macroexpand.el ends here