Mercurial > emacs
annotate lisp/telnet.el @ 8537:fcddf3261917
(c-macro-expansion): If the CPP output is empty, just show error messages.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 13 Aug 1994 23:55:09 +0000 |
parents | cc7cd83ccf3f |
children | 1c9ee34d9094 |
rev | line source |
---|---|
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
1 ;;; telnet.el --- run a telnet session from within an Emacs buffer |
775
1ca26ccad38e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
707
diff
changeset
|
2 |
7300 | 3 ;;; Copyright (C) 1985, 1988, 1992, 1994 Free Software Foundation, Inc. |
841 | 4 |
775
1ca26ccad38e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
707
diff
changeset
|
5 ;; Author: William F. Schelter |
1ca26ccad38e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
707
diff
changeset
|
6 ;; Maintainer: FSF |
48 | 7 |
8 ;; This file is part of GNU Emacs. | |
9 | |
10 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
11 ;; it under the terms of the GNU General Public License as published by | |
707 | 12 ;; the Free Software Foundation; either version 2, or (at your option) |
48 | 13 ;; any later version. |
14 | |
15 ;; GNU Emacs is distributed in the hope that it will be useful, | |
16 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
17 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
18 ;; GNU General Public License for more details. | |
19 | |
20 ;; You should have received a copy of the GNU General Public License | |
21 ;; along with GNU Emacs; see the file COPYING. If not, write to | |
22 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. | |
23 | |
2562 | 24 ;;; Commentary: |
25 | |
26 ;; This mode is intended to be used for telnet or rsh to a remode host; | |
27 ;; `telnet' and `rsh' are the two entry points. Multiple telnet or rsh | |
28 ;; sessions are supported. | |
29 ;; | |
30 ;; Normally, input is sent to the remote telnet/rsh line-by-line, as you | |
31 ;; type RET or LFD. C-c C-c sends a C-c to the remote immediately; | |
32 ;; C-c C-z sends C-z immediately. C-c C-q followed by any character | |
33 ;; sends that character immediately. | |
34 ;; | |
35 ;; All RET characters are filtered out of the output coming back from the | |
36 ;; remote system. The mode tries to do other useful translations based | |
37 ;; on what it sees coming back from the other system before the password | |
38 ;; query. It knows about UNIX, ITS, TOPS-20 and Explorer systems. | |
39 | |
775
1ca26ccad38e
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
707
diff
changeset
|
40 ;;; Code: |
48 | 41 |
2562 | 42 ;; to do fix software types for lispm: |
43 ;; to eval current expression. Also to try to send escape keys correctly. | |
44 ;; essentially we'll want the rubout-handler off. | |
48 | 45 |
46 ;; filter is simplistic but should be okay for typical shell usage. | |
47 ;; needs hacking if it is going to deal with asynchronous output in a sane | |
48 ;; manner | |
49 | |
50 (require 'comint) | |
707 | 51 |
48 | 52 (defvar telnet-new-line "\r") |
53 (defvar telnet-mode-map nil) | |
5273
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
54 (defvar telnet-prompt-pattern "^[^#$%>\n]*[#$%>] *") |
48 | 55 (defvar telnet-replace-c-g nil) |
56 (make-variable-buffer-local | |
57 (defvar telnet-remote-echoes t | |
58 "True if the telnet process will echo input.")) | |
59 (make-variable-buffer-local | |
60 (defvar telnet-interrupt-string "\C-c" "String sent by C-c.")) | |
61 | |
62 (defvar telnet-count 0 | |
5142
2d8ae66d6906
(telnet-rsh-program): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4828
diff
changeset
|
63 "Number of output strings from telnet process while looking for password.") |
2d8ae66d6906
(telnet-rsh-program): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4828
diff
changeset
|
64 (make-variable-buffer-local 'telnet-count) |
2d8ae66d6906
(telnet-rsh-program): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4828
diff
changeset
|
65 |
2d8ae66d6906
(telnet-rsh-program): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4828
diff
changeset
|
66 (defvar telnet-rsh-program |
2d8ae66d6906
(telnet-rsh-program): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4828
diff
changeset
|
67 (if (memq system-type '(hpux usg-unix-v)) |
2d8ae66d6906
(telnet-rsh-program): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4828
diff
changeset
|
68 "remsh" "rsh") |
2d8ae66d6906
(telnet-rsh-program): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4828
diff
changeset
|
69 "Program to run for opening a remote shell.") |
48 | 70 |
71 (defvar telnet-initial-count -50 | |
1577 | 72 "Initial value of `telnet-count'. Should be set to the negative of the |
48 | 73 number of terminal writes telnet will make setting up the host connection.") |
74 | |
75 (defvar telnet-maximum-count 4 | |
1577 | 76 "Maximum value `telnet-count' can have. |
48 | 77 After this many passes, we stop looking for initial setup data. |
78 Should be set to the number of terminal writes telnet will make | |
6402
33dec33f382d
(telnet-maximum-count): Doc fix.
Karl Heuer <kwzh@gnu.org>
parents:
6156
diff
changeset
|
79 rejecting one login and prompting again for a username and password.") |
48 | 80 |
81 (defun telnet-interrupt-subjob () | |
82 (interactive) | |
83 "Interrupt the program running through telnet on the remote host." | |
84 (send-string nil telnet-interrupt-string)) | |
85 | |
86 (defun telnet-c-z () | |
87 (interactive) | |
88 (send-string nil "\C-z")) | |
89 | |
90 (defun send-process-next-char () | |
91 (interactive) | |
92 (send-string nil | |
93 (char-to-string | |
94 (let ((inhibit-quit t)) | |
95 (prog1 (read-char) | |
96 (setq quit-flag nil)))))) | |
97 | |
98 ; initialization on first load. | |
99 (if telnet-mode-map | |
100 nil | |
101 (setq telnet-mode-map (copy-keymap comint-mode-map)) | |
102 (define-key telnet-mode-map "\C-m" 'telnet-send-input) | |
103 ; (define-key telnet-mode-map "\C-j" 'telnet-send-input) | |
104 (define-key telnet-mode-map "\C-c\C-q" 'send-process-next-char) | |
105 (define-key telnet-mode-map "\C-c\C-c" 'telnet-interrupt-subjob) | |
106 (define-key telnet-mode-map "\C-c\C-z" 'telnet-c-z)) | |
107 | |
108 ;;maybe should have a flag for when have found type | |
109 (defun telnet-check-software-type-initialize (string) | |
110 "Tries to put correct initializations in. Needs work." | |
111 (let ((case-fold-search t)) | |
112 (cond ((string-match "unix" string) | |
113 (setq telnet-prompt-pattern comint-prompt-regexp) | |
114 (setq telnet-new-line "\n")) | |
115 ((string-match "tops-20" string) ;;maybe add telnet-replace-c-g | |
116 (setq telnet-prompt-pattern "[@>]*")) | |
117 ((string-match "its" string) | |
5273
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
118 (setq telnet-prompt-pattern "^[^*>\n]*[*>] *")) |
48 | 119 ((string-match "explorer" string) ;;explorer telnet needs work |
120 (setq telnet-replace-c-g ?\n)))) | |
121 (setq comint-prompt-regexp telnet-prompt-pattern)) | |
122 | |
123 (defun telnet-initial-filter (proc string) | |
124 ;For reading up to and including password; also will get machine type. | |
125 (cond ((string-match "No such host" string) | |
126 (kill-buffer (process-buffer proc)) | |
127 (error "No such host.")) | |
128 ((string-match "passw" string) | |
129 (telnet-filter proc string) | |
6738
91a5e1cd14c7
(telnet-initial-filter, read-password): Don't unnecessarily duplicate comint
Karl Heuer <kwzh@gnu.org>
parents:
6402
diff
changeset
|
130 (setq telnet-count 0) |
91a5e1cd14c7
(telnet-initial-filter, read-password): Don't unnecessarily duplicate comint
Karl Heuer <kwzh@gnu.org>
parents:
6402
diff
changeset
|
131 (send-string proc (concat (comint-read-noecho "Password: " t) |
91a5e1cd14c7
(telnet-initial-filter, read-password): Don't unnecessarily duplicate comint
Karl Heuer <kwzh@gnu.org>
parents:
6402
diff
changeset
|
132 telnet-new-line))) |
48 | 133 (t (telnet-check-software-type-initialize string) |
134 (telnet-filter proc string) | |
135 (cond ((> telnet-count telnet-maximum-count) | |
136 (set-process-filter proc 'telnet-filter)) | |
137 (t (setq telnet-count (1+ telnet-count))))))) | |
138 | |
3562
ec0c98304624
(telnet-simple-send): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2562
diff
changeset
|
139 ;; Identical to comint-simple-send, except that it sends telnet-new-line |
ec0c98304624
(telnet-simple-send): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2562
diff
changeset
|
140 ;; instead of "\n". |
ec0c98304624
(telnet-simple-send): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2562
diff
changeset
|
141 (defun telnet-simple-send (proc string) |
ec0c98304624
(telnet-simple-send): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2562
diff
changeset
|
142 (comint-send-string proc string) |
ec0c98304624
(telnet-simple-send): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2562
diff
changeset
|
143 (comint-send-string proc telnet-new-line)) |
ec0c98304624
(telnet-simple-send): New function.
Richard M. Stallman <rms@gnu.org>
parents:
2562
diff
changeset
|
144 |
48 | 145 (defun telnet-filter (proc string) |
5273
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
146 (save-excursion |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
147 (set-buffer (process-buffer proc)) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
148 (let* ((last-insertion (marker-position (process-mark proc))) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
149 (delta (- (point) last-insertion)) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
150 (ie (and comint-last-input-end |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
151 (marker-position comint-last-input-end))) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
152 (w (get-buffer-window (current-buffer))) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
153 (ws (and w (window-start w)))) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
154 (goto-char last-insertion) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
155 (insert-before-markers string) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
156 (set-marker (process-mark proc) (point)) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
157 (if ws (set-window-start w ws t)) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
158 (if ie (set-marker comint-last-input-end ie)) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
159 (while (progn (skip-chars-backward "^\C-m" last-insertion) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
160 (> (point) last-insertion)) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
161 (delete-region (1- (point)) (point))) |
48 | 162 (goto-char (process-mark proc)) |
5273
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
163 (and telnet-replace-c-g |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
164 (subst-char-in-region last-insertion (point) ?\C-g |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
165 telnet-replace-c-g t)) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
166 ;; If point is after the insertion place, move it |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
167 ;; along with the text. |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
168 (if (> delta 0) |
59fee4967e01
(telnet-filter): Rewrite, taken mostly from Lucid.
Richard M. Stallman <rms@gnu.org>
parents:
5142
diff
changeset
|
169 (goto-char (+ (process-mark proc) delta)))))) |
48 | 170 |
171 (defun telnet-send-input () | |
172 (interactive) | |
707 | 173 ; (comint-send-input telnet-new-line telnet-remote-echoes) |
174 (comint-send-input) | |
175 (if telnet-remote-echoes | |
176 (delete-region comint-last-input-start | |
177 comint-last-input-end))) | |
48 | 178 |
258 | 179 ;;;###autoload |
4432
f00905dd8a41
(telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents:
3562
diff
changeset
|
180 (defun telnet (host) |
48 | 181 "Open a network login connection to host named HOST (a string). |
182 Communication with HOST is recorded in a buffer *HOST-telnet*. | |
183 Normally input is edited in Emacs and sent a line at a time." | |
184 (interactive "sOpen telnet connection to host: ") | |
6156
3aafcde7e7c4
(telnet): Use chars in comint-delimiter-argument-list.
Richard M. Stallman <rms@gnu.org>
parents:
5549
diff
changeset
|
185 (let* ((comint-delimiter-argument-list '(?\ ?\t)) |
5333
3e45a129209f
(telnet): Use comint-arguments.
Richard M. Stallman <rms@gnu.org>
parents:
5326
diff
changeset
|
186 (name (concat (comint-arguments host 0 nil) "-telnet" )) |
4432
f00905dd8a41
(telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents:
3562
diff
changeset
|
187 (buffer (get-buffer (concat "*" name "*")))) |
f00905dd8a41
(telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents:
3562
diff
changeset
|
188 (if (and buffer (get-buffer-process buffer)) |
f00905dd8a41
(telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents:
3562
diff
changeset
|
189 (switch-to-buffer (concat "*" name "*")) |
f00905dd8a41
(telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents:
3562
diff
changeset
|
190 (switch-to-buffer (make-comint name "telnet")) |
f00905dd8a41
(telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents:
3562
diff
changeset
|
191 (set-process-filter (get-process name) 'telnet-initial-filter) |
f00905dd8a41
(telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents:
3562
diff
changeset
|
192 ;; Don't send the `open' cmd till telnet is ready for it. |
f00905dd8a41
(telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents:
3562
diff
changeset
|
193 (accept-process-output (get-process name)) |
f00905dd8a41
(telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents:
3562
diff
changeset
|
194 (erase-buffer) |
f00905dd8a41
(telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents:
3562
diff
changeset
|
195 (send-string name (concat "open " host "\n")) |
f00905dd8a41
(telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents:
3562
diff
changeset
|
196 (telnet-mode) |
f00905dd8a41
(telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents:
3562
diff
changeset
|
197 (setq comint-input-sender 'telnet-simple-send) |
f00905dd8a41
(telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents:
3562
diff
changeset
|
198 (setq telnet-count telnet-initial-count)))) |
48 | 199 |
200 (defun telnet-mode () | |
2562 | 201 "This mode is for using telnet (or rsh) from a buffer to another host. |
1577 | 202 It has most of the same commands as comint-mode. |
48 | 203 There is a variable ``telnet-interrupt-string'' which is the character |
204 sent to try to stop execution of a job on the remote host. | |
205 Data is sent to the remote host when RET is typed. | |
206 | |
207 \\{telnet-mode-map} | |
2562 | 208 " |
48 | 209 (interactive) |
210 (comint-mode) | |
211 (setq major-mode 'telnet-mode | |
212 mode-name "Telnet" | |
213 comint-prompt-regexp telnet-prompt-pattern) | |
214 (use-local-map telnet-mode-map) | |
215 (run-hooks 'telnet-mode-hook)) | |
216 | |
2562 | 217 ;;;###autoload |
4432
f00905dd8a41
(telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents:
3562
diff
changeset
|
218 (defun rsh (host) |
2562 | 219 "Open a network login connection to host named HOST (a string). |
220 Communication with HOST is recorded in a buffer *HOST-rsh*. | |
221 Normally input is edited in Emacs and sent a line at a time." | |
222 (interactive "sOpen rsh connection to host: ") | |
223 (require 'shell) | |
4432
f00905dd8a41
(telnet): If we already have a telnet to HOST, just switch buffers.
Richard M. Stallman <rms@gnu.org>
parents:
3562
diff
changeset
|
224 (let ((name (concat host "-rsh" ))) |
5142
2d8ae66d6906
(telnet-rsh-program): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
4828
diff
changeset
|
225 (switch-to-buffer (make-comint name telnet-rsh-program nil host)) |
2562 | 226 (set-process-filter (get-process name) 'telnet-initial-filter) |
227 (telnet-mode) | |
228 (setq telnet-count -16))) | |
229 | |
584 | 230 (provide 'telnet) |
231 | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
584
diff
changeset
|
232 ;;; telnet.el ends here |