ob-C: lexical-let requires cl at compilation time
[org-mode/org-tableheadings.git] / lisp / ob-C.el
blob2fcec790c436bc3e2b19e3f29c0947a049ff3bf7
1 ;;; ob-C.el --- org-babel functions for C and similar languages
3 ;; Copyright (C) 2010-2014 Free Software Foundation, Inc.
5 ;; Author: Eric Schulte
6 ;; Keywords: literate programming, reproducible research
7 ;; Homepage: http://orgmode.org
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
24 ;;; Commentary:
26 ;; Org-Babel support for evaluating C code.
28 ;; very limited implementation:
29 ;; - currently only support :results output
30 ;; - not much in the way of error feedback
32 ;;; Code:
33 (eval-when-compile
34 (require 'cl))
35 (require 'ob)
36 (require 'cc-mode)
38 (declare-function org-entry-get "org"
39 (pom property &optional inherit literal-nil))
42 (defvar org-babel-tangle-lang-exts)
43 (add-to-list 'org-babel-tangle-lang-exts '("C++" . "cpp"))
45 (defvar org-babel-default-header-args:C '())
47 (defvar org-babel-C-compiler "gcc"
48 "Command used to compile a C source code file into an
49 executable.")
51 (defvar org-babel-C++-compiler "g++"
52 "Command used to compile a C++ source code file into an
53 executable.")
55 (defvar org-babel-c-variant nil
56 "Internal variable used to hold which type of C (e.g. C or C++)
57 is currently being evaluated.")
59 (defun org-babel-execute:cpp (body params)
60 "Execute BODY according to PARAMS.
61 This function calls `org-babel-execute:C++'."
62 (org-babel-execute:C++ body params))
64 (defun org-babel-execute:C++ (body params)
65 "Execute a block of C++ code with org-babel.
66 This function is called by `org-babel-execute-src-block'."
67 (let ((org-babel-c-variant 'cpp)) (org-babel-C-execute body params)))
69 (defun org-babel-expand-body:C++ (body params)
70 "Expand a block of C++ code with org-babel according to it's
71 header arguments (calls `org-babel-C-expand')."
72 (let ((org-babel-c-variant 'cpp)) (org-babel-C-expand body params)))
74 (defun org-babel-execute:C (body params)
75 "Execute a block of C code with org-babel.
76 This function is called by `org-babel-execute-src-block'."
77 (let ((org-babel-c-variant 'c)) (org-babel-C-execute body params)))
79 (defun org-babel-expand-body:c (body params)
80 "Expand a block of C code with org-babel according to it's
81 header arguments (calls `org-babel-C-expand')."
82 (let ((org-babel-c-variant 'c)) (org-babel-C-expand body params)))
84 (defun org-babel-C-execute (body params)
85 "This function should only be called by `org-babel-execute:C'
86 or `org-babel-execute:C++'."
87 (let* ((tmp-src-file (org-babel-temp-file
88 "C-src-"
89 (cond
90 ((equal org-babel-c-variant 'c) ".c")
91 ((equal org-babel-c-variant 'cpp) ".cpp"))))
92 (tmp-bin-file (org-babel-temp-file "C-bin-" org-babel-exeext))
93 (cmdline (cdr (assoc :cmdline params)))
94 (flags (cdr (assoc :flags params)))
95 (full-body (org-babel-C-expand body params))
96 (compile
97 (progn
98 (with-temp-file tmp-src-file (insert full-body))
99 (org-babel-eval
100 (format "%s -o %s %s %s"
101 (cond
102 ((equal org-babel-c-variant 'c) org-babel-C-compiler)
103 ((equal org-babel-c-variant 'cpp) org-babel-C++-compiler))
104 (org-babel-process-file-name tmp-bin-file)
105 (mapconcat 'identity
106 (if (listp flags) flags (list flags)) " ")
107 (org-babel-process-file-name tmp-src-file)) ""))))
108 (let ((results
109 (org-babel-trim
110 (org-babel-eval
111 (concat tmp-bin-file (if cmdline (concat " " cmdline) "")) ""))))
112 (org-babel-reassemble-table
113 (org-babel-result-cond (cdr (assoc :result-params params))
114 (org-babel-read results)
115 (let ((tmp-file (org-babel-temp-file "c-")))
116 (with-temp-file tmp-file (insert results))
117 (org-babel-import-elisp-from-file tmp-file)))
118 (org-babel-pick-name
119 (cdr (assoc :colname-names params)) (cdr (assoc :colnames params)))
120 (org-babel-pick-name
121 (cdr (assoc :rowname-names params)) (cdr (assoc :rownames params)))))
124 (defun org-babel-C-expand (body params)
125 "Expand a block of C or C++ code with org-babel according to
126 it's header arguments."
127 (let ((vars (mapcar #'cdr (org-babel-get-header params :var)))
128 (main-p (not (string= (cdr (assoc :main params)) "no")))
129 (includes (or (cdr (assoc :includes params))
130 (org-babel-read (org-entry-get nil "includes" t))))
131 (defines (org-babel-read
132 (or (cdr (assoc :defines params))
133 (org-babel-read (org-entry-get nil "defines" t))))))
134 (mapconcat 'identity
135 (list
136 ;; includes
137 (mapconcat
138 (lambda (inc) (format "#include %s" inc))
139 (if (listp includes) includes (list includes)) "\n")
140 ;; defines
141 (mapconcat
142 (lambda (inc) (format "#define %s" inc))
143 (if (listp defines) defines (list defines)) "\n")
144 ;; variables
145 (mapconcat 'org-babel-C-var-to-C vars "\n")
146 ;; body
147 (if main-p
148 (org-babel-C-ensure-main-wrap body)
149 body) "\n") "\n")))
151 (defun org-babel-C-ensure-main-wrap (body)
152 "Wrap BODY in a \"main\" function call if none exists."
153 (if (string-match "^[ \t]*[intvod]+[ \t\n\r]*main[ \t]*(.*)" body)
154 body
155 (format "int main() {\n%s\nreturn 0;\n}\n" body)))
157 (defun org-babel-prep-session:C (session params)
158 "This function does nothing as C is a compiled language with no
159 support for sessions"
160 (error "C is a compiled languages -- no support for sessions"))
162 (defun org-babel-load-session:C (session body params)
163 "This function does nothing as C is a compiled language with no
164 support for sessions"
165 (error "C is a compiled languages -- no support for sessions"))
167 ;; helper functions
169 (defun org-babel-C-format-val (type val)
170 "Handle the FORMAT part of TYPE with the data from VAL."
171 (let ((format-data (cadr type)))
172 (if (stringp format-data)
173 (cons "" (format format-data val))
174 (funcall format-data val))))
176 (defun org-babel-C-val-to-C-type (val)
177 "Determine the type of VAL.
178 Return a list (TYPE-NAME FORMAT). TYPE-NAME should be the name of the type.
179 FORMAT can be either a format string or a function which is called with VAL."
180 (cond
181 ((integerp val) '("int" "%d"))
182 ((floatp val) '("double" "%f"))
183 ((or (listp val) (vectorp val))
184 (lexical-let ((type (org-babel-C-val-to-C-list-type val)))
185 (list (car type)
186 (lambda (val)
187 (cons
188 (format "[%d]%s"
189 (length val)
190 (car (org-babel-C-format-val type (elt val 0))))
191 (concat "{ "
192 (mapconcat (lambda (v)
193 (cdr (org-babel-C-format-val type v)))
195 ", ")
196 " }"))))))
197 (t ;; treat unknown types as string
198 '("char" (lambda (val)
199 (let ((s (format "%s" val))) ;; convert to string for unknown types
200 (cons (format "[%d]" (1+ (length s)))
201 (concat "\"" s "\""))))))))
203 (defun org-babel-C-val-to-C-list-type (val)
204 "Determine the C array type of a VAL."
205 (let (type)
206 (mapc
207 #'(lambda (i)
208 (let* ((tmp-type (org-babel-C-val-to-C-type i))
209 (type-name (car type))
210 (tmp-type-name (car tmp-type)))
211 (when (and type (not (string= type-name tmp-type-name)))
212 (if (and (member type-name '("int" "double" "int32_t"))
213 (member tmp-type-name '("int" "double" "int32_t")))
214 (setq tmp-type '("double" "" "%f"))
215 (error "Only homogeneous lists are supported by C. You can not mix %s and %s"
216 type-name
217 tmp-type-name)))
218 (setq type tmp-type)))
219 val)
220 type))
222 (defun org-babel-C-var-to-C (pair)
223 "Convert an elisp val into a string of C code specifying a var
224 of the same value."
225 ;; TODO list support
226 (let ((var (car pair))
227 (val (cdr pair)))
228 (when (symbolp val)
229 (setq val (symbol-name val))
230 (when (= (length val) 1)
231 (setq val (string-to-char val))))
232 (let* ((type-data (org-babel-C-val-to-C-type val))
233 (type (car type-data))
234 (formated (org-babel-C-format-val type-data val))
235 (suffix (car formated))
236 (data (cdr formated)))
237 (format "%s %s%s = %s;"
238 type
240 suffix
241 data))))
243 (provide 'ob-C)
245 ;;; ob-C.el ends here