ob-C.el 7.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. ;;; ob-C.el --- org-babel functions for C and similar languages
  2. ;; Copyright (C) 2010 Eric Schulte
  3. ;; Author: Eric Schulte
  4. ;; Keywords: literate programming, reproducible research
  5. ;; Homepage: http://orgmode.org
  6. ;; Version: 0.01
  7. ;;; License:
  8. ;; This program is free software; you can redistribute it and/or modify
  9. ;; it under the terms of the GNU General Public License as published by
  10. ;; the Free Software Foundation; either version 3, or (at your option)
  11. ;; any later version.
  12. ;;
  13. ;; This program is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;;
  18. ;; You should have received a copy of the GNU General Public License
  19. ;; along with GNU Emacs; see the file COPYING. If not, write to the
  20. ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
  21. ;; Boston, MA 02110-1301, USA.
  22. ;;; Commentary:
  23. ;; Org-Babel support for evaluating C code.
  24. ;;
  25. ;; very limited implementation:
  26. ;; - currently only support :results output
  27. ;; - not much in the way of error feedback
  28. ;;; Code:
  29. (require 'ob)
  30. (require 'cc-mode)
  31. (add-to-list 'org-babel-tangle-lang-exts '("c++" . "cpp"))
  32. (defvar org-babel-C-compiler "gcc"
  33. "Command used to compile a C source code file into an
  34. executable.")
  35. (defvar org-babel-c++-compiler "g++"
  36. "Command used to compile a c++ source code file into an
  37. executable.")
  38. (defun org-babel-execute:cpp (body params)
  39. "Execute BODY according to PARAMS. This function calls
  40. `org-babel-execute:C'."
  41. (org-babel-execute:C body params))
  42. (defun org-babel-execute:c++ (body params)
  43. "Execute a block of C++ code with org-babel. This function is
  44. called by `org-babel-execute-src-block'."
  45. (let ((c-variant 'cpp)) (org-babel-C-execute body params)))
  46. (defun org-babel-expand-body:c++ (body params &optional processed-params)
  47. "Expand a block of C++ code with org-babel according to it's
  48. header arguments (calls `org-babel-C-expand')."
  49. (let ((c-variant 'cpp)) (org-babel-C-expand body params processed-params)))
  50. (defun org-babel-execute:C (body params)
  51. "Execute a block of C code with org-babel. This function is
  52. called by `org-babel-execute-src-block'."
  53. (let ((c-variant 'c)) (org-babel-C-execute body params)))
  54. (defun org-babel-expand-body:c (body params &optional processed-params)
  55. "Expand a block of C code with org-babel according to it's
  56. header arguments (calls `org-babel-C-expand')."
  57. (let ((c-variant 'c)) (org-babel-C-expand body params processed-params)))
  58. (defun org-babel-C-execute (body params)
  59. "This function should only be called by `org-babel-execute:C'
  60. or `org-babel-execute:c++'."
  61. (message "executing C source code block")
  62. (let* ((processed-params (org-babel-process-params params))
  63. (tmp-src-file (make-temp-file "org-babel-C-src" nil
  64. (case c-variant
  65. ('c ".c")
  66. ('cpp ".cpp"))))
  67. (tmp-bin-file (make-temp-file "org-babel-C-bin"))
  68. (tmp-out-file (make-temp-file "org-babel-C-out"))
  69. (cmdline (cdr (assoc :cmdline params)))
  70. (flags (cdr (assoc :flags params)))
  71. (full-body (org-babel-C-expand body params))
  72. (error-buf (get-buffer-create "*Org-Babel Error Output*"))
  73. (compile
  74. (progn
  75. (with-temp-file tmp-src-file (insert full-body))
  76. (with-temp-buffer
  77. (org-babel-shell-command-on-region
  78. (point-min) (point-max)
  79. (format "%s -o %s %s %s"
  80. (case c-variant
  81. ('c org-babel-C-compiler)
  82. ('cpp org-babel-c++-compiler))
  83. tmp-bin-file
  84. (mapconcat 'identity
  85. (if (listp flags) flags (list flags)) " ")
  86. tmp-src-file)
  87. (current-buffer) 'replace error-buf)))))
  88. (if (= compile 0)
  89. (org-babel-reassemble-table
  90. (org-babel-read
  91. (org-babel-trim
  92. (with-temp-buffer
  93. (org-babel-shell-command-on-region
  94. (point-min) (point-max)
  95. (concat tmp-bin-file (if cmdline (concat " " cmdline) ""))
  96. (current-buffer) 'replace)
  97. (buffer-string))))
  98. (org-babel-pick-name (nth 4 processed-params) (cdr (assoc :colnames params)))
  99. (org-babel-pick-name (nth 5 processed-params) (cdr (assoc :rownames params))))
  100. (progn
  101. (with-current-buffer error-buf
  102. (goto-char (point-max))
  103. (insert (concat "\n\n--body--\n" full-body))
  104. (goto-char (point-min)))
  105. (display-buffer error-buf) nil))))
  106. (defun org-babel-C-expand (body params &optional processed-params)
  107. "Expand a block of C or C++ code with org-babel according to
  108. it's header arguments."
  109. (let ((vars (second (or processed-params
  110. (org-babel-process-params params))))
  111. (main-p (not (string= (cdr (assoc :main params)) "no")))
  112. (includes (or (cdr (assoc :includes params))
  113. (org-babel-read (org-entry-get nil "includes" t))))
  114. (defines (org-babel-read
  115. (or (cdr (assoc :defines params))
  116. (org-babel-read (org-entry-get nil "defines" t))))))
  117. (mapconcat 'identity
  118. (list
  119. ;; includes
  120. (mapconcat
  121. (lambda (inc) (format "#include %s" inc))
  122. (if (listp includes) includes (list includes)) "\n")
  123. ;; defines
  124. (mapconcat
  125. (lambda (inc) (format "#define %s" inc))
  126. (if (listp defines) defines (list defines)) "\n")
  127. ;; variables
  128. (mapconcat 'org-babel-C-var-to-C vars "\n")
  129. ;; body
  130. (if main-p
  131. (org-babel-C-ensure-main-wrap body)
  132. body) "\n") "\n")))
  133. (defun org-babel-C-ensure-main-wrap (body)
  134. "Wrap body in a \"main\" function call if none exists."
  135. (if (string-match "^[ \t]*[intvod]+[ \t]*main[ \t]*(.*)" body)
  136. body
  137. (format "int main() {\n%s\n}\n" body)))
  138. (defun org-babel-prep-session:C (session params)
  139. "This function does nothing as C is a compiled language with no
  140. support for sessions"
  141. (error "C is a compiled languages -- no support for sessions"))
  142. (defun org-babel-load-session:C (session body params)
  143. "This function does nothing as C is a compiled language with no
  144. support for sessions"
  145. (error "C is a compiled languages -- no support for sessions"))
  146. ;; helper functions
  147. (defun org-babel-C-var-to-C (pair)
  148. "Convert an elisp val into a string of C code specifying a var
  149. of the same value."
  150. ;; TODO list support
  151. (let ((var (car pair))
  152. (val (cdr pair)))
  153. (when (symbolp val)
  154. (setq val (symbol-name val))
  155. (when (= (length val) 1)
  156. (setq val (string-to-char val))))
  157. (cond
  158. ((integerp val)
  159. (format "int %S = %S;" var val))
  160. ((floatp val)
  161. (format "double %S = %S;" var val))
  162. ((or (characterp val))
  163. (format "char %S = '%S';" var val))
  164. ((stringp val)
  165. (format "char %S[%d] = \"%s\";"
  166. var (+ 1 (length val)) val))
  167. (t
  168. (format "u32 %S = %S;" var val)))))
  169. (provide 'ob-C)
  170. ;;; ob-C.el ends here