1 ;;; ob-C.el --- org-babel functions for C and similar languages
3 ;; Copyright (C) 2010-2015 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
37 (declare-function org-entry-get
"org"
38 (pom property
&optional inherit literal-nil
))
39 (declare-function org-remove-indentation
"org" (code &optional n
))
41 (defvar org-babel-tangle-lang-exts
)
42 (add-to-list 'org-babel-tangle-lang-exts
'("C++" .
"cpp"))
43 (add-to-list 'org-babel-tangle-lang-exts
'("D" .
"d"))
45 (defvar org-babel-default-header-args
:C
'())
47 (defcustom org-babel-C-compiler
"gcc"
48 "Command used to compile a C source code file into an executable.
49 May be either a command in the path, like gcc
50 or an absolute path name, like /usr/local/bin/gcc
51 parameter may be used, like gcc -v"
56 (defcustom org-babel-C
++-compiler
"g++"
57 "Command used to compile a C++ source code file into an executable.
58 May be either a command in the path, like g++
59 or an absolute path name, like /usr/local/bin/g++
60 parameter may be used, like g++ -v"
65 (defcustom org-babel-D-compiler
"rdmd"
66 "Command used to compile and execute a D source code file.
67 May be either a command in the path, like rdmd
68 or an absolute path name, like /usr/local/bin/rdmd
69 parameter may be used, like rdmd --chatty"
74 (defvar org-babel-c-variant nil
75 "Internal variable used to hold which type of C (e.g. C or C++ or D)
76 is currently being evaluated.")
78 (defun org-babel-execute:cpp
(body params
)
79 "Execute BODY according to PARAMS.
80 This function calls `org-babel-execute:C++'."
81 (org-babel-execute:C
++ body params
))
83 (defun org-babel-expand-body:cpp
(body params
)
84 "Expand a block of C++ code with org-babel according to it's
86 (org-babel-expand-body:C
++ body params
))
88 (defun org-babel-execute:C
++ (body params
)
89 "Execute a block of C++ code with org-babel.
90 This function is called by `org-babel-execute-src-block'."
91 (let ((org-babel-c-variant 'cpp
)) (org-babel-C-execute body params
)))
93 (defun org-babel-expand-body:C
++ (body params
)
94 "Expand a block of C++ code with org-babel according to it's
96 (let ((org-babel-c-variant 'cpp
)) (org-babel-C-expand-C++ body params
)))
98 (defun org-babel-execute:D
(body params
)
99 "Execute a block of D code with org-babel.
100 This function is called by `org-babel-execute-src-block'."
101 (let ((org-babel-c-variant 'd
)) (org-babel-C-execute body params
)))
103 (defun org-babel-expand-body:D
(body params
)
104 "Expand a block of D code with org-babel according to it's
106 (let ((org-babel-c-variant 'd
)) (org-babel-C-expand-D body params
)))
108 (defun org-babel-execute:C
(body params
)
109 "Execute a block of C code with org-babel.
110 This function is called by `org-babel-execute-src-block'."
111 (let ((org-babel-c-variant 'c
)) (org-babel-C-execute body params
)))
113 (defun org-babel-expand-body:C
(body params
)
114 "Expand a block of C code with org-babel according to it's
116 (let ((org-babel-c-variant 'c
)) (org-babel-C-expand-C body params
)))
118 (defun org-babel-C-execute (body params
)
119 "This function should only be called by `org-babel-execute:C'
120 or `org-babel-execute:C++' or `org-babel-execute:D'."
121 (let* ((tmp-src-file (org-babel-temp-file
123 (case org-babel-c-variant
127 (tmp-bin-file (org-babel-temp-file "C-bin-" org-babel-exeext
)) ;; not used for D
128 (cmdline (cdr (assoc :cmdline params
)))
129 (cmdline (if cmdline
(concat " " cmdline
) ""))
130 (flags (cdr (assoc :flags params
)))
131 (flags (mapconcat 'identity
132 (if (listp flags
) flags
(list flags
)) " "))
134 (case org-babel-c-variant
135 (c (org-babel-C-expand-C body params
))
136 (cpp (org-babel-C-expand-C++ body params
))
137 (d (org-babel-C-expand-D body params
)))))
138 (with-temp-file tmp-src-file
(insert full-body
))
139 (case org-babel-c-variant
142 (format "%s -o %s %s %s"
143 (case org-babel-c-variant
144 (c org-babel-C-compiler
)
145 (cpp org-babel-C
++-compiler
))
146 (org-babel-process-file-name tmp-bin-file
)
148 (org-babel-process-file-name tmp-src-file
)) ""))
149 (d nil
)) ;; no separate compilation for D
152 (case org-babel-c-variant
154 (concat tmp-bin-file cmdline
))
156 (format "%s %s %s %s"
159 (org-babel-process-file-name tmp-src-file
)
163 (setq results
(org-babel-trim (org-remove-indentation results
)))
164 (org-babel-reassemble-table
165 (org-babel-result-cond (cdr (assoc :result-params params
))
166 (org-babel-read results t
)
167 (let ((tmp-file (org-babel-temp-file "c-")))
168 (with-temp-file tmp-file
(insert results
))
169 (org-babel-import-elisp-from-file tmp-file
)))
171 (cdr (assoc :colname-names params
)) (cdr (assoc :colnames params
)))
173 (cdr (assoc :rowname-names params
)) (cdr (assoc :rownames params
)))))
176 (defun org-babel-C-expand-C++ (body params
)
177 "Expand a block of C or C++ code with org-babel according to
178 it's header arguments."
179 (org-babel-C-expand-C body params
))
181 (defun org-babel-C-expand-C (body params
)
182 "Expand a block of C or C++ code with org-babel according to
183 it's header arguments."
184 (let ((vars (mapcar #'cdr
(org-babel-get-header params
:var
)))
185 (colnames (cdar (org-babel-get-header params
:colname-names
)))
186 (main-p (not (string= (cdr (assoc :main params
)) "no")))
187 (includes (org-babel-read
188 (or (cdr (assoc :includes params
))
189 (org-entry-get nil
"includes" t
))
191 (defines (org-babel-read
192 (or (cdr (assoc :defines params
))
193 (org-entry-get nil
"defines" t
))
195 (when (stringp includes
)
196 (setq includes
(split-string includes
)))
197 (when (stringp defines
)
200 (dolist (x (split-string defines
))
203 (nconc result
(list (concat y
" " x
)))
205 (setq defines
(cdr result
))))
210 (lambda (inc) (format "#include %s" inc
))
214 (lambda (inc) (format "#define %s" inc
))
215 (if (listp defines
) defines
(list defines
)) "\n")
217 (mapconcat 'org-babel-C-var-to-C vars
"\n")
219 (mapconcat 'org-babel-C-table-sizes-to-C vars
"\n")
220 ;; tables headers utility
222 (org-babel-C-utility-header-to-C))
224 (mapconcat 'org-babel-C-header-to-C colnames
"\n")
227 (org-babel-C-ensure-main-wrap body
)
230 (defun org-babel-C-expand-D (body params
)
231 "Expand a block of D code with org-babel according to
232 it's header arguments."
233 (let ((vars (mapcar #'cdr
(org-babel-get-header params
:var
)))
234 (colnames (cdar (org-babel-get-header params
:colname-names
)))
235 (main-p (not (string= (cdr (assoc :main params
)) "no")))
236 (imports (or (cdr (assoc :imports params
))
237 (org-babel-read (org-entry-get nil
"imports" t
)))))
238 (when (stringp imports
)
239 (setq imports
(split-string imports
)))
240 (setq imports
(append imports
'("std.stdio" "std.conv")))
246 (lambda (inc) (format "import %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-ensure-main-wrap (body)
263 "Wrap BODY in a \"main\" function call if none exists."
264 (if (string-match "^[ \t]*[intvod]+[ \t\n\r]*main[ \t]*(.*)" body
)
266 (format "int main() {\n%s\nreturn 0;\n}\n" body
)))
268 (defun org-babel-prep-session:C
(session params
)
269 "This function does nothing as C is a compiled language with no
270 support for sessions"
271 (error "C is a compiled languages -- no support for sessions"))
273 (defun org-babel-load-session:C
(session body params
)
274 "This function does nothing as C is a compiled language with no
275 support for sessions"
276 (error "C is a compiled languages -- no support for sessions"))
280 (defun org-babel-C-format-val (type val
)
281 "Handle the FORMAT part of TYPE with the data from VAL."
282 (let ((format-data (cadr type
)))
283 (if (stringp format-data
)
284 (cons "" (format format-data val
))
285 (funcall format-data val
))))
287 (defun org-babel-C-val-to-C-type (val)
288 "Determine the type of VAL.
289 Return a list (TYPE-NAME FORMAT). TYPE-NAME should be the name of the type.
290 FORMAT can be either a format string or a function which is called with VAL."
291 (let* ((basetype (org-babel-C-val-to-base-type val
))
294 (integerp '("int" "%d"))
295 (floatp '("double" "%f"))
298 (if (equal org-babel-c-variant
'd
) "string" "const char*")
300 (t (error "unknown type %S" basetype
)))))
302 ((integerp val
) type
) ;; an integer declared in the #+begin_src line
303 ((floatp val
) type
) ;; a numeric declared in the #+begin_src line
304 ((and (listp val
) (listp (car val
))) ;; a table
308 (format "[%d][%d]" (length val
) (length (car val
)))
310 (if (equal org-babel-c-variant
'd
) "[\n" "{\n")
314 (if (equal org-babel-c-variant
'd
) " [" " {")
315 (mapconcat (lambda (w) (format ,(cadr type
) w
)) v
",")
316 (if (equal org-babel-c-variant
'd
) "]" "}")))
319 (if (equal org-babel-c-variant
'd
) "\n]" "\n}"))))))
320 ((or (listp val
) (vectorp val
)) ;; a list declared in the #+begin_src line
324 (format "[%d]" (length val
))
326 (if (equal org-babel-c-variant
'd
) "[" "{")
327 (mapconcat (lambda (v) (format ,(cadr type
) v
)) val
",")
328 (if (equal org-babel-c-variant
'd
) "]" "}"))))))
329 (t ;; treat unknown types as string
332 (defun org-babel-C-val-to-base-type (val)
333 "Determine the base type of VAL which may be
334 'integerp if all base values are integers
335 'floatp if all base values are either floating points or integers
338 ((integerp val
) 'integerp
)
339 ((floatp val
) 'floatp
)
340 ((or (listp val
) (vectorp val
))
343 (case (org-babel-C-val-to-base-type v
)
344 (stringp (setq type
'stringp
))
346 (if (or (not type
) (eq type
'integerp
))
347 (setq type
'floatp
)))
349 (unless type
(setq type
'integerp
)))))
354 (defun org-babel-C-var-to-C (pair)
355 "Convert an elisp val into a string of C code specifying a var
358 (let ((var (car pair
))
361 (setq val
(symbol-name val
))
362 (when (= (length val
) 1)
363 (setq val
(string-to-char val
))))
364 (let* ((type-data (org-babel-C-val-to-C-type val
))
365 (type (car type-data
))
366 (formated (org-babel-C-format-val type-data val
))
367 (suffix (car formated
))
368 (data (cdr formated
)))
369 (format "%s %s%s = %s;"
375 (defun org-babel-C-table-sizes-to-C (pair)
376 "Create constants of table dimensions, if PAIR is a table."
377 (when (listp (cdr pair
))
379 ((listp (cadr pair
)) ;; a table
381 (format "const int %s_rows = %d;" (car pair
) (length (cdr pair
)))
383 (format "const int %s_cols = %d;" (car pair
) (length (cadr pair
)))))
384 (t ;; a list declared in the #+begin_src line
385 (format "const int %s_cols = %d;" (car pair
) (length (cdr pair
)))))))
387 (defun org-babel-C-utility-header-to-C ()
388 "Generate a utility function to convert a column name
389 into a column number."
390 (case org-babel-c-variant
392 "int get_column_num (int nbcols, const char** header, const char* column)
395 for (c=0; c<nbcols; c++)
396 if (strcmp(header[c],column)==0)
403 "int get_column_num (string[] header, string column)
405 foreach (c, h; header)
413 (defun org-babel-C-header-to-C (head)
414 "Convert an elisp list of header table into a C or D vector
415 specifying a variable with the name of the table."
416 (let ((table (car head
))
417 (headers (cdr head
)))
420 (case org-babel-c-variant
421 ((c cpp
) "const char* %s_header[%d] = {%s};")
422 (d "string %s_header[%d] = [%s];"))
425 (mapconcat (lambda (h) (format "%S" h
)) headers
","))
427 (case org-babel-c-variant
430 "const char* %s_h (int row, const char* col) { return %s[row][get_column_num(%d,%s_header,col)]; }"
431 table table
(length headers
) table
))
434 "string %s_h (ulong row, string col) { return %s[row][get_column_num(%s_header,col)]; }"
435 table table table
))))))
439 ;;; ob-C.el ends here