(latexenc-find-file-coding-system): Don't inherit the EOL part of the
[emacs.git] / lisp / net / rlogin.el
blob3ad66166ece6dd87706bd4a3c4b9651799e5a49c
1 ;;; rlogin.el --- remote login interface
3 ;; Copyright (C) 1992, 93, 94, 95, 97, 1998, 2002, 2005 Free Software Foundation, Inc.
5 ;; Author: Noah Friedman
6 ;; Maintainer: Noah Friedman <friedman@splode.com>
7 ;; Keywords: unix, comm
9 ;; This file is part of GNU Emacs.
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
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
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.
21 ;; You should have received a copy of the GNU General Public License
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.
26 ;;; Commentary:
28 ;; Support for remote logins using `rlogin'.
29 ;; This program is layered on top of shell.el; the code here only accounts
30 ;; for the variations needed to handle a remote process, e.g. directory
31 ;; tracking and the sending of some special characters.
33 ;; If you wish for rlogin mode to prompt you in the minibuffer for
34 ;; passwords when a password prompt appears, just enter m-x send-invisible
35 ;; and type in your line, or add `comint-watch-for-password-prompt' to
36 ;; `comint-output-filter-functions'.
38 ;;; Code:
40 (require 'comint)
41 (require 'shell)
43 (defgroup rlogin nil
44 "Remote login interface"
45 :group 'processes
46 :group 'unix)
48 (defcustom rlogin-program "rlogin"
49 "*Name of program to invoke rlogin"
50 :type 'string
51 :group 'rlogin)
53 (defcustom rlogin-explicit-args nil
54 "*List of arguments to pass to rlogin on the command line."
55 :type '(repeat (string :tag "Argument"))
56 :group 'rlogin)
58 (defcustom rlogin-mode-hook nil
59 "*Hooks to run after setting current buffer to rlogin-mode."
60 :type 'hook
61 :group 'rlogin)
63 (defcustom rlogin-process-connection-type
64 (save-match-data
65 ;; Solaris 2.x `rlogin' will spew a bunch of ioctl error messages if
66 ;; stdin isn't a tty.
67 (cond ((and (boundp 'system-configuration)
68 (stringp system-configuration)
69 (string-match "-solaris2" system-configuration))
71 (t nil)))
72 "*If non-nil, use a pty for the local rlogin process.
73 If nil, use a pipe (if pipes are supported on the local system).
75 Generally it is better not to waste ptys on systems which have a static
76 number of them. On the other hand, some implementations of `rlogin' assume
77 a pty is being used, and errors will result from using a pipe instead."
78 :type '(choice (const :tag "pipes" nil)
79 (other :tag "ptys" t))
80 :group 'rlogin)
82 (defcustom rlogin-directory-tracking-mode 'local
83 "*Control whether and how to do directory tracking in an rlogin buffer.
85 nil means don't do directory tracking.
87 t means do so using an ftp remote file name.
89 Any other value means do directory tracking using local file names.
90 This works only if the remote machine and the local one
91 share the same directories (through NFS). This is the default.
93 This variable becomes local to a buffer when set in any fashion for it.
95 It is better to use the function of the same name to change the behavior of
96 directory tracking in an rlogin session once it has begun, rather than
97 simply setting this variable, since the function does the necessary
98 re-synching of directories."
99 :type '(choice (const :tag "off" nil)
100 (const :tag "ftp" t)
101 (other :tag "local" local))
102 :group 'rlogin)
104 (make-variable-buffer-local 'rlogin-directory-tracking-mode)
106 (defcustom rlogin-host nil
107 "*The name of the remote host. This variable is buffer-local."
108 :type '(choice (const nil) string)
109 :group 'rlogin)
111 (defcustom rlogin-remote-user nil
112 "*The username used on the remote host.
113 This variable is buffer-local and defaults to your local user name.
114 If rlogin is invoked with the `-l' option to specify the remote username,
115 this variable is set from that."
116 :type '(choice (const nil) string)
117 :group 'rlogin)
119 ;; Initialize rlogin mode map.
120 (defvar rlogin-mode-map '())
121 (cond
122 ((null rlogin-mode-map)
123 (setq rlogin-mode-map (if (consp shell-mode-map)
124 (cons 'keymap shell-mode-map)
125 (copy-keymap shell-mode-map)))
126 (define-key rlogin-mode-map "\C-c\C-c" 'rlogin-send-Ctrl-C)
127 (define-key rlogin-mode-map "\C-c\C-d" 'rlogin-send-Ctrl-D)
128 (define-key rlogin-mode-map "\C-c\C-z" 'rlogin-send-Ctrl-Z)
129 (define-key rlogin-mode-map "\C-c\C-\\" 'rlogin-send-Ctrl-backslash)
130 (define-key rlogin-mode-map "\C-d" 'rlogin-delchar-or-send-Ctrl-D)
131 (define-key rlogin-mode-map "\C-i" 'rlogin-tab-or-complete)))
134 ;;;###autoload (add-hook 'same-window-regexps "^\\*rlogin-.*\\*\\(\\|<[0-9]+>\\)")
136 (defvar rlogin-history nil)
138 ;;;###autoload
139 (defun rlogin (input-args &optional buffer)
140 "Open a network login connection via `rlogin' with args INPUT-ARGS.
141 INPUT-ARGS should start with a host name; it may also contain
142 other arguments for `rlogin'.
144 Input is sent line-at-a-time to the remote connection.
146 Communication with the remote host is recorded in a buffer `*rlogin-HOST*'
147 \(or `*rlogin-USER@HOST*' if the remote username differs\).
148 If a prefix argument is given and the buffer `*rlogin-HOST*' already exists,
149 a new buffer with a different connection will be made.
151 When called from a program, if the optional second argument BUFFER is
152 a string or buffer, it specifies the buffer to use.
154 The variable `rlogin-program' contains the name of the actual program to
155 run. It can be a relative or absolute path.
157 The variable `rlogin-explicit-args' is a list of arguments to give to
158 the rlogin when starting. They are added after any arguments given in
159 INPUT-ARGS.
161 If the default value of `rlogin-directory-tracking-mode' is t, then the
162 default directory in that buffer is set to a remote (FTP) file name to
163 access your home directory on the remote machine. Occasionally this causes
164 an error, if you cannot access the home directory on that machine. This
165 error is harmless as long as you don't try to use that default directory.
167 If `rlogin-directory-tracking-mode' is neither t nor nil, then the default
168 directory is initially set up to your (local) home directory.
169 This is useful if the remote machine and your local machine
170 share the same files via NFS. This is the default.
172 If you wish to change directory tracking styles during a session, use the
173 function `rlogin-directory-tracking-mode' rather than simply setting the
174 variable."
175 (interactive (list
176 (read-from-minibuffer "rlogin arguments (hostname first): "
177 nil nil nil 'rlogin-history)
178 current-prefix-arg))
180 (let* ((process-connection-type rlogin-process-connection-type)
181 (args (if rlogin-explicit-args
182 (append (split-string input-args)
183 rlogin-explicit-args)
184 (split-string input-args)))
185 (host (let ((tail args))
186 ;; Find first arg that doesn't look like an option.
187 ;; This still loses for args that take values, feh.
188 (while (and tail (= ?- (aref (car tail) 0)))
189 (setq tail (cdr tail)))
190 (car tail)))
191 (user (or (car (cdr (member "-l" args)))
192 (user-login-name)))
193 (buffer-name (if (string= user (user-login-name))
194 (format "*rlogin-%s*" host)
195 (format "*rlogin-%s@%s*" user host))))
197 (cond ((null buffer))
198 ((stringp buffer)
199 (setq buffer-name buffer))
200 ((bufferp buffer)
201 (setq buffer-name (buffer-name buffer)))
202 ((numberp buffer)
203 (setq buffer-name (format "%s<%d>" buffer-name buffer)))
205 (setq buffer-name (generate-new-buffer-name buffer-name))))
207 (setq buffer (get-buffer-create buffer-name))
208 (pop-to-buffer buffer-name)
210 (unless (comint-check-proc buffer-name)
211 (comint-exec buffer buffer-name rlogin-program nil args)
213 (rlogin-mode)
215 (make-local-variable 'rlogin-host)
216 (setq rlogin-host host)
217 (make-local-variable 'rlogin-remote-user)
218 (setq rlogin-remote-user user)
220 (condition-case ()
221 (cond ((eq rlogin-directory-tracking-mode t)
222 ;; Do this here, rather than calling the tracking mode
223 ;; function, to avoid a gratuitous resync check; the default
224 ;; should be the user's home directory, be it local or remote.
225 (setq comint-file-name-prefix
226 (concat "/" rlogin-remote-user "@" rlogin-host ":"))
227 (cd-absolute comint-file-name-prefix))
228 ((null rlogin-directory-tracking-mode))
230 (cd-absolute (concat comint-file-name-prefix "~/"))))
231 (error nil)))))
233 (put 'rlogin-mode 'mode-class 'special)
235 (define-derived-mode rlogin-mode shell-mode "Rlogin"
236 (setq shell-dirtrackp rlogin-directory-tracking-mode)
237 (make-local-variable 'comint-file-name-prefix))
239 (defun rlogin-directory-tracking-mode (&optional prefix)
240 "Do remote or local directory tracking, or disable entirely.
242 If called with no prefix argument or a unspecified prefix argument (just
243 ``\\[universal-argument]'' with no number) do remote directory tracking via
244 ange-ftp. If called as a function, give it no argument.
246 If called with a negative prefix argument, disable directory tracking
247 entirely.
249 If called with a positive, numeric prefix argument, e.g.
250 ``\\[universal-argument] 1 M-x rlogin-directory-tracking-mode\'',
251 then do directory tracking but assume the remote filesystem is the same as
252 the local system. This only works in general if the remote machine and the
253 local one share the same directories (through NFS)."
254 (interactive "P")
255 (cond
256 ((or (null prefix)
257 (consp prefix))
258 (setq rlogin-directory-tracking-mode t)
259 (setq shell-dirtrackp t)
260 (setq comint-file-name-prefix
261 (concat "/" rlogin-remote-user "@" rlogin-host ":")))
262 ((< prefix 0)
263 (setq rlogin-directory-tracking-mode nil)
264 (setq shell-dirtrackp nil))
266 (setq rlogin-directory-tracking-mode 'local)
267 (setq comint-file-name-prefix "")
268 (setq shell-dirtrackp t)))
269 (cond
270 (shell-dirtrackp
271 (let* ((proc (get-buffer-process (current-buffer)))
272 (proc-mark (process-mark proc))
273 (current-input (buffer-substring proc-mark (point-max)))
274 (orig-point (point))
275 (offset (and (>= orig-point proc-mark)
276 (- (point-max) orig-point))))
277 (unwind-protect
278 (progn
279 (delete-region proc-mark (point-max))
280 (goto-char (point-max))
281 (shell-resync-dirs))
282 (goto-char proc-mark)
283 (insert current-input)
284 (if offset
285 (goto-char (- (point-max) offset))
286 (goto-char orig-point)))))))
289 (defun rlogin-send-Ctrl-C ()
290 (interactive)
291 (process-send-string nil "\C-c"))
293 (defun rlogin-send-Ctrl-D ()
294 (interactive)
295 (process-send-string nil "\C-d"))
297 (defun rlogin-send-Ctrl-Z ()
298 (interactive)
299 (process-send-string nil "\C-z"))
301 (defun rlogin-send-Ctrl-backslash ()
302 (interactive)
303 (process-send-string nil "\C-\\"))
305 (defun rlogin-delchar-or-send-Ctrl-D (arg)
307 Delete ARG characters forward, or send a C-d to process if at end of buffer."
308 (interactive "p")
309 (if (eobp)
310 (rlogin-send-Ctrl-D)
311 (delete-char arg)))
313 (defun rlogin-tab-or-complete ()
314 "Complete file name if doing directory tracking, or just insert TAB."
315 (interactive)
316 (if rlogin-directory-tracking-mode
317 (comint-dynamic-complete)
318 (insert "\C-i")))
320 (provide 'rlogin)
322 ;;; arch-tag: 6e20eabf-feda-40fa-ab40-0d156db447e4
323 ;;; rlogin.el ends here