Mercurial > emacs
annotate lisp/vmsproc.el @ 19860:c17fd465ea95 libc-970911 libc-970912 libc-970913 libc-970914 libc-970915 libc-970916 libc-970917 libc-970918 libc-970919 libc-970920 libc-970921 libc-970922 libc-970923 libc-970924 libc-970925 libc-970926 libc-970927 libc-970928 libc-970929 libc-970930 libc-971001 libc-971018 libc-971019 libc-971020 libc-971021 libc-971022 libc-971023 libc-971024 libc-971025 libc-971026 libc-971027 libc-971028 libc-971029 libc-971030 libc-971031 libc-971101 libc-971102 libc-971103 libc-971104 libc-971105 libc-971106 libc-971107 libc-971108 libc-971109 libc-971110 libc-971111 libc-971112 libc-971113 libc-971114 libc-971115 libc-971116 libc-971117 libc-971118 libc-971120 libc-971121 libc-971122 libc-971123 libc-971124 libc-971125 libc-971126 libc-971127 libc-971128 libc-971129 libc-971130 libc-971201 libc-971203 libc-971204 libc-971205 libc-971206 libc-971207 libc-971208 libc-971209 libc-971210 libc-971211 libc-971212 libc-971213 libc-971214 libc-971217 libc-971218 libc-971219 libc-971220 libc-971221 libc-971222 libc-971223 libc-971224 libc-971225 libc-971226 libc-971227 libc-971228 libc-971229 libc-971230 libc-971231 libc-980103 libc-980104 libc-980105 libc-980106 libc-980107 libc-980108 libc-980109 libc-980110 libc-980111 libc-980112 libc-980114 libc-980115 libc-980116 libc-980117 libc-980118 libc-980119 libc-980120 libc-980121 libc-980122 libc-980123 libc-980124 libc-980125 libc-980126 libc-980127 libc-980128
typos.
author | Jeff Law <law@redhat.com> |
---|---|
date | Wed, 10 Sep 1997 21:16:20 +0000 |
parents | 83f275dcd93a |
children | 253f761ad37b |
rev | line source |
---|---|
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
1 ;;; vmsproc.el --- run asynchronous VMS subprocesses under Emacs |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
2 |
841 | 3 ;; Copyright (C) 1986 Free Software Foundation, Inc. |
4 | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
5 ;; Author: Mukesh Prasad |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
6 ;; Maintainer: FSF |
812
485e82a8acb5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
7 ;; Keywords: vms |
656
d74e65773062
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
35
diff
changeset
|
8 |
35 | 9 ;; This file is part of GNU Emacs. |
10 | |
11 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
12 ;; it under the terms of the GNU General Public License as published by | |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
13 ;; the Free Software Foundation; either version 2, or (at your option) |
35 | 14 ;; any later version. |
15 | |
16 ;; GNU Emacs is distributed in the hope that it will be useful, | |
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 ;; GNU General Public License for more details. | |
20 | |
21 ;; You should have received a copy of the GNU General Public License | |
14169 | 22 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
24 ;; Boston, MA 02111-1307, USA. | |
35 | 25 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
26 ;;; Code: |
35 | 27 |
28 (defvar display-subprocess-window nil | |
14015
51621fd8598f
(display-subprocess-window): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
841
diff
changeset
|
29 "If non-nil, the subprocess window is displayed whenever input is received.") |
35 | 30 |
31 (defvar command-prefix-string "$ " | |
32 "String to insert to distinguish commands entered by user.") | |
33 | |
34 (defvar subprocess-running nil) | |
35 (defvar command-mode-map nil) | |
36 | |
37 (if command-mode-map | |
38 nil | |
39 (setq command-mode-map (make-sparse-keymap)) | |
40 (define-key command-mode-map "\C-m" 'command-send-input) | |
41 (define-key command-mode-map "\C-u" 'command-kill-line)) | |
42 | |
43 (defun subprocess-input (name str) | |
44 "Handles input from a subprocess. Called by Emacs." | |
45 (if display-subprocess-window | |
46 (display-buffer subprocess-buf)) | |
47 (let ((old-buffer (current-buffer))) | |
48 (set-buffer subprocess-buf) | |
49 (goto-char (point-max)) | |
50 (insert str) | |
51 (insert ?\n) | |
52 (set-buffer old-buffer))) | |
53 | |
54 (defun subprocess-exit (name) | |
55 "Called by Emacs upon subprocess exit." | |
56 (setq subprocess-running nil)) | |
57 | |
58 (defun start-subprocess () | |
59 "Spawns an asynchronous subprocess with output redirected to | |
60 the buffer *COMMAND*. Within this buffer, use C-m to send | |
61 the last line to the subprocess or to bring another line to | |
62 the end." | |
63 (if subprocess-running | |
64 (return t)) | |
65 (setq subprocess-buf (get-buffer-create "*COMMAND*")) | |
66 (save-excursion | |
67 (set-buffer subprocess-buf) | |
68 (use-local-map command-mode-map)) | |
69 (setq subprocess-running (spawn-subprocess 1 'subprocess-input | |
70 'subprocess-exit)) | |
71 ;; Initialize subprocess so it doesn't panic and die upon | |
72 ;; encountering the first error. | |
73 (and subprocess-running | |
74 (send-command-to-subprocess 1 "ON SEVERE_ERROR THEN CONTINUE"))) | |
75 | |
76 (defun subprocess-command-to-buffer (command buffer) | |
77 "Execute COMMAND and redirect output into BUFFER." | |
78 (let (cmd args) | |
79 (setq cmd (substring command 0 (string-match " " command))) | |
80 (setq args (substring command (string-match " " command))) | |
81 (call-process cmd nil buffer nil "*dcl*" args))) | |
82 ;BUGS: only the output up to the end of the first image activation is trapped. | |
83 ; (if (not subprocess-running) | |
84 ; (start-subprocess)) | |
85 ; (save-excursion | |
86 ; (set-buffer buffer) | |
87 ; (let ((output-filename (concat "SYS$SCRATCH:OUTPUT-FOR-" | |
88 ; (getenv "USER") ".LISTING"))) | |
89 ; (while (file-exists-p output-filename) | |
90 ; (delete-file output-filename)) | |
91 ; (define-logical-name "SYS$OUTPUT" (concat output-filename "-NEW")) | |
92 ; (send-command-to-subprocess 1 command) | |
93 ; (send-command-to-subprocess 1 (concat | |
94 ; "RENAME " output-filename | |
95 ; "-NEW " output-filename)) | |
96 ; (while (not (file-exists-p output-filename)) | |
97 ; (sleep-for 1)) | |
98 ; (define-logical-name "SYS$OUTPUT" nil) | |
99 ; (insert-file output-filename) | |
100 ; (delete-file output-filename)))) | |
101 | |
102 (defun subprocess-command () | |
103 "Starts asynchronous subprocess if not running and switches to its window." | |
104 (interactive) | |
105 (if (not subprocess-running) | |
106 (start-subprocess)) | |
107 (and subprocess-running | |
108 (progn (pop-to-buffer subprocess-buf) (goto-char (point-max))))) | |
109 | |
110 (defun command-send-input () | |
111 "If at last line of buffer, sends the current line to | |
112 the spawned subprocess. Otherwise brings back current | |
113 line to the last line for resubmission." | |
114 (interactive) | |
115 (beginning-of-line) | |
116 (let ((current-line (buffer-substring (point) | |
117 (progn (end-of-line) (point))))) | |
118 (if (eobp) | |
119 (progn | |
120 (if (not subprocess-running) | |
121 (start-subprocess)) | |
122 (if subprocess-running | |
123 (progn | |
124 (beginning-of-line) | |
125 (send-command-to-subprocess 1 current-line) | |
126 (if command-prefix-string | |
127 (progn (beginning-of-line) (insert command-prefix-string))) | |
128 (next-line 1)))) | |
129 ;; else -- if not at last line in buffer | |
130 (end-of-buffer) | |
131 (backward-char) | |
132 (next-line 1) | |
133 (if (string-equal command-prefix-string | |
134 (substring current-line 0 (length command-prefix-string))) | |
135 (insert (substring current-line (length command-prefix-string))) | |
136 (insert current-line))))) | |
137 | |
138 (defun command-kill-line() | |
139 "Kills the current line. Used in command mode." | |
140 (interactive) | |
141 (beginning-of-line) | |
142 (kill-line)) | |
143 | |
144 (define-key esc-map "$" 'subprocess-command) | |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
656
diff
changeset
|
145 |
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
656
diff
changeset
|
146 ;;; vmsproc.el ends here |