annotate lisp/vms/vmsproc.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 ;;; vmsproc.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 (defun subprocess-command-to-buffer (command buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 "Execute COMMAND and redirect output into BUFFER."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78 (let (cmd args)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 (setq cmd (substring command 0 (string-match " " command)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80 (setq args (substring command (string-match " " command)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 (call-process cmd nil buffer nil "*dcl*" args)))
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 (concat "SYS$SCRATCH:OUTPUT-FOR-"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88 ; (getenv "USER") ".LISTING")))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 ; (while (file-exists-p output-filename)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90 ; (delete-file output-filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 ; (define-logical-name "SYS$OUTPUT" (concat output-filename "-NEW"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 ; (send-command-to-subprocess 1 command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 ; (send-command-to-subprocess 1 (concat
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 ; "RENAME " output-filename
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95 ; "-NEW " output-filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 ; (while (not (file-exists-p output-filename))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 ; (sleep-for 1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 ; (define-logical-name "SYS$OUTPUT" nil)
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 ; (delete-file output-filename))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 (defun subprocess-command ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 "Starts asynchronous subprocess if not running and switches to its window."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105 (if (not subprocess-running)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 (start-subprocess))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 (and subprocess-running
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 (progn (pop-to-buffer subprocess-buf) (goto-char (point-max)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 (defun command-send-input ()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 "If at last line of buffer, sends the current line to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 the spawned subprocess. Otherwise brings back current
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113 line to the last line for resubmission."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 (let ((current-line (buffer-substring (point)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 (progn (end-of-line) (point)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 (if (eobp)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 (if (not subprocess-running)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 (start-subprocess))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 (if subprocess-running
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 (progn
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 (send-command-to-subprocess 1 current-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 (if command-prefix-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 (progn (beginning-of-line) (insert command-prefix-string)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 (next-line 1))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 ;; else -- if not at last line in buffer
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 (end-of-buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 (backward-char)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132 (next-line 1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 (if (string-equal command-prefix-string
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 (substring current-line 0 (length command-prefix-string)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 (insert (substring current-line (length command-prefix-string)))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 (insert current-line)))))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 (defun command-kill-line()
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 "Kills the current line. Used in command mode."
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 (interactive)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 (beginning-of-line)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 (kill-line))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144 (define-key esc-map "$" 'subprocess-command)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 ;;; vmsproc.el ends here