ob-sh.el 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  1. ;;; ob-sh.el --- org-babel functions for shell 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 shell source code.
  24. ;;; Code:
  25. (require 'ob)
  26. (require 'shell)
  27. (eval-when-compile
  28. (require 'cl))
  29. (declare-function org-babel-ref-variables "ob-ref" (params))
  30. (declare-function org-babel-comint-in-buffer "ob-comint" (buffer &rest body))
  31. (declare-function org-babel-comint-wait-for-output "ob-comint" (buffer))
  32. (declare-function org-babel-comint-buffer-livep "ob-comint" (buffer))
  33. (declare-function org-babel-comint-with-output "ob-comint" (meta &rest body))
  34. (declare-function orgtbl-to-generic "org-table" (table params))
  35. (org-babel-add-interpreter "sh")
  36. (add-to-list 'org-babel-tangle-langs '("sh" "sh" "#!/usr/bin/env sh"))
  37. (defvar org-babel-sh-command "sh"
  38. "Command used to invoke a shell. This will be passed to
  39. `shell-command-on-region'")
  40. (defun org-babel-expand-body:sh (body params &optional processed-params)
  41. "Expand BODY according to PARAMS, return the expanded body."
  42. (let ((vars (nth 1 (or processed-params (org-babel-process-params params))))
  43. (sep (cdr (assoc :separator params))))
  44. (concat
  45. (mapconcat ;; define any variables
  46. (lambda (pair)
  47. (format "%s=%s"
  48. (car pair)
  49. (org-babel-sh-var-to-sh (cdr pair) sep)))
  50. vars "\n") "\n" body "\n\n")))
  51. (defun org-babel-execute:sh (body params)
  52. "Execute a block of Shell commands with org-babel. This
  53. function is called by `org-babel-execute-src-block'."
  54. (message "executing Shell source code block")
  55. (let* ((processed-params (org-babel-process-params params))
  56. (session (org-babel-sh-initiate-session (nth 0 processed-params)))
  57. (result-params (nth 2 processed-params))
  58. (full-body (org-babel-expand-body:sh
  59. body params processed-params))) ;; then the source block body
  60. (org-babel-reassemble-table
  61. (org-babel-sh-evaluate session full-body result-params)
  62. (org-babel-pick-name (nth 4 processed-params) (cdr (assoc :colnames params)))
  63. (org-babel-pick-name (nth 5 processed-params) (cdr (assoc :rownames params))))))
  64. (defun org-babel-prep-session:sh (session params)
  65. "Prepare SESSION according to the header arguments specified in PARAMS."
  66. (let* ((session (org-babel-sh-initiate-session session))
  67. (vars (org-babel-ref-variables params))
  68. (sep (cdr (assoc :separator params)))
  69. (var-lines (mapcar ;; define any variables
  70. (lambda (pair)
  71. (format "%s=%s"
  72. (car pair)
  73. (org-babel-sh-var-to-sh (cdr pair) sep)))
  74. vars)))
  75. (org-babel-comint-in-buffer session
  76. (mapc (lambda (var)
  77. (insert var) (comint-send-input nil t)
  78. (org-babel-comint-wait-for-output session)) var-lines))
  79. session))
  80. (defun org-babel-load-session:sh (session body params)
  81. "Load BODY into SESSION."
  82. (save-window-excursion
  83. (let ((buffer (org-babel-prep-session:sh 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-sh-var-to-sh (var &optional sep)
  90. "Convert an elisp var into a string of shell commands
  91. specifying a var of the same value."
  92. (if (listp var)
  93. (flet ((deep-string (el)
  94. (if (listp el)
  95. (mapcar #'deep-string el)
  96. (org-babel-sh-var-to-sh el sep))))
  97. (format "$(cat <<BABEL_TABLE\n%s\nBABEL_TABLE\n)"
  98. (orgtbl-to-generic (deep-string var) (list :sep (or sep "\t")))))
  99. (if (stringp var) (format "%s" var) (format "%S" var))))
  100. (defun org-babel-sh-table-or-results (results)
  101. "If the results look like a table, then convert them into an
  102. Emacs-lisp table, otherwise return the results as a string."
  103. (org-babel-read
  104. (if (string-match "^\\[.+\\]$" results)
  105. (org-babel-read
  106. (concat "'"
  107. (replace-regexp-in-string
  108. "\\[" "(" (replace-regexp-in-string
  109. "\\]" ")" (replace-regexp-in-string
  110. ", " " " (replace-regexp-in-string
  111. "'" "\"" results))))))
  112. results)))
  113. (defun org-babel-sh-initiate-session (&optional session params)
  114. "Initiate a session named SESSION according to PARAMS."
  115. (unless (string= session "none")
  116. (save-window-excursion
  117. (or (org-babel-comint-buffer-livep session)
  118. (progn (shell session) (get-buffer (current-buffer)))))))
  119. (defvar org-babel-sh-eoe-indicator "echo 'org_babel_sh_eoe'"
  120. "Used to indicate that evaluation is has completed.")
  121. (defvar org-babel-sh-eoe-output "org_babel_sh_eoe"
  122. "Used to indicate that evaluation is has completed.")
  123. (defun org-babel-sh-evaluate (session body &optional result-params)
  124. "Pass BODY to the Shell process in BUFFER. If RESULT-TYPE equals
  125. 'output then return a list of the outputs of the statements in
  126. BODY, if RESULT-TYPE equals 'value then return the value of the
  127. last statement in BODY."
  128. (if (not session)
  129. ;; external process evaluation
  130. (save-window-excursion
  131. (with-temp-buffer
  132. (insert body)
  133. ;; (message "buffer=%s" (buffer-string)) ;; debugging
  134. (org-babel-shell-command-on-region (point-min) (point-max) org-babel-sh-command 'current-buffer 'replace)
  135. (cond
  136. ((member "output" result-params) (buffer-string))
  137. ;; TODO: figure out how to return non-output values from shell scripts
  138. (t ;; if not "output" then treat as "value"
  139. (if (member "scalar" result-params)
  140. (buffer-string)
  141. (let ((tmp-file (make-temp-file "org-babel-sh"))
  142. (results (buffer-string)))
  143. (with-temp-file tmp-file (insert results))
  144. (org-babel-import-elisp-from-file tmp-file)))))))
  145. ;; comint session evaluation
  146. (flet ((strip-empty (lst)
  147. (delq nil (mapcar (lambda (el) (unless (= (length el) 0) el)) lst))))
  148. (let ((tmp-file (make-temp-file "org-babel-sh"))
  149. (results
  150. (cdr (member
  151. org-babel-sh-eoe-output
  152. (strip-empty
  153. (reverse
  154. (mapcar #'org-babel-sh-strip-weird-long-prompt
  155. (mapcar #'org-babel-trim
  156. (org-babel-comint-with-output
  157. (session org-babel-sh-eoe-output t full-body)
  158. (mapc (lambda (line) (insert line) (comint-send-input))
  159. (strip-empty (split-string body "\n")))
  160. (insert org-babel-sh-eoe-indicator)
  161. (comint-send-input))))))))))
  162. ;; (message (replace-regexp-in-string
  163. ;; "%" "%%" (format "processed-results=%S" results))) ;; debugging
  164. (or (and results
  165. (cond
  166. ((member "output" result-params)
  167. (org-babel-trim (mapconcat #'org-babel-trim
  168. (reverse results) "\n")))
  169. (t ;; if not "output" then treat as "value"
  170. (with-temp-file tmp-file
  171. (insert (car results)) (insert "\n"))
  172. (org-babel-import-elisp-from-file tmp-file))))
  173. "")))))
  174. (defun org-babel-sh-strip-weird-long-prompt (string)
  175. "Remove prompt cruft from a string of shell output."
  176. (while (string-match "^% +[\r\n$]+ *" string)
  177. (setq string (substring string (match-end 0))))
  178. string)
  179. (provide 'ob-sh)
  180. ;;; ob-sh.el ends here