org-babel-C.el 6.6 KB

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