Mercurial > emacs
annotate lisp/vmsproc.el @ 70503:f403849ca1a6
(gdb-var-create-handler): Move speedbar
call to...
(gud-watch): ...here so speedbar is raised for already watched
expressions.
(gdb-speedbar-refresh): Delete function.
(gdb-speedbar-update, gdb-speedbar-timer-fn): New functions.
Use speedbar-timer-fn instead of speedbar-refresh (reverting
earlier change).
(gdb-var-evaluate-expression-handler)
(gdb-var-list-children-handler-1, gdb-var-update-handler-1):
Use it.
author | Nick Roberts <nickrob@snap.net.nz> |
---|---|
date | Sun, 07 May 2006 12:08:23 +0000 |
parents | 3bd95f4f2941 |
children | 2f0f8ada392a c5406394f567 |
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 |
68651
3bd95f4f2941
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64762
diff
changeset
|
3 ;; Copyright (C) 1986, 2002, 2003, 2004, 2005, |
3bd95f4f2941
Update years in copyright notice; nfc.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
64762
diff
changeset
|
4 ;; 2006 Free Software Foundation, Inc. |
841 | 5 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
6 ;; Author: Mukesh Prasad |
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
7 ;; Maintainer: FSF |
812
485e82a8acb5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
8 ;; Keywords: vms |
656
d74e65773062
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
35
diff
changeset
|
9 |
35 | 10 ;; This file is part of GNU Emacs. |
11 | |
12 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
13 ;; 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
|
14 ;; the Free Software Foundation; either version 2, or (at your option) |
35 | 15 ;; any later version. |
16 | |
17 ;; GNU Emacs is distributed in the hope that it will be useful, | |
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
20 ;; GNU General Public License for more details. | |
21 | |
22 ;; You should have received a copy of the GNU General Public License | |
14169 | 23 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
64091 | 24 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, |
25 ;; Boston, MA 02110-1301, USA. | |
35 | 26 |
38412
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
14169
diff
changeset
|
27 ;;; Commentary: |
253f761ad37b
Some fixes to follow coding conventions in files maintained by FSF.
Pavel Janík <Pavel@Janik.cz>
parents:
14169
diff
changeset
|
28 |
807
4f28bd14272c
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
657
diff
changeset
|
29 ;;; Code: |
35 | 30 |
31 (defvar display-subprocess-window nil | |
14015
51621fd8598f
(display-subprocess-window): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
841
diff
changeset
|
32 "If non-nil, the subprocess window is displayed whenever input is received.") |
35 | 33 |
34 (defvar command-prefix-string "$ " | |
35 "String to insert to distinguish commands entered by user.") | |
36 | |
37 (defvar subprocess-running nil) | |
64683
d8a052666f20
(subprocess-buf): Declare to quieten compiler.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64682
diff
changeset
|
38 (defvar subprocess-buf nil) |
d8a052666f20
(subprocess-buf): Declare to quieten compiler.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64682
diff
changeset
|
39 |
64682
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
40 (defvar command-mode-map |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
41 (let ((map (make-sparse-keymap))) |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
42 (define-key map "\C-m" 'command-send-input) |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
43 (define-key map "\C-u" 'command-kill-line) |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
44 map)) |
35 | 45 |
46 (defun subprocess-input (name str) | |
47 "Handles input from a subprocess. Called by Emacs." | |
48 (if display-subprocess-window | |
49 (display-buffer subprocess-buf)) | |
64683
d8a052666f20
(subprocess-buf): Declare to quieten compiler.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64682
diff
changeset
|
50 (with-current-buffer subprocess-buf |
35 | 51 (goto-char (point-max)) |
64683
d8a052666f20
(subprocess-buf): Declare to quieten compiler.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64682
diff
changeset
|
52 (insert str ?\n))) |
35 | 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*")) | |
64682
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
66 (with-current-buffer subprocess-buf |
35 | 67 (use-local-map command-mode-map)) |
68 (setq subprocess-running (spawn-subprocess 1 'subprocess-input | |
69 'subprocess-exit)) | |
70 ;; Initialize subprocess so it doesn't panic and die upon | |
71 ;; encountering the first error. | |
72 (and subprocess-running | |
73 (send-command-to-subprocess 1 "ON SEVERE_ERROR THEN CONTINUE"))) | |
74 | |
75 (defun subprocess-command-to-buffer (command buffer) | |
76 "Execute COMMAND and redirect output into BUFFER." | |
77 (let (cmd args) | |
78 (setq cmd (substring command 0 (string-match " " command))) | |
79 (setq args (substring command (string-match " " command))) | |
80 (call-process cmd nil buffer nil "*dcl*" args))) | |
64682
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
81 ;; BUGS: only the output up to the end of the first image activation is trapped. |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
82 ;; (if (not subprocess-running) |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
83 ;; (start-subprocess)) |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
84 ;; (with-current-buffer buffer |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
85 ;; (let ((output-filename (concat "SYS$SCRATCH:OUTPUT-FOR-" |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
86 ;; (getenv "USER") ".LISTING"))) |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
87 ;; (while (file-exists-p output-filename) |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
88 ;; (delete-file output-filename)) |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
89 ;; (define-logical-name "SYS$OUTPUT" (concat output-filename "-NEW")) |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
90 ;; (send-command-to-subprocess 1 command) |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
91 ;; (send-command-to-subprocess 1 (concat |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
92 ;; "RENAME " output-filename |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
93 ;; "-NEW " output-filename)) |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
94 ;; (while (not (file-exists-p output-filename)) |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
95 ;; (sleep-for 1)) |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
96 ;; (define-logical-name "SYS$OUTPUT" nil) |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
97 ;; (insert-file output-filename) |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
98 ;; (delete-file output-filename)))) |
35 | 99 |
100 (defun subprocess-command () | |
101 "Starts asynchronous subprocess if not running and switches to its window." | |
102 (interactive) | |
103 (if (not subprocess-running) | |
104 (start-subprocess)) | |
105 (and subprocess-running | |
106 (progn (pop-to-buffer subprocess-buf) (goto-char (point-max))))) | |
107 | |
108 (defun command-send-input () | |
109 "If at last line of buffer, sends the current line to | |
110 the spawned subprocess. Otherwise brings back current | |
111 line to the last line for resubmission." | |
112 (interactive) | |
113 (beginning-of-line) | |
64682
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
114 (let ((current-line (buffer-substring (point) (line-end-position)))) |
35 | 115 (if (eobp) |
116 (progn | |
117 (if (not subprocess-running) | |
118 (start-subprocess)) | |
119 (if subprocess-running | |
120 (progn | |
121 (beginning-of-line) | |
122 (send-command-to-subprocess 1 current-line) | |
123 (if command-prefix-string | |
124 (progn (beginning-of-line) (insert command-prefix-string))) | |
125 (next-line 1)))) | |
126 ;; else -- if not at last line in buffer | |
64682
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
127 (goto-char (point-max)) |
35 | 128 (backward-char) |
129 (next-line 1) | |
64682
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
130 (insert |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
131 (if (compare-strings command-prefix-string nil nil |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
132 current-line 0 (length command-prefix-string)) |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
133 (substring current-line (length command-prefix-string)) |
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
134 current-line))))) |
35 | 135 |
64682
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
136 (defun command-kill-line () |
35 | 137 "Kills the current line. Used in command mode." |
138 (interactive) | |
139 (beginning-of-line) | |
140 (kill-line)) | |
141 | |
142 (define-key esc-map "$" 'subprocess-command) | |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
656
diff
changeset
|
143 |
64682
ddfb3e6e7046
Avoid end-of-buffer. Clean up.
Stefan Monnier <monnier@iro.umontreal.ca>
parents:
64091
diff
changeset
|
144 ;; arch-tag: 600b2512-f903-4887-bcd2-e76b306f5b66 |
657
fec3f9a1e3e5
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
656
diff
changeset
|
145 ;;; vmsproc.el ends here |