org-babel-ruby.el 8.5 KB

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