1 ;;; ob-C.el --- Babel Functions for C and Similar Languages -*- lexical-binding: t; -*-
3 ;; Copyright (C) 2010-2017 Free Software Foundation, Inc.
5 ;; Author: Eric Schulte
7 ;; Keywords: literate programming, reproducible research
8 ;; Homepage: http://orgmode.org
10 ;; This file is part of GNU Emacs.
12 ;; GNU Emacs is free software: you can redistribute it and/or modify
13 ;; it under the terms of the GNU General Public License as published by
14 ;; the Free Software Foundation, either version 3 of the License, or
15 ;; (at your option) any later version.
17 ;; GNU Emacs is distributed in the hope that it will be useful,
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ;; GNU General Public License for more details.
22 ;; You should have received a copy of the GNU General Public License
23 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
27 ;; Org-Babel support for evaluating C, C++, D code.
29 ;; very limited implementation:
30 ;; - currently only support :results output
31 ;; - not much in the way of error feedback
39 (declare-function org-entry-get
"org" (pom property
&optional inherit literal-nil
))
40 (declare-function org-remove-indentation
"org" (code &optional n
))
41 (declare-function org-trim
"org" (s &optional keep-lead
))
43 (defvar org-babel-tangle-lang-exts
)
44 (add-to-list 'org-babel-tangle-lang-exts
'("C++" .
"cpp"))
45 (add-to-list 'org-babel-tangle-lang-exts
'("D" .
"d"))
47 (defvar org-babel-default-header-args
:C
'())
49 (defconst org-babel-header-args
:C
'((includes .
:any
)
55 "C/C++-specific header arguments.")
57 (defconst org-babel-header-args
:C
++
58 (append '((namespaces .
:any
))
59 org-babel-header-args
:C
)
60 "C++-specific header arguments.")
62 (defcustom org-babel-C-compiler
"gcc"
63 "Command used to compile a C source code file into an executable.
64 May be either a command in the path, like gcc
65 or an absolute path name, like /usr/local/bin/gcc
66 parameter may be used, like gcc -v"
71 (defcustom org-babel-C
++-compiler
"g++"
72 "Command used to compile a C++ source code file into an executable.
73 May be either a command in the path, like g++
74 or an absolute path name, like /usr/local/bin/g++
75 parameter may be used, like g++ -v"
80 (defcustom org-babel-D-compiler
"rdmd"
81 "Command used to compile and execute a D source code file.
82 May be either a command in the path, like rdmd
83 or an absolute path name, like /usr/local/bin/rdmd
84 parameter may be used, like rdmd --chatty"
89 (defvar org-babel-c-variant nil
90 "Internal variable used to hold which type of C (e.g. C or C++ or D)
91 is currently being evaluated.")
93 (defun org-babel-execute:cpp
(body params
)
94 "Execute BODY according to PARAMS.
95 This function calls `org-babel-execute:C++'."
96 (org-babel-execute:C
++ body params
))
98 (defun org-babel-expand-body:cpp
(body params
)
99 "Expand a block of C++ code with org-babel according to its
101 (org-babel-expand-body:C
++ body params
))
103 (defun org-babel-execute:C
++ (body params
)
104 "Execute a block of C++ code with org-babel.
105 This function is called by `org-babel-execute-src-block'."
106 (let ((org-babel-c-variant 'cpp
)) (org-babel-C-execute body params
)))
108 (defun org-babel-expand-body:C
++ (body params
)
109 "Expand a block of C++ code with org-babel according to its
111 (let ((org-babel-c-variant 'cpp
)) (org-babel-C-expand-C++ body params
)))
113 (defun org-babel-execute:D
(body params
)
114 "Execute a block of D code with org-babel.
115 This function is called by `org-babel-execute-src-block'."
116 (let ((org-babel-c-variant 'd
)) (org-babel-C-execute body params
)))
118 (defun org-babel-expand-body:D
(body params
)
119 "Expand a block of D code with org-babel according to its
121 (let ((org-babel-c-variant 'd
)) (org-babel-C-expand-D body params
)))
123 (defun org-babel-execute:C
(body params
)
124 "Execute a block of C code with org-babel.
125 This function is called by `org-babel-execute-src-block'."
126 (let ((org-babel-c-variant 'c
)) (org-babel-C-execute body params
)))
128 (defun org-babel-expand-body:C
(body params
)
129 "Expand a block of C code with org-babel according to its
131 (let ((org-babel-c-variant 'c
)) (org-babel-C-expand-C body params
)))
133 (defun org-babel-C-execute (body params
)
134 "This function should only be called by `org-babel-execute:C'
135 or `org-babel-execute:C++' or `org-babel-execute:D'."
136 (let* ((tmp-src-file (org-babel-temp-file
138 (pcase org-babel-c-variant
139 (`c
".c") (`cpp
".cpp") (`d
".d"))))
140 (tmp-bin-file ;not used for D
141 (org-babel-process-file-name
142 (org-babel-temp-file "C-bin-" org-babel-exeext
)))
143 (cmdline (cdr (assq :cmdline params
)))
144 (cmdline (if cmdline
(concat " " cmdline
) ""))
145 (flags (cdr (assq :flags params
)))
146 (flags (mapconcat 'identity
147 (if (listp flags
) flags
(list flags
)) " "))
148 (libs (org-babel-read
149 (or (cdr (assq :libs params
))
150 (org-entry-get nil
"libs" t
))
152 (libs (mapconcat #'identity
153 (if (listp libs
) libs
(list libs
))
156 (pcase org-babel-c-variant
157 (`c
(org-babel-C-expand-C body params
))
158 (`cpp
(org-babel-C-expand-C++ body params
))
159 (`d
(org-babel-C-expand-D body params
)))))
160 (with-temp-file tmp-src-file
(insert full-body
))
161 (pcase org-babel-c-variant
164 (format "%s -o %s %s %s %s"
165 (pcase org-babel-c-variant
166 (`c org-babel-C-compiler
)
167 (`cpp org-babel-C
++-compiler
))
170 (org-babel-process-file-name tmp-src-file
)
173 (`d nil
)) ;; no separate compilation for D
176 (pcase org-babel-c-variant
178 (concat tmp-bin-file cmdline
))
180 (format "%s %s %s %s"
183 (org-babel-process-file-name tmp-src-file
)
187 (setq results
(org-trim (org-remove-indentation results
)))
188 (org-babel-reassemble-table
189 (org-babel-result-cond (cdr (assq :result-params params
))
190 (org-babel-read results t
)
191 (let ((tmp-file (org-babel-temp-file "c-")))
192 (with-temp-file tmp-file
(insert results
))
193 (org-babel-import-elisp-from-file tmp-file
)))
195 (cdr (assq :colname-names params
)) (cdr (assq :colnames params
)))
197 (cdr (assq :rowname-names params
)) (cdr (assq :rownames params
)))))
200 (defun org-babel-C-expand-C++ (body params
)
201 "Expand a block of C or C++ code with org-babel according to
202 its header arguments."
203 (org-babel-C-expand-C body params
))
205 (defun org-babel-C-expand-C (body params
)
206 "Expand a block of C or C++ code with org-babel according to
207 its header arguments."
208 (let ((vars (org-babel--get-vars params
))
209 (colnames (cdr (assq :colname-names params
)))
210 (main-p (not (string= (cdr (assq :main params
)) "no")))
211 (includes (org-babel-read
212 (cdr (assq :includes params
))
214 (defines (org-babel-read
215 (cdr (assq :defines params
))
217 (namespaces (org-babel-read
218 (cdr (assq :namespaces params
))
220 (when (stringp includes
)
221 (setq includes
(split-string includes
)))
222 (when (stringp namespaces
)
223 (setq namespaces
(split-string namespaces
)))
224 (when (stringp defines
)
227 (dolist (x (split-string defines
))
230 (nconc result
(list (concat y
" " x
)))
232 (setq defines
(cdr result
))))
237 (lambda (inc) (format "#include %s" inc
))
241 (lambda (inc) (format "#define %s" inc
))
242 (if (listp defines
) defines
(list defines
)) "\n")
245 (lambda (inc) (format "using namespace %s;" inc
))
249 (mapconcat 'org-babel-C-var-to-C vars
"\n")
251 (mapconcat 'org-babel-C-table-sizes-to-C vars
"\n")
252 ;; tables headers utility
254 (org-babel-C-utility-header-to-C))
256 (mapconcat 'org-babel-C-header-to-C colnames
"\n")
259 (org-babel-C-ensure-main-wrap body
)
262 (defun org-babel-C-expand-D (body params
)
263 "Expand a block of D code with org-babel according to
264 its header arguments."
265 (let ((vars (org-babel--get-vars params
))
266 (colnames (cdr (assq :colname-names params
)))
267 (main-p (not (string= (cdr (assq :main params
)) "no")))
268 (imports (or (cdr (assq :imports params
))
269 (org-babel-read (org-entry-get nil
"imports" t
)))))
270 (when (stringp imports
)
271 (setq imports
(split-string imports
)))
272 (setq imports
(append imports
'("std.stdio" "std.conv")))
278 (lambda (inc) (format "import %s;" inc
))
281 (mapconcat 'org-babel-C-var-to-C vars
"\n")
283 (mapconcat 'org-babel-C-table-sizes-to-C vars
"\n")
284 ;; tables headers utility
286 (org-babel-C-utility-header-to-C))
288 (mapconcat 'org-babel-C-header-to-C colnames
"\n")
291 (org-babel-C-ensure-main-wrap body
)
294 (defun org-babel-C-ensure-main-wrap (body)
295 "Wrap BODY in a \"main\" function call if none exists."
296 (if (string-match "^[ \t]*[intvod]+[ \t\n\r]*main[ \t]*(.*)" body
)
298 (format "int main() {\n%s\nreturn 0;\n}\n" body
)))
300 (defun org-babel-prep-session:C
(_session _params
)
301 "This function does nothing as C is a compiled language with no
302 support for sessions"
303 (error "C is a compiled language -- no support for sessions"))
305 (defun org-babel-load-session:C
(_session _body _params
)
306 "This function does nothing as C is a compiled language with no
307 support for sessions"
308 (error "C is a compiled language -- no support for sessions"))
312 (defun org-babel-C-format-val (type val
)
313 "Handle the FORMAT part of TYPE with the data from VAL."
314 (let ((format-data (cadr type
)))
315 (if (stringp format-data
)
316 (cons "" (format format-data val
))
317 (funcall format-data val
))))
319 (defun org-babel-C-val-to-C-type (val)
320 "Determine the type of VAL.
321 Return a list (TYPE-NAME FORMAT). TYPE-NAME should be the name of the type.
322 FORMAT can be either a format string or a function which is called with VAL."
323 (let* ((basetype (org-babel-C-val-to-base-type val
))
326 (`integerp
'("int" "%d"))
327 (`floatp
'("double" "%f"))
330 (if (eq org-babel-c-variant
'd
) "string" "const char*")
332 (_ (error "unknown type %S" basetype
)))))
334 ((integerp val
) type
) ;; an integer declared in the #+begin_src line
335 ((floatp val
) type
) ;; a numeric declared in the #+begin_src line
336 ((and (listp val
) (listp (car val
))) ;; a table
340 (format "[%d][%d]" (length val
) (length (car val
)))
342 (if (eq org-babel-c-variant
'd
) "[\n" "{\n")
346 (if (eq org-babel-c-variant
'd
) " [" " {")
347 (mapconcat (lambda (w) (format ,(cadr type
) w
)) v
",")
348 (if (eq org-babel-c-variant
'd
) "]" "}")))
351 (if (eq org-babel-c-variant
'd
) "\n]" "\n}"))))))
352 ((or (listp val
) (vectorp val
)) ;; a list declared in the #+begin_src line
356 (format "[%d]" (length val
))
358 (if (eq org-babel-c-variant
'd
) "[" "{")
359 (mapconcat (lambda (v) (format ,(cadr type
) v
)) val
",")
360 (if (eq org-babel-c-variant
'd
) "]" "}"))))))
361 (t ;; treat unknown types as string
364 (defun org-babel-C-val-to-base-type (val)
365 "Determine the base type of VAL which may be
366 `integerp' if all base values are integers
367 `floatp' if all base values are either floating points or integers
368 `stringp' otherwise."
370 ((integerp val
) 'integerp
)
371 ((floatp val
) 'floatp
)
372 ((or (listp val
) (vectorp val
))
375 (pcase (org-babel-C-val-to-base-type v
)
376 (`stringp
(setq type
'stringp
))
378 (if (or (not type
) (eq type
'integerp
))
379 (setq type
'floatp
)))
381 (unless type
(setq type
'integerp
)))))
386 (defun org-babel-C-var-to-C (pair)
387 "Convert an elisp val into a string of C code specifying a var
390 (let ((var (car pair
))
393 (setq val
(symbol-name val
))
394 (when (= (length val
) 1)
395 (setq val
(string-to-char val
))))
396 (let* ((type-data (org-babel-C-val-to-C-type val
))
397 (type (car type-data
))
398 (formated (org-babel-C-format-val type-data val
))
399 (suffix (car formated
))
400 (data (cdr formated
)))
401 (format "%s %s%s = %s;"
407 (defun org-babel-C-table-sizes-to-C (pair)
408 "Create constants of table dimensions, if PAIR is a table."
409 (when (listp (cdr pair
))
411 ((listp (cadr pair
)) ;; a table
413 (format "const int %s_rows = %d;" (car pair
) (length (cdr pair
)))
415 (format "const int %s_cols = %d;" (car pair
) (length (cadr pair
)))))
416 (t ;; a list declared in the #+begin_src line
417 (format "const int %s_cols = %d;" (car pair
) (length (cdr pair
)))))))
419 (defun org-babel-C-utility-header-to-C ()
420 "Generate a utility function to convert a column name
421 into a column number."
422 (pcase org-babel-c-variant
424 "int get_column_num (int nbcols, const char** header, const char* column)
427 for (c=0; c<nbcols; c++)
428 if (strcmp(header[c],column)==0)
434 "int get_column_num (string[] header, string column)
436 foreach (c, h; header)
443 (defun org-babel-C-header-to-C (head)
444 "Convert an elisp list of header table into a C or D vector
445 specifying a variable with the name of the table."
446 (let ((table (car head
))
447 (headers (cdr head
)))
450 (pcase org-babel-c-variant
451 ((or `c
`cpp
) "const char* %s_header[%d] = {%s};")
452 (`d
"string %s_header[%d] = [%s];"))
455 (mapconcat (lambda (h) (format "%S" h
)) headers
","))
457 (pcase org-babel-c-variant
460 "const char* %s_h (int row, const char* col) { return %s[row][get_column_num(%d,%s_header,col)]; }"
461 table table
(length headers
) table
))
464 "string %s_h (size_t row, string col) { return %s[row][get_column_num(%s_header,col)]; }"
465 table table table
))))))
469 ;;; ob-C.el ends here