ob-comint.el 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128
  1. ;;; ob-comint.el --- org-babel functions for interaction with comint buffers
  2. ;; Copyright (C) 2009 Eric Schulte
  3. ;; Author: Eric Schulte
  4. ;; Keywords: literate programming, reproducible research, comint
  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. ;; These functions build on comint to ease the sending and receiving
  24. ;; of commands and results from comint buffers.
  25. ;;
  26. ;; Note that the buffers in this file are analogous to sessions in
  27. ;; org-babel at large.
  28. ;;; Code:
  29. (require 'ob)
  30. (require 'comint)
  31. (defun org-babel-comint-buffer-livep (buffer)
  32. "Check if BUFFER is a comint buffer with a live process."
  33. (let ((buffer (if buffer (get-buffer buffer))))
  34. (and buffer (buffer-live-p buffer) (get-buffer-process buffer) buffer)))
  35. (defmacro org-babel-comint-in-buffer (buffer &rest body)
  36. "Check BUFFER with `org-babel-comint-buffer-livep' then execute
  37. body inside the protection of `save-window-excursion' and
  38. `save-match-data'."
  39. (declare (indent 1))
  40. `(save-excursion
  41. (save-match-data
  42. (unless (org-babel-comint-buffer-livep ,buffer)
  43. (error (format "buffer %s doesn't exist or has no process" ,buffer)))
  44. (set-buffer ,buffer)
  45. ,@body)))
  46. (defmacro org-babel-comint-with-output
  47. (buffer eoe-indicator remove-echo &rest body)
  48. "Evaluate BODY in BUFFER, wait until EOE-INDICATOR appears in
  49. output, then return all process output. This ensures that the
  50. filter is removed in case of an error or user `keyboard-quit'
  51. during execution of body."
  52. (declare (indent 3))
  53. `(org-babel-comint-in-buffer ,buffer
  54. (let ((string-buffer "") dangling-text)
  55. (flet ((my-filt (text) (setq string-buffer (concat string-buffer text))))
  56. ;; setup filter
  57. (add-hook 'comint-output-filter-functions 'my-filt)
  58. (unwind-protect
  59. (progn
  60. ;; got located, and save dangling text
  61. (goto-char (process-mark (get-buffer-process (current-buffer))))
  62. (let ((start (point))
  63. (end (point-max)))
  64. (setq dangling-text (buffer-substring start end))
  65. (delete-region start end))
  66. ;; pass FULL-BODY to process
  67. ,@body
  68. ;; wait for end-of-evaluation indicator
  69. (while (progn
  70. (goto-char comint-last-input-end)
  71. (not (save-excursion
  72. (and (re-search-forward
  73. comint-prompt-regexp nil t)
  74. (re-search-forward
  75. (regexp-quote ,eoe-indicator) nil t)))))
  76. (accept-process-output (get-buffer-process (current-buffer)))
  77. ;; thought the following this would allow async
  78. ;; background running, but I was wrong...
  79. ;; (run-with-timer .5 .5 'accept-process-output
  80. ;; (get-buffer-process (current-buffer)))
  81. )
  82. ;; replace cut dangling text
  83. (goto-char (process-mark (get-buffer-process (current-buffer))))
  84. (insert dangling-text))
  85. ;; remove filter
  86. (remove-hook 'comint-output-filter-functions 'my-filt)))
  87. ;; remove echo'd FULL-BODY from input
  88. (if (and ,remove-echo
  89. (string-match
  90. (replace-regexp-in-string
  91. "\n" "[\r\n]+" (regexp-quote ,full-body))
  92. string-buffer))
  93. (setq raw (substring string-buffer (match-end 0))))
  94. (split-string string-buffer comint-prompt-regexp))))
  95. (defun org-babel-comint-input-command (buffer cmd)
  96. "Pass CMD to BUFFER The input will not be echoed."
  97. (org-babel-comint-in-buffer buffer
  98. (goto-char (process-mark (get-buffer-process buffer)))
  99. (insert cmd)
  100. (comint-send-input)
  101. (org-babel-comint-wait-for-output buffer)))
  102. (defun org-babel-comint-wait-for-output (buffer)
  103. "Wait until output arrives from BUFFER. Note: this is only
  104. safe when waiting for the result of a single statement (not large
  105. blocks of code)."
  106. (org-babel-comint-in-buffer buffer
  107. (while (progn
  108. (goto-char comint-last-input-end)
  109. (not (and (re-search-forward comint-prompt-regexp nil t)
  110. (goto-char (match-beginning 0))
  111. (string= (face-name (face-at-point))
  112. "comint-highlight-prompt"))))
  113. (accept-process-output (get-buffer-process buffer)))))
  114. (provide 'ob-comint)
  115. ;;; ob-comint.el ends here