remove trailing slashes from srcdir
[bpt/emacs.git] / lisp / telnet.el
CommitLineData
c88ab9ce 1;;; telnet.el --- run a telnet session from within an Emacs buffer
22a89ee8 2
8f1204db 3;;; Copyright (C) 1985, 1988, 1992, 1994 Free Software Foundation, Inc.
58142744 4
22a89ee8
ER
5;; Author: William F. Schelter
6;; Maintainer: FSF
1d23795a 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
492878e4 12;; the Free Software Foundation; either version 2, or (at your option)
1d23795a 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
b5014350
ER
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
22a89ee8 40;;; Code:
1d23795a 41
b5014350
ER
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.
1d23795a 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)
492878e4 51
1d23795a 52(defvar telnet-new-line "\r")
53(defvar telnet-mode-map nil)
e3683fc7 54(defvar telnet-prompt-pattern "^[^#$%>\n]*[#$%>] *")
1d23795a 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
f603e513
RS
63 "Number of output strings from telnet process while looking for password.")
64(make-variable-buffer-local 'telnet-count)
65
c4ffc07f
RS
66(defvar telnet-program "telnet"
67 "Program to run to open a telnet connection.")
68
69(defvar rsh-program
f603e513
RS
70 (if (memq system-type '(hpux usg-unix-v))
71 "remsh" "rsh")
72 "Program to run for opening a remote shell.")
1d23795a 73
74(defvar telnet-initial-count -50
1433a222 75 "Initial value of `telnet-count'. Should be set to the negative of the
1d23795a 76number of terminal writes telnet will make setting up the host connection.")
77
78(defvar telnet-maximum-count 4
1433a222 79 "Maximum value `telnet-count' can have.
1d23795a 80After this many passes, we stop looking for initial setup data.
81Should be set to the number of terminal writes telnet will make
846731a5 82rejecting one login and prompting again for a username and password.")
1d23795a 83
84(defun telnet-interrupt-subjob ()
85 (interactive)
86 "Interrupt the program running through telnet on the remote host."
87 (send-string nil telnet-interrupt-string))
88
89(defun telnet-c-z ()
90 (interactive)
91 (send-string nil "\C-z"))
92
93(defun send-process-next-char ()
94 (interactive)
95 (send-string nil
96 (char-to-string
97 (let ((inhibit-quit t))
98 (prog1 (read-char)
99 (setq quit-flag nil))))))
100
101; initialization on first load.
102(if telnet-mode-map
103 nil
cab10b76 104 (setq telnet-mode-map (nconc (make-sparse-keymap) comint-mode-map))
1d23795a 105 (define-key telnet-mode-map "\C-m" 'telnet-send-input)
106; (define-key telnet-mode-map "\C-j" 'telnet-send-input)
107 (define-key telnet-mode-map "\C-c\C-q" 'send-process-next-char)
108 (define-key telnet-mode-map "\C-c\C-c" 'telnet-interrupt-subjob)
109 (define-key telnet-mode-map "\C-c\C-z" 'telnet-c-z))
110
111;;maybe should have a flag for when have found type
112(defun telnet-check-software-type-initialize (string)
113 "Tries to put correct initializations in. Needs work."
114 (let ((case-fold-search t))
115 (cond ((string-match "unix" string)
116 (setq telnet-prompt-pattern comint-prompt-regexp)
117 (setq telnet-new-line "\n"))
118 ((string-match "tops-20" string) ;;maybe add telnet-replace-c-g
119 (setq telnet-prompt-pattern "[@>]*"))
120 ((string-match "its" string)
e3683fc7 121 (setq telnet-prompt-pattern "^[^*>\n]*[*>] *"))
1d23795a 122 ((string-match "explorer" string) ;;explorer telnet needs work
123 (setq telnet-replace-c-g ?\n))))
124 (setq comint-prompt-regexp telnet-prompt-pattern))
125
126(defun telnet-initial-filter (proc string)
127 ;For reading up to and including password; also will get machine type.
128 (cond ((string-match "No such host" string)
129 (kill-buffer (process-buffer proc))
130 (error "No such host."))
131 ((string-match "passw" string)
132 (telnet-filter proc string)
25e907da
KH
133 (setq telnet-count 0)
134 (send-string proc (concat (comint-read-noecho "Password: " t)
135 telnet-new-line)))
1d23795a 136 (t (telnet-check-software-type-initialize string)
137 (telnet-filter proc string)
138 (cond ((> telnet-count telnet-maximum-count)
139 (set-process-filter proc 'telnet-filter))
140 (t (setq telnet-count (1+ telnet-count)))))))
141
3ed5409e
RS
142;; Identical to comint-simple-send, except that it sends telnet-new-line
143;; instead of "\n".
144(defun telnet-simple-send (proc string)
145 (comint-send-string proc string)
146 (comint-send-string proc telnet-new-line))
147
1d23795a 148(defun telnet-filter (proc string)
e3683fc7
RS
149 (save-excursion
150 (set-buffer (process-buffer proc))
151 (let* ((last-insertion (marker-position (process-mark proc)))
152 (delta (- (point) last-insertion))
153 (ie (and comint-last-input-end
154 (marker-position comint-last-input-end)))
155 (w (get-buffer-window (current-buffer)))
156 (ws (and w (window-start w))))
157 (goto-char last-insertion)
158 (insert-before-markers string)
159 (set-marker (process-mark proc) (point))
160 (if ws (set-window-start w ws t))
161 (if ie (set-marker comint-last-input-end ie))
162 (while (progn (skip-chars-backward "^\C-m" last-insertion)
163 (> (point) last-insertion))
164 (delete-region (1- (point)) (point)))
1d23795a 165 (goto-char (process-mark proc))
e3683fc7
RS
166 (and telnet-replace-c-g
167 (subst-char-in-region last-insertion (point) ?\C-g
168 telnet-replace-c-g t))
169 ;; If point is after the insertion place, move it
170 ;; along with the text.
171 (if (> delta 0)
172 (goto-char (+ (process-mark proc) delta))))))
1d23795a 173
174(defun telnet-send-input ()
175 (interactive)
492878e4
JB
176; (comint-send-input telnet-new-line telnet-remote-echoes)
177 (comint-send-input)
178 (if telnet-remote-echoes
179 (delete-region comint-last-input-start
180 comint-last-input-end)))
1d23795a 181
f9f9507e 182;;;###autoload
901249a3 183(defun telnet (host)
1d23795a 184 "Open a network login connection to host named HOST (a string).
e14e9e26 185Communication with HOST is recorded in a buffer `*telnet-HOST*'.
1d23795a 186Normally input is edited in Emacs and sent a line at a time."
187 (interactive "sOpen telnet connection to host: ")
0cf4932f 188 (let* ((comint-delimiter-argument-list '(?\ ?\t))
e14e9e26 189 (name (concat "telnet-" (comint-arguments host 0 nil) ))
901249a3
RS
190 (buffer (get-buffer (concat "*" name "*"))))
191 (if (and buffer (get-buffer-process buffer))
192 (switch-to-buffer (concat "*" name "*"))
c4ffc07f 193 (switch-to-buffer (make-comint name telnet-program))
901249a3
RS
194 (set-process-filter (get-process name) 'telnet-initial-filter)
195 ;; Don't send the `open' cmd till telnet is ready for it.
196 (accept-process-output (get-process name))
197 (erase-buffer)
198 (send-string name (concat "open " host "\n"))
199 (telnet-mode)
200 (setq comint-input-sender 'telnet-simple-send)
201 (setq telnet-count telnet-initial-count))))
1d23795a 202
203(defun telnet-mode ()
b5014350 204 "This mode is for using telnet (or rsh) from a buffer to another host.
1433a222 205It has most of the same commands as comint-mode.
1d23795a 206There is a variable ``telnet-interrupt-string'' which is the character
207sent to try to stop execution of a job on the remote host.
208Data is sent to the remote host when RET is typed.
209
210\\{telnet-mode-map}
b5014350 211"
1d23795a 212 (interactive)
213 (comint-mode)
214 (setq major-mode 'telnet-mode
215 mode-name "Telnet"
216 comint-prompt-regexp telnet-prompt-pattern)
217 (use-local-map telnet-mode-map)
218 (run-hooks 'telnet-mode-hook))
219
b5014350 220;;;###autoload
901249a3 221(defun rsh (host)
b5014350
ER
222 "Open a network login connection to host named HOST (a string).
223Communication with HOST is recorded in a buffer *HOST-rsh*.
224Normally input is edited in Emacs and sent a line at a time."
225 (interactive "sOpen rsh connection to host: ")
226 (require 'shell)
901249a3 227 (let ((name (concat host "-rsh" )))
c4ffc07f 228 (switch-to-buffer (make-comint name rsh-program nil host))
b5014350
ER
229 (set-process-filter (get-process name) 'telnet-initial-filter)
230 (telnet-mode)
231 (setq telnet-count -16)))
232
49116ac0
JB
233(provide 'telnet)
234
c88ab9ce 235;;; telnet.el ends here