]> code.delx.au - gnu-emacs/blob - lisp/server.el
(server-select-display): Use a dummy buffer to detect when
[gnu-emacs] / lisp / server.el
1 ;;; server.el --- Lisp code for GNU Emacs running as server process
2
3 ;; Copyright (C) 1986, 1987, 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4 ;; 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
5
6 ;; Author: William Sommerfeld <wesommer@athena.mit.edu>
7 ;; Maintainer: FSF
8 ;; Keywords: processes
9
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
16 ;; the Free Software Foundation; either version 2, or (at your option)
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
25 ;; along with GNU Emacs; see the file COPYING. If not, write to the
26 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
27 ;; Boston, MA 02110-1301, USA.
28
29 ;;; Commentary:
30
31 ;; This Lisp code is run in Emacs when it is to operate as
32 ;; a server for other processes.
33
34 ;; Load this library and do M-x server-edit to enable Emacs as a server.
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))
38
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.
43
44 ;; Note that any number of clients may dispatch files to emacs to be edited.
45
46 ;; When you finish editing a Server buffer, again call server-edit
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
49 ;; and exited with server-edit, the client "editor" will return
50 ;; to the program that invoked it.
51
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:
56
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.
59
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.
62
63 ;; 3. When the program that wants to use "the editor" is running
64 ;; as a subprocess of Emacs.
65
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.
71
72 ;; The buffer local variable "server-buffer-clients" lists
73 ;; the clients who are waiting for this buffer to be edited.
74 ;; The global variable "server-clients" lists all the waiting clients,
75 ;; and which files are yet to be edited for each.
76
77 ;;; Code:
78
79 (eval-when-compile (require 'cl))
80
81 (defgroup server nil
82 "Emacs running as a server process."
83 :group 'external)
84
85 (defcustom server-visit-hook nil
86 "*Hook run when visiting a file for the Emacs server."
87 :group 'server
88 :type 'hook)
89
90 (defcustom server-switch-hook nil
91 "*Hook run when switching to a buffer for the Emacs server."
92 :group 'server
93 :type 'hook)
94
95 (defcustom server-done-hook nil
96 "*Hook run when done editing a buffer for the Emacs server."
97 :group 'server
98 :type 'hook)
99
100 (defvar server-process nil
101 "The current server process.")
102
103 (defvar server-clients nil
104 "List of current server clients.
105 Each element is (CLIENTID BUFFERS...) where CLIENTID is a string
106 that can be given to the server process to identify a client.
107 When a buffer is marked as \"done\", it is removed from this list.")
108
109 (defvar server-buffer-clients nil
110 "List of client ids for clients requesting editing of current buffer.")
111 (make-variable-buffer-local 'server-buffer-clients)
112 ;; Changing major modes should not erase this local.
113 (put 'server-buffer-clients 'permanent-local t)
114
115 (defcustom server-window nil
116 "*Specification of the window to use for selecting Emacs server buffers.
117 If nil, use the selected window.
118 If it is a function, it should take one argument (a buffer) and
119 display and select it. A common value is `pop-to-buffer'.
120 If it is a window, use that.
121 If it is a frame, use the frame's selected window.
122
123 It is not meaningful to set this to a specific frame or window with Custom.
124 Only programs can do so."
125 :group 'server
126 :version "22.1"
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")))
133
134 (defcustom server-temp-file-regexp "^/tmp/Re\\|/draft$"
135 "*Regexp matching names of temporary files.
136 These are deleted and reused after each edit by the programs that
137 invoke the Emacs server."
138 :group 'server
139 :type 'regexp)
140
141 (defcustom server-kill-new-buffers t
142 "*Whether to kill buffers when done with them.
143 If non-nil, kill a buffer unless it already existed before editing
144 it with Emacs server. If nil, kill only buffers as specified by
145 `server-temp-file-regexp'.
146 Please note that only buffers are killed that still have a client,
147 i.e. buffers visited which \"emacsclient --no-wait\" are never killed in
148 this way."
149 :group 'server
150 :type 'boolean
151 :version "21.1")
152
153 (or (assq 'server-buffer-clients minor-mode-alist)
154 (setq minor-mode-alist (cons '(server-buffer-clients " Server") minor-mode-alist)))
155
156 (defvar server-existing-buffer nil
157 "Non-nil means the buffer existed before the server was asked to visit it.
158 This means that the server should not kill the buffer when you say you
159 are done with it in the server.")
160 (make-variable-buffer-local 'server-existing-buffer)
161
162 (defvar server-name "server")
163
164 (defvar server-socket-dir
165 (format "/tmp/emacs%d" (user-uid)))
166
167 (defun server-log (string &optional client)
168 "If a *server* buffer exists, write STRING to it for logging purposes."
169 (if (get-buffer "*server*")
170 (with-current-buffer "*server*"
171 (goto-char (point-max))
172 (insert (current-time-string)
173 (if client (format " %s:" client) " ")
174 string)
175 (or (bolp) (newline)))))
176
177 (defun server-sentinel (proc msg)
178 (let ((client (assq proc server-clients)))
179 ;; Remove PROC from the list of clients.
180 (when client
181 (setq server-clients (delq client server-clients))
182 (dolist (buf (cdr client))
183 (with-current-buffer buf
184 ;; Remove PROC from the clients of each buffer.
185 (setq server-buffer-clients (delq proc server-buffer-clients))
186 ;; Kill the buffer if necessary.
187 (when (and (null server-buffer-clients)
188 (or (and server-kill-new-buffers
189 (not server-existing-buffer))
190 (server-temp-file-p)))
191 (kill-buffer (current-buffer)))))))
192 ;; If this is a new client process, set the query-on-exit flag to nil
193 ;; for this process (it isn't inherited from the server process).
194 (when (and (eq (process-status proc) 'open)
195 (process-query-on-exit-flag proc))
196 (set-process-query-on-exit-flag proc nil))
197 (server-log (format "Status changed to %s" (process-status proc)) proc))
198
199 (defun server-select-display (display)
200 ;; If the current frame is on `display' we're all set.
201 (unless (equal (frame-parameter (selected-frame) 'display) display)
202 ;; Otherwise, look for an existing frame there and select it.
203 (dolist (frame (frame-list))
204 (when (equal (frame-parameter frame 'display) display)
205 (select-frame frame)))
206 ;; If there's no frame on that display yet, create and select one.
207 (unless (equal (frame-parameter (selected-frame) 'display) display)
208 (let* ((buffer (generate-new-buffer " *server-dummy*"))
209 (frame (make-frame-on-display
210 display
211 ;; Make it display (and remember) some dummy buffer, so
212 ;; we can detect later if the frame is in use or not.
213 `((server-dummmy-buffer . ,buffer)
214 ;; This frame may be deleted later (see
215 ;; server-unselect-display) so we want it to be as
216 ;; unobtrusive as possible.
217 (visibility . nil)))))
218 (select-frame frame)
219 (set-window-buffer (selected-window) buffer)))))
220
221 (defun server-unselect-display (frame)
222 ;; If the temporary frame is in use (displays something real), make it
223 ;; visible. If not (which can happen if the user's customizations call
224 ;; pop-to-buffer etc.), delete it to avoid preserving the connection after
225 ;; the last real frame is deleted.
226 (if (and (eq (frame-first-window frame)
227 (next-window (frame-first-window frame) 'nomini))
228 (eq (window-buffer (frame-first-window frame))
229 (frame-parameter frame 'server-dummy-buffer)))
230 ;; The temp frame still only shows one buffer, and that is the
231 ;; internal temp buffer.
232 (delete-frame frame)
233 (set-frame-parameter frame 'visibility t))
234 (kill-buffer (frame-parameter frame 'server-dummy-buffer))
235 (set-frame-parameter frame 'server-dummy-buffer nil))
236
237 (defun server-unquote-arg (arg)
238 (replace-regexp-in-string
239 "&." (lambda (s)
240 (case (aref s 1)
241 (?& "&")
242 (?- "-")
243 (?n "\n")
244 (t " ")))
245 arg t t))
246
247 (defun server-ensure-safe-dir (dir)
248 "Make sure DIR is a directory with no race-condition issues.
249 Creates the directory if necessary and makes sure:
250 - there's no symlink involved
251 - it's owned by us
252 - it's not readable/writable by anybody else."
253 (setq dir (directory-file-name dir))
254 (let ((attrs (file-attributes dir)))
255 (unless attrs
256 (letf (((default-file-modes) ?\700)) (make-directory dir))
257 (setq attrs (file-attributes dir)))
258 ;; Check that it's safe for use.
259 (unless (and (eq t (car attrs)) (eq (nth 2 attrs) (user-uid))
260 (zerop (logand ?\077 (file-modes dir))))
261 (error "The directory %s is unsafe" dir))))
262
263 ;;;###autoload
264 (defun server-start (&optional leave-dead)
265 "Allow this Emacs process to be a server for client processes.
266 This starts a server communications subprocess through which
267 client \"editors\" can send your editing commands to this Emacs job.
268 To use the server, set up the program `emacsclient' in the
269 Emacs distribution as your standard \"editor\".
270
271 Prefix arg means just kill any existing server communications subprocess."
272 (interactive "P")
273 ;; kill it dead!
274 (if server-process
275 (condition-case () (delete-process server-process) (error nil)))
276 ;; Delete the socket files made by previous server invocations.
277 (condition-case ()
278 (delete-file (expand-file-name server-name server-socket-dir))
279 (error nil))
280 ;; If this Emacs already had a server, clear out associated status.
281 (while server-clients
282 (let ((buffer (nth 1 (car server-clients))))
283 (server-buffer-done buffer)))
284 ;; Now any previous server is properly stopped.
285 (unless leave-dead
286 ;; Make sure there is a safe directory in which to place the socket.
287 (server-ensure-safe-dir server-socket-dir)
288 (if server-process
289 (server-log (message "Restarting server")))
290 (letf (((default-file-modes) ?\700))
291 (setq server-process
292 (make-network-process
293 :name "server" :family 'local :server t :noquery t
294 :service (expand-file-name server-name server-socket-dir)
295 :sentinel 'server-sentinel :filter 'server-process-filter
296 ;; We must receive file names without being decoded.
297 ;; Those are decoded by server-process-filter according
298 ;; to file-name-coding-system.
299 :coding 'raw-text)))))
300
301 ;;;###autoload
302 (define-minor-mode server-mode
303 "Toggle Server mode.
304 With ARG, turn Server mode on if ARG is positive, off otherwise.
305 Server mode runs a process that accepts commands from the
306 `emacsclient' program. See `server-start' and Info node `Emacs server'."
307 :global t
308 :group 'server
309 :version "22.1"
310 ;; Fixme: Should this check for an existing server socket and do
311 ;; nothing if there is one (for multiple Emacs sessions)?
312 (server-start (not server-mode)))
313 \f
314 (defun server-process-filter (proc string)
315 "Process a request from the server to edit some files.
316 PROC is the server process. Format of STRING is \"PATH PATH PATH... \\n\"."
317 (server-log string proc)
318 (let ((prev (process-get proc 'previous-string)))
319 (when prev
320 (setq string (concat prev string))
321 (process-put proc 'previous-string nil)))
322 ;; If the input is multiple lines,
323 ;; process each line individually.
324 (while (string-match "\n" string)
325 (let ((request (substring string 0 (match-beginning 0)))
326 (coding-system (and default-enable-multibyte-characters
327 (or file-name-coding-system
328 default-file-name-coding-system)))
329 client nowait eval
330 (files nil)
331 (lineno 1)
332 (tmp-frame nil) ; Sometimes used to embody the selected display.
333 (columnno 0))
334 ;; Remove this line from STRING.
335 (setq string (substring string (match-end 0)))
336 (setq client (cons proc nil))
337 (while (string-match "[^ ]* " request)
338 (let ((arg (substring request (match-beginning 0) (1- (match-end 0)))))
339 (setq request (substring request (match-end 0)))
340 (cond
341 ((equal "-nowait" arg) (setq nowait t))
342 ((equal "-eval" arg) (setq eval t))
343 ((and (equal "-display" arg) (string-match "\\([^ ]*\\) " request))
344 (let ((display (server-unquote-arg (match-string 1 request))))
345 (setq request (substring request (match-end 0)))
346 (condition-case err
347 (setq tmp-frame (server-select-display display))
348 (error (process-send-string proc (nth 1 err))
349 (setq request "")))))
350 ;; ARG is a line number option.
351 ((string-match "\\`\\+[0-9]+\\'" arg)
352 (setq lineno (string-to-number (substring arg 1))))
353 ;; ARG is line number:column option.
354 ((string-match "\\`+\\([0-9]+\\):\\([0-9]+\\)\\'" arg)
355 (setq lineno (string-to-number (match-string 1 arg))
356 columnno (string-to-number (match-string 2 arg))))
357 (t
358 ;; Undo the quoting that emacsclient does
359 ;; for certain special characters.
360 (setq arg (server-unquote-arg arg))
361 ;; Now decode the file name if necessary.
362 (if coding-system
363 (setq arg (decode-coding-string arg coding-system)))
364 (if eval
365 (let* (errorp
366 (v (condition-case errobj
367 (eval (car (read-from-string arg)))
368 (error (setq errorp t) errobj))))
369 (when v
370 (with-temp-buffer
371 (let ((standard-output (current-buffer)))
372 (if errorp (princ "error: "))
373 (pp v)
374 ;; Suppress the error rose when the pipe to PROC is closed.
375 (condition-case err
376 (process-send-region proc (point-min) (point-max))
377 (file-error nil)
378 (error nil))
379 ))))
380 ;; ARG is a file name.
381 ;; Collapse multiple slashes to single slashes.
382 (setq arg (command-line-normalize-file-name arg))
383 (push (list arg lineno columnno) files))
384 (setq lineno 1)
385 (setq columnno 0)))))
386 (when files
387 (run-hooks 'pre-command-hook)
388 (server-visit-files files client nowait)
389 (run-hooks 'post-command-hook))
390 ;; CLIENT is now a list (CLIENTNUM BUFFERS...)
391 (if (null (cdr client))
392 ;; This client is empty; get rid of it immediately.
393 (progn
394 (delete-process proc)
395 (server-log "Close empty client" proc))
396 ;; We visited some buffer for this client.
397 (or nowait (push client server-clients))
398 (unless (or isearch-mode (minibufferp))
399 (server-switch-buffer (nth 1 client))
400 (run-hooks 'server-switch-hook)
401 (unless nowait
402 (message "%s" (substitute-command-keys
403 "When done with a buffer, type \\[server-edit]")))))
404 (when (frame-live-p tmp-frame)
405 ;; Delete tmp-frame or make it visible depending on whether it's
406 ;; been used or not.
407 (server-unselect-display tmp-frame))))
408 ;; Save for later any partial line that remains.
409 (when (> (length string) 0)
410 (process-put proc 'previous-string string)))
411
412 (defun server-goto-line-column (file-line-col)
413 (goto-line (nth 1 file-line-col))
414 (let ((column-number (nth 2 file-line-col)))
415 (if (> column-number 0)
416 (move-to-column (1- column-number)))))
417
418 (defun server-visit-files (files client &optional nowait)
419 "Find FILES and return the list CLIENT with the buffers nconc'd.
420 FILES is an alist whose elements are (FILENAME LINENUMBER COLUMNNUMBER).
421 NOWAIT non-nil means this client is not waiting for the results,
422 so don't mark these buffers specially, just visit them normally."
423 ;; Bind last-nonmenu-event to force use of keyboard, not mouse, for queries.
424 (let ((last-nonmenu-event t) client-record)
425 ;; Restore the current buffer afterward, but not using save-excursion,
426 ;; because we don't want to save point in this buffer
427 ;; if it happens to be one of those specified by the server.
428 (save-current-buffer
429 (dolist (file files)
430 ;; If there is an existing buffer modified or the file is
431 ;; modified, revert it. If there is an existing buffer with
432 ;; deleted file, offer to write it.
433 (let* ((filen (car file))
434 (obuf (get-file-buffer filen)))
435 (add-to-history 'file-name-history filen)
436 (if (and obuf (set-buffer obuf))
437 (progn
438 (cond ((file-exists-p filen)
439 (if (not (verify-visited-file-modtime obuf))
440 (revert-buffer t nil)))
441 (t
442 (if (y-or-n-p
443 (concat "File no longer exists: "
444 filen
445 ", write buffer to file? "))
446 (write-file filen))))
447 (setq server-existing-buffer t)
448 (server-goto-line-column file))
449 (set-buffer (find-file-noselect filen))
450 (server-goto-line-column file)
451 (run-hooks 'server-visit-hook)))
452 (unless nowait
453 ;; When the buffer is killed, inform the clients.
454 (add-hook 'kill-buffer-hook 'server-kill-buffer nil t)
455 (push (car client) server-buffer-clients))
456 (push (current-buffer) client-record)))
457 (nconc client client-record)))
458 \f
459 (defun server-buffer-done (buffer &optional for-killing)
460 "Mark BUFFER as \"done\" for its client(s).
461 This buries the buffer, then returns a list of the form (NEXT-BUFFER KILLED).
462 NEXT-BUFFER is another server buffer, as a suggestion for what to select next,
463 or nil. KILLED is t if we killed BUFFER (typically, because it was visiting
464 a temp file).
465 FOR-KILLING if non-nil indicates that we are called from `kill-buffer'."
466 (let ((next-buffer nil)
467 (killed nil)
468 (old-clients server-clients))
469 (while old-clients
470 (let ((client (car old-clients)))
471 (or next-buffer
472 (setq next-buffer (nth 1 (memq buffer client))))
473 (delq buffer client)
474 ;; Delete all dead buffers from CLIENT.
475 (let ((tail client))
476 (while tail
477 (and (bufferp (car tail))
478 (null (buffer-name (car tail)))
479 (delq (car tail) client))
480 (setq tail (cdr tail))))
481 ;; If client now has no pending buffers,
482 ;; tell it that it is done, and forget it entirely.
483 (unless (cdr client)
484 (delete-process (car client))
485 (server-log "Close" (car client))
486 (setq server-clients (delq client server-clients))))
487 (setq old-clients (cdr old-clients)))
488 (if (and (bufferp buffer) (buffer-name buffer))
489 ;; We may or may not kill this buffer;
490 ;; if we do, do not call server-buffer-done recursively
491 ;; from kill-buffer-hook.
492 (let ((server-kill-buffer-running t))
493 (with-current-buffer buffer
494 (setq server-buffer-clients nil)
495 (run-hooks 'server-done-hook))
496 ;; Notice whether server-done-hook killed the buffer.
497 (if (null (buffer-name buffer))
498 (setq killed t)
499 ;; Don't bother killing or burying the buffer
500 ;; when we are called from kill-buffer.
501 (unless for-killing
502 (when (and (not killed)
503 server-kill-new-buffers
504 (with-current-buffer buffer
505 (not server-existing-buffer)))
506 (setq killed t)
507 (bury-buffer buffer)
508 (kill-buffer buffer))
509 (unless killed
510 (if (server-temp-file-p buffer)
511 (progn
512 (kill-buffer buffer)
513 (setq killed t))
514 (bury-buffer buffer)))))))
515 (list next-buffer killed)))
516
517 (defun server-temp-file-p (&optional buffer)
518 "Return non-nil if BUFFER contains a file considered temporary.
519 These are files whose names suggest they are repeatedly
520 reused to pass information to another program.
521
522 The variable `server-temp-file-regexp' controls which filenames
523 are considered temporary."
524 (and (buffer-file-name buffer)
525 (string-match server-temp-file-regexp (buffer-file-name buffer))))
526
527 (defun server-done ()
528 "Offer to save current buffer, mark it as \"done\" for clients.
529 This kills or buries the buffer, then returns a list
530 of the form (NEXT-BUFFER KILLED). NEXT-BUFFER is another server buffer,
531 as a suggestion for what to select next, or nil.
532 KILLED is t if we killed BUFFER, which happens if it was created
533 specifically for the clients and did not exist before their request for it."
534 (when server-buffer-clients
535 (if (server-temp-file-p)
536 ;; For a temp file, save, and do make a non-numeric backup
537 ;; (unless make-backup-files is nil).
538 (let ((version-control nil)
539 (buffer-backed-up nil))
540 (save-buffer))
541 (if (and (buffer-modified-p)
542 buffer-file-name
543 (y-or-n-p (concat "Save file " buffer-file-name "? ")))
544 (save-buffer)))
545 (server-buffer-done (current-buffer))))
546
547 ;; Ask before killing a server buffer.
548 ;; It was suggested to release its client instead,
549 ;; but I think that is dangerous--the client would proceed
550 ;; using whatever is on disk in that file. -- rms.
551 (defun server-kill-buffer-query-function ()
552 (or (not server-buffer-clients)
553 (yes-or-no-p (format "Buffer `%s' still has clients; kill it? "
554 (buffer-name (current-buffer))))))
555
556 (add-hook 'kill-buffer-query-functions
557 'server-kill-buffer-query-function)
558
559 (defun server-kill-emacs-query-function ()
560 (let (live-client
561 (tail server-clients))
562 ;; See if any clients have any buffers that are still alive.
563 (while tail
564 (if (memq t (mapcar 'stringp (mapcar 'buffer-name (cdr (car tail)))))
565 (setq live-client t))
566 (setq tail (cdr tail)))
567 (or (not live-client)
568 (yes-or-no-p "Server buffers still have clients; exit anyway? "))))
569
570 (add-hook 'kill-emacs-query-functions 'server-kill-emacs-query-function)
571
572 (defvar server-kill-buffer-running nil
573 "Non-nil while `server-kill-buffer' or `server-buffer-done' is running.")
574
575 (defun server-kill-buffer ()
576 ;; Prevent infinite recursion if user has made server-done-hook
577 ;; call kill-buffer.
578 (or server-kill-buffer-running
579 (and server-buffer-clients
580 (let ((server-kill-buffer-running t))
581 (when server-process
582 (server-buffer-done (current-buffer) t))))))
583 \f
584 (defun server-edit (&optional arg)
585 "Switch to next server editing buffer; say \"Done\" for current buffer.
586 If a server buffer is current, it is marked \"done\" and optionally saved.
587 The buffer is also killed if it did not exist before the clients asked for it.
588 When all of a client's buffers are marked as \"done\", the client is notified.
589
590 Temporary files such as MH <draft> files are always saved and backed up,
591 no questions asked. (The variable `make-backup-files', if nil, still
592 inhibits a backup; you can set it locally in a particular buffer to
593 prevent a backup for it.) The variable `server-temp-file-regexp' controls
594 which filenames are considered temporary.
595
596 If invoked with a prefix argument, or if there is no server process running,
597 starts server process and that is all. Invoked by \\[server-edit]."
598 (interactive "P")
599 (cond
600 ((or arg
601 (not server-process)
602 (memq (process-status server-process) '(signal exit)))
603 (server-mode 1))
604 (server-clients (apply 'server-switch-buffer (server-done)))
605 (t (message "No server editing buffers exist"))))
606
607 (defun server-switch-buffer (&optional next-buffer killed-one)
608 "Switch to another buffer, preferably one that has a client.
609 Arg NEXT-BUFFER is a suggestion; if it is a live buffer, use it."
610 ;; KILLED-ONE is t in a recursive call
611 ;; if we have already killed one temp-file server buffer.
612 ;; This means we should avoid the final "switch to some other buffer"
613 ;; since we've already effectively done that.
614 (if (null next-buffer)
615 (if server-clients
616 (server-switch-buffer (nth 1 (car server-clients)) killed-one)
617 (unless (or killed-one (window-dedicated-p (selected-window)))
618 (switch-to-buffer (other-buffer))
619 (message "No server buffers remain to edit")))
620 (if (not (buffer-name next-buffer))
621 ;; If NEXT-BUFFER is a dead buffer, remove the server records for it
622 ;; and try the next surviving server buffer.
623 (apply 'server-switch-buffer (server-buffer-done next-buffer))
624 ;; OK, we know next-buffer is live, let's display and select it.
625 (if (functionp server-window)
626 (funcall server-window next-buffer)
627 (let ((win (get-buffer-window next-buffer 0)))
628 (if (and win (not server-window))
629 ;; The buffer is already displayed: just reuse the window.
630 (let ((frame (window-frame win)))
631 (if (eq (frame-visible-p frame) 'icon)
632 (raise-frame frame))
633 (select-window win)
634 (set-buffer next-buffer))
635 ;; Otherwise, let's find an appropriate window.
636 (cond ((and (windowp server-window)
637 (window-live-p server-window))
638 (select-window server-window))
639 ((framep server-window)
640 (if (not (frame-live-p server-window))
641 (setq server-window (make-frame)))
642 (select-window (frame-selected-window server-window))))
643 (if (window-minibuffer-p (selected-window))
644 (select-window (next-window nil 'nomini 0)))
645 ;; Move to a non-dedicated window, if we have one.
646 (when (window-dedicated-p (selected-window))
647 (select-window
648 (get-window-with-predicate
649 (lambda (w)
650 (and (not (window-dedicated-p w))
651 (equal (frame-parameter (window-frame w) 'display)
652 (frame-parameter (selected-frame) 'display))))
653 'nomini 'visible (selected-window))))
654 (condition-case nil
655 (switch-to-buffer next-buffer)
656 ;; After all the above, we might still have ended up with
657 ;; a minibuffer/dedicated-window (if there's no other).
658 (error (pop-to-buffer next-buffer)))))))))
659
660 (define-key ctl-x-map "#" 'server-edit)
661
662 (defun server-unload-hook ()
663 (server-mode -1)
664 (remove-hook 'kill-buffer-query-functions 'server-kill-buffer-query-function)
665 (remove-hook 'kill-emacs-query-functions 'server-kill-emacs-query-function)
666 (remove-hook 'kill-buffer-hook 'server-kill-buffer))
667
668 (add-hook 'kill-emacs-hook (lambda () (server-mode -1))) ;Cleanup upon exit.
669 (add-hook 'server-unload-hook 'server-unload-hook)
670 \f
671 (provide 'server)
672
673 ;; arch-tag: 1f7ecb42-f00a-49f8-906d-61995d84c8d6
674 ;;; server.el ends here