org-babel-C.el 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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 "cpp")
  34. (add-to-list 'org-babel-tangle-langs '("cpp" "cpp" nil))
  35. (org-babel-add-interpreter "c++")
  36. (add-to-list 'org-babel-tangle-langs '("c++" "cpp" nil))
  37. (defvar org-babel-C-compiler "gcc"
  38. "Command used to compile a C source code file into an
  39. executable.")
  40. (defun org-babel-execute:cpp (body params)
  41. (org-babel-execute:C body params))
  42. (defun org-babel-execute:c++ (body params)
  43. (org-babel-execute:C body params))
  44. (defun org-babel-execute:C (body params)
  45. "Execute a block of C commands with org-babel. This
  46. function is called by `org-babel-execute-src-block'."
  47. (message "executing C source code block")
  48. (let* ((processed-params (org-babel-process-params params))
  49. (tmp-src-file (make-temp-file "org-babel-C-src" nil ".c"))
  50. (tmp-bin-file (make-temp-file "org-babel-C-bin"))
  51. (tmp-out-file (make-temp-file "org-babel-C-out"))
  52. (flags (cdr (assoc :flags params)))
  53. (vars (second processed-params))
  54. (includes (cdr (assoc :includes params)))
  55. (defines (cdr (assoc :defines params)))
  56. (full-body (concat
  57. ;; includes
  58. (mapconcat
  59. (lambda (inc) (format "#include %s" inc))
  60. (if (listp includes) includes (list includes)) "\n")
  61. ;; defines
  62. (mapconcat
  63. (lambda (inc) (format "#define %s" inc))
  64. (if (listp defines) defines (list defines)) "\n")
  65. ;; variables
  66. (mapconcat 'org-babel-C-var-to-C vars "\n")
  67. ;; body
  68. "\n" (org-babel-C-ensure-main-wrap body) "\n\n"))
  69. (error-buf (get-buffer-create "*Org-Babel Error Output*"))
  70. (compile
  71. (progn
  72. (with-temp-file tmp-src-file (insert full-body))
  73. (with-temp-buffer
  74. (org-babel-shell-command-on-region
  75. (point-min) (point-max)
  76. (format "%s -o %s %s %s"
  77. org-babel-C-compiler
  78. tmp-bin-file
  79. (mapconcat 'identity
  80. (if (listp flags) flags (list flags)) " ")
  81. tmp-src-file)
  82. (current-buffer) 'replace error-buf)))))
  83. (if (= compile 0)
  84. (org-babel-read
  85. (org-babel-trim
  86. (with-temp-buffer
  87. (org-babel-shell-command-on-region
  88. (point-min) (point-max) tmp-bin-file (current-buffer) 'replace)
  89. (buffer-string))))
  90. (progn (display-buffer error-buf) nil))))
  91. (defun org-babel-C-ensure-main-wrap (body)
  92. "Wrap body in a \"main\" function call if none exists."
  93. (if (string-match "^[ \t]*[intvoid][ \t]*main[ \t]*(.*)" body)
  94. body
  95. (format "int main() {\n%s\n}\n" body)))
  96. (defun org-babel-prep-session:C (session params)
  97. "C is a compiled languages -- no support for sessions"
  98. (error "C is a compiled languages -- no support for sessions"))
  99. (defun org-babel-load-session:C (session body params)
  100. "C is a compiled languages -- no support for sessions"
  101. (error "C is a compiled languages -- no support for sessions"))
  102. ;; helper functions
  103. (defun org-babel-C-var-to-C (pair)
  104. "Convert an elisp val into a string of C code specifying a var
  105. of the same value. TODO list support."
  106. (let* ((var (car pair))
  107. (val (cdr pair))
  108. (type (cond
  109. ((integerp val) "int")
  110. ((floatp val) "double")
  111. ((characterp val) "char")
  112. ((stringp val) (format "char[%d]" (length val)))
  113. (t "u32"))))
  114. (format "%s %S = %S;" type var val)))
  115. (provide 'org-babel-C)
  116. ;;; org-babel-C.el ends here