2016-06-20 08:58:32 -04:00
|
|
|
|
;;; ob-shell.el --- Babel Functions for Shell Evaluation -*- lexical-binding: t; -*-
|
2009-03-31 19:11:17 -04:00
|
|
|
|
|
2020-01-01 13:38:46 -05:00
|
|
|
|
;; Copyright (C) 2009-2020 Free Software Foundation, Inc.
|
2009-03-31 19:11:17 -04:00
|
|
|
|
|
|
|
|
|
;; Author: Eric Schulte
|
|
|
|
|
;; Keywords: literate programming, reproducible research
|
2018-01-16 11:22:00 -05:00
|
|
|
|
;; Homepage: https://orgmode.org
|
2009-03-31 19:11:17 -04:00
|
|
|
|
|
2010-06-25 13:17:50 -04:00
|
|
|
|
;; This file is part of GNU Emacs.
|
2009-03-31 19:11:17 -04:00
|
|
|
|
|
2010-06-25 13:17:50 -04:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
2009-03-31 19:11:17 -04:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2010-06-25 13:17:50 -04: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-03-31 19:11:17 -04: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 13:17:50 -04:00
|
|
|
|
|
2009-03-31 19:11:17 -04:00
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2017-09-13 18:52:52 -04:00
|
|
|
|
;; along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
|
2009-03-31 19:11:17 -04:00
|
|
|
|
|
|
|
|
|
;;; Commentary:
|
|
|
|
|
|
2009-06-12 16:09:20 -04:00
|
|
|
|
;; Org-Babel support for evaluating shell source code.
|
2009-03-31 19:11:17 -04:00
|
|
|
|
|
|
|
|
|
;;; Code:
|
2010-06-11 19:02:42 -04:00
|
|
|
|
(require 'ob)
|
2018-05-09 20:04:12 -04:00
|
|
|
|
(require 'org-macs)
|
2009-06-12 16:09:20 -04:00
|
|
|
|
(require 'shell)
|
2016-07-23 04:41:17 -04:00
|
|
|
|
(require 'cl-lib)
|
2010-06-12 21:50:05 -04:00
|
|
|
|
|
2016-05-15 17:42:47 -04:00
|
|
|
|
(declare-function org-babel-comint-in-buffer "ob-comint" (buffer &rest body)
|
|
|
|
|
t)
|
2010-06-14 19:36:46 -04:00
|
|
|
|
(declare-function org-babel-comint-wait-for-output "ob-comint" (buffer))
|
|
|
|
|
(declare-function org-babel-comint-buffer-livep "ob-comint" (buffer))
|
2016-05-15 17:42:47 -04:00
|
|
|
|
(declare-function org-babel-comint-with-output "ob-comint" (meta &rest body)
|
|
|
|
|
t)
|
2010-06-14 19:36:46 -04:00
|
|
|
|
(declare-function orgtbl-to-generic "org-table" (table params))
|
2009-03-31 19:11:17 -04:00
|
|
|
|
|
2015-07-03 10:14:25 -04:00
|
|
|
|
(defvar org-babel-default-header-args:shell '())
|
2016-07-23 05:49:28 -04:00
|
|
|
|
(defvar org-babel-shell-names)
|
2010-06-25 13:12:54 -04:00
|
|
|
|
|
2016-07-23 04:34:37 -04:00
|
|
|
|
(defun org-babel-shell-initialize ()
|
|
|
|
|
"Define execution functions associated to shell names.
|
|
|
|
|
This function has to be called whenever `org-babel-shell-names'
|
|
|
|
|
is modified outside the Customize interface."
|
2016-07-23 04:47:01 -04:00
|
|
|
|
(interactive)
|
2016-07-23 04:34:37 -04:00
|
|
|
|
(dolist (name org-babel-shell-names)
|
|
|
|
|
(eval `(defun ,(intern (concat "org-babel-execute:" name))
|
|
|
|
|
(body params)
|
|
|
|
|
,(format "Execute a block of %s commands with Babel." name)
|
|
|
|
|
(let ((shell-file-name ,name))
|
2017-01-03 12:23:40 -05:00
|
|
|
|
(org-babel-execute:shell body params))))
|
|
|
|
|
(eval `(defalias ',(intern (concat "org-babel-variable-assignments:" name))
|
|
|
|
|
'org-babel-variable-assignments:shell
|
|
|
|
|
,(format "Return list of %s statements assigning to the block's \
|
|
|
|
|
variables."
|
2018-06-04 00:02:55 -04:00
|
|
|
|
name)))
|
|
|
|
|
(eval `(defvar ,(intern (concat "org-babel-default-header-args:" name)) '()))))
|
2013-12-13 11:52:05 -05:00
|
|
|
|
|
2016-07-23 04:47:01 -04:00
|
|
|
|
(defcustom org-babel-shell-names
|
2018-04-01 02:27:01 -04:00
|
|
|
|
'("sh" "bash" "zsh" "fish" "csh" "ash" "dash" "ksh" "mksh" "posh")
|
2016-07-23 04:47:01 -04:00
|
|
|
|
"List of names of shell supported by babel shell code blocks.
|
|
|
|
|
Call `org-babel-shell-initialize' when modifying this variable
|
|
|
|
|
outside the Customize interface."
|
|
|
|
|
:group 'org-babel
|
|
|
|
|
:type '(repeat (string :tag "Shell name: "))
|
|
|
|
|
:set (lambda (symbol value)
|
|
|
|
|
(set-default symbol value)
|
|
|
|
|
(org-babel-shell-initialize)))
|
|
|
|
|
|
2020-09-07 13:27:49 -04:00
|
|
|
|
(defcustom org-babel-shell-results-defaults-to-output t
|
|
|
|
|
"Let shell execution defaults to \":results output\".
|
|
|
|
|
|
|
|
|
|
When set to t, use \":results output\" when no :results setting
|
|
|
|
|
is set. This is especially useful for inline source blocks.
|
|
|
|
|
|
|
|
|
|
When set to nil, stick to the convention of using :results value
|
|
|
|
|
as the default setting when no :results is set, the \"value\" of
|
|
|
|
|
a shell execution being its exit code."
|
|
|
|
|
:group 'org-babel
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:package-version '(Org . "9.4"))
|
|
|
|
|
|
2013-12-13 11:52:05 -05:00
|
|
|
|
(defun org-babel-execute:shell (body params)
|
2010-07-13 19:20:08 -04:00
|
|
|
|
"Execute a block of Shell commands with Babel.
|
|
|
|
|
This function is called by `org-babel-execute-src-block'."
|
2010-10-21 07:52:24 -04:00
|
|
|
|
(let* ((session (org-babel-sh-initiate-session
|
2016-09-22 13:45:15 -04:00
|
|
|
|
(cdr (assq :session params))))
|
|
|
|
|
(stdin (let ((stdin (cdr (assq :stdin params))))
|
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 14:57:31 -05:00
|
|
|
|
(when stdin (org-babel-sh-var-to-string
|
|
|
|
|
(org-babel-ref-resolve stdin)))))
|
2020-09-06 16:35:28 -04:00
|
|
|
|
(results-params (cdr (assq :result-params params)))
|
2020-09-07 13:27:49 -04:00
|
|
|
|
(value-is-exit-status
|
|
|
|
|
(or (and
|
|
|
|
|
(equal '("replace") results-params)
|
|
|
|
|
(not org-babel-shell-results-defaults-to-output))
|
|
|
|
|
(member "value" results-params)))
|
2016-09-22 13:45:15 -04:00
|
|
|
|
(cmdline (cdr (assq :cmdline params)))
|
2020-02-19 10:42:05 -05:00
|
|
|
|
(full-body (concat
|
|
|
|
|
(org-babel-expand-body:generic
|
|
|
|
|
body params (org-babel-variable-assignments:shell params))
|
|
|
|
|
(when value-is-exit-status "\necho $?"))))
|
2010-04-18 21:06:34 -04:00
|
|
|
|
(org-babel-reassemble-table
|
2014-02-09 22:12:18 -05:00
|
|
|
|
(org-babel-sh-evaluate session full-body params stdin cmdline)
|
2010-07-06 22:53:34 -04:00
|
|
|
|
(org-babel-pick-name
|
2016-09-22 13:45:15 -04:00
|
|
|
|
(cdr (assq :colname-names params)) (cdr (assq :colnames params)))
|
2010-07-06 22:53:34 -04:00
|
|
|
|
(org-babel-pick-name
|
2016-09-22 13:45:15 -04:00
|
|
|
|
(cdr (assq :rowname-names params)) (cdr (assq :rownames params))))))
|
2009-06-12 16:09:20 -04:00
|
|
|
|
|
2015-07-03 10:14:25 -04:00
|
|
|
|
(defun org-babel-prep-session:shell (session params)
|
2009-06-14 14:53:56 -04:00
|
|
|
|
"Prepare SESSION according to the header arguments specified in PARAMS."
|
2009-06-14 15:02:25 -04:00
|
|
|
|
(let* ((session (org-babel-sh-initiate-session session))
|
2015-07-03 10:14:25 -04:00
|
|
|
|
(var-lines (org-babel-variable-assignments:shell params)))
|
2009-06-14 14:53:56 -04:00
|
|
|
|
(org-babel-comint-in-buffer session
|
|
|
|
|
(mapc (lambda (var)
|
|
|
|
|
(insert var) (comint-send-input nil t)
|
2020-02-18 16:57:37 -05:00
|
|
|
|
(org-babel-comint-wait-for-output session))
|
|
|
|
|
var-lines))
|
2010-01-11 12:14:30 -05:00
|
|
|
|
session))
|
|
|
|
|
|
2015-07-03 10:14:25 -04:00
|
|
|
|
(defun org-babel-load-session:shell (session body params)
|
2010-01-11 12:14:30 -05:00
|
|
|
|
"Load BODY into SESSION."
|
|
|
|
|
(save-window-excursion
|
2015-07-03 10:14:25 -04:00
|
|
|
|
(let ((buffer (org-babel-prep-session:shell session params)))
|
2010-01-11 12:14:30 -05:00
|
|
|
|
(with-current-buffer buffer
|
|
|
|
|
(goto-char (process-mark (get-buffer-process (current-buffer))))
|
|
|
|
|
(insert (org-babel-chomp body)))
|
|
|
|
|
buffer)))
|
2009-06-14 14:53:56 -04:00
|
|
|
|
|
2017-01-03 12:23:40 -05:00
|
|
|
|
|
|
|
|
|
;;; Helper functions
|
|
|
|
|
(defun org-babel--variable-assignments:sh-generic
|
2014-04-14 23:30:32 -04:00
|
|
|
|
(varname values &optional sep hline)
|
2019-10-20 06:12:27 -04:00
|
|
|
|
"Return a list of statements declaring the values as a generic variable."
|
2014-04-11 17:27:02 -04:00
|
|
|
|
(format "%s=%s" varname (org-babel-sh-var-to-sh values sep hline)))
|
|
|
|
|
|
2017-01-03 12:23:40 -05:00
|
|
|
|
(defun org-babel--variable-assignments:bash_array
|
2014-04-14 23:30:32 -04:00
|
|
|
|
(varname values &optional sep hline)
|
2019-10-20 06:12:27 -04:00
|
|
|
|
"Return a list of statements declaring the values as a bash array."
|
2014-06-19 15:23:28 -04:00
|
|
|
|
(format "unset %s\ndeclare -a %s=( %s )"
|
|
|
|
|
varname varname
|
|
|
|
|
(mapconcat
|
|
|
|
|
(lambda (value) (org-babel-sh-var-to-sh value sep hline))
|
|
|
|
|
values
|
|
|
|
|
" ")))
|
2014-04-11 17:27:02 -04:00
|
|
|
|
|
2017-01-03 12:23:40 -05:00
|
|
|
|
(defun org-babel--variable-assignments:bash_assoc
|
2014-04-14 23:30:32 -04:00
|
|
|
|
(varname values &optional sep hline)
|
2019-10-20 06:12:27 -04:00
|
|
|
|
"Return a list of statements declaring the values as bash associative array."
|
2014-04-11 17:27:02 -04:00
|
|
|
|
(format "unset %s\ndeclare -A %s\n%s"
|
2020-02-21 02:26:37 -05:00
|
|
|
|
varname varname
|
|
|
|
|
(mapconcat
|
|
|
|
|
(lambda (items)
|
|
|
|
|
(format "%s[%s]=%s"
|
|
|
|
|
varname
|
|
|
|
|
(org-babel-sh-var-to-sh (car items) sep hline)
|
|
|
|
|
(org-babel-sh-var-to-sh (cdr items) sep hline)))
|
|
|
|
|
values
|
|
|
|
|
"\n")))
|
2014-04-11 17:27:02 -04:00
|
|
|
|
|
2017-01-03 12:23:40 -05:00
|
|
|
|
(defun org-babel--variable-assignments:bash (varname values &optional sep hline)
|
2019-10-20 06:12:27 -04:00
|
|
|
|
"Represent the parameters as useful Bash shell variables."
|
2017-06-09 18:06:24 -04:00
|
|
|
|
(pcase values
|
|
|
|
|
(`((,_ ,_ . ,_) . ,_) ;two-dimensional array
|
|
|
|
|
(org-babel--variable-assignments:bash_assoc varname values sep hline))
|
|
|
|
|
(`(,_ . ,_) ;simple list
|
|
|
|
|
(org-babel--variable-assignments:bash_array varname values sep hline))
|
|
|
|
|
(_ ;scalar value
|
|
|
|
|
(org-babel--variable-assignments:sh-generic varname values sep hline))))
|
2009-06-14 14:53:56 -04:00
|
|
|
|
|
2015-07-03 10:14:25 -04:00
|
|
|
|
(defun org-babel-variable-assignments:shell (params)
|
2012-07-30 04:08:15 -04:00
|
|
|
|
"Return list of shell statements assigning the block's variables."
|
2016-09-22 13:45:15 -04:00
|
|
|
|
(let ((sep (cdr (assq :separator params)))
|
|
|
|
|
(hline (when (string= "yes" (cdr (assq :hlines params)))
|
|
|
|
|
(or (cdr (assq :hline-string params))
|
2013-05-19 00:55:38 -04:00
|
|
|
|
"hline"))))
|
2010-10-14 16:36:42 -04:00
|
|
|
|
(mapcar
|
|
|
|
|
(lambda (pair)
|
2016-08-24 11:05:54 -04:00
|
|
|
|
(if (string-suffix-p "bash" shell-file-name)
|
2017-01-03 12:23:40 -05:00
|
|
|
|
(org-babel--variable-assignments:bash
|
2014-04-11 17:27:02 -04:00
|
|
|
|
(car pair) (cdr pair) sep hline)
|
2017-01-03 12:23:40 -05:00
|
|
|
|
(org-babel--variable-assignments:sh-generic
|
2014-04-14 23:30:32 -04:00
|
|
|
|
(car pair) (cdr pair) sep hline)))
|
2015-10-29 15:26:11 -04:00
|
|
|
|
(org-babel--get-vars params))))
|
2010-10-14 16:36:42 -04:00
|
|
|
|
|
2013-05-19 00:55:38 -04:00
|
|
|
|
(defun org-babel-sh-var-to-sh (var &optional sep hline)
|
2010-07-13 19:20:08 -04:00
|
|
|
|
"Convert an elisp value to a shell variable.
|
|
|
|
|
Convert an elisp var into a string of shell commands specifying a
|
|
|
|
|
var of the same value."
|
2014-06-19 15:23:28 -04:00
|
|
|
|
(concat "'" (replace-regexp-in-string
|
|
|
|
|
"'" "'\"'\"'"
|
|
|
|
|
(org-babel-sh-var-to-string var sep hline))
|
|
|
|
|
"'"))
|
2011-05-25 11:50:36 -04:00
|
|
|
|
|
2013-05-19 00:55:38 -04:00
|
|
|
|
(defun org-babel-sh-var-to-string (var &optional sep hline)
|
2011-05-25 11:50:36 -04:00
|
|
|
|
"Convert an elisp value to a string."
|
2012-08-10 10:05:26 -04:00
|
|
|
|
(let ((echo-var (lambda (v) (if (stringp v) v (format "%S" v)))))
|
2011-05-25 11:50:36 -04:00
|
|
|
|
(cond
|
2016-09-25 11:29:06 -04:00
|
|
|
|
((and (listp var) (or (listp (car var)) (eq (car var) 'hline)))
|
2013-05-19 00:55:38 -04:00
|
|
|
|
(orgtbl-to-generic var (list :sep (or sep "\t") :fmt echo-var
|
|
|
|
|
:hline hline)))
|
2011-05-25 11:50:36 -04:00
|
|
|
|
((listp var)
|
2012-08-10 10:05:26 -04:00
|
|
|
|
(mapconcat echo-var var "\n"))
|
|
|
|
|
(t (funcall echo-var var)))))
|
2009-06-12 16:09:20 -04:00
|
|
|
|
|
2016-06-20 08:58:32 -04:00
|
|
|
|
(defun org-babel-sh-initiate-session (&optional session _params)
|
2010-06-11 20:12:15 -04:00
|
|
|
|
"Initiate a session named SESSION according to PARAMS."
|
2010-06-14 20:52:13 -04:00
|
|
|
|
(when (and session (not (string= session "none")))
|
2009-11-27 14:28:34 -05:00
|
|
|
|
(save-window-excursion
|
|
|
|
|
(or (org-babel-comint-buffer-livep session)
|
2014-09-19 05:34:09 -04:00
|
|
|
|
(progn
|
|
|
|
|
(shell session)
|
2014-09-19 05:52:30 -04:00
|
|
|
|
;; Needed for Emacs 23 since the marker is initially
|
|
|
|
|
;; undefined and the filter functions try to use it without
|
|
|
|
|
;; checking.
|
|
|
|
|
(set-marker comint-last-output-start (point))
|
2014-09-19 05:34:09 -04:00
|
|
|
|
(get-buffer (current-buffer)))))))
|
2009-06-14 14:53:56 -04:00
|
|
|
|
|
2009-06-14 15:02:25 -04:00
|
|
|
|
(defvar org-babel-sh-eoe-indicator "echo 'org_babel_sh_eoe'"
|
2010-07-13 19:20:08 -04:00
|
|
|
|
"String to indicate that evaluation has completed.")
|
2009-06-14 15:02:25 -04:00
|
|
|
|
(defvar org-babel-sh-eoe-output "org_babel_sh_eoe"
|
2010-07-13 19:20:08 -04:00
|
|
|
|
"String to indicate that evaluation has completed.")
|
2009-06-12 16:09:20 -04:00
|
|
|
|
|
2014-02-09 22:12:18 -05:00
|
|
|
|
(defun org-babel-sh-evaluate (session body &optional params stdin cmdline)
|
2010-07-13 19:20:08 -04:00
|
|
|
|
"Pass BODY to the Shell process in BUFFER.
|
2015-09-21 00:24:12 -04: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 19:20:08 -04:00
|
|
|
|
return the value of the last statement in BODY."
|
2018-04-15 06:26:03 -04:00
|
|
|
|
(let* ((shebang (cdr (assq :shebang params)))
|
2020-09-06 16:35:28 -04:00
|
|
|
|
(results-params (cdr (assq :result-params params)))
|
2020-09-07 13:27:49 -04:00
|
|
|
|
(value-is-exit-status
|
|
|
|
|
(or (and
|
|
|
|
|
(equal '("replace") results-params)
|
|
|
|
|
(not org-babel-shell-results-defaults-to-output))
|
|
|
|
|
(member "value" results-params)))
|
2018-04-15 06:26:03 -04:00
|
|
|
|
(results
|
|
|
|
|
(cond
|
|
|
|
|
((or stdin cmdline) ; external shell script w/STDIN
|
|
|
|
|
(let ((script-file (org-babel-temp-file "sh-script-"))
|
|
|
|
|
(stdin-file (org-babel-temp-file "sh-stdin-"))
|
|
|
|
|
(padline (not (string= "no" (cdr (assq :padline params))))))
|
|
|
|
|
(with-temp-file script-file
|
|
|
|
|
(when shebang (insert shebang "\n"))
|
|
|
|
|
(when padline (insert "\n"))
|
|
|
|
|
(insert body))
|
|
|
|
|
(set-file-modes script-file #o755)
|
|
|
|
|
(with-temp-file stdin-file (insert (or stdin "")))
|
|
|
|
|
(with-temp-buffer
|
|
|
|
|
(call-process-shell-command
|
|
|
|
|
(concat (if shebang script-file
|
|
|
|
|
(format "%s %s" shell-file-name script-file))
|
|
|
|
|
(and cmdline (concat " " cmdline)))
|
|
|
|
|
stdin-file
|
|
|
|
|
(current-buffer))
|
|
|
|
|
(buffer-string))))
|
|
|
|
|
(session ; session evaluation
|
|
|
|
|
(mapconcat
|
|
|
|
|
#'org-babel-sh-strip-weird-long-prompt
|
|
|
|
|
(mapcar
|
|
|
|
|
#'org-trim
|
|
|
|
|
(butlast
|
|
|
|
|
(org-babel-comint-with-output
|
|
|
|
|
(session org-babel-sh-eoe-output t body)
|
|
|
|
|
(dolist (line (append (split-string (org-trim body) "\n")
|
|
|
|
|
(list org-babel-sh-eoe-indicator)))
|
|
|
|
|
(insert line)
|
|
|
|
|
(comint-send-input nil t)
|
|
|
|
|
(while (save-excursion
|
|
|
|
|
(goto-char comint-last-input-end)
|
|
|
|
|
(not (re-search-forward
|
|
|
|
|
comint-prompt-regexp nil t)))
|
|
|
|
|
(accept-process-output
|
|
|
|
|
(get-buffer-process (current-buffer))))))
|
|
|
|
|
2))
|
|
|
|
|
"\n"))
|
|
|
|
|
;; External shell script, with or without a predefined
|
|
|
|
|
;; shebang.
|
|
|
|
|
((org-string-nw-p shebang)
|
|
|
|
|
(let ((script-file (org-babel-temp-file "sh-script-"))
|
|
|
|
|
(padline (not (equal "no" (cdr (assq :padline params))))))
|
|
|
|
|
(with-temp-file script-file
|
|
|
|
|
(insert shebang "\n")
|
|
|
|
|
(when padline (insert "\n"))
|
|
|
|
|
(insert body))
|
|
|
|
|
(set-file-modes script-file #o755)
|
|
|
|
|
(org-babel-eval script-file "")))
|
2020-02-19 10:42:05 -05:00
|
|
|
|
(t (org-babel-eval shell-file-name (org-trim body))))))
|
|
|
|
|
(when value-is-exit-status
|
|
|
|
|
(setq results (car (reverse (split-string results "\n" t)))))
|
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 14:57:31 -05:00
|
|
|
|
(when results
|
2016-09-22 13:45:15 -04:00
|
|
|
|
(let ((result-params (cdr (assq :result-params params))))
|
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 14:57:31 -05:00
|
|
|
|
(org-babel-result-cond result-params
|
|
|
|
|
results
|
|
|
|
|
(let ((tmp-file (org-babel-temp-file "sh-")))
|
|
|
|
|
(with-temp-file tmp-file (insert results))
|
|
|
|
|
(org-babel-import-elisp-from-file tmp-file)))))))
|
2009-03-31 19:11:17 -04:00
|
|
|
|
|
2009-06-14 15:02:25 -04:00
|
|
|
|
(defun org-babel-sh-strip-weird-long-prompt (string)
|
2010-06-11 20:12:15 -04:00
|
|
|
|
"Remove prompt cruft from a string of shell output."
|
2009-06-12 18:20:23 -04:00
|
|
|
|
(while (string-match "^% +[\r\n$]+ *" string)
|
|
|
|
|
(setq string (substring string (match-end 0))))
|
|
|
|
|
string)
|
|
|
|
|
|
2013-12-13 11:54:48 -05:00
|
|
|
|
(provide 'ob-shell)
|
2010-06-25 13:17:50 -04:00
|
|
|
|
|
2013-12-13 11:54:48 -05:00
|
|
|
|
;;; ob-shell.el ends here
|