org-babel-screen.el 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. ;;; org-babel-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 'org-babel)
  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) body)
  42. (defun org-babel-execute:screen (body params)
  43. "Send a block of code via screen to a terminal using org-babel.
  44. \"default\" session is be used when none is specified."
  45. (message "Sending source code block to interactive terminal session...")
  46. (save-window-excursion
  47. (let* ((processed-params (org-babel-process-params params))
  48. (session (first processed-params))
  49. (socket (org-babel-screen-session-socketname session)))
  50. (unless socket (org-babel-prep-session:screen session params))
  51. (org-babel-screen-session-execute-string
  52. session (org-babel-expand-body:screen body)))))
  53. (defun org-babel-prep-session:screen (session params)
  54. "Prepare SESSION according to the header arguments specified in PARAMS."
  55. (let* ((processed-params (org-babel-process-params params))
  56. (session (first processed-params))
  57. (vars (second processed-params))
  58. (socket (org-babel-screen-session-socketname session))
  59. (vars (org-babel-ref-variables params))
  60. (cmd (cdr (assoc :cmd params)))
  61. (terminal (cdr (assoc :terminal params)))
  62. (process-name (concat "org-babel: terminal (" session ")")))
  63. (apply 'start-process process-name "*Messages*"
  64. terminal `("-T" ,(concat "org-babel: " session) "-e" ,org-babel-screen-location
  65. "-c" "/dev/null" "-mS" ,(concat "org-babel-session-" session)
  66. ,cmd))
  67. ;; XXX: Is there a better way than the following?
  68. (while (not (org-babel-screen-session-socketname session))
  69. ;; wait until screen session is available before returning
  70. )))
  71. ;; helper functions
  72. (defun org-babel-screen-session-execute-string (session body)
  73. "If SESSION exist, send BODY to it."
  74. (let ((socket (org-babel-screen-session-socketname session)))
  75. (when socket
  76. (let ((tmpfile (org-babel-screen-session-write-temp-file session body)))
  77. (apply 'start-process (concat "org-babel: screen (" session ")") "*Messages*"
  78. org-babel-screen-location
  79. `("-S" ,socket "-X" "eval" "msgwait 0"
  80. ,(concat "readreg z " tmpfile)
  81. "paste z"))))))
  82. (defun org-babel-screen-session-socketname (session)
  83. "Check if SESSION exist by parsing output of \"screen -ls\"."
  84. (let* ((screen-ls (shell-command-to-string "screen -ls"))
  85. (sockets (remove-if-not
  86. '(lambda (x)
  87. (string-match (rx (or "(Attached)" "(Detached)")) x))
  88. (split-string screen-ls "\n")))
  89. (match-socket (find-if
  90. '(lambda (x)
  91. (string-match (concat "org-babel-session-" session) x))
  92. sockets)))
  93. (when match-socket (car (split-string match-socket)))))
  94. (defun org-babel-screen-session-write-temp-file (session body)
  95. "Save BODY in a temp file that is named after SESSION."
  96. (let ((tmpfile (concat "/tmp/screen.org-babel-session-" session)))
  97. (with-temp-file tmpfile
  98. (insert body)
  99. ;; org-babel has superflous spaces
  100. (goto-char (point-min))
  101. (delete-matching-lines "^ +$"))
  102. tmpfile))
  103. (defun org-babel-screen-test ()
  104. "Command that tests if the default setup works.
  105. The terminal should shortly flicker."
  106. (interactive)
  107. (let* ((session "org-babel-testing")
  108. (random-string (format "%s" (random 99999)))
  109. (tmpfile "/tmp/org-babel-screen.test")
  110. (body (concat "echo '" random-string "' > " tmpfile "\nexit\n"))
  111. process tmp-string)
  112. (org-babel-execute:screen body org-babel-default-header-args:screen)
  113. ;; XXX: need to find a better way to do the following
  114. (while (not (file-readable-p tmpfile))
  115. ;; do something, otherwise this will be optimized away
  116. (format "org-babel-screen: File not readable yet."))
  117. (setq tmp-string (with-temp-buffer
  118. (insert-file-contents-literally tmpfile)
  119. (buffer-substring (point-min) (point-max))))
  120. (delete-file tmpfile)
  121. (message (concat "org-babel-screen: Setup "
  122. (if (string-match random-string tmp-string)
  123. "WORKS."
  124. "DOESN'T work.")))))
  125. (provide 'org-babel-screen)
  126. ;;; org-babel-screen.el ends here