org-babel-ruby.el 8.7 KB

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