ob-C.el 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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. (org-babel-add-interpreter "C")
  32. (add-to-list 'org-babel-tangle-langs '("C" "c" nil))
  33. (org-babel-add-interpreter "c++")
  34. (add-to-list 'org-babel-tangle-langs '("c++" "cpp" nil))
  35. (defvar org-babel-C-compiler "gcc"
  36. "Command used to compile a C source code file into an
  37. executable.")
  38. (defvar org-babel-c++-compiler "g++"
  39. "Command used to compile a c++ source code file into an
  40. executable.")
  41. (defun org-babel-execute:cpp (body params)
  42. "Execute BODY according to PARAMS. This function calls
  43. `org-babel-execute:C'."
  44. (org-babel-execute:C body params))
  45. (defun org-babel-execute:c++ (body params)
  46. "Execute a block of C++ code with org-babel. This function is
  47. called by `org-babel-execute-src-block'."
  48. (let ((c-variant 'cpp)) (org-babel-C-execute body params)))
  49. (defun org-babel-expand-body:c++ (body params &optional processed-params)
  50. "Expand a block of C++ code with org-babel according to it's
  51. header arguments (calls `org-babel-C-expand')."
  52. (let ((c-variant 'cpp)) (org-babel-C-expand body params processed-params)))
  53. (defun org-babel-execute:C (body params)
  54. "Execute a block of C code with org-babel. This function is
  55. called by `org-babel-execute-src-block'."
  56. (let ((c-variant 'c)) (org-babel-C-execute body params)))
  57. (defun org-babel-expand-body:c (body params &optional processed-params)
  58. "Expand a block of C code with org-babel according to it's
  59. header arguments (calls `org-babel-C-expand')."
  60. (let ((c-variant 'c)) (org-babel-C-expand body params processed-params)))
  61. (defun org-babel-C-execute (body params)
  62. "This function should only be called by `org-babel-execute:C'
  63. or `org-babel-execute:c++'."
  64. (message "executing C source code block")
  65. (let* ((processed-params (org-babel-process-params params))
  66. (tmp-src-file (make-temp-file "org-babel-C-src" nil
  67. (case c-variant
  68. ('c ".c")
  69. ('cpp ".cpp"))))
  70. (tmp-bin-file (make-temp-file "org-babel-C-bin"))
  71. (tmp-out-file (make-temp-file "org-babel-C-out"))
  72. (cmdline (cdr (assoc :cmdline params)))
  73. (flags (cdr (assoc :flags params)))
  74. (full-body (org-babel-C-expand body params))
  75. (error-buf (get-buffer-create "*Org-Babel Error Output*"))
  76. (compile
  77. (progn
  78. (with-temp-file tmp-src-file (insert full-body))
  79. (with-temp-buffer
  80. (org-babel-shell-command-on-region
  81. (point-min) (point-max)
  82. (format "%s -o %s %s %s"
  83. (case c-variant
  84. ('c org-babel-C-compiler)
  85. ('cpp org-babel-c++-compiler))
  86. tmp-bin-file
  87. (mapconcat 'identity
  88. (if (listp flags) flags (list flags)) " ")
  89. tmp-src-file)
  90. (current-buffer) 'replace error-buf)))))
  91. (if (= compile 0)
  92. (org-babel-reassemble-table
  93. (org-babel-read
  94. (org-babel-trim
  95. (with-temp-buffer
  96. (org-babel-shell-command-on-region
  97. (point-min) (point-max)
  98. (concat tmp-bin-file (if cmdline (concat " " cmdline) ""))
  99. (current-buffer) 'replace)
  100. (buffer-string))))
  101. (org-babel-pick-name (nth 4 processed-params) (cdr (assoc :colnames params)))
  102. (org-babel-pick-name (nth 5 processed-params) (cdr (assoc :rownames params))))
  103. (progn
  104. (with-current-buffer error-buf
  105. (goto-char (point-max))
  106. (insert (concat "\n\n--body--\n" full-body))
  107. (goto-char (point-min)))
  108. (display-buffer error-buf) nil))))
  109. (defun org-babel-C-expand (body params &optional processed-params)
  110. "Expand a block of C or C++ code with org-babel according to
  111. it's header arguments."
  112. (let ((vars (second (or processed-params
  113. (org-babel-process-params params))))
  114. (main-p (not (string= (cdr (assoc :main params)) "no")))
  115. (includes (or (cdr (assoc :includes params))
  116. (org-babel-read (org-entry-get nil "includes" t))))
  117. (defines (org-babel-read
  118. (or (cdr (assoc :defines params))
  119. (org-babel-read (org-entry-get nil "defines" t))))))
  120. (mapconcat 'identity
  121. (list
  122. ;; includes
  123. (mapconcat
  124. (lambda (inc) (format "#include %s" inc))
  125. (if (listp includes) includes (list includes)) "\n")
  126. ;; defines
  127. (mapconcat
  128. (lambda (inc) (format "#define %s" inc))
  129. (if (listp defines) defines (list defines)) "\n")
  130. ;; variables
  131. (mapconcat 'org-babel-C-var-to-C vars "\n")
  132. ;; body
  133. (if main-p
  134. (org-babel-C-ensure-main-wrap body)
  135. body) "\n") "\n")))
  136. (defun org-babel-C-ensure-main-wrap (body)
  137. "Wrap body in a \"main\" function call if none exists."
  138. (if (string-match "^[ \t]*[intvod]+[ \t]*main[ \t]*(.*)" body)
  139. body
  140. (format "int main() {\n%s\n}\n" body)))
  141. (defun org-babel-prep-session:C (session params)
  142. "This function does nothing as C is a compiled language with no
  143. support for sessions"
  144. (error "C is a compiled languages -- no support for sessions"))
  145. (defun org-babel-load-session:C (session body params)
  146. "This function does nothing as C is a compiled language with no
  147. support for sessions"
  148. (error "C is a compiled languages -- no support for sessions"))
  149. ;; helper functions
  150. (defun org-babel-C-var-to-C (pair)
  151. "Convert an elisp val into a string of C code specifying a var
  152. of the same value."
  153. ;; TODO list support
  154. (let ((var (car pair))
  155. (val (cdr pair)))
  156. (when (symbolp val)
  157. (setq val (symbol-name val))
  158. (when (= (length val) 1)
  159. (setq val (string-to-char val))))
  160. (cond
  161. ((integerp val)
  162. (format "int %S = %S;" var val))
  163. ((floatp val)
  164. (format "double %S = %S;" var val))
  165. ((or (characterp val))
  166. (format "char %S = '%S';" var val))
  167. ((stringp val)
  168. (format "char %S[%d] = \"%s\";"
  169. var (+ 1 (length val)) val))
  170. (t
  171. (format "u32 %S = %S;" var val)))))
  172. (provide 'ob-C)
  173. ;;; ob-C.el ends here