-
Notifications
You must be signed in to change notification settings - Fork 3
/
ob-abs.el
279 lines (249 loc) · 9.73 KB
/
ob-abs.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
;;; ob-abs.el --- org-babel functions for Abs -*- lexical-binding: t; -*-
;; Copyright (C) 2018 Rudolf Schlatte
;; Author: Rudi Schlatte <rudi@constantly.at>
;; URL: https://github.com/abstools/abs-mode
;; Version: 1.1
;; Package-Requires: ((emacs "25") (abs-mode "1"))
;; Keywords: literate programming, reproducible research
;; 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 <https://www.gnu.org/licenses/>.
;;; Commentary:
;; Org-Babel support for evaluating Abs code in org-mode files.
;;
;; This file follows the approach of `ob-C.el' since Abs also is a language
;; without a REPL.
;;; Code:
(require 'abs-mode)
(require 'ob)
;; * [4/7] TODOs
;;
;; - [X] auto-create module
;; - [X] parameters: simple
;; - [X] parameters: list
;; - [ ] parameters: 2d matrix
;; - [X] verbatim output
;; - [ ] parse output: single result
;; - [ ] parse output: list or table
(declare-function org-entry-get "org" (pom property &optional inherit literal-nil))
(declare-function org-remove-indentation "org" (code &optional n))
(declare-function org-trim "org" (s &optional keep-lead))
(defvar org-babel-tangle-lang-exts)
(add-to-list 'org-babel-tangle-lang-exts '("ABS" . "abs"))
(defvar org-babel-default-header-args:abs '())
(defconst org-babel-header-args:abs '((module . :any))
"ABS-specific header arguments.")
(defun org-babel-execute:abs (body params)
"Execute abs code in BODY with org-babel parameters PARAMS.
This function is called by `org-babel-execute-src-block'."
(let* ((tmp-src-file (org-babel-temp-file "abs-src-" ".abs"))
(full-body (org-babel-expand-body:abs body params)))
(with-temp-file tmp-src-file (insert full-body))
(org-babel-eval
(format "cd %s ; %s -erlang %s"
(file-name-directory tmp-src-file)
abs-compiler-program
(org-babel-process-file-name tmp-src-file))
"")
(let ((results
(org-babel-eval
(format "cd %s ; gen/erl/run"
(file-name-directory tmp-src-file))
"")))
(when results
(setq results (org-trim (org-remove-indentation results)))
;; (org-babel-reassemble-table
;; (org-babel-result-cond (cdr (assq :result-params params))
;; (org-babel-read results t)
;; (let ((tmp-file (org-babel-temp-file "abs-")))
;; (with-temp-file tmp-file (insert results))
;; (org-babel-import-elisp-from-file tmp-file)))
;; (org-babel-pick-name
;; (cdr (assq :colname-names params)) (cdr (assq :colnames params)))
;; (org-babel-pick-name
;; (cdr (assq :rowname-names params)) (cdr (assq :rownames params))))
))))
(defun org-babel-expand-body:abs (body params)
"Expand abs code in BODY with org-babel header parameters PARAMS."
(let ((vars (org-babel--get-vars params))
;; (colnames (cdr (assq :colname-names params)))
(module (or (cdr (assq :module params)) "Org")))
(mapconcat 'identity
(list
(when module (concat "module " module ";"))
;; variables
(mapconcat 'org-babel-abs-var-exports vars "\n")
(mapconcat 'org-babel-abs-var-to-abs vars "\n")
;; ;; table sizes
;; (mapconcat 'org-babel-abs-table-sizes-to-abs vars "\n")
;; ;; tables headers utility
;; (when colnames
;; (org-babel-abs-utility-header-to-abs))
;; ;; tables headers
;; (mapconcat 'org-babel-abs-header-to-abs colnames "\n")
"\n"
body)
"\n")))
(defun org-babel-prep-session:abs (_session _params)
"Raise an error since abs has no support for sessions."
(error "ABS has no support for sessions"))
(defun org-babel-load-session:abs (_session _body _params)
"Raise an error since abs has no support for sessions."
(error "ABS has no support for sessions"))
;; helper functions
(defun org-babel-abs-format-val (type val)
"Handle the FORMAT part of TYPE with the data from VAL."
(let ((format-data (cadr type)))
(if (stringp format-data)
(cons "" (format format-data val))
(funcall format-data val))))
(defun org-babel-abs-val-to-abs-type (val)
"Determine the type of VAL.
Return a list (TYPE-NAME FORMAT). TYPE-NAME should be the name of the type.
FORMAT can be either a format string or a function which is called with VAL."
(let* ((basetype (org-babel-abs-val-to-base-type val))
(type
(pcase basetype
(`integerp '("Int" "%d"))
(`floatp '("Float" "%f"))
(`stringp '("String" "\"%s\""))
(_ (error "Unknown type %S" basetype)))))
(cond
((integerp val) type) ;; an integer declared in the #+begin_src line
((floatp val) type) ;; a numeric declared in the #+begin_src line
;; ((and (listp val) (listp (car val))) ;; a table
;; `(,(car type)
;; (lambda (val)
;; (cons
;; (format "[%d][%d]" (length val) (length (car val)))
;; (concat
;; (if (eq org-babel-c-variant 'd) "[\n" "{\n")
;; (mapconcat
;; (lambda (v)
;; (concat
;; (if (eq org-babel-c-variant 'd) " [" " {")
;; (mapconcat (lambda (w) (format ,(cadr type) w)) v ",")
;; (if (eq org-babel-c-variant 'd) "]" "}")))
;; val
;; ",\n")
;; (if (eq org-babel-c-variant 'd) "\n]" "\n}"))))))
((or (listp val) (vectorp val)) ;; a list declared in the #+begin_src line
`(,(concat "List<" (car type) ">")
(lambda (val)
;; called by `org-babel-abs-format-val'
(cons
;; function name suffix
""
;; data converted into ABS
(concat
"list["
(mapconcat (lambda (v) (format ,(cadr type) v)) val ",")
"]")))))
(t ;; treat unknown types as string
type))))
(defun org-babel-abs-val-to-base-type (val)
"Determine the base type of VAL.
The base type may be:
- `integerp' if all base values are integers;
- `floatp' if all base values are either floating points or integers;
- `stringp' otherwise."
(cond
((integerp val) 'integerp)
((floatp val) 'floatp)
((or (listp val) (vectorp val))
(let ((type nil))
(mapc (lambda (v)
(pcase (org-babel-abs-val-to-base-type v)
(`stringp (setq type 'stringp))
(`floatp
(if (or (not type) (eq type 'integerp))
(setq type 'floatp)))
(`integerp
(unless type (setq type 'integerp)))))
val)
type))
(t 'stringp)))
(defun org-babel-abs-var-exports (pair)
"Generate export clause for a var PAIR defined in the header."
(let ((var (car pair)))
(when (symbolp var) (setq var (symbol-name var)))
(setq var (downcase var))
(concat "export " var ";\n")))
(defun org-babel-abs-var-to-abs (pair)
"Convert an elisp val PAIR into an abs function declaration."
;; TODO list support
(let ((var (car pair))
(val (cdr pair)))
(when (symbolp var) (setq var (symbol-name var)))
(setq var (downcase var))
(when (symbolp val) (setq val (symbol-name val)))
(let* ((type-data (org-babel-abs-val-to-abs-type val))
(type (car type-data))
(formatted (org-babel-abs-format-val type-data val))
(suffix (car formatted))
(data (cdr formatted)))
(format "def %s %s%s() = %s;"
type
var
suffix
data))))
;; (defun org-babel-abs-table-sizes-to-abs (pair)
;; "Create constants of table dimensions, if PAIR is a table."
;; ;; TODO
;; (when (listp (cdr pair))
;; (cond
;; ((listp (cadr pair)) ;; a table
;; (concat
;; (format "Int %s_rows = %d;" (car pair) (length (cdr pair)))
;; "\n"
;; (format "Int %s_cols = %d;" (car pair) (length (cadr pair)))))
;; (t ;; a list declared in the #+begin_src line
;; (format "Int %s_cols = %d;" (car pair) (length (cdr pair)))))))
;; (defun org-babel-abs-utility-header-to-abs ()
;; "Generate a utility function to convert a column name
;; into a column number."
;; ;; TODO
;; (pcase org-babel-c-variant
;; ((or `c `cpp)
;; "int get_column_num (int nbcols, const char** header, const char* column)
;; {
;; int c;
;; for (c=0; c<nbcols; c++)
;; if (strcmp(header[c],column)==0)
;; return c;
;; return -1;
;; }
;; ")
;; (`d
;; "int get_column_num (string[] header, string column)
;; {
;; foreach (c, h; header)
;; if (h==column)
;; return to!int(c);
;; return -1;
;; }
;; ")))
;; (defun org-babel-abs-header-to-abs (head)
;; "Convert an elisp list of header table into an abs list
;; specifying a variable with the name of the table."
;; ;; TODO
;; (let ((table (car head))
;; (headers (cdr head)))
;; (concat
;; (format
;; "List<String> %s_header = list[%s];"
;; table
;; (mapconcat (lambda (h) (format "%S" h)) headers ","))
;; "\n"
;; (format
;; "String %s_h (Int row, Int col) = nth(get_column_num(%s_header,col), nth(row, table)); }"
;; table table table))))
(provide 'ob-abs)
;;; ob-abs.el ends here