ob-screen.el 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  1. ;;; ob-screen.el --- org-babel support for interactive terminal
  2. ;; Copyright (C) 2009 Benjamin Andresen
  3. ;; Author: Benjamin Andresen
  4. ;; Keywords: literate programming, interactive shell
  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 interactive terminals. Mostly shell scripts.
  24. ;; Heavily inspired by 'eev' from Eduardo Ochs
  25. ;;
  26. ;; Adding :cmd and :terminal as header arguments
  27. ;; :terminal must support the -T (title) and -e (command) parameter
  28. ;;
  29. ;; You can test the default setup. (xterm + sh) with
  30. ;; M-x org-babel-screen-test RET
  31. ;;; Code:
  32. (require 'ob)
  33. (org-babel-add-interpreter "screen")
  34. (add-to-list 'org-src-lang-modes '("screen" . sh))
  35. (defvar org-babel-screen-location "screen"
  36. "The command location for screen.
  37. In case you want to use a different screen than one selected by your $PATH")
  38. (defvar org-babel-default-header-args:screen
  39. '((:results . "silent") (:session . "default") (:cmd . "sh") (:terminal . "xterm"))
  40. "Default arguments to use when running screen source blocks.")
  41. (defun org-babel-expand-body:screen (body params &optional processed-params)
  42. "Expand BODY according to PARAMS, return the expanded body." body)
  43. (defun org-babel-execute:screen (body params)
  44. "Send a block of code via screen to a terminal using org-babel.
  45. \"default\" session is be used when none is specified."
  46. (message "Sending source code block to interactive terminal session...")
  47. (save-window-excursion
  48. (let* ((processed-params (org-babel-process-params params))
  49. (session (first processed-params))
  50. (socket (org-babel-screen-session-socketname session)))
  51. (unless socket (org-babel-prep-session:screen session params))
  52. (org-babel-screen-session-execute-string
  53. session (org-babel-expand-body:screen body params)))))
  54. (defun org-babel-prep-session:screen (session params)
  55. "Prepare SESSION according to the header arguments specified in PARAMS."
  56. (let* ((processed-params (org-babel-process-params params))
  57. (session (first processed-params))
  58. (vars (second processed-params))
  59. (socket (org-babel-screen-session-socketname session))
  60. (vars (org-babel-ref-variables params))
  61. (cmd (cdr (assoc :cmd params)))
  62. (terminal (cdr (assoc :terminal params)))
  63. (process-name (concat "org-babel: terminal (" session ")")))
  64. (apply 'start-process process-name "*Messages*"
  65. terminal `("-T" ,(concat "org-babel: " session) "-e" ,org-babel-screen-location
  66. "-c" "/dev/null" "-mS" ,(concat "org-babel-session-" session)
  67. ,cmd))
  68. ;; XXX: Is there a better way than the following?
  69. (while (not (org-babel-screen-session-socketname session))
  70. ;; wait until screen session is available before returning
  71. )))
  72. ;; helper functions
  73. (defun org-babel-screen-session-execute-string (session body)
  74. "If SESSION exist, send BODY to it."
  75. (let ((socket (org-babel-screen-session-socketname session)))
  76. (when socket
  77. (let ((tmpfile (org-babel-screen-session-write-temp-file session body)))
  78. (apply 'start-process (concat "org-babel: screen (" session ")") "*Messages*"
  79. org-babel-screen-location
  80. `("-S" ,socket "-X" "eval" "msgwait 0"
  81. ,(concat "readreg z " tmpfile)
  82. "paste z"))))))
  83. (defun org-babel-screen-session-socketname (session)
  84. "Check if SESSION exist by parsing output of \"screen -ls\"."
  85. (let* ((screen-ls (shell-command-to-string "screen -ls"))
  86. (sockets (remove-if-not
  87. '(lambda (x)
  88. (string-match (rx (or "(Attached)" "(Detached)")) x))
  89. (split-string screen-ls "\n")))
  90. (match-socket (find-if
  91. '(lambda (x)
  92. (string-match (concat "org-babel-session-" session) x))
  93. sockets)))
  94. (when match-socket (car (split-string match-socket)))))
  95. (defun org-babel-screen-session-write-temp-file (session body)
  96. "Save BODY in a temp file that is named after SESSION."
  97. (let ((tmpfile (concat "/tmp/screen.org-babel-session-" session)))
  98. (with-temp-file tmpfile
  99. (insert body)
  100. ;; org-babel has superflous spaces
  101. (goto-char (point-min))
  102. (delete-matching-lines "^ +$"))
  103. tmpfile))
  104. (defun org-babel-screen-test ()
  105. "Test if the default setup works. The terminal should shortly
  106. flicker."
  107. (interactive)
  108. (let* ((session "org-babel-testing")
  109. (random-string (format "%s" (random 99999)))
  110. (tmpfile "/tmp/org-babel-screen.test")
  111. (body (concat "echo '" random-string "' > " tmpfile "\nexit\n"))
  112. process tmp-string)
  113. (org-babel-execute:screen body org-babel-default-header-args:screen)
  114. ;; XXX: need to find a better way to do the following
  115. (while (not (file-readable-p tmpfile))
  116. ;; do something, otherwise this will be optimized away
  117. (format "org-babel-screen: File not readable yet."))
  118. (setq tmp-string (with-temp-buffer
  119. (insert-file-contents-literally tmpfile)
  120. (buffer-substring (point-min) (point-max))))
  121. (delete-file tmpfile)
  122. (message (concat "org-babel-screen: Setup "
  123. (if (string-match random-string tmp-string)
  124. "WORKS."
  125. "DOESN'T work.")))))
  126. (provide 'ob-screen)
  127. ;;; ob-screen.el ends here