-
Notifications
You must be signed in to change notification settings - Fork 3
/
ngnk-cli.el
238 lines (213 loc) · 7.93 KB
/
ngnk-cli.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
;;; ngnk-cli.el --- major-mode and a few utilities for working with ngn/k. -*- lexical-binding: t; -*-
;; Copyright (c) 2022 Douglas Mennella <[email protected]>
;;
;; Permission to use, copy, modify, and/or distribute this software for any
;; purpose with or without fee is hereby granted, provided that the above
;; copyright notice and this permission notice appear in all copies.
;;
;; THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
;; WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
;; MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
;; ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
;; WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
;; ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
;; OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
;;
;; Author: Douglas Mennella <[email protected]>
;; Created: September 7th, 2022
;; Keywords: ngn/k, k, emacs-mode
;; URL: https://github.com/gitonthescene/ngnk-cli
;;
;; Version: 0.1
;;
;;; Commentary:
;;
;; Modeled on [[https://www.masteringemacs.org/article/comint-writing-command-interpreter]]
;;
(require 'comint)
(require 'cl-lib)
(defgroup ngnk nil "ngn/k language editing mode."
:group 'languages
:prefix "ngnk-")
(defcustom ngnk-cli-file-path
(or
(executable-find "k")
"k")
"Path to the program used by `run-ngnk'"
:group 'ngnk
:type 'string)
(defcustom ngnk-cli-arguments '()
"Commandline arguments to pass to `ngnk-cli'"
:group 'ngnk
:type '(repeat string))
(defun ngnk-cli-args ()
(or ngnk-cli-arguments
(let ((fpth (executable-find ngnk-cli-file-path)))
(if fpth
(let ((fpth (expand-file-name "repl.k" (file-name-directory fpth))))
(or (and (file-readable-p fpth) (list fpth)) nil))
nil))))
(defcustom ngnk-start-file ""
"Commandline arguments to pass to `ngnk-cli'"
:group 'ngnk
:type 'string)
(defun ngnk-sfile ()
(or (if (eq (length ngnk-start-file) 0)
nil
ngnk-start-file)))
(defcustom ngnk-max-output-length 0
"Maximum length of output printed"
:group 'ngnk
:type 'number)
(defun ngnk-remove-marker (s)
(cl-remove ?\a s))
(defun ngnk-preout-filter (s)
"When ngnk-max-output-length is > 0, limit output to ngnk-max-output-length lines"
(progn
(if (not ngnk-buffer-limit)
(setq ngnk-buffer-limit ngnk-max-output-length))
(if (= 0 ngnk-max-output-length)
(progn
(setq ngnk-buffer-limit nil)
(ngnk-remove-marker s))
(let ((nlix (cl-search "\n" s))
(origlen (length s))
(start 0)
(end 0)
(body "")
(pix (cl-search "\a" s)))
(while (and (> ngnk-buffer-limit 0) nlix (or (not pix) (> pix nlix)))
(setq ngnk-buffer-limit (- ngnk-buffer-limit 1))
(setq end (min (+ 1 nlix) (or pix (+ 1 nlix))))
(setq body (concat body (substring s start end)))
(if (= ngnk-buffer-limit 0) (setq body (concat body "...")))
(setq start (+ nlix 1))
(setq nlix (cl-search "\n" s :start2 start)))
(if pix ;; Done with output
(let ((st (+ 1 pix)))
(if (and (not nlix) (> ngnk-buffer-limit 0))
(setq st start))
(setq ngnk-buffer-limit nil) ;; reset
(setq body (concat body (substring s st origlen))))
(if (and (> ngnk-buffer-limit 0))
(setq body (concat body (substring s end origlen)))))
(ngnk-remove-marker body)))))
(defcustom ngnk-prompt-regexp "^ "
"Prompt for `run-ngnk'."
:group 'ngnk
:type 'string)
(defcustom ngnk-mark-line-continuations nil
"Mark line continuations when sending a buffer"
:group 'ngnk
:type 'boolean)
(defvar ngnk-cli-map
(let ((map (nconc (make-sparse-keymap) comint-mode-map)))
;; example definition
(define-key map "\t" 'completion-at-point)
map)
"Basic mode map for `run-ngnk'")
(setq ngnk-buffer-name "*Ngnk*")
(defun ngnk-buffer ()
(get-buffer ngnk-buffer-name))
(defun ngnk-buffer-proc ()
(get-buffer-process (ngnk-buffer)))
(defun ngnk-send-string (s)
(comint-send-string (ngnk-buffer-proc) s))
(defun ngnk-send-region (point mark)
(interactive "^r")
"Send region to running ngn/k process"
(let* ((s (concat (buffer-substring point mark) "\n"))
(idx (cl-search "\n" s))
(ret ""))
(if ngnk-mark-line-continuations
(progn
(while idx
(setq ret (concat ret (substring s 0 idx) "\a\n"))
(setq s (substring s (+ 1 idx) (length s)))
(setq idx (cl-search "\n" s)))
(setq s (concat ret s))
(let ((end (- (length s) 1))
(chr nil))
(while (or (eq (setq chr (aref s end)) ?\n)
(eq (setq chr (aref s end)) ?\a))
(setq end (- end 1)))
(setq s (concat (substring s 0 (+ end 1)) "\n")))))
(message s)
(ngnk-send-string s)))
(defun ngnk-send-line-at-point (point)
(interactive "p")
(ngnk-send-region (point-at-bol) (point-at-eol))
)
(defun ngnk-attach-proc (buffer)
"Attach ngn/k process to buffer"
(let* ((ngnk-program ngnk-cli-file-path))
(apply 'make-comint-in-buffer "Ngnk" buffer
ngnk-program (ngnk-sfile) (ngnk-cli-args))
(ngnk-cli)))
(defun run-ngnk ()
"Run an inferior instance of `ngnk-cli' inside Emacs."
(interactive)
(progn
;; pop to the "*Ngnk*" buffer if the process is dead, the
;; buffer is missing or it's got the wrong mode.
(if (not (comint-check-proc (current-buffer)))
(pop-to-buffer-same-window
(get-buffer-create ngnk-buffer-name)))
;; create the comint process if there is no buffer.
(ngnk-attach-proc (current-buffer))))
(defun ngnk--initialize ()
"Helper function to initialize Ngnk"
(setq comint-process-echoes t)
(setq comint-use-prompt-regexp nil)
(add-hook 'comint-preoutput-filter-functions
'ngnk-preout-filter nil t))
(defvar ngnk-cli-syntax-table
(let ((table (make-syntax-table)))
(modify-syntax-entry ?\" "." table)
(modify-syntax-entry ?\/ "." table)
(modify-syntax-entry ?\_ "." table)
(modify-syntax-entry ?\\ "." table)
(modify-syntax-entry ?\$ "." table)
(modify-syntax-entry ?\% "." table)
(modify-syntax-entry ?\& "." table)
(modify-syntax-entry ?\+ "." table)
(modify-syntax-entry ?\, "." table)
(modify-syntax-entry ?\- "." table)
(modify-syntax-entry ?\* "." table)
(modify-syntax-entry ?\= "." table)
(modify-syntax-entry ?\< "." table)
(modify-syntax-entry ?\> "." table)
(modify-syntax-entry ?\| "." table)
(modify-syntax-entry ?\. "_" table)
(modify-syntax-entry ?\` "_" table)
(modify-syntax-entry ?\n ">" table)
(modify-syntax-entry ?\r ">" table)
table)
"Syntax table for `ngnk-cli'.")
(define-derived-mode ngnk-cli comint-mode "Ngnk"
"Major mode for `run-ngnk'.
\\<ngnk-cli-map>"
nil "Ngnk"
;; this sets up the prompt so it matches things like: [foo@bar]
(setq comint-prompt-regexp ngnk-prompt-regexp)
;; this makes it read only; a contentious subject as some prefer the
;; buffer to be overwritable.
(setq comint-prompt-read-only t)
;; this makes it so commands like M-{ and M-} work.
(set (make-local-variable 'paragraph-separate) "\\'")
(set (make-local-variable 'ngnk-buffer-limit) nil)
;; (set (make-local-variable 'font-lock-defaults) '(ngnk-font-lock-keywords t))
(set (make-local-variable 'paragraph-start) ngnk-prompt-regexp))
(add-hook 'ngnk-cli-hook 'ngnk--initialize)
;; (set (make-local-variable 'font-lock-defaults) '(ngnk-font-lock-keywords t))
;;
;; (defconst ngnk-keywords
;; '())
;;
;; (defvar ngnk-font-lock-keywords
;; (list
;; ;; highlight all the reserved commands.
;; `(,(concat "\\_<" (regexp-opt ngnk-keywords) "\\_>") . font-lock-keyword-face))
;; "Additional expressions to highlight in `ngnk-cli'.")
(provide 'ngnk-cli)
;;; ngnk-cli.el ends here