ob-sh.el 7.9 KB

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