2015-10-26 00:56:00 +00:00
|
|
|
;;; ob-ruby.el --- Babel Functions for Ruby -*- lexical-binding: t; -*-
|
2009-06-11 22:15:59 +00:00
|
|
|
|
2024-01-02 01:47:10 +00:00
|
|
|
;; Copyright (C) 2009-2024 Free Software Foundation, Inc.
|
2009-06-11 22:15:59 +00:00
|
|
|
|
|
|
|
;; Author: Eric Schulte
|
|
|
|
;; Keywords: literate programming, reproducible research
|
2021-09-26 07:44:29 +00:00
|
|
|
;; URL: https://orgmode.org
|
2009-06-11 22:15:59 +00:00
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
;; This file is part of GNU Emacs.
|
2009-06-11 22:15:59 +00:00
|
|
|
|
2010-06-25 16:32:35 +00:00
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2009-06-11 22:15:59 +00:00
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2010-06-25 16:32:35 +00:00
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
;; (at your option) any later version.
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
2009-06-11 22:15:59 +00:00
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
;; GNU General Public License for more details.
|
2010-06-25 16:32:35 +00:00
|
|
|
|
2009-06-11 22:15:59 +00:00
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 22:52:52 +00:00
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2009-06-11 22:15:59 +00:00
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
|
|
;; Org-Babel support for evaluating ruby source code.
|
|
|
|
|
2009-08-16 16:48:08 +00:00
|
|
|
;;; Requirements:
|
|
|
|
|
2021-03-21 18:55:14 +00:00
|
|
|
;; - ruby and irb executables :: https://www.ruby-lang.org/
|
2012-03-19 20:38:12 +00:00
|
|
|
;;
|
2023-01-20 21:32:21 +00:00
|
|
|
;; - ruby-mode :: Comes with Emacs.
|
2012-03-19 20:38:12 +00:00
|
|
|
;;
|
2009-08-16 16:48:08 +00:00
|
|
|
;; - inf-ruby mode :: Can be installed through ELPA, or from
|
2023-01-20 21:32:21 +00:00
|
|
|
;; https://raw.githubusercontent.com/nonsequitur/inf-ruby/master/inf-ruby.el
|
2009-08-16 16:48:08 +00:00
|
|
|
|
2009-06-11 22:15:59 +00:00
|
|
|
;;; Code:
|
2022-08-04 13:53:05 +00:00
|
|
|
|
|
|
|
(require 'org-macs)
|
|
|
|
(org-assert-version)
|
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
(require 'ob)
|
2018-05-10 00:04:12 +00:00
|
|
|
(require 'org-macs)
|
2010-07-03 02:21:31 +00:00
|
|
|
|
2020-11-25 19:35:01 +00:00
|
|
|
(declare-function run-ruby-or-pop-to-buffer "ext:inf-ruby" (command &optional name buffer))
|
|
|
|
(declare-function inf-ruby-buffer "ext:inf-ruby" ())
|
2011-06-10 16:49:04 +00:00
|
|
|
(declare-function xmp "ext:rcodetools" (&optional option))
|
2009-06-11 22:15:59 +00:00
|
|
|
|
2017-01-01 23:13:12 +00:00
|
|
|
(defvar inf-ruby-default-implementation)
|
|
|
|
(defvar inf-ruby-implementations)
|
|
|
|
|
2011-06-21 22:34:41 +00:00
|
|
|
(defvar org-babel-tangle-lang-exts)
|
2010-06-17 17:21:14 +00:00
|
|
|
(add-to-list 'org-babel-tangle-lang-exts '("ruby" . "rb"))
|
|
|
|
|
2010-06-25 17:12:54 +00:00
|
|
|
(defvar org-babel-default-header-args:ruby '())
|
|
|
|
|
2010-07-04 18:31:14 +00:00
|
|
|
(defvar org-babel-ruby-command "ruby"
|
2020-11-14 20:18:38 +00:00
|
|
|
"Name of command to use for executing ruby code.
|
|
|
|
It's possible to override it by using a header argument `:ruby'")
|
2010-07-04 18:31:14 +00:00
|
|
|
|
2013-09-02 14:10:29 +00:00
|
|
|
(defcustom org-babel-ruby-hline-to "nil"
|
|
|
|
"Replace hlines in incoming tables with this when translating to ruby."
|
|
|
|
:group 'org-babel
|
|
|
|
:version "24.4"
|
|
|
|
:package-version '(Org . "8.0")
|
|
|
|
:type 'string)
|
|
|
|
|
|
|
|
(defcustom org-babel-ruby-nil-to 'hline
|
2015-05-21 17:04:45 +00:00
|
|
|
"Replace nil in ruby tables with this before returning."
|
2013-09-02 14:10:29 +00:00
|
|
|
:group 'org-babel
|
|
|
|
:version "24.4"
|
|
|
|
:package-version '(Org . "8.0")
|
2013-11-14 13:05:18 +00:00
|
|
|
:type 'symbol)
|
2013-09-02 14:10:29 +00:00
|
|
|
|
2009-07-08 04:13:07 +00:00
|
|
|
(defun org-babel-execute:ruby (body params)
|
2023-10-10 12:30:35 +00:00
|
|
|
"Execute Ruby BODY according to PARAMS.
|
2010-07-13 23:20:08 +00:00
|
|
|
This function is called by `org-babel-execute-src-block'."
|
2010-10-21 11:52:24 +00:00
|
|
|
(let* ((session (org-babel-ruby-initiate-session
|
2020-11-14 20:18:38 +00:00
|
|
|
(cdr (assq :session params)) params))
|
2016-09-22 17:45:15 +00:00
|
|
|
(result-params (cdr (assq :result-params params)))
|
|
|
|
(result-type (cdr (assq :result-type params)))
|
2020-10-20 08:49:56 +00:00
|
|
|
(org-babel-ruby-command
|
|
|
|
(or (cdr (assq :ruby params))
|
|
|
|
org-babel-ruby-command))
|
2010-10-21 11:30:11 +00:00
|
|
|
(full-body (org-babel-expand-body:generic
|
|
|
|
body params (org-babel-variable-assignments:ruby params)))
|
2011-06-10 16:49:04 +00:00
|
|
|
(result (if (member "xmp" result-params)
|
|
|
|
(with-temp-buffer
|
2023-01-23 15:06:46 +00:00
|
|
|
(org-require-package 'rcodetools "rcodetools (gem package)")
|
2012-08-11 17:10:44 +00:00
|
|
|
(insert full-body)
|
2016-09-22 17:45:15 +00:00
|
|
|
(xmp (cdr (assq :xmp-option params)))
|
2012-08-11 17:10:44 +00:00
|
|
|
(buffer-string))
|
2011-06-10 16:49:04 +00:00
|
|
|
(org-babel-ruby-evaluate
|
2012-08-11 17:10:44 +00:00
|
|
|
session full-body result-type result-params))))
|
2010-12-21 10:21:28 +00:00
|
|
|
(org-babel-reassemble-table
|
2013-04-06 18:59:04 +00:00
|
|
|
(org-babel-result-cond result-params
|
|
|
|
result
|
|
|
|
(org-babel-ruby-table-or-string result))
|
2016-09-22 17:45:15 +00:00
|
|
|
(org-babel-pick-name (cdr (assq :colname-names params))
|
|
|
|
(cdr (assq :colnames params)))
|
|
|
|
(org-babel-pick-name (cdr (assq :rowname-names params))
|
|
|
|
(cdr (assq :rownames params))))))
|
2009-06-11 22:15:59 +00:00
|
|
|
|
2009-06-14 18:08:12 +00:00
|
|
|
(defun org-babel-prep-session:ruby (session params)
|
|
|
|
"Prepare SESSION according to the header arguments specified in PARAMS."
|
2009-06-14 18:44:29 +00:00
|
|
|
;; (message "params=%S" params) ;; debugging
|
2009-06-14 18:08:12 +00:00
|
|
|
(let* ((session (org-babel-ruby-initiate-session session))
|
2010-10-21 11:30:11 +00:00
|
|
|
(var-lines (org-babel-variable-assignments:ruby params)))
|
2009-06-14 18:08:12 +00:00
|
|
|
(org-babel-comint-in-buffer session
|
2009-06-14 18:44:29 +00:00
|
|
|
(sit-for .5) (goto-char (point-max))
|
2009-06-14 18:08:12 +00:00
|
|
|
(mapc (lambda (var)
|
|
|
|
(insert var) (comint-send-input nil t)
|
2009-06-14 18:44:29 +00:00
|
|
|
(org-babel-comint-wait-for-output session)
|
2020-02-18 21:57:37 +00:00
|
|
|
(sit-for .1) (goto-char (point-max)))
|
|
|
|
var-lines))
|
2010-01-11 17:14:30 +00:00
|
|
|
session))
|
|
|
|
|
|
|
|
(defun org-babel-load-session:ruby (session body params)
|
|
|
|
"Load BODY into SESSION."
|
|
|
|
(save-window-excursion
|
|
|
|
(let ((buffer (org-babel-prep-session:ruby session params)))
|
|
|
|
(with-current-buffer buffer
|
|
|
|
(goto-char (process-mark (get-buffer-process (current-buffer))))
|
|
|
|
(insert (org-babel-chomp body)))
|
|
|
|
buffer)))
|
2009-06-14 18:08:12 +00:00
|
|
|
|
|
|
|
;; helper functions
|
|
|
|
|
2010-10-21 11:30:11 +00:00
|
|
|
(defun org-babel-variable-assignments:ruby (params)
|
2023-10-10 12:30:35 +00:00
|
|
|
"Return list of ruby statements assigning the block's variables.
|
|
|
|
The assignments are defined in PARAMS."
|
2010-10-21 11:30:11 +00:00
|
|
|
(mapcar
|
|
|
|
(lambda (pair)
|
|
|
|
(format "%s=%s"
|
|
|
|
(car pair)
|
|
|
|
(org-babel-ruby-var-to-ruby (cdr pair))))
|
2015-10-29 19:26:11 +00:00
|
|
|
(org-babel--get-vars params)))
|
2010-10-21 11:30:11 +00:00
|
|
|
|
2009-06-11 22:15:59 +00:00
|
|
|
(defun org-babel-ruby-var-to-ruby (var)
|
2010-07-13 23:20:08 +00:00
|
|
|
"Convert VAR into a ruby variable.
|
|
|
|
Convert an elisp value into a string of ruby source code
|
|
|
|
specifying a variable of the same value."
|
2009-06-11 22:15:59 +00:00
|
|
|
(if (listp var)
|
2023-08-31 09:47:01 +00:00
|
|
|
(concat "[" (mapconcat #'org-babel-ruby-var-to-ruby var ", \n") "]")
|
2016-09-25 15:29:06 +00:00
|
|
|
(if (eq var 'hline)
|
2013-09-02 14:10:29 +00:00
|
|
|
org-babel-ruby-hline-to
|
|
|
|
(format "%S" var))))
|
2009-06-11 22:15:59 +00:00
|
|
|
|
2009-07-05 23:59:24 +00:00
|
|
|
(defun org-babel-ruby-table-or-string (results)
|
2010-07-13 23:20:08 +00:00
|
|
|
"Convert RESULTS into an appropriate elisp value.
|
|
|
|
If RESULTS look like a table, then convert them into an
|
2009-06-11 22:15:59 +00:00
|
|
|
Emacs-lisp table, otherwise return the results as a string."
|
Backport changes from Emacs revs 115081 and 115082
2013-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
Address some byte-compiler warnings.
* ob-abc.el (org-babel-expand-body:abc): Use dolist.
(org-babel-execute:abc): Fix regexp quoting.
* ob-calc.el (org--var-syms): Rename from `var-syms'.
* ob-lilypond.el (ly-compile-lilyfile): Remove redundant let-binding.
* ob-table.el (sbe): Move debug declaration.
* org-clock.el (org--msg-extra): Rename from `msg-extra'.
* org.el (org-version): Avoid var name starting with _.
(org-inhibit-startup, org-called-with-limited-levels)
(org-link-search-inhibit-query, org-time-was-given)
(org-end-time-was-given, org-def, org-defdecode, org-with-time):
* org-colview.el (org-agenda-overriding-columns-format):
* org-agenda.el (org-agenda-multi, org-depend-tag-blocked)
(org-agenda-show-log-scoped):
* ob-python.el (py-which-bufname, python-shell-buffer-name):
* ob-haskell.el (org-export-copy-to-kill-ring):
* ob-exp.el (org-link-search-inhibit-query):
* ob-R.el (ess-eval-visibly-p):
* ob-core.el (org-src-window-setup): Declare before use.
(org-babel-expand-noweb-references): Remove unused `blocks-in-buffer'.
* ox-odt.el (org-odt-hfy-face-to-css):
* org-src.el (org-src-associate-babel-session, org-src-get-lang-mode):
* org-bibtex.el (org-bibtex-get, org-bibtex-ask, org-bibtex)
(org-bibtex-check):
* ob-tangle.el (org-babel-tangle, org-babel-spec-to-string)
(org-babel-tangle-single-block, org-babel-tangle-comment-links):
* ob-table.el (sbe):
* ob-sqlite.el (org-babel-sqlite-expand-vars):
* ob-sql.el (org-babel-sql-expand-vars):
* ob-shen.el (org-babel-execute:shen):
* ob-sh.el (org-babel-execute:sh, org-babel-sh-evaluate):
* ob-scala.el (org-babel-scala-evaluate):
* ob-ruby.el (org-babel-ruby-table-or-string)
(org-babel-ruby-evaluate):
* ob-python.el (org-babel-python-table-or-string)
(org-babel-python-evaluate-external-process)
(org-babel-python-evaluate-session):
* ob-picolisp.el (org-babel-execute:picolisp):
* ob-perl.el (org-babel-perl-evaluate):
* ob-maxima.el (org-babel-execute:maxima):
* ob-lisp.el (org-babel-execute:lisp):
* ob-java.el (org-babel-execute:java):
* ob-io.el (org-babel-io-evaluate):
* ob-haskell.el (org-babel-execute:haskell):
* ob-fortran.el (org-babel-execute:fortran):
* ob-exp.el (org-babel-exp-code):
* ob-emacs-lisp.el (org-babel-execute:emacs-lisp):
* ob-ditaa.el (org-babel-execute:ditaa):
* ob-core.el (org-babel-execute-src-block, org-babel-sha1-hash)
(org-babel-parse-header-arguments, org-babel-reassemble-table)
(org-babel-goto-src-block-head, org-babel-mark-block)
(org-babel-expand-noweb-references, org-babel-script-escape)
(org-babel-process-file-name):
* ob-clojure.el (org-babel-execute:clojure):
* ob-calc.el (org-babel-execute:calc):
* ob-awk.el (org-babel-execute:awk):
* ob-abc.el (org-babel-execute:abc):
* ob-R.el (org-babel-expand-body:R):
* ob-C.el (org-babel-C-execute): Avoid deprecated ((lambda) ...).
2013-11-12 Glenn Morris <rgm@gnu.org>
* ox-html.el (org-html-scripts): Add 2013 to copyright years.
(org-html-infojs-template): Copyright holder to FSF.
2013-11-12 19:57:31 +00:00
|
|
|
(let ((res (org-babel-script-escape results)))
|
|
|
|
(if (listp res)
|
2016-09-25 15:29:06 +00:00
|
|
|
(mapcar (lambda (el) (if (not el)
|
2023-08-23 11:19:52 +00:00
|
|
|
org-babel-ruby-nil-to el))
|
Backport changes from Emacs revs 115081 and 115082
2013-11-12 Stefan Monnier <monnier@iro.umontreal.ca>
Address some byte-compiler warnings.
* ob-abc.el (org-babel-expand-body:abc): Use dolist.
(org-babel-execute:abc): Fix regexp quoting.
* ob-calc.el (org--var-syms): Rename from `var-syms'.
* ob-lilypond.el (ly-compile-lilyfile): Remove redundant let-binding.
* ob-table.el (sbe): Move debug declaration.
* org-clock.el (org--msg-extra): Rename from `msg-extra'.
* org.el (org-version): Avoid var name starting with _.
(org-inhibit-startup, org-called-with-limited-levels)
(org-link-search-inhibit-query, org-time-was-given)
(org-end-time-was-given, org-def, org-defdecode, org-with-time):
* org-colview.el (org-agenda-overriding-columns-format):
* org-agenda.el (org-agenda-multi, org-depend-tag-blocked)
(org-agenda-show-log-scoped):
* ob-python.el (py-which-bufname, python-shell-buffer-name):
* ob-haskell.el (org-export-copy-to-kill-ring):
* ob-exp.el (org-link-search-inhibit-query):
* ob-R.el (ess-eval-visibly-p):
* ob-core.el (org-src-window-setup): Declare before use.
(org-babel-expand-noweb-references): Remove unused `blocks-in-buffer'.
* ox-odt.el (org-odt-hfy-face-to-css):
* org-src.el (org-src-associate-babel-session, org-src-get-lang-mode):
* org-bibtex.el (org-bibtex-get, org-bibtex-ask, org-bibtex)
(org-bibtex-check):
* ob-tangle.el (org-babel-tangle, org-babel-spec-to-string)
(org-babel-tangle-single-block, org-babel-tangle-comment-links):
* ob-table.el (sbe):
* ob-sqlite.el (org-babel-sqlite-expand-vars):
* ob-sql.el (org-babel-sql-expand-vars):
* ob-shen.el (org-babel-execute:shen):
* ob-sh.el (org-babel-execute:sh, org-babel-sh-evaluate):
* ob-scala.el (org-babel-scala-evaluate):
* ob-ruby.el (org-babel-ruby-table-or-string)
(org-babel-ruby-evaluate):
* ob-python.el (org-babel-python-table-or-string)
(org-babel-python-evaluate-external-process)
(org-babel-python-evaluate-session):
* ob-picolisp.el (org-babel-execute:picolisp):
* ob-perl.el (org-babel-perl-evaluate):
* ob-maxima.el (org-babel-execute:maxima):
* ob-lisp.el (org-babel-execute:lisp):
* ob-java.el (org-babel-execute:java):
* ob-io.el (org-babel-io-evaluate):
* ob-haskell.el (org-babel-execute:haskell):
* ob-fortran.el (org-babel-execute:fortran):
* ob-exp.el (org-babel-exp-code):
* ob-emacs-lisp.el (org-babel-execute:emacs-lisp):
* ob-ditaa.el (org-babel-execute:ditaa):
* ob-core.el (org-babel-execute-src-block, org-babel-sha1-hash)
(org-babel-parse-header-arguments, org-babel-reassemble-table)
(org-babel-goto-src-block-head, org-babel-mark-block)
(org-babel-expand-noweb-references, org-babel-script-escape)
(org-babel-process-file-name):
* ob-clojure.el (org-babel-execute:clojure):
* ob-calc.el (org-babel-execute:calc):
* ob-awk.el (org-babel-execute:awk):
* ob-abc.el (org-babel-execute:abc):
* ob-R.el (org-babel-expand-body:R):
* ob-C.el (org-babel-C-execute): Avoid deprecated ((lambda) ...).
2013-11-12 Glenn Morris <rgm@gnu.org>
* ox-html.el (org-html-scripts): Add 2013 to copyright years.
(org-html-infojs-template): Copyright holder to FSF.
2013-11-12 19:57:31 +00:00
|
|
|
res)
|
|
|
|
res)))
|
2009-06-11 22:15:59 +00:00
|
|
|
|
2023-08-23 11:19:52 +00:00
|
|
|
(defvar org-babel-ruby-prompt "_org_babel_ruby_prompt "
|
|
|
|
"String used for unique prompt.")
|
|
|
|
|
|
|
|
(defvar org-babel-ruby-define-prompt
|
|
|
|
(format "IRB.conf[:PROMPT][:CUSTOM] = { :PROMPT_I => \"%s\" }" org-babel-ruby-prompt))
|
|
|
|
|
2020-11-14 20:18:38 +00:00
|
|
|
(defun org-babel-ruby-initiate-session (&optional session params)
|
2010-07-13 23:20:08 +00:00
|
|
|
"Initiate a ruby session.
|
|
|
|
If there is not a current inferior-process-buffer in SESSION
|
2023-10-10 12:30:35 +00:00
|
|
|
then create one. Return the initialized session.
|
|
|
|
Session settings (`:ruby' header arg value) are taken from PARAMS."
|
2009-06-15 16:28:01 +00:00
|
|
|
(unless (string= session "none")
|
2023-01-23 15:06:46 +00:00
|
|
|
(org-require-package 'inf-ruby)
|
2020-12-13 19:21:37 +00:00
|
|
|
(let* ((command (cdr (or (assq :ruby params)
|
|
|
|
(assoc inf-ruby-default-implementation
|
|
|
|
inf-ruby-implementations))))
|
2016-12-26 20:00:32 +00:00
|
|
|
(buffer (get-buffer (format "*%s*" session)))
|
2023-08-23 11:19:52 +00:00
|
|
|
(new-session? (not buffer))
|
2016-12-26 20:00:32 +00:00
|
|
|
(session-buffer (or buffer (save-window-excursion
|
2020-11-25 19:35:01 +00:00
|
|
|
(run-ruby-or-pop-to-buffer
|
2020-12-13 19:21:37 +00:00
|
|
|
(if (functionp command)
|
|
|
|
(funcall command)
|
|
|
|
command)
|
|
|
|
(or session "ruby")
|
2020-11-25 19:35:01 +00:00
|
|
|
(unless session
|
|
|
|
(inf-ruby-buffer)))
|
2016-12-26 20:00:32 +00:00
|
|
|
(current-buffer)))))
|
2009-06-15 16:28:01 +00:00
|
|
|
(if (org-babel-comint-buffer-livep session-buffer)
|
2023-08-23 11:19:52 +00:00
|
|
|
(progn
|
|
|
|
(sit-for .25)
|
|
|
|
;; Setup machine-readable prompt: no echo, prompts matching
|
|
|
|
;; uniquely by regexp.
|
|
|
|
(when new-session?
|
|
|
|
(with-current-buffer session-buffer
|
2024-01-22 11:55:09 +00:00
|
|
|
(setq-local
|
|
|
|
org-babel-comint-prompt-regexp-old comint-prompt-regexp
|
|
|
|
comint-prompt-regexp (concat "^" org-babel-ruby-prompt))
|
2023-08-23 11:19:52 +00:00
|
|
|
(insert org-babel-ruby-define-prompt ";")
|
|
|
|
(insert "_org_prompt_mode=conf.prompt_mode;conf.prompt_mode=:CUSTOM;")
|
2023-08-31 09:46:21 +00:00
|
|
|
(insert "conf.echo=false\n")
|
2023-08-23 11:19:52 +00:00
|
|
|
(comint-send-input nil t)))
|
|
|
|
session-buffer)
|
2016-12-26 20:00:32 +00:00
|
|
|
(sit-for .5)
|
|
|
|
(org-babel-ruby-initiate-session session)))))
|
2009-06-11 22:15:59 +00:00
|
|
|
|
|
|
|
(defvar org-babel-ruby-eoe-indicator ":org_babel_ruby_eoe"
|
2010-07-13 23:20:08 +00:00
|
|
|
"String to indicate that evaluation has completed.")
|
2023-08-23 11:19:52 +00:00
|
|
|
|
2010-07-04 18:31:14 +00:00
|
|
|
(defvar org-babel-ruby-f-write
|
|
|
|
"File.open('%s','w'){|f| f.write((_.class == String) ? _ : _.inspect)}")
|
2023-08-23 11:19:52 +00:00
|
|
|
|
2010-07-04 18:31:14 +00:00
|
|
|
(defvar org-babel-ruby-pp-f-write
|
|
|
|
"File.open('%s','w'){|f| $stdout = f; pp(results); $stdout = orig_out}")
|
2023-08-23 11:19:52 +00:00
|
|
|
|
2009-06-15 17:13:48 +00:00
|
|
|
(defvar org-babel-ruby-wrapper-method
|
|
|
|
"
|
|
|
|
def main()
|
|
|
|
%s
|
|
|
|
end
|
|
|
|
results = main()
|
|
|
|
File.open('%s', 'w'){ |f| f.write((results.class == String) ? results : results.inspect) }
|
|
|
|
")
|
2023-08-23 11:19:52 +00:00
|
|
|
|
2009-10-18 19:14:39 +00:00
|
|
|
(defvar org-babel-ruby-pp-wrapper-method
|
|
|
|
"
|
|
|
|
require 'pp'
|
|
|
|
def main()
|
|
|
|
%s
|
|
|
|
end
|
|
|
|
results = main()
|
|
|
|
File.open('%s', 'w') do |f|
|
|
|
|
$stdout = f
|
|
|
|
pp results
|
|
|
|
end
|
|
|
|
")
|
2009-06-11 22:15:59 +00:00
|
|
|
|
2010-07-03 02:21:31 +00:00
|
|
|
(defun org-babel-ruby-evaluate
|
2016-07-25 14:34:48 +00:00
|
|
|
(buffer body &optional result-type result-params)
|
2010-07-13 23:20:08 +00:00
|
|
|
"Pass BODY to the Ruby process in BUFFER.
|
2015-09-21 04:24:12 +00:00
|
|
|
If RESULT-TYPE equals `output' then return a list of the outputs
|
|
|
|
of the statements in BODY, if RESULT-TYPE equals `value' then
|
2010-07-13 23:20:08 +00:00
|
|
|
return the value of the last statement in BODY, as elisp."
|
2010-07-03 02:21:31 +00:00
|
|
|
(if (not buffer)
|
2009-06-15 17:54:14 +00:00
|
|
|
;; external process evaluation
|
2016-07-25 14:34:48 +00:00
|
|
|
(pcase result-type
|
|
|
|
(`output (org-babel-eval org-babel-ruby-command body))
|
|
|
|
(`value (let ((tmp-file (org-babel-temp-file "ruby-")))
|
|
|
|
(org-babel-eval
|
|
|
|
org-babel-ruby-command
|
|
|
|
(format (if (member "pp" result-params)
|
|
|
|
org-babel-ruby-pp-wrapper-method
|
|
|
|
org-babel-ruby-wrapper-method)
|
|
|
|
body (org-babel-process-file-name tmp-file 'noquote)))
|
|
|
|
(org-babel-eval-read-file tmp-file))))
|
2010-07-04 18:31:14 +00:00
|
|
|
;; comint session evaluation
|
2016-07-25 14:34:48 +00:00
|
|
|
(pcase result-type
|
|
|
|
(`output
|
2014-09-21 15:59:49 +00:00
|
|
|
(let ((eoe-string (format "puts \"%s\"" org-babel-ruby-eoe-indicator)))
|
|
|
|
;; Force the session to be ready before the actual session
|
|
|
|
;; code is run. There is some problem in comint that will
|
2019-09-20 22:27:53 +00:00
|
|
|
;; sometimes show the prompt after the input has already
|
2014-09-21 15:59:49 +00:00
|
|
|
;; been inserted and that throws off the extraction of the
|
|
|
|
;; result for Babel.
|
|
|
|
(org-babel-comint-with-output
|
|
|
|
(buffer org-babel-ruby-eoe-indicator t eoe-string)
|
|
|
|
(insert eoe-string) (comint-send-input nil t))
|
|
|
|
(mapconcat
|
|
|
|
#'identity
|
|
|
|
(butlast
|
|
|
|
(split-string
|
|
|
|
(mapconcat
|
2016-06-21 13:24:06 +00:00
|
|
|
#'org-trim
|
2014-09-21 15:59:49 +00:00
|
|
|
(org-babel-comint-with-output
|
|
|
|
(buffer org-babel-ruby-eoe-indicator t body)
|
2023-08-23 11:19:52 +00:00
|
|
|
(insert (org-babel-chomp body) "\n" eoe-string)
|
|
|
|
(comint-send-input nil t))
|
|
|
|
"\n") "[\r\n]")) "\n")))
|
2016-07-25 14:34:48 +00:00
|
|
|
(`value
|
2013-04-06 18:59:04 +00:00
|
|
|
(let* ((tmp-file (org-babel-temp-file "ruby-"))
|
|
|
|
(ppp (or (member "code" result-params)
|
|
|
|
(member "pp" result-params))))
|
|
|
|
(org-babel-comint-with-output
|
|
|
|
(buffer org-babel-ruby-eoe-indicator t body)
|
|
|
|
(when ppp (insert "require 'pp';") (comint-send-input nil t))
|
|
|
|
(mapc
|
|
|
|
(lambda (line)
|
|
|
|
(insert (org-babel-chomp line)) (comint-send-input nil t))
|
|
|
|
(append
|
|
|
|
(list body)
|
|
|
|
(if (not ppp)
|
|
|
|
(list (format org-babel-ruby-f-write
|
|
|
|
(org-babel-process-file-name tmp-file 'noquote)))
|
|
|
|
(list
|
|
|
|
"results=_" "require 'pp'" "orig_out = $stdout"
|
|
|
|
(format org-babel-ruby-pp-f-write
|
|
|
|
(org-babel-process-file-name tmp-file 'noquote))))
|
2023-08-31 09:46:09 +00:00
|
|
|
(list (format "puts \"%s\"" org-babel-ruby-eoe-indicator))))
|
2013-04-06 18:59:04 +00:00
|
|
|
(comint-send-input nil t))
|
|
|
|
(org-babel-eval-read-file tmp-file))))))
|
2009-06-11 22:15:59 +00:00
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
(provide 'ob-ruby)
|
2010-06-25 16:32:35 +00:00
|
|
|
|
2010-06-11 23:02:42 +00:00
|
|
|
;;; ob-ruby.el ends here
|