org-babel-sh.el 6.6 KB

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