1 ;;; ob-ruby.el --- org-babel functions for ruby evaluation
3 ;; Copyright (C) 2009-2013 Free Software Foundation, Inc.
5 ;; Author: Eric Schulte
6 ;; Keywords: literate programming, reproducible research
7 ;; Homepage: http://orgmode.org
9 ;; This file is part of GNU Emacs.
11 ;; GNU Emacs is free software: you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation, either version 3 of the License, or
14 ;; (at your option) any later version.
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
26 ;; Org-Babel support for evaluating ruby source code.
30 ;; - ruby and irb executables :: http://www.ruby-lang.org/
32 ;; - ruby-mode :: Can be installed through ELPA, or from
33 ;; http://github.com/eschulte/rinari/raw/master/util/ruby-mode.el
35 ;; - inf-ruby mode :: Can be installed through ELPA, or from
36 ;; http://github.com/eschulte/rinari/raw/master/util/inf-ruby.el
43 (eval-when-compile (require 'cl
))
45 (declare-function run-ruby
"ext:inf-ruby" (&optional command name
))
46 (declare-function xmp
"ext:rcodetools" (&optional option
))
48 (defvar org-babel-tangle-lang-exts
)
49 (add-to-list 'org-babel-tangle-lang-exts
'("ruby" .
"rb"))
51 (defvar org-babel-default-header-args
:ruby
'())
53 (defvar org-babel-ruby-command
"ruby"
54 "Name of command to use for executing ruby code.")
56 (defun org-babel-execute:ruby
(body params
)
57 "Execute a block of Ruby code with Babel.
58 This function is called by `org-babel-execute-src-block'."
59 (let* ((session (org-babel-ruby-initiate-session
60 (cdr (assoc :session params
))))
61 (result-params (cdr (assoc :result-params params
)))
62 (result-type (cdr (assoc :result-type params
)))
63 (full-body (org-babel-expand-body:generic
64 body params
(org-babel-variable-assignments:ruby params
)))
65 (result (if (member "xmp" result-params
)
69 (xmp (cdr (assoc :xmp-option params
)))
71 (org-babel-ruby-evaluate
72 session full-body result-type result-params
))))
73 (org-babel-reassemble-table
75 (org-babel-pick-name (cdr (assoc :colname-names params
))
76 (cdr (assoc :colnames params
)))
77 (org-babel-pick-name (cdr (assoc :rowname-names params
))
78 (cdr (assoc :rownames params
))))))
80 (defun org-babel-prep-session:ruby
(session params
)
81 "Prepare SESSION according to the header arguments specified in PARAMS."
82 ;; (message "params=%S" params) ;; debugging
83 (let* ((session (org-babel-ruby-initiate-session session
))
84 (var-lines (org-babel-variable-assignments:ruby params
)))
85 (org-babel-comint-in-buffer session
86 (sit-for .5) (goto-char (point-max))
88 (insert var
) (comint-send-input nil t
)
89 (org-babel-comint-wait-for-output session
)
90 (sit-for .1) (goto-char (point-max))) var-lines
))
93 (defun org-babel-load-session:ruby
(session body params
)
94 "Load BODY into SESSION."
95 (save-window-excursion
96 (let ((buffer (org-babel-prep-session:ruby session params
)))
97 (with-current-buffer buffer
98 (goto-char (process-mark (get-buffer-process (current-buffer))))
99 (insert (org-babel-chomp body
)))
104 (defun org-babel-variable-assignments:ruby
(params)
105 "Return list of ruby statements assigning the block's variables."
110 (org-babel-ruby-var-to-ruby (cdr pair
))))
111 (mapcar #'cdr
(org-babel-get-header params
:var
))))
113 (defun org-babel-ruby-var-to-ruby (var)
114 "Convert VAR into a ruby variable.
115 Convert an elisp value into a string of ruby source code
116 specifying a variable of the same value."
118 (concat "[" (mapconcat #'org-babel-ruby-var-to-ruby var
", ") "]")
121 (defun org-babel-ruby-table-or-string (results)
122 "Convert RESULTS into an appropriate elisp value.
123 If RESULTS look like a table, then convert them into an
124 Emacs-lisp table, otherwise return the results as a string."
125 (org-babel-script-escape results
))
127 (defun org-babel-ruby-initiate-session (&optional session params
)
128 "Initiate a ruby session.
129 If there is not a current inferior-process-buffer in SESSION
130 then create one. Return the initialized session."
131 (unless (string= session
"none")
133 (let ((session-buffer (save-window-excursion
134 (run-ruby nil session
) (current-buffer))))
135 (if (org-babel-comint-buffer-livep session-buffer
)
136 (progn (sit-for .25) session-buffer
)
138 (org-babel-ruby-initiate-session session
)))))
140 (defvar org-babel-ruby-eoe-indicator
":org_babel_ruby_eoe"
141 "String to indicate that evaluation has completed.")
142 (defvar org-babel-ruby-f-write
143 "File.open('%s','w'){|f| f.write((_.class == String) ? _ : _.inspect)}")
144 (defvar org-babel-ruby-pp-f-write
145 "File.open('%s','w'){|f| $stdout = f; pp(results); $stdout = orig_out}")
146 (defvar org-babel-ruby-wrapper-method
152 File.open('%s', 'w'){ |f| f.write((results.class == String) ? results : results.inspect) }
154 (defvar org-babel-ruby-pp-wrapper-method
161 File.open('%s', 'w') do |f|
167 (defun org-babel-ruby-evaluate
168 (buffer body
&optional result-type result-params
)
169 "Pass BODY to the Ruby process in BUFFER.
170 If RESULT-TYPE equals 'output then return a list of the outputs
171 of the statements in BODY, if RESULT-TYPE equals 'value then
172 return the value of the last statement in BODY, as elisp."
174 ;; external process evaluation
176 (output (org-babel-eval org-babel-ruby-command body
))
177 (value (let ((tmp-file (org-babel-temp-file "ruby-")))
179 org-babel-ruby-command
180 (format (if (member "pp" result-params
)
181 org-babel-ruby-pp-wrapper-method
182 org-babel-ruby-wrapper-method
)
183 body
(org-babel-process-file-name tmp-file
'noquote
)))
185 (if (or (member "code" result-params
)
186 (member "pp" result-params
))
188 (org-babel-ruby-table-or-string raw
)))
189 (org-babel-eval-read-file tmp-file
)))))
190 ;; comint session evaluation
200 (org-babel-comint-with-output
201 (buffer org-babel-ruby-eoe-indicator t body
)
204 (insert (org-babel-chomp line
)) (comint-send-input nil t
))
205 (list body org-babel-ruby-eoe-indicator
))
206 (comint-send-input nil t
)) 2)
207 "\n") "[\r\n]")) "\n"))
210 (if (or (member "code" result-params
) (member "pp" result-params
))
212 (org-babel-ruby-table-or-string results
)))
213 (let* ((tmp-file (org-babel-temp-file "ruby-"))
214 (ppp (or (member "code" result-params
)
215 (member "pp" result-params
))))
216 (org-babel-comint-with-output
217 (buffer org-babel-ruby-eoe-indicator t body
)
218 (when ppp
(insert "require 'pp';") (comint-send-input nil t
))
221 (insert (org-babel-chomp line
)) (comint-send-input nil t
))
225 (list (format org-babel-ruby-f-write
226 (org-babel-process-file-name tmp-file
'noquote
)))
228 "results=_" "require 'pp'" "orig_out = $stdout"
229 (format org-babel-ruby-pp-f-write
230 (org-babel-process-file-name tmp-file
'noquote
))))
231 (list org-babel-ruby-eoe-indicator
)))
232 (comint-send-input nil t
))
233 (org-babel-eval-read-file tmp-file
)))))))
235 (defun org-babel-ruby-read-string (string)
236 "Strip \\\"s from around a ruby string."
237 (if (string-match "^\"\\([^\000]+\\)\"$" string
)
238 (match-string 1 string
)
245 ;;; ob-ruby.el ends here