org-babel-C.el 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. ;;; org-babel-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 'org-babel)
  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. (org-babel-execute:C body params))
  43. (defun org-babel-execute:c++ (body params)
  44. "Execute a block of C++ code with org-babel. This function is
  45. called by `org-babel-execute-src-block'."
  46. (let ((c-variant 'cpp)) (org-babel-C-execute body params)))
  47. (defun org-babel-expand-body:c++ (body params &optional processed-params)
  48. "Expand a block of C++ code with org-babel according to it's
  49. header arguments (calls `org-babel-C-expand')."
  50. (let ((c-variant 'cpp)) (org-babel-C-expand body params)))
  51. (defun org-babel-execute:C (body params)
  52. "Execute a block of C code with org-babel. This function is
  53. called by `org-babel-execute-src-block'."
  54. (let ((c-variant 'c)) (org-babel-C-execute body params)))
  55. (defun org-babel-expand-body:c (body params &optional processed-params)
  56. "Expand a block of C code with org-babel according to it's
  57. header arguments (calls `org-babel-C-expand')."
  58. (let ((c-variant 'c)) (org-babel-C-expand body params)))
  59. (defun org-babel-C-execute (body params)
  60. "This should only be called by `org-babel-execute:C' or
  61. `org-babel-execute:c++'."
  62. (message "executing C source code block")
  63. (let* ((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-entry-get nil "includes" t)))
  114. (defines (org-babel-read
  115. (or (cdr (assoc :defines params))
  116. (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. "\n" (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. "C is a compiled languages -- no support for sessions"
  140. (error "C is a compiled languages -- no support for sessions"))
  141. (defun org-babel-load-session:C (session body params)
  142. "C is a compiled languages -- no support for sessions"
  143. (error "C is a compiled languages -- no support for sessions"))
  144. ;; helper functions
  145. (defun org-babel-C-var-to-C (pair)
  146. "Convert an elisp val into a string of C code specifying a var
  147. of the same value. TODO list support."
  148. (let ((var (car pair))
  149. (val (cdr pair)))
  150. (when (symbolp val)
  151. (setq val (symbol-name val))
  152. (when (= (length val) 1)
  153. (setq val (string-to-char val))))
  154. (cond
  155. ((integerp val)
  156. (format "int %S = %S;" var val))
  157. ((floatp val)
  158. (format "double %S = %S;" var val))
  159. ((or (characterp val))
  160. (format "char %S = '%S';" var val))
  161. ((stringp val)
  162. (format "char %S[%d] = \"%s\";"
  163. var (+ 1 (length val)) val))
  164. (t
  165. (format "u32 %S = %S;" var val)))))
  166. (provide 'org-babel-C)
  167. ;;; org-babel-C.el ends here