]> code.delx.au - gnu-emacs/blob - lisp/server.el
xfns.c (x_real_positions): Fix declaration-after-statement problem.
[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, 2007, 2008, 2009, 2010
5 ;; Free Software Foundation, Inc.
6
7 ;; Author: William Sommerfeld <wesommer@athena.mit.edu>
8 ;; Maintainer: FSF
9 ;; Keywords: processes
10
11 ;; Changes by peck@sun.com and by rms.
12 ;; Overhaul by Karoly Lorentey <lorentey@elte.hu> for multi-tty support.
13
14 ;; This file is part of GNU Emacs.
15
16 ;; GNU Emacs is free software: you can redistribute it and/or modify
17 ;; it under the terms of the GNU General Public License as published by
18 ;; the Free Software Foundation, either version 3 of the License, or
19 ;; (at your option) any later version.
20
21 ;; GNU Emacs is distributed in the hope that it will be useful,
22 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
23 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 ;; GNU General Public License for more details.
25
26 ;; You should have received a copy of the GNU General Public License
27 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
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 ;; Todo:
78
79 ;; - handle command-line-args-left.
80 ;; - move most of the args processing and decision making from emacsclient.c
81 ;; to here.
82 ;; - fix up handling of the client's environment (place it in the terminal?).
83
84 ;;; Code:
85
86 (eval-when-compile (require 'cl))
87
88 (defgroup server nil
89 "Emacs running as a server process."
90 :group 'external)
91
92 (defcustom server-use-tcp nil
93 "If non-nil, use TCP sockets instead of local sockets."
94 :set #'(lambda (sym val)
95 (unless (featurep 'make-network-process '(:family local))
96 (setq val t)
97 (unless load-in-progress
98 (message "Local sockets unsupported, using TCP sockets")))
99 (when val (random t))
100 (set-default sym val))
101 :group 'server
102 :type 'boolean
103 :version "22.1")
104
105 (defcustom server-host nil
106 "The name or IP address to use as host address of the server process.
107 If set, the server accepts remote connections; otherwise it is local."
108 :group 'server
109 :type '(choice
110 (string :tag "Name or IP address")
111 (const :tag "Local" nil))
112 :version "22.1")
113 (put 'server-host 'risky-local-variable t)
114
115 (defcustom server-auth-dir (locate-user-emacs-file "server/")
116 "Directory for server authentication files.
117
118 NOTE: On FAT32 filesystems, directories are not secure;
119 files can be read and modified by any user or process.
120 It is strongly suggested to set `server-auth-dir' to a
121 directory residing in a NTFS partition instead."
122 :group 'server
123 :type 'directory
124 :version "22.1")
125 (put 'server-auth-dir 'risky-local-variable t)
126
127 (defcustom server-raise-frame t
128 "If non-nil, raise frame when switching to a buffer."
129 :group 'server
130 :type 'boolean
131 :version "22.1")
132
133 (defcustom server-visit-hook nil
134 "Hook run when visiting a file for the Emacs server."
135 :group 'server
136 :type 'hook)
137
138 (defcustom server-switch-hook nil
139 "Hook run when switching to a buffer for the Emacs server."
140 :group 'server
141 :type 'hook)
142
143 (defcustom server-done-hook nil
144 "Hook run when done editing a buffer for the Emacs server."
145 :group 'server
146 :type 'hook)
147
148 (defvar server-process nil
149 "The current server process.")
150
151 (defvar server-clients nil
152 "List of current server clients.
153 Each element is a process.")
154
155 (defvar server-buffer-clients nil
156 "List of client processes requesting editing of current buffer.")
157 (make-variable-buffer-local 'server-buffer-clients)
158 ;; Changing major modes should not erase this local.
159 (put 'server-buffer-clients 'permanent-local t)
160
161 (defcustom server-window nil
162 "Specification of the window to use for selecting Emacs server buffers.
163 If nil, use the selected window.
164 If it is a function, it should take one argument (a buffer) and
165 display and select it. A common value is `pop-to-buffer'.
166 If it is a window, use that.
167 If it is a frame, use the frame's selected window.
168
169 It is not meaningful to set this to a specific frame or window with Custom.
170 Only programs can do so."
171 :group 'server
172 :version "22.1"
173 :type '(choice (const :tag "Use selected window"
174 :match (lambda (widget value)
175 (not (functionp value)))
176 nil)
177 (function-item :tag "Display in new frame" switch-to-buffer-other-frame)
178 (function-item :tag "Use pop-to-buffer" pop-to-buffer)
179 (function :tag "Other function")))
180
181 (defcustom server-temp-file-regexp "^/tmp/Re\\|/draft$"
182 "Regexp matching names of temporary files.
183 These are deleted and reused after each edit by the programs that
184 invoke the Emacs server."
185 :group 'server
186 :type 'regexp)
187
188 (defcustom server-kill-new-buffers t
189 "Whether to kill buffers when done with them.
190 If non-nil, kill a buffer unless it already existed before editing
191 it with the Emacs server. If nil, kill only buffers as specified by
192 `server-temp-file-regexp'.
193 Please note that only buffers that still have a client are killed,
194 i.e. buffers visited with \"emacsclient --no-wait\" are never killed
195 in this way."
196 :group 'server
197 :type 'boolean
198 :version "21.1")
199
200 (or (assq 'server-buffer-clients minor-mode-alist)
201 (push '(server-buffer-clients " Server") minor-mode-alist))
202
203 (defvar server-existing-buffer nil
204 "Non-nil means the buffer existed before the server was asked to visit it.
205 This means that the server should not kill the buffer when you say you
206 are done with it in the server.")
207 (make-variable-buffer-local 'server-existing-buffer)
208
209 (defcustom server-name "server"
210 "The name of the Emacs server, if this Emacs process creates one.
211 The command `server-start' makes use of this. It should not be
212 changed while a server is running."
213 :group 'server
214 :type 'string
215 :version "23.1")
216
217 ;; We do not use `temporary-file-directory' here, because emacsclient
218 ;; does not read the init file.
219 (defvar server-socket-dir
220 (and (featurep 'make-network-process '(:family local))
221 (format "%s/emacs%d" (or (getenv "TMPDIR") "/tmp") (user-uid)))
222 "The directory in which to place the server socket.
223 If local sockets are not supported, this is nil.")
224
225 (defun server-clients-with (property value)
226 "Return a list of clients with PROPERTY set to VALUE."
227 (let (result)
228 (dolist (proc server-clients result)
229 (when (equal value (process-get proc property))
230 (push proc result)))))
231
232 (defun server-add-client (proc)
233 "Create a client for process PROC, if it doesn't already have one.
234 New clients have no properties."
235 (add-to-list 'server-clients proc))
236
237 (defmacro server-with-environment (env vars &rest body)
238 "Evaluate BODY with environment variables VARS set to those in ENV.
239 The environment variables are then restored to their previous values.
240
241 VARS should be a list of strings.
242 ENV should be in the same format as `process-environment'."
243 (declare (indent 2))
244 (let ((var (make-symbol "var"))
245 (value (make-symbol "value")))
246 `(let ((process-environment process-environment))
247 (dolist (,var ,vars)
248 (let ((,value (getenv-internal ,var ,env)))
249 (push (if (stringp ,value)
250 (concat ,var "=" ,value)
251 ,var)
252 process-environment)))
253 (progn ,@body))))
254
255 (defun server-delete-client (proc &optional noframe)
256 "Delete PROC, including its buffers, terminals and frames.
257 If NOFRAME is non-nil, let the frames live.
258 Updates `server-clients'."
259 (server-log (concat "server-delete-client" (if noframe " noframe")) proc)
260 ;; Force a new lookup of client (prevents infinite recursion).
261 (when (memq proc server-clients)
262 (let ((buffers (process-get proc 'buffers)))
263
264 ;; Kill the client's buffers.
265 (dolist (buf buffers)
266 (when (buffer-live-p buf)
267 (with-current-buffer buf
268 ;; Kill the buffer if necessary.
269 (when (and (equal server-buffer-clients
270 (list proc))
271 (or (and server-kill-new-buffers
272 (not server-existing-buffer))
273 (server-temp-file-p))
274 (not (buffer-modified-p)))
275 (let (flag)
276 (unwind-protect
277 (progn (setq server-buffer-clients nil)
278 (kill-buffer (current-buffer))
279 (setq flag t))
280 (unless flag
281 ;; Restore clients if user pressed C-g in `kill-buffer'.
282 (setq server-buffer-clients (list proc)))))))))
283
284 ;; Delete the client's frames.
285 (unless noframe
286 (dolist (frame (frame-list))
287 (when (and (frame-live-p frame)
288 (equal proc (frame-parameter frame 'client)))
289 ;; Prevent `server-handle-delete-frame' from calling us
290 ;; recursively.
291 (set-frame-parameter frame 'client nil)
292 (delete-frame frame))))
293
294 (setq server-clients (delq proc server-clients))
295
296 ;; Delete the client's tty.
297 (let ((terminal (process-get proc 'terminal)))
298 ;; Only delete the terminal if it is non-nil.
299 (when (and terminal (eq (terminal-live-p terminal) t))
300 (delete-terminal terminal)))
301
302 ;; Delete the client's process.
303 (if (eq (process-status proc) 'open)
304 (delete-process proc))
305
306 (server-log "Deleted" proc))))
307
308 (defvar server-log-time-function 'current-time-string
309 "Function to generate timestamps for `server-buffer'.")
310
311 (defconst server-buffer " *server*"
312 "Buffer used internally by Emacs's server.
313 One use is to log the I/O for debugging purposes (see `server-log'),
314 the other is to provide a current buffer in which the process filter can
315 safely let-bind buffer-local variables like `default-directory'.")
316
317 (defvar server-log nil
318 "If non-nil, log the server's inputs and outputs in the `server-buffer'.")
319
320 (defun server-log (string &optional client)
321 "If `server-log' is non-nil, log STRING to `server-buffer'.
322 If CLIENT is non-nil, add a description of it to the logged message."
323 (when server-log
324 (with-current-buffer (get-buffer-create server-buffer)
325 (goto-char (point-max))
326 (insert (funcall server-log-time-function)
327 (cond
328 ((null client) " ")
329 ((listp client) (format " %s: " (car client)))
330 (t (format " %s: " client)))
331 string)
332 (or (bolp) (newline)))))
333
334 (defun server-sentinel (proc msg)
335 "The process sentinel for Emacs server connections."
336 ;; If this is a new client process, set the query-on-exit flag to nil
337 ;; for this process (it isn't inherited from the server process).
338 (when (and (eq (process-status proc) 'open)
339 (process-query-on-exit-flag proc))
340 (set-process-query-on-exit-flag proc nil))
341 ;; Delete the associated connection file, if applicable.
342 ;; Although there's no 100% guarantee that the file is owned by the
343 ;; running Emacs instance, server-start uses server-running-p to check
344 ;; for possible servers before doing anything, so it *should* be ours.
345 (and (process-contact proc :server)
346 (eq (process-status proc) 'closed)
347 (ignore-errors (delete-file (process-get proc :server-file))))
348 (server-log (format "Status changed to %s: %s" (process-status proc) msg) proc)
349 (server-delete-client proc))
350
351 (defun server-select-display (display)
352 ;; If the current frame is on `display' we're all set.
353 ;; Similarly if we are unable to open frames on other displays, there's
354 ;; nothing more we can do.
355 (unless (or (not (fboundp 'make-frame-on-display))
356 (equal (frame-parameter (selected-frame) 'display) display))
357 ;; Otherwise, look for an existing frame there and select it.
358 (dolist (frame (frame-list))
359 (when (equal (frame-parameter frame 'display) display)
360 (select-frame frame)))
361 ;; If there's no frame on that display yet, create and select one.
362 (unless (equal (frame-parameter (selected-frame) 'display) display)
363 (let* ((buffer (generate-new-buffer " *server-dummy*"))
364 (frame (make-frame-on-display
365 display
366 ;; Make it display (and remember) some dummy buffer, so
367 ;; we can detect later if the frame is in use or not.
368 `((server-dummy-buffer . ,buffer)
369 ;; This frame may be deleted later (see
370 ;; server-unselect-display) so we want it to be as
371 ;; unobtrusive as possible.
372 (visibility . nil)))))
373 (select-frame frame)
374 (set-window-buffer (selected-window) buffer)
375 frame))))
376
377 (defun server-unselect-display (frame)
378 (when (frame-live-p frame)
379 ;; If the temporary frame is in use (displays something real), make it
380 ;; visible. If not (which can happen if the user's customizations call
381 ;; pop-to-buffer etc.), delete it to avoid preserving the connection after
382 ;; the last real frame is deleted.
383 (if (and (eq (frame-first-window frame)
384 (next-window (frame-first-window frame) 'nomini))
385 (eq (window-buffer (frame-first-window frame))
386 (frame-parameter frame 'server-dummy-buffer)))
387 ;; The temp frame still only shows one buffer, and that is the
388 ;; internal temp buffer.
389 (delete-frame frame)
390 (set-frame-parameter frame 'visibility t))
391 (kill-buffer (frame-parameter frame 'server-dummy-buffer))
392 (set-frame-parameter frame 'server-dummy-buffer nil)))
393
394 (defun server-handle-delete-frame (frame)
395 "Delete the client connection when the emacsclient frame is deleted.
396 \(To be used from `delete-frame-functions'.)"
397 (let ((proc (frame-parameter frame 'client)))
398 (when (and (frame-live-p frame)
399 proc
400 ;; See if this is the last frame for this client.
401 (>= 1 (let ((frame-num 0))
402 (dolist (f (frame-list))
403 (when (eq proc (frame-parameter f 'client))
404 (setq frame-num (1+ frame-num))))
405 frame-num)))
406 (server-log (format "server-handle-delete-frame, frame %s" frame) proc)
407 (server-delete-client proc 'noframe)))) ; Let delete-frame delete the frame later.
408
409 (defun server-handle-suspend-tty (terminal)
410 "Notify the emacsclient process to suspend itself when its tty device is suspended."
411 (dolist (proc (server-clients-with 'terminal terminal))
412 (server-log (format "server-handle-suspend-tty, terminal %s" terminal) proc)
413 (condition-case err
414 (server-send-string proc "-suspend \n")
415 (file-error ;The pipe/socket was closed.
416 (ignore-errors (server-delete-client proc))))))
417
418 (defun server-unquote-arg (arg)
419 "Remove &-quotation from ARG.
420 See `server-quote-arg' and `server-process-filter'."
421 (replace-regexp-in-string
422 "&." (lambda (s)
423 (case (aref s 1)
424 (?& "&")
425 (?- "-")
426 (?n "\n")
427 (t " ")))
428 arg t t))
429
430 (defun server-quote-arg (arg)
431 "In ARG, insert a & before each &, each space, each newline, and -.
432 Change spaces to underscores, too, so that the return value never
433 contains a space.
434
435 See `server-unquote-arg' and `server-process-filter'."
436 (replace-regexp-in-string
437 "[-&\n ]" (lambda (s)
438 (case (aref s 0)
439 (?& "&&")
440 (?- "&-")
441 (?\n "&n")
442 (?\s "&_")))
443 arg t t))
444
445 (defun server-send-string (proc string)
446 "A wrapper around `process-send-string' for logging."
447 (server-log (concat "Sent " string) proc)
448 (process-send-string proc string))
449
450 (defun server-ensure-safe-dir (dir)
451 "Make sure DIR is a directory with no race-condition issues.
452 Creates the directory if necessary and makes sure:
453 - there's no symlink involved
454 - it's owned by us
455 - it's not readable/writable by anybody else."
456 (setq dir (directory-file-name dir))
457 (let ((attrs (file-attributes dir 'integer)))
458 (unless attrs
459 (letf (((default-file-modes) ?\700)) (make-directory dir t))
460 (setq attrs (file-attributes dir 'integer)))
461
462 ;; Check that it's safe for use.
463 (let* ((uid (nth 2 attrs))
464 (w32 (eq system-type 'windows-nt))
465 (safe (catch :safe
466 (unless (eq t (car attrs)) ; is a dir?
467 (throw :safe nil))
468 (when (and w32 (zerop uid)) ; on FAT32?
469 (display-warning
470 'server
471 (format "Using `%s' to store Emacs-server authentication files.
472 Directories on FAT32 filesystems are NOT secure against tampering.
473 See variable `server-auth-dir' for details."
474 (file-name-as-directory dir))
475 :warning)
476 (throw :safe t))
477 (unless (eql uid (user-uid)) ; is the dir ours?
478 (throw :safe nil))
479 (when w32 ; on NTFS?
480 (throw :safe t))
481 (unless (zerop (logand ?\077 (file-modes dir)))
482 (throw :safe nil))
483 t)))
484 (unless safe
485 (error "The directory `%s' is unsafe" dir)))))
486
487 ;;;###autoload
488 (defun server-start (&optional leave-dead inhibit-prompt)
489 "Allow this Emacs process to be a server for client processes.
490 This starts a server communications subprocess through which
491 client \"editors\" can send your editing commands to this Emacs
492 job. To use the server, set up the program `emacsclient' in the
493 Emacs distribution as your standard \"editor\".
494
495 Optional argument LEAVE-DEAD (interactively, a prefix arg) means just
496 kill any existing server communications subprocess.
497
498 If a server is already running, restart it. If clients are
499 running, ask the user for confirmation first, unless optional
500 argument INHIBIT-PROMPT is non-nil.
501
502 To force-start a server, do \\[server-force-delete] and then
503 \\[server-start]."
504 (interactive "P")
505 (when (or (not server-clients)
506 ;; Ask the user before deleting existing clients---except
507 ;; when we can't get user input, which may happen when
508 ;; doing emacsclient --eval "(kill-emacs)" in daemon mode.
509 (cond
510 ((and (daemonp)
511 (null (cdr (frame-list)))
512 (eq (selected-frame) terminal-frame))
513 leave-dead)
514 (inhibit-prompt t)
515 (t (yes-or-no-p
516 "The current server still has clients; delete them? "))))
517 (let* ((server-dir (if server-use-tcp server-auth-dir server-socket-dir))
518 (server-file (expand-file-name server-name server-dir)))
519 (when server-process
520 ;; kill it dead!
521 (ignore-errors (delete-process server-process)))
522 ;; Delete the socket files made by previous server invocations.
523 (if (not (eq t (server-running-p server-name)))
524 ;; Remove any leftover socket or authentication file
525 (ignore-errors (delete-file server-file))
526 (setq server-mode nil) ;; already set by the minor mode code
527 (display-warning
528 'server
529 (concat "Unable to start the Emacs server.\n"
530 (format "There is an existing Emacs server, named %S.\n"
531 server-name)
532 "To start the server in this Emacs process, stop the existing
533 server or call `M-x server-force-delete' to forcibly disconnect it.")
534 :warning)
535 (setq leave-dead t))
536 ;; If this Emacs already had a server, clear out associated status.
537 (while server-clients
538 (server-delete-client (car server-clients)))
539 ;; Now any previous server is properly stopped.
540 (if leave-dead
541 (progn
542 (unless (eq t leave-dead) (server-log (message "Server stopped")))
543 (setq server-process nil))
544 ;; Make sure there is a safe directory in which to place the socket.
545 (server-ensure-safe-dir server-dir)
546 (when server-process
547 (server-log (message "Restarting server")))
548 (letf (((default-file-modes) ?\700))
549 (add-hook 'suspend-tty-functions 'server-handle-suspend-tty)
550 (add-hook 'delete-frame-functions 'server-handle-delete-frame)
551 (add-hook 'kill-buffer-query-functions 'server-kill-buffer-query-function)
552 (add-hook 'kill-emacs-query-functions 'server-kill-emacs-query-function)
553 (add-hook 'kill-emacs-hook 'server-force-stop) ;Cleanup upon exit.
554 (setq server-process
555 (apply #'make-network-process
556 :name server-name
557 :server t
558 :noquery t
559 :sentinel 'server-sentinel
560 :filter 'server-process-filter
561 ;; We must receive file names without being decoded.
562 ;; Those are decoded by server-process-filter according
563 ;; to file-name-coding-system. Also don't get
564 ;; confused by CRs since we don't quote them.
565 :coding 'raw-text-unix
566 ;; The other args depend on the kind of socket used.
567 (if server-use-tcp
568 (list :family 'ipv4 ;; We're not ready for IPv6 yet
569 :service t
570 :host (or server-host "127.0.0.1") ;; See bug#6781
571 :plist '(:authenticated nil))
572 (list :family 'local
573 :service server-file
574 :plist '(:authenticated t)))))
575 (unless server-process (error "Could not start server process"))
576 (process-put server-process :server-file server-file)
577 (when server-use-tcp
578 (let ((auth-key
579 (loop
580 ;; The auth key is a 64-byte string of random chars in the
581 ;; range `!'..`~'.
582 for i below 64
583 collect (+ 33 (random 94)) into auth
584 finally return (concat auth))))
585 (process-put server-process :auth-key auth-key)
586 (with-temp-file server-file
587 (set-buffer-multibyte nil)
588 (setq buffer-file-coding-system 'no-conversion)
589 (insert (format-network-address
590 (process-contact server-process :local))
591 " " (int-to-string (emacs-pid))
592 "\n" auth-key)))))))))
593
594 (defun server-force-stop ()
595 "Kill all connections to the current server.
596 This function is meant to be called from `kill-emacs-hook'."
597 (server-start nil t))
598
599 ;;;###autoload
600 (defun server-force-delete (&optional name)
601 "Unconditionally delete connection file for server NAME.
602 If server is running, it is first stopped.
603 NAME defaults to `server-name'. With argument, ask for NAME."
604 (interactive
605 (list (if current-prefix-arg
606 (read-string "Server name: " nil nil server-name))))
607 (when server-mode (with-temp-message nil (server-mode -1)))
608 (let ((file (expand-file-name (or name server-name)
609 (if server-use-tcp
610 server-auth-dir
611 server-socket-dir))))
612 (condition-case nil
613 (progn
614 (delete-file file)
615 (message "Connection file %S deleted" file))
616 (file-error
617 (message "No connection file %S" file)))))
618
619 (defun server-running-p (&optional name)
620 "Test whether server NAME is running.
621
622 Return values:
623 nil the server is definitely not running.
624 t the server seems to be running.
625 something else we cannot determine whether it's running without using
626 commands which may have to wait for a long time."
627 (unless name (setq name server-name))
628 (condition-case nil
629 (if server-use-tcp
630 (with-temp-buffer
631 (insert-file-contents-literally (expand-file-name name server-auth-dir))
632 (or (and (looking-at "127\\.0\\.0\\.1:[0-9]+ \\([0-9]+\\)")
633 (assq 'comm
634 (process-attributes
635 (string-to-number (match-string 1))))
636 t)
637 :other))
638 (delete-process
639 (make-network-process
640 :name "server-client-test" :family 'local :server nil :noquery t
641 :service (expand-file-name name server-socket-dir)))
642 t)
643 (file-error nil)))
644
645 ;;;###autoload
646 (define-minor-mode server-mode
647 "Toggle Server mode.
648 With ARG, turn Server mode on if ARG is positive, off otherwise.
649 Server mode runs a process that accepts commands from the
650 `emacsclient' program. See `server-start' and Info node `Emacs server'."
651 :global t
652 :group 'server
653 :version "22.1"
654 ;; Fixme: Should this check for an existing server socket and do
655 ;; nothing if there is one (for multiple Emacs sessions)?
656 (server-start (not server-mode)))
657 \f
658 (defun server-eval-and-print (expr proc)
659 "Eval EXPR and send the result back to client PROC."
660 (let ((v (eval (car (read-from-string expr)))))
661 (when (and v proc)
662 (with-temp-buffer
663 (let ((standard-output (current-buffer)))
664 (pp v)
665 (let ((text (buffer-substring-no-properties
666 (point-min) (point-max))))
667 (server-send-string
668 proc (format "-print %s\n"
669 (server-quote-arg text)))))))))
670
671 (defun server-create-tty-frame (tty type proc)
672 (unless tty
673 (error "Invalid terminal device"))
674 (unless type
675 (error "Invalid terminal type"))
676 (add-to-list 'frame-inherited-parameters 'client)
677 (let ((frame
678 (server-with-environment (process-get proc 'env)
679 '("LANG" "LC_CTYPE" "LC_ALL"
680 ;; For tgetent(3); list according to ncurses(3).
681 "BAUDRATE" "COLUMNS" "ESCDELAY" "HOME" "LINES"
682 "NCURSES_ASSUMED_COLORS" "NCURSES_NO_PADDING"
683 "NCURSES_NO_SETBUF" "TERM" "TERMCAP" "TERMINFO"
684 "TERMINFO_DIRS" "TERMPATH"
685 ;; rxvt wants these
686 "COLORFGBG" "COLORTERM")
687 (make-frame `((window-system . nil)
688 (tty . ,tty)
689 (tty-type . ,type)
690 ;; Ignore nowait here; we always need to
691 ;; clean up opened ttys when the client dies.
692 (client . ,proc)
693 ;; This is a leftover from an earlier
694 ;; attempt at making it possible for process
695 ;; run in the server process to use the
696 ;; environment of the client process.
697 ;; It has no effect now and to make it work
698 ;; we'd need to decide how to make
699 ;; process-environment interact with client
700 ;; envvars, and then to change the
701 ;; C functions `child_setup' and
702 ;; `getenv_internal' accordingly.
703 (environment . ,(process-get proc 'env)))))))
704
705 ;; ttys don't use the `display' parameter, but callproc.c does to set
706 ;; the DISPLAY environment on subprocesses.
707 (set-frame-parameter frame 'display
708 (getenv-internal "DISPLAY" (process-get proc 'env)))
709 (select-frame frame)
710 (process-put proc 'frame frame)
711 (process-put proc 'terminal (frame-terminal frame))
712
713 ;; Display *scratch* by default.
714 (switch-to-buffer (get-buffer-create "*scratch*") 'norecord)
715
716 ;; Reply with our pid.
717 (server-send-string proc (concat "-emacs-pid "
718 (number-to-string (emacs-pid)) "\n"))
719 frame))
720
721 (defun server-create-window-system-frame (display nowait proc)
722 (add-to-list 'frame-inherited-parameters 'client)
723 (if (not (fboundp 'make-frame-on-display))
724 (progn
725 ;; This emacs does not support X.
726 (server-log "Window system unsupported" proc)
727 (server-send-string proc "-window-system-unsupported \n")
728 nil)
729 ;; Flag frame as client-created, but use a dummy client.
730 ;; This will prevent the frame from being deleted when
731 ;; emacsclient quits while also preventing
732 ;; `server-save-buffers-kill-terminal' from unexpectedly
733 ;; killing emacs on that frame.
734 (let* ((params `((client . ,(if nowait 'nowait proc))
735 ;; This is a leftover, see above.
736 (environment . ,(process-get proc 'env))))
737 (frame (make-frame-on-display
738 (or display
739 (frame-parameter nil 'display)
740 (getenv "DISPLAY")
741 (error "Please specify display"))
742 params)))
743 (server-log (format "%s created" frame) proc)
744 (select-frame frame)
745 (process-put proc 'frame frame)
746 (process-put proc 'terminal (frame-terminal frame))
747
748 ;; Display *scratch* by default.
749 (switch-to-buffer (get-buffer-create "*scratch*") 'norecord)
750 frame)))
751
752 (defun server-goto-toplevel (proc)
753 (condition-case nil
754 ;; If we're running isearch, we must abort it to allow Emacs to
755 ;; display the buffer and switch to it.
756 (dolist (buffer (buffer-list))
757 (with-current-buffer buffer
758 (when (bound-and-true-p isearch-mode)
759 (isearch-cancel))))
760 ;; Signaled by isearch-cancel.
761 (quit (message nil)))
762 (when (> (recursion-depth) 0)
763 ;; We're inside a minibuffer already, so if the emacs-client is trying
764 ;; to open a frame on a new display, we might end up with an unusable
765 ;; frame because input from that display will be blocked (until exiting
766 ;; the minibuffer). Better exit this minibuffer right away.
767 ;; Similarly with recursive-edits such as the splash screen.
768 (run-with-timer 0 nil (lexical-let ((proc proc))
769 (lambda () (server-execute-continuation proc))))
770 (top-level)))
771
772 ;; We use various special properties on process objects:
773 ;; - `env' stores the info about the environment of the emacsclient process.
774 ;; - `continuation' is a no-arg function that we need to execute. It contains
775 ;; commands we wanted to execute in some earlier invocation of the process
776 ;; filter but that we somehow were unable to process at that time
777 ;; (e.g. because we first need to throw to the toplevel).
778
779 (defun server-execute-continuation (proc)
780 (let ((continuation (process-get proc 'continuation)))
781 (process-put proc 'continuation nil)
782 (if continuation (ignore-errors (funcall continuation)))))
783
784 (defun* server-process-filter (proc string)
785 "Process a request from the server to edit some files.
786 PROC is the server process. STRING consists of a sequence of
787 commands prefixed by a dash. Some commands have arguments;
788 these are &-quoted and need to be decoded by `server-unquote-arg'.
789 The filter parses and executes these commands.
790
791 To illustrate the protocol, here is an example command that
792 emacsclient sends to create a new X frame (note that the whole
793 sequence is sent on a single line):
794
795 -env HOME=/home/lorentey
796 -env DISPLAY=:0.0
797 ... lots of other -env commands
798 -display :0.0
799 -window-system
800
801 The following commands are accepted by the server:
802
803 `-auth AUTH-STRING'
804 Authenticate the client using the secret authentication string
805 AUTH-STRING.
806
807 `-env NAME=VALUE'
808 An environment variable on the client side.
809
810 `-dir DIRNAME'
811 The current working directory of the client process.
812
813 `-current-frame'
814 Forbid the creation of new frames.
815
816 `-nowait'
817 Request that the next frame created should not be
818 associated with this client.
819
820 `-display DISPLAY'
821 Set the display name to open X frames on.
822
823 `-position LINE[:COLUMN]'
824 Go to the given line and column number
825 in the next file opened.
826
827 `-file FILENAME'
828 Load the given file in the current frame.
829
830 `-eval EXPR'
831 Evaluate EXPR as a Lisp expression and return the
832 result in -print commands.
833
834 `-window-system'
835 Open a new X frame.
836
837 `-tty DEVICENAME TYPE'
838 Open a new tty frame at the client.
839
840 `-suspend'
841 Suspend this tty frame. The client sends this string in
842 response to SIGTSTP and SIGTTOU. The server must cease all I/O
843 on this tty until it gets a -resume command.
844
845 `-resume'
846 Resume this tty frame. The client sends this string when it
847 gets the SIGCONT signal and it is the foreground process on its
848 controlling tty.
849
850 `-ignore COMMENT'
851 Do nothing, but put the comment in the server log.
852 Useful for debugging.
853
854
855 The following commands are accepted by the client:
856
857 `-emacs-pid PID'
858 Describes the process id of the Emacs process;
859 used to forward window change signals to it.
860
861 `-window-system-unsupported'
862 Signals that the server does not support creating X frames;
863 the client must try again with a tty frame.
864
865 `-print STRING'
866 Print STRING on stdout. Used to send values
867 returned by -eval.
868
869 `-error DESCRIPTION'
870 Signal an error and delete process PROC.
871
872 `-suspend'
873 Suspend this terminal, i.e., stop the client process.
874 Sent when the user presses C-z."
875 (server-log (concat "Received " string) proc)
876 ;; First things first: let's check the authentication
877 (unless (process-get proc :authenticated)
878 (if (and (string-match "-auth \\([!-~]+\\)\n?" string)
879 (equal (match-string 1 string) (process-get proc :auth-key)))
880 (progn
881 (setq string (substring string (match-end 0)))
882 (process-put proc :authenticated t)
883 (server-log "Authentication successful" proc))
884 (server-log "Authentication failed" proc)
885 (server-send-string
886 proc (concat "-error " (server-quote-arg "Authentication failed")))
887 (delete-process proc)
888 ;; We return immediately
889 (return-from server-process-filter)))
890 (let ((prev (process-get proc 'previous-string)))
891 (when prev
892 (setq string (concat prev string))
893 (process-put proc 'previous-string nil)))
894 (condition-case err
895 (progn
896 (server-add-client proc)
897 (if (not (string-match "\n" string))
898 ;; Save for later any partial line that remains.
899 (when (> (length string) 0)
900 (process-put proc 'previous-string string))
901
902 ;; In earlier versions of server.el (where we used an `emacsserver'
903 ;; process), there could be multiple lines. Nowadays this is not
904 ;; supported any more.
905 (assert (eq (match-end 0) (length string)))
906 (let ((request (substring string 0 (match-beginning 0)))
907 (coding-system (and (default-value 'enable-multibyte-characters)
908 (or file-name-coding-system
909 default-file-name-coding-system)))
910 nowait ; t if emacsclient does not want to wait for us.
911 frame ; The frame that was opened for the client (if any).
912 display ; Open the frame on this display.
913 dontkill ; t if the client should not be killed.
914 commands
915 dir
916 use-current-frame
917 tty-name ;nil, `window-system', or the tty name.
918 tty-type ;string.
919 files
920 filepos
921 command-line-args-left
922 arg)
923 ;; Remove this line from STRING.
924 (setq string (substring string (match-end 0)))
925 (setq command-line-args-left
926 (mapcar 'server-unquote-arg (split-string request " " t)))
927 (while (setq arg (pop command-line-args-left))
928 (cond
929 ;; -version CLIENT-VERSION: obsolete at birth.
930 ((and (equal "-version" arg) command-line-args-left)
931 (pop command-line-args-left))
932
933 ;; -nowait: Emacsclient won't wait for a result.
934 ((equal "-nowait" arg) (setq nowait t))
935
936 ;; -current-frame: Don't create frames.
937 ((equal "-current-frame" arg) (setq use-current-frame t))
938
939 ;; -display DISPLAY:
940 ;; Open X frames on the given display instead of the default.
941 ((and (equal "-display" arg) command-line-args-left)
942 (setq display (pop command-line-args-left))
943 (if (zerop (length display)) (setq display nil)))
944
945 ;; -window-system: Open a new X frame.
946 ((equal "-window-system" arg)
947 (setq dontkill t)
948 (setq tty-name 'window-system))
949
950 ;; -resume: Resume a suspended tty frame.
951 ((equal "-resume" arg)
952 (lexical-let ((terminal (process-get proc 'terminal)))
953 (setq dontkill t)
954 (push (lambda ()
955 (when (eq (terminal-live-p terminal) t)
956 (resume-tty terminal)))
957 commands)))
958
959 ;; -suspend: Suspend the client's frame. (In case we
960 ;; get out of sync, and a C-z sends a SIGTSTP to
961 ;; emacsclient.)
962 ((equal "-suspend" arg)
963 (lexical-let ((terminal (process-get proc 'terminal)))
964 (setq dontkill t)
965 (push (lambda ()
966 (when (eq (terminal-live-p terminal) t)
967 (suspend-tty terminal)))
968 commands)))
969
970 ;; -ignore COMMENT: Noop; useful for debugging emacsclient.
971 ;; (The given comment appears in the server log.)
972 ((and (equal "-ignore" arg) command-line-args-left
973 (setq dontkill t)
974 (pop command-line-args-left)))
975
976 ;; -tty DEVICE-NAME TYPE: Open a new tty frame at the client.
977 ((and (equal "-tty" arg)
978 (cdr command-line-args-left))
979 (setq tty-name (pop command-line-args-left)
980 tty-type (pop command-line-args-left)
981 dontkill (or dontkill
982 (not use-current-frame))))
983
984 ;; -position LINE[:COLUMN]: Set point to the given
985 ;; position in the next file.
986 ((and (equal "-position" arg)
987 command-line-args-left
988 (string-match "\\+\\([0-9]+\\)\\(?::\\([0-9]+\\)\\)?"
989 (car command-line-args-left)))
990 (setq arg (pop command-line-args-left))
991 (setq filepos
992 (cons (string-to-number (match-string 1 arg))
993 (string-to-number (or (match-string 2 arg) "")))))
994
995 ;; -file FILENAME: Load the given file.
996 ((and (equal "-file" arg)
997 command-line-args-left)
998 (let ((file (pop command-line-args-left)))
999 (if coding-system
1000 (setq file (decode-coding-string file coding-system)))
1001 (setq file (expand-file-name file dir))
1002 (push (cons file filepos) files)
1003 (server-log (format "New file: %s %s"
1004 file (or filepos "")) proc))
1005 (setq filepos nil))
1006
1007 ;; -eval EXPR: Evaluate a Lisp expression.
1008 ((and (equal "-eval" arg)
1009 command-line-args-left)
1010 (if use-current-frame
1011 (setq use-current-frame 'always))
1012 (lexical-let ((expr (pop command-line-args-left)))
1013 (if coding-system
1014 (setq expr (decode-coding-string expr coding-system)))
1015 (push (lambda () (server-eval-and-print expr proc))
1016 commands)
1017 (setq filepos nil)))
1018
1019 ;; -env NAME=VALUE: An environment variable.
1020 ((and (equal "-env" arg) command-line-args-left)
1021 (let ((var (pop command-line-args-left)))
1022 ;; XXX Variables should be encoded as in getenv/setenv.
1023 (process-put proc 'env
1024 (cons var (process-get proc 'env)))))
1025
1026 ;; -dir DIRNAME: The cwd of the emacsclient process.
1027 ((and (equal "-dir" arg) command-line-args-left)
1028 (setq dir (pop command-line-args-left))
1029 (if coding-system
1030 (setq dir (decode-coding-string dir coding-system)))
1031 (setq dir (command-line-normalize-file-name dir)))
1032
1033 ;; Unknown command.
1034 (t (error "Unknown command: %s" arg))))
1035
1036 (setq frame
1037 (cond
1038 ((and use-current-frame
1039 (or (eq use-current-frame 'always)
1040 ;; We can't use the Emacs daemon's
1041 ;; terminal frame.
1042 (not (and (daemonp)
1043 (null (cdr (frame-list)))
1044 (eq (selected-frame)
1045 terminal-frame)))))
1046 (setq tty-name nil tty-type nil)
1047 (if display (server-select-display display)))
1048 ((eq tty-name 'window-system)
1049 (server-create-window-system-frame display nowait proc))
1050 ;; When resuming on a tty, tty-name is nil.
1051 (tty-name
1052 (server-create-tty-frame tty-name tty-type proc))))
1053
1054 (process-put
1055 proc 'continuation
1056 (lexical-let ((proc proc)
1057 (files files)
1058 (nowait nowait)
1059 (commands commands)
1060 (dontkill dontkill)
1061 (frame frame)
1062 (dir dir)
1063 (tty-name tty-name))
1064 (lambda ()
1065 (with-current-buffer (get-buffer-create server-buffer)
1066 ;; Use the same cwd as the emacsclient, if possible, so
1067 ;; relative file names work correctly, even in `eval'.
1068 (let ((default-directory
1069 (if (and dir (file-directory-p dir))
1070 dir default-directory)))
1071 (server-execute proc files nowait commands
1072 dontkill frame tty-name))))))
1073
1074 (when (or frame files)
1075 (server-goto-toplevel proc))
1076
1077 (server-execute-continuation proc))))
1078 ;; condition-case
1079 (error (server-return-error proc err))))
1080
1081 (defun server-execute (proc files nowait commands dontkill frame tty-name)
1082 ;; This is run from timers and process-filters, i.e. "asynchronously".
1083 ;; But w.r.t the user, this is not really asynchronous since the timer
1084 ;; is run after 0s and the process-filter is run in response to the
1085 ;; user running `emacsclient'. So it is OK to override the
1086 ;; inhibit-quit flag, which is good since `commands' (as well as
1087 ;; find-file-noselect via the major-mode) can run arbitrary code,
1088 ;; including code that needs to wait.
1089 (with-local-quit
1090 (condition-case err
1091 (let* ((buffers
1092 (when files
1093 (run-hooks 'pre-command-hook)
1094 (prog1 (server-visit-files files proc nowait)
1095 (run-hooks 'post-command-hook)))))
1096
1097 (mapc 'funcall (nreverse commands))
1098
1099 ;; Delete the client if necessary.
1100 (cond
1101 (nowait
1102 ;; Client requested nowait; return immediately.
1103 (server-log "Close nowait client" proc)
1104 (server-delete-client proc))
1105 ((and (not dontkill) (null buffers))
1106 ;; This client is empty; get rid of it immediately.
1107 (server-log "Close empty client" proc)
1108 (server-delete-client proc)))
1109 (cond
1110 ((or isearch-mode (minibufferp))
1111 nil)
1112 ((and frame (null buffers))
1113 (message "%s" (substitute-command-keys
1114 "When done with this frame, type \\[delete-frame]")))
1115 ((not (null buffers))
1116 (server-switch-buffer (car buffers) nil (cdr (car files)))
1117 (run-hooks 'server-switch-hook)
1118 (unless nowait
1119 (message "%s" (substitute-command-keys
1120 "When done with a buffer, type \\[server-edit]")))))
1121 (when (and frame (null tty-name))
1122 (server-unselect-display frame)))
1123 (error (server-return-error proc err)))))
1124
1125 (defun server-return-error (proc err)
1126 (ignore-errors
1127 (server-send-string
1128 proc (concat "-error " (server-quote-arg
1129 (error-message-string err))))
1130 (server-log (error-message-string err) proc)
1131 (delete-process proc)))
1132
1133 (defun server-goto-line-column (line-col)
1134 "Move point to the position indicated in LINE-COL.
1135 LINE-COL should be a pair (LINE . COL)."
1136 (when line-col
1137 (goto-char (point-min))
1138 (forward-line (1- (car line-col)))
1139 (let ((column-number (cdr line-col)))
1140 (when (> column-number 0)
1141 (move-to-column (1- column-number))))))
1142
1143 (defun server-visit-files (files proc &optional nowait)
1144 "Find FILES and return a list of buffers created.
1145 FILES is an alist whose elements are (FILENAME . FILEPOS)
1146 where FILEPOS can be nil or a pair (LINENUMBER . COLUMNNUMBER).
1147 PROC is the client that requested this operation.
1148 NOWAIT non-nil means this client is not waiting for the results,
1149 so don't mark these buffers specially, just visit them normally."
1150 ;; Bind last-nonmenu-event to force use of keyboard, not mouse, for queries.
1151 (let ((last-nonmenu-event t) client-record)
1152 ;; Restore the current buffer afterward, but not using save-excursion,
1153 ;; because we don't want to save point in this buffer
1154 ;; if it happens to be one of those specified by the server.
1155 (save-current-buffer
1156 (dolist (file files)
1157 ;; If there is an existing buffer modified or the file is
1158 ;; modified, revert it. If there is an existing buffer with
1159 ;; deleted file, offer to write it.
1160 (let* ((minibuffer-auto-raise (or server-raise-frame
1161 minibuffer-auto-raise))
1162 (filen (car file))
1163 (obuf (get-file-buffer filen)))
1164 (add-to-history 'file-name-history filen)
1165 (if (null obuf)
1166 (set-buffer (find-file-noselect filen))
1167 (set-buffer obuf)
1168 (cond ((file-exists-p filen)
1169 (when (not (verify-visited-file-modtime obuf))
1170 (revert-buffer t nil)))
1171 (t
1172 (when (y-or-n-p
1173 (concat "File no longer exists: " filen
1174 ", write buffer to file? "))
1175 (write-file filen))))
1176 (unless server-buffer-clients
1177 (setq server-existing-buffer t)))
1178 (server-goto-line-column (cdr file))
1179 (run-hooks 'server-visit-hook))
1180 (unless nowait
1181 ;; When the buffer is killed, inform the clients.
1182 (add-hook 'kill-buffer-hook 'server-kill-buffer nil t)
1183 (push proc server-buffer-clients))
1184 (push (current-buffer) client-record)))
1185 (unless nowait
1186 (process-put proc 'buffers
1187 (nconc (process-get proc 'buffers) client-record)))
1188 client-record))
1189 \f
1190 (defun server-buffer-done (buffer &optional for-killing)
1191 "Mark BUFFER as \"done\" for its client(s).
1192 This buries the buffer, then returns a list of the form (NEXT-BUFFER KILLED).
1193 NEXT-BUFFER is another server buffer, as a suggestion for what to select next,
1194 or nil. KILLED is t if we killed BUFFER (typically, because it was visiting
1195 a temp file).
1196 FOR-KILLING if non-nil indicates that we are called from `kill-buffer'."
1197 (let ((next-buffer nil)
1198 (killed nil))
1199 (dolist (proc server-clients)
1200 (let ((buffers (process-get proc 'buffers)))
1201 (or next-buffer
1202 (setq next-buffer (nth 1 (memq buffer buffers))))
1203 (when buffers ; Ignore bufferless clients.
1204 (setq buffers (delq buffer buffers))
1205 ;; Delete all dead buffers from PROC.
1206 (dolist (b buffers)
1207 (and (bufferp b)
1208 (not (buffer-live-p b))
1209 (setq buffers (delq b buffers))))
1210 (process-put proc 'buffers buffers)
1211 ;; If client now has no pending buffers,
1212 ;; tell it that it is done, and forget it entirely.
1213 (unless buffers
1214 (server-log "Close" proc)
1215 (if for-killing
1216 ;; `server-delete-client' might delete the client's
1217 ;; frames, which might change the current buffer. We
1218 ;; don't want that (bug#640).
1219 (save-current-buffer
1220 (server-delete-client proc))
1221 (server-delete-client proc))))))
1222 (when (and (bufferp buffer) (buffer-name buffer))
1223 ;; We may or may not kill this buffer;
1224 ;; if we do, do not call server-buffer-done recursively
1225 ;; from kill-buffer-hook.
1226 (let ((server-kill-buffer-running t))
1227 (with-current-buffer buffer
1228 (setq server-buffer-clients nil)
1229 (run-hooks 'server-done-hook))
1230 ;; Notice whether server-done-hook killed the buffer.
1231 (if (null (buffer-name buffer))
1232 (setq killed t)
1233 ;; Don't bother killing or burying the buffer
1234 ;; when we are called from kill-buffer.
1235 (unless for-killing
1236 (when (and (not killed)
1237 server-kill-new-buffers
1238 (with-current-buffer buffer
1239 (not server-existing-buffer)))
1240 (setq killed t)
1241 (bury-buffer buffer)
1242 ;; Prevent kill-buffer from prompting (Bug#3696).
1243 (with-current-buffer buffer
1244 (set-buffer-modified-p nil))
1245 (kill-buffer buffer))
1246 (unless killed
1247 (if (server-temp-file-p buffer)
1248 (progn
1249 (with-current-buffer buffer
1250 (set-buffer-modified-p nil))
1251 (kill-buffer buffer)
1252 (setq killed t))
1253 (bury-buffer buffer)))))))
1254 (list next-buffer killed)))
1255
1256 (defun server-temp-file-p (&optional buffer)
1257 "Return non-nil if BUFFER contains a file considered temporary.
1258 These are files whose names suggest they are repeatedly
1259 reused to pass information to another program.
1260
1261 The variable `server-temp-file-regexp' controls which filenames
1262 are considered temporary."
1263 (and (buffer-file-name buffer)
1264 (string-match-p server-temp-file-regexp (buffer-file-name buffer))))
1265
1266 (defun server-done ()
1267 "Offer to save current buffer, mark it as \"done\" for clients.
1268 This kills or buries the buffer, then returns a list
1269 of the form (NEXT-BUFFER KILLED). NEXT-BUFFER is another server buffer,
1270 as a suggestion for what to select next, or nil.
1271 KILLED is t if we killed BUFFER, which happens if it was created
1272 specifically for the clients and did not exist before their request for it."
1273 (when server-buffer-clients
1274 (if (server-temp-file-p)
1275 ;; For a temp file, save, and do make a non-numeric backup
1276 ;; (unless make-backup-files is nil).
1277 (let ((version-control nil)
1278 (buffer-backed-up nil))
1279 (save-buffer))
1280 (when (and (buffer-modified-p)
1281 buffer-file-name
1282 (y-or-n-p (concat "Save file " buffer-file-name "? ")))
1283 (save-buffer)))
1284 (server-buffer-done (current-buffer))))
1285
1286 ;; Ask before killing a server buffer.
1287 ;; It was suggested to release its client instead,
1288 ;; but I think that is dangerous--the client would proceed
1289 ;; using whatever is on disk in that file. -- rms.
1290 (defun server-kill-buffer-query-function ()
1291 "Ask before killing a server buffer."
1292 (or (not server-buffer-clients)
1293 (let ((res t))
1294 (dolist (proc server-buffer-clients res)
1295 (when (and (memq proc server-clients)
1296 (eq (process-status proc) 'open))
1297 (setq res nil))))
1298 (yes-or-no-p (format "Buffer `%s' still has clients; kill it? "
1299 (buffer-name (current-buffer))))))
1300
1301 (defun server-kill-emacs-query-function ()
1302 "Ask before exiting Emacs if it has live clients."
1303 (or (not server-clients)
1304 (let (live-client)
1305 (dolist (proc server-clients live-client)
1306 (when (memq t (mapcar 'buffer-live-p (process-get
1307 proc 'buffers)))
1308 (setq live-client t))))
1309 (yes-or-no-p "This Emacs session has clients; exit anyway? ")))
1310
1311 (defvar server-kill-buffer-running nil
1312 "Non-nil while `server-kill-buffer' or `server-buffer-done' is running.")
1313
1314 (defun server-kill-buffer ()
1315 "Remove the current buffer from its clients' buffer list.
1316 Designed to be added to `kill-buffer-hook'."
1317 ;; Prevent infinite recursion if user has made server-done-hook
1318 ;; call kill-buffer.
1319 (or server-kill-buffer-running
1320 (and server-buffer-clients
1321 (let ((server-kill-buffer-running t))
1322 (when server-process
1323 (server-buffer-done (current-buffer) t))))))
1324 \f
1325 (defun server-edit (&optional arg)
1326 "Switch to next server editing buffer; say \"Done\" for current buffer.
1327 If a server buffer is current, it is marked \"done\" and optionally saved.
1328 The buffer is also killed if it did not exist before the clients asked for it.
1329 When all of a client's buffers are marked as \"done\", the client is notified.
1330
1331 Temporary files such as MH <draft> files are always saved and backed up,
1332 no questions asked. (The variable `make-backup-files', if nil, still
1333 inhibits a backup; you can set it locally in a particular buffer to
1334 prevent a backup for it.) The variable `server-temp-file-regexp' controls
1335 which filenames are considered temporary.
1336
1337 If invoked with a prefix argument, or if there is no server process running,
1338 starts server process and that is all. Invoked by \\[server-edit]."
1339 (interactive "P")
1340 (cond
1341 ((or arg
1342 (not server-process)
1343 (memq (process-status server-process) '(signal exit)))
1344 (server-mode 1))
1345 (server-clients (apply 'server-switch-buffer (server-done)))
1346 (t (message "No server editing buffers exist"))))
1347
1348 (defun server-switch-buffer (&optional next-buffer killed-one filepos)
1349 "Switch to another buffer, preferably one that has a client.
1350 Arg NEXT-BUFFER is a suggestion; if it is a live buffer, use it.
1351
1352 KILLED-ONE is t in a recursive call if we have already killed one
1353 temp-file server buffer. This means we should avoid the final
1354 \"switch to some other buffer\" since we've already effectively
1355 done that.
1356
1357 FILEPOS specifies a new buffer position for NEXT-BUFFER, if we
1358 visit NEXT-BUFFER in an existing window. If non-nil, it should
1359 be a cons cell (LINENUMBER . COLUMNNUMBER)."
1360 (if (null next-buffer)
1361 (progn
1362 (let ((rest server-clients))
1363 (while (and rest (not next-buffer))
1364 (let ((proc (car rest)))
1365 ;; Only look at frameless clients, or those in the selected
1366 ;; frame.
1367 (when (or (not (process-get proc 'frame))
1368 (eq (process-get proc 'frame) (selected-frame)))
1369 (setq next-buffer (car (process-get proc 'buffers))))
1370 (setq rest (cdr rest)))))
1371 (and next-buffer (server-switch-buffer next-buffer killed-one))
1372 (unless (or next-buffer killed-one (window-dedicated-p (selected-window)))
1373 ;; (switch-to-buffer (other-buffer))
1374 (message "No server buffers remain to edit")))
1375 (if (not (buffer-live-p next-buffer))
1376 ;; If NEXT-BUFFER is a dead buffer, remove the server records for it
1377 ;; and try the next surviving server buffer.
1378 (apply 'server-switch-buffer (server-buffer-done next-buffer))
1379 ;; OK, we know next-buffer is live, let's display and select it.
1380 (if (functionp server-window)
1381 (funcall server-window next-buffer)
1382 (let ((win (get-buffer-window next-buffer 0)))
1383 (if (and win (not server-window))
1384 ;; The buffer is already displayed: just reuse the
1385 ;; window. If FILEPOS is non-nil, use it to replace the
1386 ;; window's own value of point.
1387 (progn
1388 (select-window win)
1389 (set-buffer next-buffer)
1390 (when filepos
1391 (server-goto-line-column filepos)))
1392 ;; Otherwise, let's find an appropriate window.
1393 (cond ((window-live-p server-window)
1394 (select-window server-window))
1395 ((framep server-window)
1396 (unless (frame-live-p server-window)
1397 (setq server-window (make-frame)))
1398 (select-window (frame-selected-window server-window))))
1399 (when (window-minibuffer-p (selected-window))
1400 (select-window (next-window nil 'nomini 0)))
1401 ;; Move to a non-dedicated window, if we have one.
1402 (when (window-dedicated-p (selected-window))
1403 (select-window
1404 (get-window-with-predicate
1405 (lambda (w)
1406 (and (not (window-dedicated-p w))
1407 (equal (frame-terminal (window-frame w))
1408 (frame-terminal (selected-frame)))))
1409 'nomini 'visible (selected-window))))
1410 (condition-case nil
1411 (switch-to-buffer next-buffer)
1412 ;; After all the above, we might still have ended up with
1413 ;; a minibuffer/dedicated-window (if there's no other).
1414 (error (pop-to-buffer next-buffer)))))))
1415 (when server-raise-frame
1416 (select-frame-set-input-focus (window-frame (selected-window))))))
1417
1418 ;;;###autoload
1419 (defun server-save-buffers-kill-terminal (arg)
1420 ;; Called from save-buffers-kill-terminal in files.el.
1421 "Offer to save each buffer, then kill the current client.
1422 With ARG non-nil, silently save all file-visiting buffers, then kill.
1423
1424 If emacsclient was started with a list of filenames to edit, then
1425 only these files will be asked to be saved."
1426 (let ((proc (frame-parameter (selected-frame) 'client)))
1427 (cond ((eq proc 'nowait)
1428 ;; Nowait frames have no client buffer list.
1429 (if (cdr (frame-list))
1430 (progn (save-some-buffers arg)
1431 (delete-frame))
1432 ;; If we're the last frame standing, kill Emacs.
1433 (save-buffers-kill-emacs arg)))
1434 ((processp proc)
1435 (let ((buffers (process-get proc 'buffers)))
1436 ;; If client is bufferless, emulate a normal Emacs exit
1437 ;; and offer to save all buffers. Otherwise, offer to
1438 ;; save only the buffers belonging to the client.
1439 (save-some-buffers
1440 arg (if buffers
1441 (lambda () (memq (current-buffer) buffers))
1442 t))
1443 (server-delete-client proc)))
1444 (t (error "Invalid client frame")))))
1445
1446 (define-key ctl-x-map "#" 'server-edit)
1447
1448 (defun server-unload-function ()
1449 "Unload the server library."
1450 (server-mode -1)
1451 (substitute-key-definition 'server-edit nil ctl-x-map)
1452 (save-current-buffer
1453 (dolist (buffer (buffer-list))
1454 (set-buffer buffer)
1455 (remove-hook 'kill-buffer-hook 'server-kill-buffer t)))
1456 ;; continue standard unloading
1457 nil)
1458
1459 \f
1460 (provide 'server)
1461
1462 ;; arch-tag: 1f7ecb42-f00a-49f8-906d-61995d84c8d6
1463 ;;; server.el ends here