org-babel-C.el 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  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. (includes (org-babel-read
  66. (or (cdr (assoc :includes params))
  67. (org-entry-get nil "includes" t))))
  68. (defines (org-babel-read
  69. (or (cdr (assoc :includes 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" (org-babel-C-ensure-main-wrap body) "\n") "\n"))
  85. (error-buf (get-buffer-create "*Org-Babel Error Output*"))
  86. (compile
  87. (progn
  88. (with-temp-file tmp-src-file (insert full-body))
  89. (with-temp-buffer
  90. (org-babel-shell-command-on-region
  91. (point-min) (point-max)
  92. (format "%s -o %s %s %s"
  93. (case c-variant
  94. ('c org-babel-C-compiler)
  95. ('cpp org-babel-c++-compiler))
  96. tmp-bin-file
  97. (mapconcat 'identity
  98. (if (listp flags) flags (list flags)) " ")
  99. tmp-src-file)
  100. (current-buffer) 'replace error-buf)))))
  101. (if (= compile 0)
  102. (org-babel-read
  103. (org-babel-trim
  104. (with-temp-buffer
  105. (org-babel-shell-command-on-region
  106. (point-min) (point-max)
  107. (concat tmp-bin-file (if cmdline (concat " " cmdline) ""))
  108. (current-buffer) 'replace)
  109. (buffer-string))))
  110. (progn
  111. (with-current-buffer error-buf
  112. (goto-char (point-max))
  113. (insert (concat "\n\n--body--\n" full-body))
  114. (goto-char (point-min)))
  115. (display-buffer error-buf) nil))))
  116. (defun org-babel-C-ensure-main-wrap (body)
  117. "Wrap body in a \"main\" function call if none exists."
  118. (if (string-match "^[ \t]*[intvod]+[ \t]*main[ \t]*(.*)" body)
  119. body
  120. (format "int main() {\n%s\n}\n" body)))
  121. (defun org-babel-prep-session:C (session params)
  122. "C is a compiled languages -- no support for sessions"
  123. (error "C is a compiled languages -- no support for sessions"))
  124. (defun org-babel-load-session:C (session body params)
  125. "C is a compiled languages -- no support for sessions"
  126. (error "C is a compiled languages -- no support for sessions"))
  127. ;; helper functions
  128. (defun org-babel-C-var-to-C (pair)
  129. "Convert an elisp val into a string of C code specifying a var
  130. of the same value. TODO list support."
  131. (let ((var (car pair))
  132. (val (cdr pair)))
  133. (when (symbolp val)
  134. (setq val (symbol-name val))
  135. (when (= (length val) 1)
  136. (setq val (string-to-char val))))
  137. (cond
  138. ((integerp val)
  139. (format "int %S = %S;" var val))
  140. ((floatp val)
  141. (format "double %S = %S;" var val))
  142. ((or (characterp val))
  143. (format "char %S = '%S';" var val))
  144. ((stringp val)
  145. (format "char %S[%d] = \"%s\";"
  146. var (+ 1 (length val)) val))
  147. (t
  148. (format "u32 %S = %S;" var val)))))
  149. (provide 'org-babel-C)
  150. ;;; org-babel-C.el ends here