]> code.delx.au - gnu-emacs/blob - lisp/server.el
(server-start): Set coding system for the server
[gnu-emacs] / lisp / server.el
1 ;;; server.el --- Lisp code for GNU Emacs running as server process.
2
3 ;; Copyright (C) 1986, 87, 92, 94, 95, 96, 1997 Free Software Foundation, Inc.
4
5 ;; Author: William Sommerfeld <wesommer@athena.mit.edu>
6 ;; Maintainer: FSF
7 ;; Keywords: processes
8
9 ;; Changes by peck@sun.com and by rms.
10
11 ;; This file is part of GNU Emacs.
12
13 ;; GNU Emacs is free software; you can redistribute it and/or modify
14 ;; it under the terms of the GNU General Public License as published by
15 ;; the Free Software Foundation; either version 2, or (at your option)
16 ;; any later version.
17
18 ;; GNU Emacs is distributed in the hope that it will be useful,
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 ;; GNU General Public License for more details.
22
23 ;; You should have received a copy of the GNU General Public License
24 ;; along with GNU Emacs; see the file COPYING. If not, write to the
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
26 ;; Boston, MA 02111-1307, USA.
27
28 ;;; Commentary:
29
30 ;; This Lisp code is run in Emacs when it is to operate as
31 ;; a server for other processes.
32
33 ;; Load this library and do M-x server-edit to enable Emacs as a server.
34 ;; Emacs runs the program ../arch-lib/emacsserver as a subprocess
35 ;; for communication with clients. If there are no client buffers to edit,
36 ;; server-edit acts like (switch-to-buffer (other-buffer))
37
38 ;; When some other program runs "the editor" to edit a file,
39 ;; "the editor" can be the Emacs client program ../lib-src/emacsclient.
40 ;; This program transmits the file names to Emacs through
41 ;; the server subprocess, and Emacs visits them and lets you edit them.
42
43 ;; Note that any number of clients may dispatch files to emacs to be edited.
44
45 ;; When you finish editing a Server buffer, again call server-edit
46 ;; to mark that buffer as done for the client and switch to the next
47 ;; Server buffer. When all the buffers for a client have been edited
48 ;; and exited with server-edit, the client "editor" will return
49 ;; to the program that invoked it.
50
51 ;; Your editing commands and Emacs's display output go to and from
52 ;; the terminal in the usual way. Thus, server operation is possible
53 ;; only when Emacs can talk to the terminal at the time you invoke
54 ;; the client. This is possible in four cases:
55
56 ;; 1. On a window system, where Emacs runs in one window and the
57 ;; program that wants to use "the editor" runs in another.
58
59 ;; 2. On a multi-terminal system, where Emacs runs on one terminal and the
60 ;; program that wants to use "the editor" runs on another.
61
62 ;; 3. When the program that wants to use "the editor" is running
63 ;; as a subprocess of Emacs.
64
65 ;; 4. On a system with job control, when Emacs is suspended, the program
66 ;; that wants to use "the editor" will stop and display
67 ;; "Waiting for Emacs...". It can then be suspended, and Emacs can be
68 ;; brought into the foreground for editing. When done editing, Emacs is
69 ;; suspended again, and the client program is brought into the foreground.
70
71 ;; The buffer local variable "server-buffer-clients" lists
72 ;; the clients who are waiting for this buffer to be edited.
73 ;; The global variable "server-clients" lists all the waiting clients,
74 ;; and which files are yet to be edited for each.
75
76 ;;; Code:
77 \f
78 (defgroup server nil
79 "Emacs running as a server process."
80 :group 'external)
81
82 (defcustom server-program (expand-file-name "emacsserver" exec-directory)
83 "*The program to use as the edit server."
84 :group 'server
85 :type 'string)
86
87 (defcustom server-visit-hook nil
88 "*List of hooks to call when visiting a file for the Emacs server."
89 :group 'server
90 :type '(repeat function))
91
92 (defcustom server-switch-hook nil
93 "*List of hooks to call when switching to a buffer for the Emacs server."
94 :group 'server
95 :type '(repeat function))
96
97 (defcustom server-done-hook nil
98 "*List of hooks to call when done editing a buffer for the Emacs server."
99 :group 'server
100 :type '(repeat function))
101
102 (defvar server-process nil
103 "the current server process")
104
105 (defvar server-previous-string "")
106
107 (defvar server-clients nil
108 "List of current server clients.
109 Each element is (CLIENTID BUFFERS...) where CLIENTID is a string
110 that can be given to the server process to identify a client.
111 When a buffer is marked as \"done\", it is removed from this list.")
112
113 (defvar server-buffer-clients nil
114 "List of clientids for clients requesting editing of current buffer.")
115 (make-variable-buffer-local 'server-buffer-clients)
116 ;; Changing major modes should not erase this local.
117 (put 'server-buffer-clients 'permanent-local t)
118
119 (defvar server-window nil
120 "*The window to use for selecting Emacs server buffers.
121 If nil, use the selected window.
122 If it is a frame, use the frame's selected window.")
123
124 (defcustom server-temp-file-regexp "^/tmp/Re\\|/draft$"
125 "*Regexp which should match filenames of temporary files
126 which are deleted and reused after each edit
127 by the programs that invoke the emacs server."
128 :group 'server
129 :type 'regexp)
130
131 (or (assq 'server-buffer-clients minor-mode-alist)
132 (setq minor-mode-alist (cons '(server-buffer-clients " Server") minor-mode-alist)))
133
134 ;; If a *server* buffer exists,
135 ;; write STRING to it for logging purposes.
136 (defun server-log (string)
137 (if (get-buffer "*server*")
138 (save-excursion
139 (set-buffer "*server*")
140 (goto-char (point-max))
141 (insert (current-time-string) " " string)
142 (or (bolp) (newline)))))
143
144 (defun server-sentinel (proc msg)
145 (cond ((eq (process-status proc) 'exit)
146 (server-log (message "Server subprocess exited")))
147 ((eq (process-status proc) 'signal)
148 (server-log (message "Server subprocess killed")))))
149
150 ;;;###autoload
151 (defun server-start (&optional leave-dead)
152 "Allow this Emacs process to be a server for client processes.
153 This starts a server communications subprocess through which
154 client \"editors\" can send your editing commands to this Emacs job.
155 To use the server, set up the program `emacsclient' in the
156 Emacs distribution as your standard \"editor\".
157
158 Prefix arg means just kill any existing server communications subprocess."
159 (interactive "P")
160 ;; kill it dead!
161 (if server-process
162 (progn
163 (set-process-sentinel server-process nil)
164 (condition-case () (delete-process server-process) (error nil))))
165 ;; Delete the socket files made by previous server invocations.
166 (let* ((sysname (system-name))
167 (dot-index (string-match "\\." sysname)))
168 (condition-case ()
169 (delete-file (format "~/.emacs-server-%s" sysname))
170 (error nil))
171 (condition-case ()
172 (delete-file (format "/tmp/esrv%d-%s" (user-uid) sysname))
173 (error nil))
174 ;; In case the server file name was made with a domainless hostname,
175 ;; try deleting that name too.
176 (if dot-index
177 (let ((shortname (substring sysname 0 dot-index)))
178 (condition-case ()
179 (delete-file (format "~/.emacs-server-%s" shortname))
180 (error nil))
181 (condition-case ()
182 (delete-file (format "/tmp/esrv%d-%s" (user-uid) shortname))
183 (error nil)))))
184 ;; If this Emacs already had a server, clear out associated status.
185 (while server-clients
186 (let ((buffer (nth 1 (car server-clients))))
187 (server-buffer-done buffer)))
188 (if leave-dead
189 nil
190 (if server-process
191 (server-log (message "Restarting server")))
192 ;; Using a pty is wasteful, and the separate session causes
193 ;; annoyance sometimes (some systems kill idle sessions).
194 (let ((process-connection-type nil))
195 (setq server-process (start-process "server" nil server-program)))
196 (set-process-sentinel server-process 'server-sentinel)
197 (set-process-filter server-process 'server-process-filter)
198 ;; We must receive file names without being decoded. Those are
199 ;; decoded by server-process-filter accoding to
200 ;; file-name-coding-system.
201 (set-process-coding-system server-process 'raw-text 'raw-text)
202 (process-kill-without-query server-process)))
203 \f
204 ;Process a request from the server to edit some files.
205 ;Format of STRING is "Client: CLIENTID PATH PATH PATH... \n"
206 (defun server-process-filter (proc string)
207 (server-log string)
208 (setq string (concat server-previous-string string))
209 ;; If the input is multiple lines,
210 ;; process each line individually.
211 (while (string-match "\n" string)
212 (let ((request (substring string 0 (match-beginning 0)))
213 (coding-system (and default-enable-multibyte-characters
214 (or file-name-coding-system
215 default-file-name-coding-system)))
216 client nowait
217 (files nil)
218 (lineno 1))
219 ;; Remove this line from STRING.
220 (setq string (substring string (match-end 0)))
221 (if (string-match "^Error: " request)
222 (message "Server error: %s" (substring request (match-end 0)))
223 (if (string-match "^Client: " request)
224 (progn
225 (setq request (substring request (match-end 0)))
226 (setq client (list (substring request 0 (string-match " " request))))
227 (setq request (substring request (match-end 0)))
228 (while (string-match "[^ ]+ " request)
229 (let ((arg
230 (substring request (match-beginning 0) (1- (match-end 0))))
231 (pos 0))
232 (setq request (substring request (match-end 0)))
233 (if (string-match "\\`-nowait" arg)
234 (setq nowait t)
235 (if (string-match "\\`\\+[0-9]+\\'" arg)
236 ;; ARG is a line number option.
237 (setq lineno (read (substring arg 1)))
238 ;; ARG is a file name.
239 ;; Collapse multiple slashes to single slashes.
240 (setq arg (command-line-normalize-file-name arg))
241 ;; Undo the quoting that emacsclient does
242 ;; for certain special characters.
243 (while (string-match "&." arg pos)
244 (setq pos (1+ (match-beginning 0)))
245 (let ((nextchar (aref arg pos)))
246 (cond ((= nextchar ?&)
247 (setq arg (replace-match "&" t t arg)))
248 ((= nextchar ?-)
249 (setq arg (replace-match "-" t t arg)))
250 (t
251 (setq arg (replace-match " " t t arg))))))
252 ;; Now decode the file name if necessary.
253 (if coding-system
254 (setq arg (decode-coding-string arg coding-system)))
255 (setq files
256 (cons (list arg lineno)
257 files))
258 (setq lineno 1)))))
259 (server-visit-files files client nowait)
260 ;; CLIENT is now a list (CLIENTNUM BUFFERS...)
261 (or nowait
262 (setq server-clients (cons client server-clients)))
263 (server-switch-buffer (nth 1 client))
264 (run-hooks 'server-switch-hook)
265 (message (substitute-command-keys
266 "When done with a buffer, type \\[server-edit]")))))))
267 ;; Save for later any partial line that remains.
268 (setq server-previous-string string))
269
270 (defun server-visit-files (files client &optional nowait)
271 "Finds FILES and returns the list CLIENT with the buffers nconc'd.
272 FILES is an alist whose elements are (FILENAME LINENUMBER).
273 NOWAIT non-nil means this client is not waiting for the results,
274 so don't mark these buffers specially, just visit them normally."
275 ;; Bind last-nonmenu-event to force use of keyboard, not mouse, for queries.
276 (let (client-record (last-nonmenu-event t) (obuf (current-buffer)))
277 ;; Restore the current buffer afterward, but not using save-excursion,
278 ;; because we don't want to save point in this buffer
279 ;; if it happens to be one of those specified by the server.
280 (unwind-protect
281 (while files
282 ;; If there is an existing buffer modified or the file is modified,
283 ;; revert it.
284 ;; If there is an existing buffer with deleted file, offer to write it.
285 (let* ((filen (car (car files)))
286 (obuf (get-file-buffer filen)))
287 (if (and obuf (set-buffer obuf))
288 (if (file-exists-p filen)
289 (if (or (not (verify-visited-file-modtime obuf))
290 (buffer-modified-p obuf))
291 (revert-buffer t nil))
292 (if (y-or-n-p
293 (concat "File no longer exists: "
294 filen
295 ", write buffer to file? "))
296 (write-file filen)))
297 (set-buffer (find-file-noselect filen))
298 (run-hooks 'server-visit-hook)))
299 (goto-line (nth 1 (car files)))
300 (if (not nowait)
301 (setq server-buffer-clients
302 (cons (car client) server-buffer-clients)))
303 (setq client-record (cons (current-buffer) client-record))
304 (setq files (cdr files)))
305 (set-buffer obuf))
306 (nconc client client-record)))
307 \f
308 (defun server-buffer-done (buffer &optional for-killing)
309 "Mark BUFFER as \"done\" for its client(s).
310 This buries the buffer, then returns a list of the form (NEXT-BUFFER KILLED).
311 NEXT-BUFFER is another server buffer, as a suggestion for what to select next,
312 or nil. KILLED is t if we killed BUFFER
313 \(typically, because it was visiting a temp file)."
314 (let ((running (eq (process-status server-process) 'run))
315 (next-buffer nil)
316 (killed nil)
317 (first t)
318 (old-clients server-clients))
319 (while old-clients
320 (let ((client (car old-clients)))
321 (or next-buffer
322 (setq next-buffer (nth 1 (memq buffer client))))
323 (delq buffer client)
324 ;; Delete all dead buffers from CLIENT.
325 (let ((tail client))
326 (while tail
327 (and (bufferp (car tail))
328 (null (buffer-name (car tail)))
329 (delq (car tail) client))
330 (setq tail (cdr tail))))
331 ;; If client now has no pending buffers,
332 ;; tell it that it is done, and forget it entirely.
333 (if (cdr client) nil
334 (if running
335 (progn
336 ;; Don't send emacsserver two commands in close succession.
337 ;; It cannot handle that.
338 (or first (sit-for 1))
339 (setq first nil)
340 (send-string server-process
341 (format "Close: %s Done\n" (car client)))
342 (server-log (format "Close: %s Done\n" (car client)))))
343 (setq server-clients (delq client server-clients))))
344 (setq old-clients (cdr old-clients)))
345 (if (and (bufferp buffer) (buffer-name buffer))
346 ;; We may or may not kill this buffer;
347 ;; if we do, do not call server-buffer-done recursively
348 ;; from kill-buffer-hook.
349 (let ((server-kill-buffer-running t))
350 (save-excursion
351 (set-buffer buffer)
352 (setq server-buffer-clients nil)
353 (run-hooks 'server-done-hook))
354 ;; Notice whether server-done-hook killed the buffer.
355 (if (null (buffer-name buffer))
356 (setq killed t)
357 ;; Don't bother killing or burying the buffer
358 ;; when we are called from kill-buffer.
359 (unless for-killing
360 (if (server-temp-file-p buffer)
361 (progn (kill-buffer buffer)
362 (setq killed t))
363 (bury-buffer buffer))))))
364 (list next-buffer killed)))
365
366 (defun server-temp-file-p (buffer)
367 "Return non-nil if BUFFER contains a file considered temporary.
368 These are files whose names suggest they are repeatedly
369 reused to pass information to another program.
370
371 The variable `server-temp-file-regexp' controls which filenames
372 are considered temporary."
373 (and (buffer-file-name buffer)
374 (string-match server-temp-file-regexp (buffer-file-name buffer))))
375
376 (defun server-done ()
377 "Offer to save current buffer, mark it as \"done\" for clients.
378 This buries the buffer, then returns a list of the form (NEXT-BUFFER KILLED).
379 NEXT-BUFFER is another server buffer, as a suggestion for what to select next,
380 or nil. KILLED is t if we killed BUFFER
381 \(typically, because it was visiting a temp file)."
382 (let ((buffer (current-buffer)))
383 (if server-buffer-clients
384 (progn
385 (if (server-temp-file-p buffer)
386 ;; For a temp file, save, and do make a non-numeric backup
387 ;; (unless make-backup-files is nil).
388 (let ((version-control nil)
389 (buffer-backed-up nil))
390 (save-buffer))
391 (if (and (buffer-modified-p)
392 buffer-file-name
393 (y-or-n-p (concat "Save file " buffer-file-name "? ")))
394 (save-buffer buffer)))
395 (server-buffer-done buffer)))))
396
397 ;; Ask before killing a server buffer.
398 ;; It was suggested to release its client instead,
399 ;; but I think that is dangerous--the client would proceed
400 ;; using whatever is on disk in that file. -- rms.
401 (defun server-kill-buffer-query-function ()
402 (or (not server-buffer-clients)
403 (yes-or-no-p (format "Buffer `%s' still has clients; kill it? "
404 (buffer-name (current-buffer))))))
405
406 (add-hook 'kill-buffer-query-functions
407 'server-kill-buffer-query-function)
408
409 (defun server-kill-emacs-query-function ()
410 (let (live-client
411 (tail server-clients))
412 ;; See if any clients have any buffers that are still alive.
413 (while tail
414 (if (memq t (mapcar 'stringp (mapcar 'buffer-name (cdr (car tail)))))
415 (setq live-client t))
416 (setq tail (cdr tail)))
417 (or (not live-client)
418 (yes-or-no-p "Server buffers still have clients; exit anyway? "))))
419
420 (add-hook 'kill-emacs-query-functions 'server-kill-emacs-query-function)
421
422 (defvar server-kill-buffer-running nil
423 "Non-nil while `server-kill-buffer' or `server-buffer-done' is running.")
424
425 ;; When a buffer is killed, inform the clients.
426 (add-hook 'kill-buffer-hook 'server-kill-buffer)
427 (defun server-kill-buffer ()
428 ;; Prevent infinite recursion if user has made server-done-hook
429 ;; call kill-buffer.
430 (or server-kill-buffer-running
431 (and server-buffer-clients
432 (let ((server-kill-buffer-running t))
433 (when server-process
434 (server-buffer-done (current-buffer) t))))))
435 \f
436 (defun server-edit (&optional arg)
437 "Switch to next server editing buffer; say \"Done\" for current buffer.
438 If a server buffer is current, it is marked \"done\" and optionally saved.
439 When all of a client's buffers are marked as \"done\", the client is notified.
440
441 Temporary files such as MH <draft> files are always saved and backed up,
442 no questions asked. (The variable `make-backup-files', if nil, still
443 inhibits a backup; you can set it locally in a particular buffer to
444 prevent a backup for it.) The variable `server-temp-file-regexp' controls
445 which filenames are considered temporary.
446
447 If invoked with a prefix argument, or if there is no server process running,
448 starts server process and that is all. Invoked by \\[server-edit]."
449 (interactive "P")
450 (if (or arg
451 (not server-process)
452 (memq (process-status server-process) '(signal exit)))
453 (server-start nil)
454 (apply 'server-switch-buffer (server-done))))
455
456 (defun server-switch-buffer (&optional next-buffer killed-one)
457 "Switch to another buffer, preferably one that has a client.
458 Arg NEXT-BUFFER is a suggestion; if it is a live buffer, use it."
459 ;; KILLED-ONE is t in a recursive call
460 ;; if we have already killed one temp-file server buffer.
461 ;; This means we should avoid the final "switch to some other buffer"
462 ;; since we've already effectively done that.
463 (cond ((and (windowp server-window)
464 (window-live-p server-window))
465 (select-window server-window))
466 ((framep server-window)
467 (if (not (frame-live-p server-window))
468 (setq server-window (make-frame)))
469 (select-window (frame-selected-window server-window))))
470 (if (window-minibuffer-p (selected-window))
471 (select-window (next-window nil 'nomini 0)))
472 ;; Move to a non-dedicated window, if we have one.
473 (let ((last-window (previous-window nil 'nomini 0)))
474 (while (and (window-dedicated-p (selected-window))
475 (not (eq last-window (selected-window))))
476 (select-window (next-window nil 'nomini 0))))
477 (set-window-dedicated-p (selected-window) nil)
478 (if next-buffer
479 (if (and (bufferp next-buffer)
480 (buffer-name next-buffer))
481 (switch-to-buffer next-buffer)
482 ;; If NEXT-BUFFER is a dead buffer,
483 ;; remove the server records for it
484 ;; and try the next surviving server buffer.
485 (apply 'server-switch-buffer
486 (server-buffer-done next-buffer)))
487 (if server-clients
488 (server-switch-buffer (nth 1 (car server-clients)) killed-one)
489 (if (not killed-one)
490 (switch-to-buffer (other-buffer))))))
491
492 (global-set-key "\C-x#" 'server-edit)
493 \f
494 (provide 'server)
495
496 ;;; server.el ends here