(main): Use new safe location for socket.
[bpt/emacs.git] / lisp / server.el
CommitLineData
55535639 1;;; server.el --- Lisp code for GNU Emacs running as server process
c88ab9ce 2
33186f32 3;; Copyright (C) 1986, 87, 92, 94, 95, 96, 97, 98, 99, 2000, 2001, 2002
0f5f7c3e 4;; Free Software Foundation, Inc.
6d74b528 5
630cc463 6;; Author: William Sommerfeld <wesommer@athena.mit.edu>
e4874521 7;; Maintainer: FSF
d7b4d18f 8;; Keywords: processes
630cc463 9
9ae0f972 10;; Changes by peck@sun.com and by rms.
11
12;; This file is part of GNU Emacs.
13
14;; GNU Emacs is free software; you can redistribute it and/or modify
15;; it under the terms of the GNU General Public License as published by
e5167999 16;; the Free Software Foundation; either version 2, or (at your option)
9ae0f972 17;; any later version.
18
19;; GNU Emacs is distributed in the hope that it will be useful,
20;; but WITHOUT ANY WARRANTY; without even the implied warranty of
21;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22;; GNU General Public License for more details.
23
24;; You should have received a copy of the GNU General Public License
b578f267
EN
25;; along with GNU Emacs; see the file COPYING. If not, write to the
26;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
27;; Boston, MA 02111-1307, USA.
9ae0f972 28
630cc463 29;;; Commentary:
9ae0f972 30
b578f267
EN
31;; This Lisp code is run in Emacs when it is to operate as
32;; a server for other processes.
9ae0f972 33
b578f267 34;; Load this library and do M-x server-edit to enable Emacs as a server.
44a56b29
SM
35;; Emacs opens up a socket for communication with clients. If there are no
36;; client buffers to edit, server-edit acts like (switch-to-buffer
37;; (other-buffer))
9ae0f972 38
b578f267
EN
39;; When some other program runs "the editor" to edit a file,
40;; "the editor" can be the Emacs client program ../lib-src/emacsclient.
41;; This program transmits the file names to Emacs through
42;; the server subprocess, and Emacs visits them and lets you edit them.
9ae0f972 43
b578f267 44;; Note that any number of clients may dispatch files to emacs to be edited.
9ae0f972 45
b578f267 46;; When you finish editing a Server buffer, again call server-edit
64f51134
JPW
47;; to mark that buffer as done for the client and switch to the next
48;; Server buffer. When all the buffers for a client have been edited
b578f267 49;; and exited with server-edit, the client "editor" will return
64f51134 50;; to the program that invoked it.
9ae0f972 51
b578f267
EN
52;; Your editing commands and Emacs's display output go to and from
53;; the terminal in the usual way. Thus, server operation is possible
54;; only when Emacs can talk to the terminal at the time you invoke
55;; the client. This is possible in four cases:
9ae0f972 56
b578f267
EN
57;; 1. On a window system, where Emacs runs in one window and the
58;; program that wants to use "the editor" runs in another.
9ae0f972 59
b578f267
EN
60;; 2. On a multi-terminal system, where Emacs runs on one terminal and the
61;; program that wants to use "the editor" runs on another.
9ae0f972 62
b578f267
EN
63;; 3. When the program that wants to use "the editor" is running
64;; as a subprocess of Emacs.
9ae0f972 65
b578f267
EN
66;; 4. On a system with job control, when Emacs is suspended, the program
67;; that wants to use "the editor" will stop and display
68;; "Waiting for Emacs...". It can then be suspended, and Emacs can be
69;; brought into the foreground for editing. When done editing, Emacs is
70;; suspended again, and the client program is brought into the foreground.
9ae0f972 71
64f51134
JPW
72;; The buffer local variable "server-buffer-clients" lists
73;; the clients who are waiting for this buffer to be edited.
b578f267
EN
74;; The global variable "server-clients" lists all the waiting clients,
75;; and which files are yet to be edited for each.
630cc463
ER
76
77;;; Code:
8b3e840e
SM
78
79(eval-when-compile (require 'cl))
80
ab1c7f35
RS
81(defgroup server nil
82 "Emacs running as a server process."
83 :group 'external)
84
ab1c7f35 85(defcustom server-visit-hook nil
0c851d78 86 "*Hook run when visiting a file for the Emacs server."
ab1c7f35 87 :group 'server
0c851d78 88 :type 'hook)
ab1c7f35
RS
89
90(defcustom server-switch-hook nil
0c851d78 91 "*Hook run when switching to a buffer for the Emacs server."
ab1c7f35 92 :group 'server
0c851d78 93 :type 'hook)
ab1c7f35
RS
94
95(defcustom server-done-hook nil
0c851d78 96 "*Hook run when done editing a buffer for the Emacs server."
ab1c7f35 97 :group 'server
0c851d78 98 :type 'hook)
f9b3ef88 99
64f51134
JPW
100(defvar server-process nil
101 "The current server process.")
9ae0f972 102
103(defvar server-clients nil
104 "List of current server clients.
e82e73c2 105Each element is (CLIENTID BUFFERS...) where CLIENTID is a string
9ae0f972 106that can be given to the server process to identify a client.
107When a buffer is marked as \"done\", it is removed from this list.")
108
109(defvar server-buffer-clients nil
b5a9911c 110 "List of client ids for clients requesting editing of current buffer.")
faf931a8 111(make-variable-buffer-local 'server-buffer-clients)
9ae0f972 112;; Changing major modes should not erase this local.
113(put 'server-buffer-clients 'permanent-local t)
114
33186f32
DL
115(defcustom server-window nil
116 "*Specification of the window to use for selecting Emacs server buffers.
ec40ed9f 117If nil, use the selected window.
408784a7 118If it is a function, it should take one argument (a buffer) and
33186f32
DL
119display and select it. A common value is `pop-to-buffer'.
120If it is a window, use that.
121If it is a frame, use the frame's selected window.
122
123It is not meaningful to set this to a specific frame or window with Custom.
124Only programs can do so."
125 :group 'server
126 :version "21.4"
127 :type '(choice (const :tag "Use selected window"
128 :match (lambda (widget value)
129 (not (functionp value)))
130 nil)
131 (function-item :tag "Use pop-to-buffer" pop-to-buffer)
132 (function :tag "Other function")))
ec40ed9f 133
ab1c7f35 134(defcustom server-temp-file-regexp "^/tmp/Re\\|/draft$"
33186f32
DL
135 "*Regexp matching names of temporary files.
136These are deleted and reused after each edit by the programs that
137invoke the Emacs server."
ab1c7f35
RS
138 :group 'server
139 :type 'regexp)
9ae0f972 140
c6a117f0
GM
141(defcustom server-kill-new-buffers t
142 "*Whether to kill buffers when done with them.
143If non-nil, kill a buffer unless it already existed before editing
64f51134 144it with Emacs server. If nil, kill only buffers as specified by
c6a117f0
GM
145`server-temp-file-regexp'.
146Please note that only buffers are killed that still have a client,
147i.e. buffers visited which \"emacsclient --no-wait\" are never killed in
148this way."
149 :group 'server
150 :type 'boolean
151 :version "21.1")
152
9ae0f972 153(or (assq 'server-buffer-clients minor-mode-alist)
154 (setq minor-mode-alist (cons '(server-buffer-clients " Server") minor-mode-alist)))
155
c6a117f0 156(defvar server-existing-buffer nil
ca0c7250 157 "Non-nil means the buffer existed before the server was asked to visit it.
4dd04714 158This means that the server should not kill the buffer when you say you
ca0c7250 159are done with it in the server.")
c6a117f0
GM
160(make-variable-buffer-local 'server-existing-buffer)
161
33186f32
DL
162;; Fixme: This doesn't look secure. If it really is, it deserves a
163;; comment, but I'd expect it to be created in a protected subdir as
164;; normal. -- fx
0c851d78 165(defvar server-socket-name
15d40fa4
SM
166 (format "/tmp/esrv%d-%s" (user-uid)
167 (substring (system-name) 0 (string-match "\\." (system-name)))))
0c851d78 168
8b3e840e 169(defun server-log (string &optional client)
33186f32 170 "If a *server* buffer exists, write STRING to it for logging purposes."
9ae0f972 171 (if (get-buffer "*server*")
8b3e840e 172 (with-current-buffer "*server*"
9ae0f972 173 (goto-char (point-max))
8b3e840e 174 (insert (current-time-string)
0c851d78 175 (if client (format " %s:" client) " ")
8b3e840e 176 string)
74c20cd3 177 (or (bolp) (newline)))))
9ae0f972 178
179(defun server-sentinel (proc msg)
408784a7 180 (let ((client (assq proc server-clients)))
0c851d78 181 ;; Remove PROC from the list of clients.
408784a7
SM
182 (when client
183 (setq server-clients (delq client server-clients))
184 (dolist (buf (cdr client))
185 (with-current-buffer buf
186 ;; Remove PROC from the clients of each buffer.
187 (setq server-buffer-clients (delq proc server-buffer-clients))
188 ;; Kill the buffer if necessary.
189 (when (and (null server-buffer-clients)
190 (or (and server-kill-new-buffers
191 (not server-existing-buffer))
192 (server-temp-file-p)))
193 (kill-buffer (current-buffer)))))))
0c851d78
SM
194 (server-log (format "Status changed to %s" (process-status proc)) proc))
195
44a56b29
SM
196(defun server-select-display (display)
197 ;; If the current frame is on `display' we're all set.
198 (unless (equal (frame-parameter (selected-frame) 'display) display)
199 ;; Otherwise, look for an existing frame there and select it.
200 (dolist (frame (frame-list))
201 (when (equal (frame-parameter frame 'display) display)
202 (select-frame frame)))
203 ;; If there's no frame on that display yet, create a dummy one
204 ;; and select it.
205 (unless (equal (frame-parameter (selected-frame) 'display) display)
206 (select-frame
207 (make-frame-on-display
208 display
209 ;; This frame is only there in place of an actual "current display"
210 ;; setting, so we want it to be as unobtrusive as possible. That's
211 ;; what the invisibility is for. The minibuffer setting is so that
212 ;; we don't end up displaying a buffer in it (which noone would
213 ;; notice).
214 '((visibility . nil) (minibuffer . only)))))))
215
0c851d78
SM
216(defun server-unquote-arg (arg)
217 (replace-regexp-in-string
218 "&." (lambda (s)
219 (case (aref s 1)
220 (?& "&")
221 (?- "-")
222 (?n "\n")
223 (t " ")))
224 arg t t))
9ae0f972 225
7229064d 226;;;###autoload
9ae0f972 227(defun server-start (&optional leave-dead)
228 "Allow this Emacs process to be a server for client processes.
229This starts a server communications subprocess through which
230client \"editors\" can send your editing commands to this Emacs job.
42bbacdf 231To use the server, set up the program `emacsclient' in the
9ae0f972 232Emacs distribution as your standard \"editor\".
233
234Prefix arg means just kill any existing server communications subprocess."
235 (interactive "P")
236 ;; kill it dead!
8b3e840e 237 (condition-case () (delete-process server-process) (error nil))
c1148e39 238 ;; Delete the socket files made by previous server invocations.
0c851d78 239 (condition-case () (delete-file server-socket-name) (error nil))
c1148e39 240 ;; If this Emacs already had a server, clear out associated status.
9ae0f972 241 (while server-clients
242 (let ((buffer (nth 1 (car server-clients))))
243 (server-buffer-done buffer)))
8b3e840e 244 (unless leave-dead
9ae0f972 245 (if server-process
246 (server-log (message "Restarting server")))
0c851d78
SM
247 (let ((umask (default-file-modes)))
248 (unwind-protect
249 (progn
250 (set-default-file-modes ?\700)
251 (setq server-process
252 (make-network-process
253 :name "server" :family 'local :server t :noquery t
254 :service server-socket-name
255 :sentinel 'server-sentinel :filter 'server-process-filter
256 ;; We must receive file names without being decoded.
257 ;; Those are decoded by server-process-filter according
258 ;; to file-name-coding-system.
259 :coding 'raw-text)))
260 (set-default-file-modes umask)))))
33186f32
DL
261
262;;;###autoload
263(define-minor-mode server-mode
264 "Toggle Server mode.
265With ARG, turn Server mode on if ARG is positive, off otherwise.
266Server mode runs a process that accepts commands from the
267`emacsclient' program. See `server-start' and Info node `Emacs server'."
268 :global t
269 :group 'server
270 :version "21.4"
271 ;; Fixme: Should this check for an existing server socket and do
272 ;; nothing if there is one (for multiple Emacs sessions)?
273 (server-start (not server-mode)))
274(custom-add-version 'server-mode "21.4")
9ae0f972 275\f
9ae0f972 276(defun server-process-filter (proc string)
33186f32
DL
277 "Process a request from the server to edit some files.
278PROC is the server process. Format of STRING is \"PATH PATH PATH... \\n\"."
0c851d78 279 (server-log string proc)
3f7ef08e
SM
280 (let ((prev (process-get proc 'previous-string)))
281 (when prev
282 (setq string (concat prev string))
283 (process-put proc 'previous-string nil)))
68469f74
RS
284 ;; If the input is multiple lines,
285 ;; process each line individually.
286 (while (string-match "\n" string)
287 (let ((request (substring string 0 (match-beginning 0)))
6b7430a8
KH
288 (coding-system (and default-enable-multibyte-characters
289 (or file-name-coding-system
290 default-file-name-coding-system)))
44a56b29 291 client nowait eval
9ae0f972 292 (files nil)
8c493570
GM
293 (lineno 1)
294 (columnno 0))
68469f74 295 ;; Remove this line from STRING.
0c851d78
SM
296 (setq string (substring string (match-end 0)))
297 (setq client (cons proc nil))
298 (while (string-match "[^ ]* " request)
299 (let ((arg (substring request (match-beginning 0) (1- (match-end 0))))
300 (pos 0))
301 (setq request (substring request (match-end 0)))
302 (cond
303 ((equal "-nowait" arg) (setq nowait t))
cf1175df
RS
304;;; This is not safe unless we make sure other users can't send commands.
305;;; ((equal "-eval" arg) (setq eval t))
44a56b29
SM
306 ((and (equal "-display" arg) (string-match "\\([^ ]*\\) " request))
307 (let ((display (server-unquote-arg (match-string 1 request))))
308 (setq request (substring request (match-end 0)))
309 (condition-case err
310 (server-select-display display)
311 (error (process-send-string proc (nth 1 err))
312 (setq request "")))))
0c851d78
SM
313 ;; ARG is a line number option.
314 ((string-match "\\`\\+[0-9]+\\'" arg)
315 (setq lineno (string-to-int (substring arg 1))))
316 ;; ARG is line number:column option.
317 ((string-match "\\`+\\([0-9]+\\):\\([0-9]+\\)\\'" arg)
318 (setq lineno (string-to-int (match-string 1 arg))
319 columnno (string-to-int (match-string 2 arg))))
320 (t
321 ;; Undo the quoting that emacsclient does
322 ;; for certain special characters.
323 (setq arg (server-unquote-arg arg))
324 ;; Now decode the file name if necessary.
325 (if coding-system
326 (setq arg (decode-coding-string arg coding-system)))
44a56b29
SM
327 (if eval
328 (let ((v (eval (car (read-from-string arg)))))
329 (when v
330 (with-temp-buffer
331 (let ((standard-output (current-buffer)))
332 (pp v)
333 (process-send-region proc (point-min) (point-max))))))
334 ;; ARG is a file name.
335 ;; Collapse multiple slashes to single slashes.
336 (setq arg (command-line-normalize-file-name arg))
337 (push (list arg lineno columnno) files))
0c851d78
SM
338 (setq lineno 1)
339 (setq columnno 0)))))
340 (when files
341 (run-hooks 'pre-command-hook)
342 (server-visit-files files client nowait)
343 (run-hooks 'post-command-hook))
344 ;; CLIENT is now a list (CLIENTNUM BUFFERS...)
345 (if (null (cdr client))
346 ;; This client is empty; get rid of it immediately.
347 (progn
348 (delete-process proc)
349 (server-log "Close empty client" proc))
350 ;; We visited some buffer for this client.
351 (or nowait (push client server-clients))
64f51134 352 (unless (or isearch-mode (minibufferp))
cf1175df
RS
353 (server-switch-buffer (nth 1 client))
354 (run-hooks 'server-switch-hook)
355 (unless nowait
356 (message (substitute-command-keys
357 "When done with a buffer, type \\[server-edit]")))))))
68469f74 358 ;; Save for later any partial line that remains.
0c851d78 359 (when (> (length string) 0)
3f7ef08e 360 (process-put proc 'previous-string string)))
9ae0f972 361
6b98185f
RS
362(defun server-goto-line-column (file-line-col)
363 (goto-line (nth 1 file-line-col))
364 (let ((column-number (nth 2 file-line-col)))
365 (if (> column-number 0)
366 (move-to-column (1- column-number)))))
367
dfa35e6b 368(defun server-visit-files (files client &optional nowait)
44a56b29 369 "Find FILES and return the list CLIENT with the buffers nconc'd.
8c493570 370FILES is an alist whose elements are (FILENAME LINENUMBER COLUMNNUMBER).
dfa35e6b
RS
371NOWAIT non-nil means this client is not waiting for the results,
372so don't mark these buffers specially, just visit them normally."
e82e73c2 373 ;; Bind last-nonmenu-event to force use of keyboard, not mouse, for queries.
44a56b29 374 (let ((last-nonmenu-event t) client-record)
3a0ce849
RS
375 ;; Restore the current buffer afterward, but not using save-excursion,
376 ;; because we don't want to save point in this buffer
377 ;; if it happens to be one of those specified by the server.
44a56b29
SM
378 (save-current-buffer
379 (dolist (file files)
380 ;; If there is an existing buffer modified or the file is
381 ;; modified, revert it. If there is an existing buffer with
382 ;; deleted file, offer to write it.
383 (let* ((filen (car file))
384 (obuf (get-file-buffer filen)))
385 (push filen file-name-history)
386 (if (and obuf (set-buffer obuf))
387 (progn
388 (cond ((file-exists-p filen)
389 (if (not (verify-visited-file-modtime obuf))
390 (revert-buffer t nil)))
391 (t
392 (if (y-or-n-p
393 (concat "File no longer exists: "
394 filen
395 ", write buffer to file? "))
396 (write-file filen))))
397 (setq server-existing-buffer t)
398 (server-goto-line-column file))
399 (set-buffer (find-file-noselect filen))
400 (server-goto-line-column file)
401 (run-hooks 'server-visit-hook)))
402 (unless nowait
403 ;; When the buffer is killed, inform the clients.
404 (add-hook 'kill-buffer-hook 'server-kill-buffer nil t)
405 (push (car client) server-buffer-clients))
406 (push (current-buffer) client-record)))
9ae0f972 407 (nconc client client-record)))
408\f
b392bac9 409(defun server-buffer-done (buffer &optional for-killing)
9ae0f972 410 "Mark BUFFER as \"done\" for its client(s).
9184aafb
RS
411This buries the buffer, then returns a list of the form (NEXT-BUFFER KILLED).
412NEXT-BUFFER is another server buffer, as a suggestion for what to select next,
8b3e840e
SM
413or nil. KILLED is t if we killed BUFFER (typically, because it was visiting
414a temp file).
415FOR-KILLING if non-nil indicates that we are called from `kill-buffer'."
0c851d78 416 (let ((next-buffer nil)
9184aafb 417 (killed nil)
9ae0f972 418 (old-clients server-clients))
419 (while old-clients
420 (let ((client (car old-clients)))
8b3e840e 421 (or next-buffer
9ae0f972 422 (setq next-buffer (nth 1 (memq buffer client))))
423 (delq buffer client)
68469f74
RS
424 ;; Delete all dead buffers from CLIENT.
425 (let ((tail client))
426 (while tail
427 (and (bufferp (car tail))
428 (null (buffer-name (car tail)))
429 (delq (car tail) client))
430 (setq tail (cdr tail))))
9ae0f972 431 ;; If client now has no pending buffers,
432 ;; tell it that it is done, and forget it entirely.
0c851d78
SM
433 (unless (cdr client)
434 (delete-process (car client))
435 (server-log "Close" (car client))
9ae0f972 436 (setq server-clients (delq client server-clients))))
437 (setq old-clients (cdr old-clients)))
68469f74 438 (if (and (bufferp buffer) (buffer-name buffer))
599f9a5c
RS
439 ;; We may or may not kill this buffer;
440 ;; if we do, do not call server-buffer-done recursively
441 ;; from kill-buffer-hook.
442 (let ((server-kill-buffer-running t))
408784a7 443 (with-current-buffer buffer
f9b3ef88
RS
444 (setq server-buffer-clients nil)
445 (run-hooks 'server-done-hook))
599f9a5c
RS
446 ;; Notice whether server-done-hook killed the buffer.
447 (if (null (buffer-name buffer))
448 (setq killed t)
449 ;; Don't bother killing or burying the buffer
450 ;; when we are called from kill-buffer.
451 (unless for-killing
c6a117f0
GM
452 (when (and (not killed)
453 server-kill-new-buffers
4dd04714
RS
454 (with-current-buffer buffer
455 (not server-existing-buffer)))
c6a117f0 456 (setq killed t)
3d2a0e0b 457 (bury-buffer buffer)
c6a117f0
GM
458 (kill-buffer buffer))
459 (unless killed
460 (if (server-temp-file-p buffer)
461 (progn
462 (kill-buffer buffer)
463 (setq killed t))
464 (bury-buffer buffer)))))))
9184aafb 465 (list next-buffer killed)))
9ae0f972 466
408784a7 467(defun server-temp-file-p (&optional buffer)
9ae0f972 468 "Return non-nil if BUFFER contains a file considered temporary.
469These are files whose names suggest they are repeatedly
470reused to pass information to another program.
471
472The variable `server-temp-file-regexp' controls which filenames
473are considered temporary."
474 (and (buffer-file-name buffer)
475 (string-match server-temp-file-regexp (buffer-file-name buffer))))
476
477(defun server-done ()
cc9875f9 478 "Offer to save current buffer, mark it as \"done\" for clients.
ed9ae328
RS
479This kills or buries the buffer, then returns a list
480of the form (NEXT-BUFFER KILLED). NEXT-BUFFER is another server buffer,
481as a suggestion for what to select next, or nil.
482KILLED is t if we killed BUFFER, which happens if it was created
483specifically for the clients and did not exist before their request for it."
408784a7
SM
484 (when server-buffer-clients
485 (if (server-temp-file-p)
486 ;; For a temp file, save, and do make a non-numeric backup
487 ;; (unless make-backup-files is nil).
488 (let ((version-control nil)
489 (buffer-backed-up nil))
490 (save-buffer))
491 (if (and (buffer-modified-p)
492 buffer-file-name
493 (y-or-n-p (concat "Save file " buffer-file-name "? ")))
494 (save-buffer)))
495 (server-buffer-done (current-buffer))))
faf931a8 496
71207de2
RS
497;; Ask before killing a server buffer.
498;; It was suggested to release its client instead,
499;; but I think that is dangerous--the client would proceed
500;; using whatever is on disk in that file. -- rms.
03d78665
RS
501(defun server-kill-buffer-query-function ()
502 (or (not server-buffer-clients)
503 (yes-or-no-p (format "Buffer `%s' still has clients; kill it? "
504 (buffer-name (current-buffer))))))
505
faf931a8 506(add-hook 'kill-buffer-query-functions
03d78665
RS
507 'server-kill-buffer-query-function)
508
509(defun server-kill-emacs-query-function ()
e82e73c2
RS
510 (let (live-client
511 (tail server-clients))
512 ;; See if any clients have any buffers that are still alive.
513 (while tail
514 (if (memq t (mapcar 'stringp (mapcar 'buffer-name (cdr (car tail)))))
515 (setq live-client t))
516 (setq tail (cdr tail)))
517 (or (not live-client)
518 (yes-or-no-p "Server buffers still have clients; exit anyway? "))))
03d78665
RS
519
520(add-hook 'kill-emacs-query-functions 'server-kill-emacs-query-function)
b392bac9 521
fb873cfc 522(defvar server-kill-buffer-running nil
599f9a5c 523 "Non-nil while `server-kill-buffer' or `server-buffer-done' is running.")
fb873cfc 524
b392bac9 525(defun server-kill-buffer ()
fb873cfc
RS
526 ;; Prevent infinite recursion if user has made server-done-hook
527 ;; call kill-buffer.
528 (or server-kill-buffer-running
599f9a5c
RS
529 (and server-buffer-clients
530 (let ((server-kill-buffer-running t))
531 (when server-process
532 (server-buffer-done (current-buffer) t))))))
9ae0f972 533\f
534(defun server-edit (&optional arg)
535 "Switch to next server editing buffer; say \"Done\" for current buffer.
536If a server buffer is current, it is marked \"done\" and optionally saved.
ed9ae328 537The buffer is also killed if it did not exist before the clients asked for it.
9ae0f972 538When all of a client's buffers are marked as \"done\", the client is notified.
539
540Temporary files such as MH <draft> files are always saved and backed up,
991298c3
RS
541no questions asked. (The variable `make-backup-files', if nil, still
542inhibits a backup; you can set it locally in a particular buffer to
543prevent a backup for it.) The variable `server-temp-file-regexp' controls
9ae0f972 544which filenames are considered temporary.
545
64f51134 546If invoked with a prefix argument, or if there is no server process running,
9ae0f972 547starts server process and that is all. Invoked by \\[server-edit]."
9ae0f972 548 (interactive "P")
549 (if (or arg
550 (not server-process)
551 (memq (process-status server-process) '(signal exit)))
552 (server-start nil)
9184aafb 553 (apply 'server-switch-buffer (server-done))))
9ae0f972 554
98a4349c 555(defun server-switch-buffer (&optional next-buffer killed-one)
9ae0f972 556 "Switch to another buffer, preferably one that has a client.
557Arg NEXT-BUFFER is a suggestion; if it is a live buffer, use it."
9184aafb
RS
558 ;; KILLED-ONE is t in a recursive call
559 ;; if we have already killed one temp-file server buffer.
560 ;; This means we should avoid the final "switch to some other buffer"
561 ;; since we've already effectively done that.
ca0c7250
SM
562 (if (null next-buffer)
563 (if server-clients
564 (server-switch-buffer (nth 1 (car server-clients)) killed-one)
0c851d78 565 (unless (or killed-one (window-dedicated-p (selected-window)))
90ee5627
RS
566 (switch-to-buffer (other-buffer))
567 (message "No server buffers remain to edit")))
ca0c7250
SM
568 (if (not (buffer-name next-buffer))
569 ;; If NEXT-BUFFER is a dead buffer, remove the server records for it
9ae0f972 570 ;; and try the next surviving server buffer.
ca0c7250
SM
571 (apply 'server-switch-buffer (server-buffer-done next-buffer))
572 ;; OK, we know next-buffer is live, let's display and select it.
408784a7
SM
573 (if (functionp server-window)
574 (funcall server-window next-buffer)
575 (let ((win (get-buffer-window next-buffer 0)))
576 (if (and win (not server-window))
577 ;; The buffer is already displayed: just reuse the window.
578 (let ((frame (window-frame win)))
579 (if (eq (frame-visible-p frame) 'icon)
580 (raise-frame frame))
581 (select-window win)
582 (set-buffer next-buffer))
583 ;; Otherwise, let's find an appropriate window.
584 (cond ((and (windowp server-window)
585 (window-live-p server-window))
586 (select-window server-window))
587 ((framep server-window)
588 (if (not (frame-live-p server-window))
589 (setq server-window (make-frame)))
590 (select-window (frame-selected-window server-window))))
591 (if (window-minibuffer-p (selected-window))
592 (select-window (next-window nil 'nomini 0)))
593 ;; Move to a non-dedicated window, if we have one.
594 (when (window-dedicated-p (selected-window))
595 (select-window
596 (get-window-with-predicate
597 (lambda (w)
598 (and (not (window-dedicated-p w))
599 (equal (frame-parameter (window-frame w) 'display)
600 (frame-parameter (selected-frame) 'display))))
601 'nomini 'visible (selected-window))))
602 (condition-case nil
603 (switch-to-buffer next-buffer)
604 ;; After all the above, we might still have ended up with
605 ;; a minibuffer/dedicated-window (if there's no other).
606 (error (pop-to-buffer next-buffer)))))))))
9ae0f972 607
608(global-set-key "\C-x#" 'server-edit)
df4e8a11
DL
609
610(defun server-unload-hook ()
33186f32 611 (server-start t)
df4e8a11
DL
612 (remove-hook 'kill-buffer-query-functions 'server-kill-buffer-query-function)
613 (remove-hook 'kill-emacs-query-functions 'server-kill-emacs-query-function)
614 (remove-hook 'kill-buffer-hook 'server-kill-buffer))
16c15321
RM
615\f
616(provide 'server)
c88ab9ce
ER
617
618;;; server.el ends here