(awk-mode): Use c-indent-line.
[bpt/emacs.git] / lisp / telnet.el
CommitLineData
c88ab9ce 1;;; telnet.el --- run a telnet session from within an Emacs buffer
22a89ee8 2
58142744
ER
3;;; Copyright (C) 1985, 1988, 1992 Free Software Foundation, Inc.
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)
54(defvar telnet-prompt-pattern "^[^#$%>]*[#$%>] *")
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
66(defvar telnet-rsh-program
67 (if (memq system-type '(hpux usg-unix-v))
68 "remsh" "rsh")
69 "Program to run for opening a remote shell.")
1d23795a 70
71(defvar telnet-initial-count -50
1433a222 72 "Initial value of `telnet-count'. Should be set to the negative of the
1d23795a 73number of terminal writes telnet will make setting up the host connection.")
74
75(defvar telnet-maximum-count 4
1433a222 76 "Maximum value `telnet-count' can have.
1d23795a 77After this many passes, we stop looking for initial setup data.
78Should be set to the number of terminal writes telnet will make
79rejecting one login and prompting for the again for a username and password.")
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)
118 (setq telnet-prompt-pattern "^[^*>]*[*>] *"))
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)
130 (let* ((echo-keystrokes 0)
131 (password (read-password)))
132 (setq telnet-count 0)
133 (send-string proc (concat password telnet-new-line))))
134 (t (telnet-check-software-type-initialize string)
135 (telnet-filter proc string)
136 (cond ((> telnet-count telnet-maximum-count)
137 (set-process-filter proc 'telnet-filter))
138 (t (setq telnet-count (1+ telnet-count)))))))
139
3ed5409e
RS
140;; Identical to comint-simple-send, except that it sends telnet-new-line
141;; instead of "\n".
142(defun telnet-simple-send (proc string)
143 (comint-send-string proc string)
144 (comint-send-string proc telnet-new-line))
145
1d23795a 146(defun telnet-filter (proc string)
147 (let ((at-end
148 (and (eq (process-buffer proc) (current-buffer))
149 (= (point) (point-max)))))
150 (save-excursion
151 (set-buffer (process-buffer proc))
152 (goto-char (process-mark proc))
153 (let ((now (point)))
492878e4 154 ;; Insert STRING, omitting all C-m characters.
1d23795a 155 (let ((index 0) c-m)
156 (while (setq c-m (string-match "\C-m" string index))
157 (insert-before-markers (substring string index c-m))
158 (setq index (1+ c-m)))
159 (insert-before-markers (substring string index)))
160 (and telnet-replace-c-g
161 (subst-char-in-region now (point) ?\C-g telnet-replace-c-g)))
162; (if (and (integer-or-marker-p last-input-start)
163; (marker-position last-input-start)
164; telnet-remote-echoes)
165; (delete-region last-input-start last-input-end))
166 )
167 (if at-end
168 (goto-char (point-max)))))
169
170(defun telnet-send-input ()
171 (interactive)
492878e4
JB
172; (comint-send-input telnet-new-line telnet-remote-echoes)
173 (comint-send-input)
174 (if telnet-remote-echoes
175 (delete-region comint-last-input-start
176 comint-last-input-end)))
1d23795a 177
f9f9507e 178;;;###autoload
901249a3 179(defun telnet (host)
1d23795a 180 "Open a network login connection to host named HOST (a string).
181Communication with HOST is recorded in a buffer *HOST-telnet*.
182Normally input is edited in Emacs and sent a line at a time."
183 (interactive "sOpen telnet connection to host: ")
901249a3
RS
184 (let* ((name (concat host "-telnet" ))
185 (buffer (get-buffer (concat "*" name "*"))))
186 (if (and buffer (get-buffer-process buffer))
187 (switch-to-buffer (concat "*" name "*"))
188 (switch-to-buffer (make-comint name "telnet"))
189 (set-process-filter (get-process name) 'telnet-initial-filter)
190 ;; Don't send the `open' cmd till telnet is ready for it.
191 (accept-process-output (get-process name))
192 (erase-buffer)
193 (send-string name (concat "open " host "\n"))
194 (telnet-mode)
195 (setq comint-input-sender 'telnet-simple-send)
196 (setq telnet-count telnet-initial-count))))
1d23795a 197
198(defun telnet-mode ()
b5014350 199 "This mode is for using telnet (or rsh) from a buffer to another host.
1433a222 200It has most of the same commands as comint-mode.
1d23795a 201There is a variable ``telnet-interrupt-string'' which is the character
202sent to try to stop execution of a job on the remote host.
203Data is sent to the remote host when RET is typed.
204
205\\{telnet-mode-map}
b5014350 206"
1d23795a 207 (interactive)
208 (comint-mode)
209 (setq major-mode 'telnet-mode
210 mode-name "Telnet"
211 comint-prompt-regexp telnet-prompt-pattern)
212 (use-local-map telnet-mode-map)
213 (run-hooks 'telnet-mode-hook))
214
b5014350 215;;;###autoload
901249a3 216(defun rsh (host)
b5014350
ER
217 "Open a network login connection to host named HOST (a string).
218Communication with HOST is recorded in a buffer *HOST-rsh*.
219Normally input is edited in Emacs and sent a line at a time."
220 (interactive "sOpen rsh connection to host: ")
221 (require 'shell)
901249a3 222 (let ((name (concat host "-rsh" )))
f603e513 223 (switch-to-buffer (make-comint name telnet-rsh-program nil host))
b5014350
ER
224 (set-process-filter (get-process name) 'telnet-initial-filter)
225 (telnet-mode)
226 (setq telnet-count -16)))
227
1d23795a 228(defun read-password ()
229 (let ((answ "") tem)
230 (message "Reading password...")
94a861b5
JB
231 (while (prog1 (not (memq (setq tem (read-char)) '(?\C-m ?\n ?\C-g)))
232 (setq quit-flag nil))
1d23795a 233 (setq answ (concat answ (char-to-string tem))))
234 answ))
49116ac0
JB
235
236(provide 'telnet)
237
c88ab9ce 238;;; telnet.el ends here