annotate lisp/vms/vmsx.el @ 69:804d1389bcd6

Added tag r19-16-pre9 for changeset 0b7f3b634cf2
author cvs
date Mon, 13 Aug 2007 09:00:04 +0200
parents 0293115a14e9
children 131b0175ea99
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 ;;; vmsx.el --- run asynchronous VMS subprocesses under Emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 ;; Copyright (C) 1986 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 ;; Author: Mukesh Prasad
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 ;; Maintainer: FSF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 ;; Keywords: vms
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 ;; This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 ;; XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ;; under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 ;; the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 ;; any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 ;; XEmacs is distributed in the hope that it will be useful, but
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 ;; WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 ;; General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 ;; You should have received a copy of the GNU General Public License
16
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
22 ;; along with XEmacs; see the file COPYING. If not, write to the
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
0293115a14e9 Import from CVS: tag r19-15b91
cvs
parents: 0
diff changeset
24 ;; Boston, MA 02111-1307, USA.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 ;;; Code:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 (defvar display-subprocess-window nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 "If non-nil, the suprocess window is displayed whenever input is received.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 (defvar command-prefix-string "$ "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 "String to insert to distinguish commands entered by user.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 (defvar subprocess-running nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 (defvar command-mode-map nil)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 (if command-mode-map
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 nil
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 (setq command-mode-map (make-sparse-keymap))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 (define-key command-mode-map "\C-m" 'command-send-input)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 (define-key command-mode-map "\C-u" 'command-kill-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 (defun subprocess-input (name str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 "Handles input from a subprocess. Called by Emacs."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 (if display-subprocess-window
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 (display-buffer subprocess-buf))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 (let ((old-buffer (current-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 (set-buffer subprocess-buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 (goto-char (point-max))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 (insert str)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 (insert ?\n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 (set-buffer old-buffer)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 (defun subprocess-exit (name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 "Called by Emacs upon subprocess exit."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 (setq subprocess-running nil))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 (defun start-subprocess ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 "Spawns an asynchronous subprocess with output redirected to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 the buffer *COMMAND*. Within this buffer, use C-m to send
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 the last line to the subprocess or to bring another line to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 the end."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 (if subprocess-running
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 (return t))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 (setq subprocess-buf (get-buffer-create "*COMMAND*"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 (set-buffer subprocess-buf)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 (use-local-map command-mode-map))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 (setq subprocess-running (spawn-subprocess 1 'subprocess-input
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 'subprocess-exit))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 ;; Initialize subprocess so it doesn't panic and die upon
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 ;; encountering the first error.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 (and subprocess-running
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 (send-command-to-subprocess 1 "ON SEVERE_ERROR THEN CONTINUE")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 (defvar subprocess-command-to-buffer-tmpdir "SYS$SCRATCH:"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 "*Put temporary files from subprocess-command-to-buffer here.")
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 (defun subprocess-command-to-buffer (command buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 "Execute command and redirect output into buffer.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 BUGS: only the output up to the end of the first image activation is trapped."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 (if (not subprocess-running)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 (start-subprocess))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 (save-excursion
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86 (set-buffer buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 (let ((output-filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 (concat subprocess-command-to-buffer-tmpdir
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 "OUTPUT-FOR-" (getenv "USER") ".LISTING")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 (while (file-attributes output-filename)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 (delete-file output-filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 (send-command-to-subprocess 1 (concat "DEFINE/USER SYS$OUTPUT "
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 output-filename "-NEW"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 (send-command-to-subprocess 1 command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 (send-command-to-subprocess 1 (concat "RENAME " output-filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 "-NEW " output-filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 (while (not (file-attributes output-filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 (sleep-for 2))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 (insert-file output-filename))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 (defun subprocess-command ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 "Starts asynchronous subprocess if not running and switches to its window."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 (if (not subprocess-running)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 (start-subprocess))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 (and subprocess-running
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 (progn (pop-to-buffer subprocess-buf) (goto-char (point-max)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 (defun command-send-input ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 "If at last line of buffer, sends the current line to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 the spawned subprocess. Otherwise brings back current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 line to the last line for resubmission."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 (let ((current-line (buffer-substring (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 (progn (end-of-line) (point)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 (if (eobp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 (if (not subprocess-running)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 (start-subprocess))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 (if subprocess-running
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 (send-command-to-subprocess 1 current-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 (if command-prefix-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 (progn (beginning-of-line) (insert command-prefix-string)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 (next-line 1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 ;; else -- if not at last line in buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 (end-of-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 (backward-char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 (next-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 (if (string-equal command-prefix-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 (substring current-line 0 (length command-prefix-string)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 (insert (substring current-line (length command-prefix-string)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 (insert current-line)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 (defun command-kill-line()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 "Kills the current line. Used in command mode."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 (kill-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 (define-key esc-map "$" 'subprocess-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 ;;; vmsx.el ends here