ob-ruby.el 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236
  1. ;;; ob-ruby.el --- org-babel functions for ruby evaluation
  2. ;; Copyright (C) 2009, 2010 Free Software Foundation
  3. ;; Author: Eric Schulte
  4. ;; Keywords: literate programming, reproducible research
  5. ;; Homepage: http://orgmode.org
  6. ;; Version: 0.01
  7. ;; This file is part of GNU Emacs.
  8. ;; GNU Emacs 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 of the License, or
  11. ;; (at your option) any later version.
  12. ;; GNU Emacs is distributed in the hope that it will be useful,
  13. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. ;; GNU General Public License for more details.
  16. ;; You should have received a copy of the GNU General Public License
  17. ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
  18. ;;; Commentary:
  19. ;; Org-Babel support for evaluating ruby source code.
  20. ;;; Requirements:
  21. ;; - ruby and irb executables :: http://www.ruby-lang.org/
  22. ;;
  23. ;; - ruby-mode :: Can be installed through ELPA, or from
  24. ;; http://github.com/eschulte/rinari/raw/master/util/ruby-mode.el
  25. ;;
  26. ;; - inf-ruby mode :: Can be installed through ELPA, or from
  27. ;; http://github.com/eschulte/rinari/raw/master/util/inf-ruby.el
  28. ;;; Code:
  29. (require 'ob)
  30. (require 'inf-ruby)
  31. (add-to-list 'org-babel-tangle-lang-exts '("ruby" . "rb"))
  32. (defun org-babel-expand-body:ruby (body params &optional processed-params)
  33. "Expand BODY according to PARAMS, return the expanded body."
  34. (let ((vars (second (or processed-params (org-babel-process-params params)))))
  35. (concat
  36. (mapconcat ;; define any variables
  37. (lambda (pair)
  38. (format "%s=%s"
  39. (car pair)
  40. (org-babel-ruby-var-to-ruby (cdr pair))))
  41. vars "\n") "\n" body "\n")))
  42. (defun org-babel-execute:ruby (body params)
  43. "Execute a block of Ruby code with org-babel. This function is
  44. called by `org-babel-execute-src-block'."
  45. (message "executing Ruby source code block")
  46. (let* ((processed-params (org-babel-process-params params))
  47. (session (org-babel-ruby-initiate-session (first processed-params)))
  48. (result-params (third processed-params))
  49. (result-type (fourth processed-params))
  50. (full-body (org-babel-expand-body:ruby
  51. body params processed-params))
  52. (result (org-babel-ruby-evaluate session full-body result-type)))
  53. (or (cdr (assoc :file params))
  54. (org-babel-reassemble-table
  55. result
  56. (org-babel-pick-name (nth 4 processed-params)
  57. (cdr (assoc :colnames params)))
  58. (org-babel-pick-name (nth 5 processed-params)
  59. (cdr (assoc :rownames params)))))))
  60. (defun org-babel-prep-session:ruby (session params)
  61. "Prepare SESSION according to the header arguments specified in PARAMS."
  62. ;; (message "params=%S" params) ;; debugging
  63. (let* ((session (org-babel-ruby-initiate-session session))
  64. (vars (org-babel-ref-variables params))
  65. (var-lines (mapcar ;; define any variables
  66. (lambda (pair)
  67. (format "%s=%s"
  68. (car pair)
  69. (org-babel-ruby-var-to-ruby (cdr pair))))
  70. vars)))
  71. (org-babel-comint-in-buffer session
  72. (sit-for .5) (goto-char (point-max))
  73. (mapc (lambda (var)
  74. (insert var) (comint-send-input nil t)
  75. (org-babel-comint-wait-for-output session)
  76. (sit-for .1) (goto-char (point-max))) var-lines))
  77. session))
  78. (defun org-babel-load-session:ruby (session body params)
  79. "Load BODY into SESSION."
  80. (save-window-excursion
  81. (let ((buffer (org-babel-prep-session:ruby session params)))
  82. (with-current-buffer buffer
  83. (goto-char (process-mark (get-buffer-process (current-buffer))))
  84. (insert (org-babel-chomp body)))
  85. buffer)))
  86. ;; helper functions
  87. (defun org-babel-ruby-var-to-ruby (var)
  88. "Convert an elisp var into a string of ruby source code
  89. specifying a var of the same value."
  90. (if (listp var)
  91. (concat "[" (mapconcat #'org-babel-ruby-var-to-ruby var ", ") "]")
  92. (format "%S" var)))
  93. (defun org-babel-ruby-table-or-string (results)
  94. "If RESULTS look like a table, then convert them into an
  95. Emacs-lisp table, otherwise return the results as a string."
  96. (message "converting %S" results)
  97. (org-babel-read
  98. (if (and (stringp results) (string-match "^\\[.+\\]$" results))
  99. (org-babel-read
  100. (concat "'"
  101. (replace-regexp-in-string
  102. "\\[" "(" (replace-regexp-in-string
  103. "\\]" ")" (replace-regexp-in-string
  104. ", " " " (replace-regexp-in-string
  105. "'" "\"" results))))))
  106. results)))
  107. (defun org-babel-ruby-initiate-session (&optional session params)
  108. "If there is not a current inferior-process-buffer in SESSION
  109. then create one. Return the initialized session."
  110. (unless (string= session "none")
  111. (let ((session-buffer (save-window-excursion
  112. (run-ruby nil session) (current-buffer))))
  113. (if (org-babel-comint-buffer-livep session-buffer)
  114. (progn (sit-for .25) session-buffer)
  115. (sit-for .5)
  116. (org-babel-ruby-initiate-session session)))))
  117. (defvar org-babel-ruby-last-value-eval "_"
  118. "When evaluated by Ruby this returns the return value of the last statement.")
  119. (defvar org-babel-ruby-pp-last-value-eval "require 'pp'; pp(_)"
  120. "When evaluated by Ruby this pretty prints value of the last statement.")
  121. (defvar org-babel-ruby-eoe-indicator ":org_babel_ruby_eoe"
  122. "Used to indicate that evaluation is has completed.")
  123. (defvar org-babel-ruby-wrapper-method
  124. "
  125. def main()
  126. %s
  127. end
  128. results = main()
  129. File.open('%s', 'w'){ |f| f.write((results.class == String) ? results : results.inspect) }
  130. ")
  131. (defvar org-babel-ruby-pp-wrapper-method
  132. "
  133. require 'pp'
  134. def main()
  135. %s
  136. end
  137. results = main()
  138. File.open('%s', 'w') do |f|
  139. $stdout = f
  140. pp results
  141. end
  142. ")
  143. (defun org-babel-ruby-evaluate (buffer body &optional result-type)
  144. "Pass BODY to the Ruby process in BUFFER. If RESULT-TYPE equals
  145. 'output then return a list of the outputs of the statements in
  146. BODY, if RESULT-TYPE equals 'value then return the value of the
  147. last statement in BODY, as elisp."
  148. (if (not session)
  149. ;; external process evaluation
  150. (save-excursion
  151. (case result-type
  152. (output
  153. (with-temp-buffer
  154. (insert body)
  155. ;; (message "buffer=%s" (buffer-string)) ;; debugging
  156. (org-babel-shell-command-on-region
  157. (point-min) (point-max) "ruby" 'current-buffer 'replace)
  158. (buffer-string)))
  159. (value
  160. (let* ((tmp-file (make-temp-file "ruby-functional-results"))
  161. exit-code
  162. (stderr
  163. (with-temp-buffer
  164. (insert (format (if (member "pp" result-params)
  165. org-babel-ruby-pp-wrapper-method
  166. org-babel-ruby-wrapper-method)
  167. body tmp-file))
  168. (setq exit-code
  169. (org-babel-shell-command-on-region
  170. (point-min) (point-max) "ruby"
  171. nil 'replace (current-buffer)))
  172. (buffer-string))))
  173. (if (> exit-code 0) (org-babel-error-notify exit-code stderr))
  174. (let ((raw (with-temp-buffer
  175. (insert-file-contents
  176. (org-babel-maybe-remote-file tmp-file))
  177. (buffer-string))))
  178. (if (or (member "code" result-params)
  179. (member "pp" result-params))
  180. raw
  181. (org-babel-ruby-table-or-string raw)))))))
  182. ;; comint session evaluation
  183. (let* ((full-body
  184. (mapconcat
  185. #'org-babel-chomp
  186. (list body (if (member "pp" result-params)
  187. org-babel-ruby-pp-last-value-eval
  188. org-babel-ruby-last-value-eval)
  189. org-babel-ruby-eoe-indicator) "\n"))
  190. (raw (org-babel-comint-with-output
  191. (buffer org-babel-ruby-eoe-indicator t full-body)
  192. (insert full-body) (comint-send-input nil t)))
  193. (results (cdr (member
  194. org-babel-ruby-eoe-indicator
  195. (reverse (mapcar #'org-babel-ruby-read-string
  196. (mapcar #'org-babel-trim raw)))))))
  197. (case result-type
  198. (output (mapconcat #'identity (reverse (cdr results)) "\n"))
  199. (value
  200. (if (or (member "code" result-params) (member "pp" result-params))
  201. (car results)
  202. (org-babel-ruby-table-or-string (car results))))))))
  203. (defun org-babel-ruby-read-string (string)
  204. "Strip \\\"s from around a ruby string."
  205. (if (string-match "^\"\\([^\000]+\\)\"$" string)
  206. (match-string 1 string)
  207. string))
  208. (provide 'ob-ruby)
  209. ;; arch-tag: 3e9726db-4520-49e2-b263-e8f571ac88f5
  210. ;;; ob-ruby.el ends here