org-babel-sh.el 7.4 KB

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