Avoid leaving garbage on screen when using 'raise' display property
[emacs.git] / lisp / server.el
blob209bfaaf7018aaf4025fba13125b174a318d4d6e
1 ;;; server.el --- Lisp code for GNU Emacs running as server process -*- lexical-binding: t -*-
3 ;; Copyright (C) 1986-1987, 1992, 1994-2017 Free Software Foundation,
4 ;; Inc.
6 ;; Author: William Sommerfeld <wesommer@athena.mit.edu>
7 ;; Maintainer: emacs-devel@gnu.org
8 ;; Keywords: processes
10 ;; Changes by peck@sun.com and by rms.
11 ;; Overhaul by Karoly Lorentey <lorentey@elte.hu> for multi-tty support.
13 ;; This file is part of GNU Emacs.
15 ;; GNU Emacs is free software: you can redistribute it and/or modify
16 ;; it under the terms of the GNU General Public License as published by
17 ;; the Free Software Foundation, either version 3 of the License, or
18 ;; (at your option) any later version.
20 ;; GNU Emacs is distributed in the hope that it will be useful,
21 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
22 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 ;; GNU General Public License for more details.
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
28 ;;; Commentary:
30 ;; This Lisp code is run in Emacs when it is to operate as
31 ;; a server for other processes.
33 ;; Load this library and do M-x server-edit to enable Emacs as a server.
34 ;; Emacs opens up a socket for communication with clients. If there are no
35 ;; client buffers to edit, server-edit acts like (switch-to-buffer
36 ;; (other-buffer))
38 ;; When some other program runs "the editor" to edit a file,
39 ;; "the editor" can be the Emacs client program ../lib-src/emacsclient.
40 ;; This program transmits the file names to Emacs through
41 ;; the server subprocess, and Emacs visits them and lets you edit them.
43 ;; Note that any number of clients may dispatch files to Emacs to be edited.
45 ;; When you finish editing a Server buffer, again call server-edit
46 ;; to mark that buffer as done for the client and switch to the next
47 ;; Server buffer. When all the buffers for a client have been edited
48 ;; and exited with server-edit, the client "editor" will return
49 ;; to the program that invoked it.
51 ;; Your editing commands and Emacs's display output go to and from
52 ;; the terminal in the usual way. Thus, server operation is possible
53 ;; only when Emacs can talk to the terminal at the time you invoke
54 ;; the client. This is possible in four cases:
56 ;; 1. On a window system, where Emacs runs in one window and the
57 ;; program that wants to use "the editor" runs in another.
59 ;; 2. On a multi-terminal system, where Emacs runs on one terminal and the
60 ;; program that wants to use "the editor" runs on another.
62 ;; 3. When the program that wants to use "the editor" is running
63 ;; as a subprocess of Emacs.
65 ;; 4. On a system with job control, when Emacs is suspended, the program
66 ;; that wants to use "the editor" will stop and display
67 ;; "Waiting for Emacs...". It can then be suspended, and Emacs can be
68 ;; brought into the foreground for editing. When done editing, Emacs is
69 ;; suspended again, and the client program is brought into the foreground.
71 ;; The buffer local variable "server-buffer-clients" lists
72 ;; the clients who are waiting for this buffer to be edited.
73 ;; The global variable "server-clients" lists all the waiting clients,
74 ;; and which files are yet to be edited for each.
76 ;; Todo:
78 ;; - handle command-line-args-left.
79 ;; - move most of the args processing and decision making from emacsclient.c
80 ;; to here.
81 ;; - fix up handling of the client's environment (place it in the terminal?).
83 ;;; Code:
85 (eval-when-compile (require 'cl-lib))
87 (defgroup server nil
88 "Emacs running as a server process."
89 :group 'external)
91 (defcustom server-use-tcp nil
92 "If non-nil, use TCP sockets instead of local sockets."
93 :set #'(lambda (sym val)
94 (unless (featurep 'make-network-process '(:family local))
95 (setq val t)
96 (unless load-in-progress
97 (message "Local sockets unsupported, using TCP sockets")))
98 (set-default sym val))
99 :group 'server
100 :type 'boolean
101 :version "22.1")
103 (defcustom server-host nil
104 "The name or IP address to use as host address of the server process.
105 If set, the server accepts remote connections; otherwise it is local.
107 DO NOT give this a non-nil value unless you know what you are doing!
108 On unsecured networks, accepting remote connections is very dangerous,
109 because server-client communication (including session authentication)
110 is not encrypted."
111 :group 'server
112 :type '(choice
113 (string :tag "Name or IP address")
114 (const :tag "Local" nil))
115 :version "22.1")
116 ;;;###autoload
117 (put 'server-host 'risky-local-variable t)
119 (defcustom server-port nil
120 "The port number that the server process should listen on.
121 This variable only takes effect when the Emacs server is using
122 TCP instead of local sockets. A nil value means to use a random
123 port number."
124 :group 'server
125 :type '(choice
126 (string :tag "Port number")
127 (const :tag "Random" nil))
128 :version "24.1")
129 ;;;###autoload
130 (put 'server-port 'risky-local-variable t)
132 (defcustom server-auth-dir (locate-user-emacs-file "server/")
133 "Directory for server authentication files.
134 We only use this if `server-use-tcp' is non-nil.
135 Otherwise we use `server-socket-dir'.
137 NOTE: On FAT32 filesystems, directories are not secure;
138 files can be read and modified by any user or process.
139 It is strongly suggested to set `server-auth-dir' to a
140 directory residing in a NTFS partition instead."
141 :group 'server
142 :type 'directory
143 :version "22.1")
144 ;;;###autoload
145 (put 'server-auth-dir 'risky-local-variable t)
147 (defcustom server-auth-key nil
148 "Server authentication key.
149 This is only used if `server-use-tcp' is non-nil.
151 Normally, the authentication key is randomly generated when the
152 server starts. It is recommended to leave it that way. Using a
153 long-lived shared key will decrease security (especially since
154 the key is transmitted as plain-text).
156 In some situations however, it can be difficult to share randomly
157 generated passwords with remote hosts (e.g., no shared directory),
158 so you can set the key with this variable and then copy the
159 server file to the remote host (with possible changes to IP
160 address and/or port if that applies).
162 Note that the usual security risks of using the server over
163 remote TCP, arising from the fact that client-server
164 communications are unencrypted, still apply.
166 The key must consist of 64 ASCII printable characters except for
167 space (this means characters from ! to ~; or from code 33 to
168 126). You can use \\[server-generate-key] to get a random key."
169 :group 'server
170 :type '(choice
171 (const :tag "Random" nil)
172 (string :tag "Password"))
173 :version "24.3")
175 (defcustom server-raise-frame t
176 "If non-nil, raise frame when switching to a buffer."
177 :group 'server
178 :type 'boolean
179 :version "22.1")
181 (defcustom server-visit-hook nil
182 "Hook run when visiting a file for the Emacs server."
183 :group 'server
184 :type 'hook)
186 (defcustom server-switch-hook nil
187 "Hook run when switching to a buffer for the Emacs server."
188 :group 'server
189 :type 'hook)
191 (defcustom server-done-hook nil
192 "Hook run when done editing a buffer for the Emacs server."
193 :group 'server
194 :type 'hook)
196 (defvar server-process nil
197 "The current server process.")
199 (defvar server-clients nil
200 "List of current server clients.
201 Each element is a process.")
203 (defvar server-buffer-clients nil
204 "List of client processes requesting editing of current buffer.")
205 (make-variable-buffer-local 'server-buffer-clients)
206 ;; Changing major modes should not erase this local.
207 (put 'server-buffer-clients 'permanent-local t)
209 (defcustom server-window nil
210 "Specification of the window to use for selecting Emacs server buffers.
211 If nil, use the selected window.
212 If it is a function, it should take one argument (a buffer) and
213 display and select it. A common value is `pop-to-buffer'.
214 If it is a window, use that.
215 If it is a frame, use the frame's selected window.
217 It is not meaningful to set this to a specific frame or window with Custom.
218 Only programs can do so."
219 :group 'server
220 :version "22.1"
221 :type '(choice (const :tag "Use selected window"
222 :match (lambda (widget value)
223 (not (functionp value)))
224 nil)
225 (function-item :tag "Display in new frame" switch-to-buffer-other-frame)
226 (function-item :tag "Use pop-to-buffer" pop-to-buffer)
227 (function :tag "Other function")))
229 (defcustom server-temp-file-regexp "^/tmp/Re\\|/draft$"
230 "Regexp matching names of temporary files.
231 These are deleted and reused after each edit by the programs that
232 invoke the Emacs server."
233 :group 'server
234 :type 'regexp)
236 (defcustom server-kill-new-buffers t
237 "Whether to kill buffers when done with them.
238 If non-nil, kill a buffer unless it already existed before editing
239 it with the Emacs server. If nil, kill only buffers as specified by
240 `server-temp-file-regexp'.
241 Please note that only buffers that still have a client are killed,
242 i.e. buffers visited with \"emacsclient --no-wait\" are never killed
243 in this way."
244 :group 'server
245 :type 'boolean
246 :version "21.1")
248 (defvar server-existing-buffer nil
249 "Non-nil means the buffer existed before the server was asked to visit it.
250 This means that the server should not kill the buffer when you say you
251 are done with it in the server.")
252 (make-variable-buffer-local 'server-existing-buffer)
254 ;;;###autoload
255 (defcustom server-name "server"
256 "The name of the Emacs server, if this Emacs process creates one.
257 The command `server-start' makes use of this. It should not be
258 changed while a server is running."
259 :group 'server
260 :type 'string
261 :version "23.1")
263 ;; We do not use `temporary-file-directory' here, because emacsclient
264 ;; does not read the init file.
265 (defvar server-socket-dir
266 (and (featurep 'make-network-process '(:family local))
267 (format "%s/emacs%d" (or (getenv "TMPDIR") "/tmp") (user-uid)))
268 "The directory in which to place the server socket.
269 If local sockets are not supported, this is nil.")
271 (defun server-clients-with (property value)
272 "Return a list of clients with PROPERTY set to VALUE."
273 (let (result)
274 (dolist (proc server-clients)
275 (when (equal value (process-get proc property))
276 (push proc result)))
277 result))
279 (defun server-add-client (proc)
280 "Create a client for process PROC, if it doesn't already have one.
281 New clients have no properties."
282 (add-to-list 'server-clients proc))
284 (defmacro server-with-environment (env vars &rest body)
285 "Evaluate BODY with environment variables VARS set to those in ENV.
286 The environment variables are then restored to their previous values.
288 VARS should be a list of strings.
289 ENV should be in the same format as `process-environment'."
290 (declare (indent 2))
291 (let ((var (make-symbol "var"))
292 (value (make-symbol "value")))
293 `(let ((process-environment process-environment))
294 (dolist (,var ,vars)
295 (let ((,value (getenv-internal ,var ,env)))
296 (push (if (stringp ,value)
297 (concat ,var "=" ,value)
298 ,var)
299 process-environment)))
300 (progn ,@body))))
302 (defun server-delete-client (proc &optional noframe)
303 "Delete PROC, including its buffers, terminals and frames.
304 If NOFRAME is non-nil, let the frames live.
305 Updates `server-clients'."
306 (server-log (concat "server-delete-client" (if noframe " noframe")) proc)
307 ;; Force a new lookup of client (prevents infinite recursion).
308 (when (memq proc server-clients)
309 (let ((buffers (process-get proc 'buffers)))
311 ;; Kill the client's buffers.
312 (dolist (buf buffers)
313 (when (buffer-live-p buf)
314 (with-current-buffer buf
315 ;; Kill the buffer if necessary.
316 (when (and (equal server-buffer-clients
317 (list proc))
318 (or (and server-kill-new-buffers
319 (not server-existing-buffer))
320 (server-temp-file-p))
321 (not (buffer-modified-p)))
322 (let (flag)
323 (unwind-protect
324 (progn (setq server-buffer-clients nil)
325 (kill-buffer (current-buffer))
326 (setq flag t))
327 (unless flag
328 ;; Restore clients if user pressed C-g in `kill-buffer'.
329 (setq server-buffer-clients (list proc)))))))))
331 ;; Delete the client's frames.
332 (unless noframe
333 (dolist (frame (frame-list))
334 (when (and (frame-live-p frame)
335 (equal proc (frame-parameter frame 'client)))
336 ;; Prevent `server-handle-delete-frame' from calling us
337 ;; recursively.
338 (set-frame-parameter frame 'client nil)
339 (delete-frame frame))))
341 (setq server-clients (delq proc server-clients))
343 ;; Delete the client's tty, except on Windows (both GUI and console),
344 ;; where there's only one terminal and does not make sense to delete it.
345 (unless (eq system-type 'windows-nt)
346 (let ((terminal (process-get proc 'terminal)))
347 ;; Only delete the terminal if it is non-nil.
348 (when (and terminal (eq (terminal-live-p terminal) t))
349 (delete-terminal terminal))))
351 ;; Delete the client's process.
352 (if (eq (process-status proc) 'open)
353 (delete-process proc))
355 (server-log "Deleted" proc))))
357 (defvar server-log-time-function 'current-time-string
358 "Function to generate timestamps for `server-buffer'.")
360 (defconst server-buffer " *server*"
361 "Buffer used internally by Emacs's server.
362 One use is to log the I/O for debugging purposes (see option `server-log'),
363 the other is to provide a current buffer in which the process filter can
364 safely let-bind buffer-local variables like `default-directory'.")
366 (defvar server-log nil
367 "If non-nil, log the server's inputs and outputs in the `server-buffer'.")
369 (defun server-log (string &optional client)
370 "If option `server-log' is non-nil, log STRING to `server-buffer'.
371 If CLIENT is non-nil, add a description of it to the logged message."
372 (when server-log
373 (with-current-buffer (get-buffer-create server-buffer)
374 (goto-char (point-max))
375 (insert (funcall server-log-time-function)
376 (cond
377 ((null client) " ")
378 ((listp client) (format " %s: " (car client)))
379 (t (format " %s: " client)))
380 string)
381 (or (bolp) (newline)))))
383 (defun server-sentinel (proc msg)
384 "The process sentinel for Emacs server connections."
385 ;; If this is a new client process, set the query-on-exit flag to nil
386 ;; for this process (it isn't inherited from the server process).
387 (when (and (eq (process-status proc) 'open)
388 (process-query-on-exit-flag proc))
389 (set-process-query-on-exit-flag proc nil))
390 ;; Delete the associated connection file, if applicable.
391 ;; Although there's no 100% guarantee that the file is owned by the
392 ;; running Emacs instance, server-start uses server-running-p to check
393 ;; for possible servers before doing anything, so it *should* be ours.
394 (and (process-contact proc :server)
395 (eq (process-status proc) 'closed)
396 (ignore-errors
397 (delete-file (process-get proc :server-file))))
398 (server-log (format "Status changed to %s: %s" (process-status proc) msg) proc)
399 (server-delete-client proc))
401 (defun server--on-display-p (frame display)
402 (and (equal (frame-parameter frame 'display) display)
403 ;; Note: TTY frames still get a `display' parameter set to the value of
404 ;; $DISPLAY. This is useful when running from that tty frame
405 ;; sub-processes that want to connect to the X server, but that means we
406 ;; have to be careful here not to be tricked into thinking those frames
407 ;; are on `display'.
408 (not (eq (framep frame) t))))
410 (defun server-select-display (display)
411 ;; If the current frame is on `display' we're all set.
412 ;; Similarly if we are unable to open frames on other displays, there's
413 ;; nothing more we can do.
414 (unless (or (not (fboundp 'make-frame-on-display))
415 (server--on-display-p (selected-frame) display))
416 ;; Otherwise, look for an existing frame there and select it.
417 (dolist (frame (frame-list))
418 (when (server--on-display-p frame display)
419 (select-frame frame)))
420 ;; If there's no frame on that display yet, create and select one.
421 (unless (server--on-display-p (selected-frame) display)
422 (let* ((buffer (generate-new-buffer " *server-dummy*"))
423 (frame (make-frame-on-display
424 display
425 ;; Make it display (and remember) some dummy buffer, so
426 ;; we can detect later if the frame is in use or not.
427 `((server-dummy-buffer . ,buffer)
428 ;; This frame may be deleted later (see
429 ;; server-unselect-display) so we want it to be as
430 ;; unobtrusive as possible.
431 (visibility . nil)))))
432 (select-frame frame)
433 (set-window-buffer (selected-window) buffer)
434 frame))))
436 (defun server-unselect-display (frame)
437 (when (frame-live-p frame)
438 ;; If the temporary frame is in use (displays something real), make it
439 ;; visible. If not (which can happen if the user's customizations call
440 ;; pop-to-buffer etc.), delete it to avoid preserving the connection after
441 ;; the last real frame is deleted.
443 ;; Rewritten to avoid inadvertently killing the current buffer after
444 ;; `delete-frame' removed FRAME (Bug#10729).
445 (let ((buffer (frame-parameter frame 'server-dummy-buffer)))
446 (if (and (one-window-p 'nomini frame)
447 (eq (window-buffer (frame-first-window frame)) buffer))
448 ;; The temp frame still only shows one buffer, and that is the
449 ;; internal temp buffer.
450 (delete-frame frame)
451 (set-frame-parameter frame 'visibility t)
452 (set-frame-parameter frame 'server-dummy-buffer nil))
453 (when (buffer-live-p buffer)
454 (kill-buffer buffer)))))
456 (defun server-handle-delete-frame (frame)
457 "Delete the client connection when the emacsclient frame is deleted.
458 \(To be used from `delete-frame-functions'.)"
459 (let ((proc (frame-parameter frame 'client)))
460 (when (and (frame-live-p frame)
461 proc
462 ;; See if this is the last frame for this client.
463 (>= 1 (let ((frame-num 0))
464 (dolist (f (frame-list))
465 (when (eq proc (frame-parameter f 'client))
466 (setq frame-num (1+ frame-num))))
467 frame-num)))
468 (server-log (format "server-handle-delete-frame, frame %s" frame) proc)
469 (server-delete-client proc 'noframe)))) ; Let delete-frame delete the frame later.
471 (defun server-handle-suspend-tty (terminal)
472 "Notify the client process that its tty device is suspended."
473 (dolist (proc (server-clients-with 'terminal terminal))
474 (server-log (format "server-handle-suspend-tty, terminal %s" terminal)
475 proc)
476 (condition-case nil
477 (server-send-string proc "-suspend \n")
478 (file-error ;The pipe/socket was closed.
479 (ignore-errors (server-delete-client proc))))))
481 (defun server-unquote-arg (arg)
482 "Remove &-quotation from ARG.
483 See `server-quote-arg' and `server-process-filter'."
484 (replace-regexp-in-string
485 "&." (lambda (s)
486 (pcase (aref s 1)
487 (?& "&")
488 (?- "-")
489 (?n "\n")
490 (_ " ")))
491 arg t t))
493 (defun server-quote-arg (arg)
494 "In ARG, insert a & before each &, each space, each newline, and -.
495 Change spaces to underscores, too, so that the return value never
496 contains a space.
498 See `server-unquote-arg' and `server-process-filter'."
499 (replace-regexp-in-string
500 "[-&\n ]" (lambda (s)
501 (pcase (aref s 0)
502 (?& "&&")
503 (?- "&-")
504 (?\n "&n")
505 (?\s "&_")))
506 arg t t))
508 (defun server-send-string (proc string)
509 "A wrapper around `process-send-string' for logging."
510 (server-log (concat "Sent " string) proc)
511 (process-send-string proc string))
513 (defun server-ensure-safe-dir (dir)
514 "Make sure DIR is a directory with no race-condition issues.
515 Creates the directory if necessary and makes sure:
516 - there's no symlink involved
517 - it's owned by us
518 - it's not readable/writable by anybody else."
519 (setq dir (directory-file-name dir))
520 (let ((attrs (file-attributes dir 'integer)))
521 (unless attrs
522 (cl-letf (((default-file-modes) ?\700)) (make-directory dir t))
523 (setq attrs (file-attributes dir 'integer)))
525 ;; Check that it's safe for use.
526 (let* ((uid (nth 2 attrs))
527 (w32 (eq system-type 'windows-nt))
528 (safe (cond
529 ((not (eq t (car attrs))) nil) ; is a dir?
530 ((and w32 (zerop uid)) ; on FAT32?
531 (display-warning
532 'server
533 (format-message "\
534 Using `%s' to store Emacs-server authentication files.
535 Directories on FAT32 filesystems are NOT secure against tampering.
536 See variable `server-auth-dir' for details."
537 (file-name-as-directory dir))
538 :warning)
540 ((and (/= uid (user-uid)) ; is the dir ours?
541 (or (not w32)
542 ;; Files created on Windows by Administrator
543 ;; (RID=500) have the Administrators (RID=544)
544 ;; group recorded as the owner.
545 (/= uid 544) (/= (user-uid) 500)))
546 nil)
547 (w32 t) ; on NTFS?
548 (t ; else, check permissions
549 (zerop (logand ?\077 (file-modes dir)))))))
550 (unless safe
551 (error "The directory `%s' is unsafe" dir)))))
553 (defun server-generate-key ()
554 "Generate and return a random authentication key.
555 The key is a 64-byte string of random chars in the range `!'..`~'.
556 If called interactively, also inserts it into current buffer."
557 (interactive)
558 (let ((auth-key
559 (cl-loop repeat 64
560 collect (+ 33 (random 94)) into auth
561 finally return (concat auth))))
562 (if (called-interactively-p 'interactive)
563 (insert auth-key))
564 auth-key))
566 (defun server-get-auth-key ()
567 "Return server's authentication key.
569 If `server-auth-key' is nil, just call `server-generate-key'.
570 Otherwise, if `server-auth-key' is a valid key, return it.
571 If the key is not valid, signal an error."
572 (if server-auth-key
573 (if (string-match-p "^[!-~]\\{64\\}$" server-auth-key)
574 server-auth-key
575 (error "The key `%s' is invalid" server-auth-key))
576 (server-generate-key)))
578 ;;;###autoload
579 (defun server-start (&optional leave-dead inhibit-prompt)
580 "Allow this Emacs process to be a server for client processes.
581 This starts a server communications subprocess through which client
582 \"editors\" can send your editing commands to this Emacs job.
583 To use the server, set up the program `emacsclient' in the Emacs
584 distribution as your standard \"editor\".
586 Optional argument LEAVE-DEAD (interactively, a prefix arg) means just
587 kill any existing server communications subprocess.
589 If a server is already running, restart it. If clients are
590 running, ask the user for confirmation first, unless optional
591 argument INHIBIT-PROMPT is non-nil.
593 To force-start a server, do \\[server-force-delete] and then
594 \\[server-start]."
595 (interactive "P")
596 (when (or (not server-clients)
597 ;; Ask the user before deleting existing clients---except
598 ;; when we can't get user input, which may happen when
599 ;; doing emacsclient --eval "(kill-emacs)" in daemon mode.
600 (cond
601 ((and (daemonp)
602 (null (cdr (frame-list)))
603 (eq (selected-frame) terminal-frame))
604 leave-dead)
605 (inhibit-prompt t)
606 (t (yes-or-no-p
607 "The current server still has clients; delete them? "))))
608 (let* ((server-dir (if server-use-tcp server-auth-dir server-socket-dir))
609 (server-file (expand-file-name server-name server-dir)))
610 (when server-process
611 ;; kill it dead!
612 (ignore-errors (delete-process server-process)))
613 ;; Delete the socket files made by previous server invocations.
614 (if (not (eq t (server-running-p server-name)))
615 ;; Remove any leftover socket or authentication file
616 (ignore-errors
617 (let (delete-by-moving-to-trash)
618 (delete-file server-file)))
619 (setq server-mode nil) ;; already set by the minor mode code
620 (display-warning
621 'server
622 (concat "Unable to start the Emacs server.\n"
623 (format "There is an existing Emacs server, named %S.\n"
624 server-name)
625 (substitute-command-keys
626 "To start the server in this Emacs process, stop the existing
627 server or call `\\[server-force-delete]' to forcibly disconnect it."))
628 :warning)
629 (setq leave-dead t))
630 ;; If this Emacs already had a server, clear out associated status.
631 (while server-clients
632 (server-delete-client (car server-clients)))
633 ;; Now any previous server is properly stopped.
634 (if leave-dead
635 (progn
636 (unless (eq t leave-dead) (server-log (message "Server stopped")))
637 (setq server-process nil))
638 ;; Make sure there is a safe directory in which to place the socket.
639 (server-ensure-safe-dir server-dir)
640 (when server-process
641 (server-log (message "Restarting server")))
642 (cl-letf (((default-file-modes) ?\700))
643 (add-hook 'suspend-tty-functions 'server-handle-suspend-tty)
644 (add-hook 'delete-frame-functions 'server-handle-delete-frame)
645 (add-hook 'kill-emacs-query-functions
646 'server-kill-emacs-query-function)
647 ;; We put server's kill-emacs-hook after the others, so that
648 ;; frames are not deleted too early, because doing that
649 ;; would severely degrade our abilities to communicate with
650 ;; the user, while some hooks may wish to ask the user
651 ;; questions (e.g., desktop-kill).
652 (add-hook 'kill-emacs-hook 'server-force-stop t) ;Cleanup upon exit.
653 (setq server-process
654 (apply #'make-network-process
655 :name server-name
656 :server t
657 :noquery t
658 :sentinel #'server-sentinel
659 :filter #'server-process-filter
660 :use-external-socket t
661 ;; We must receive file names without being decoded.
662 ;; Those are decoded by server-process-filter according
663 ;; to file-name-coding-system. Also don't get
664 ;; confused by CRs since we don't quote them.
665 :coding 'raw-text-unix
666 ;; The other args depend on the kind of socket used.
667 (if server-use-tcp
668 (list :family 'ipv4 ;; We're not ready for IPv6 yet
669 :service (or server-port t)
670 :host (or server-host 'local)
671 :plist '(:authenticated nil))
672 (list :family 'local
673 :service server-file
674 :plist '(:authenticated t)))))
675 (unless server-process (error "Could not start server process"))
676 (process-put server-process :server-file server-file)
677 (when server-use-tcp
678 (let ((auth-key (server-get-auth-key)))
679 (process-put server-process :auth-key auth-key)
680 (with-temp-file server-file
681 (set-buffer-multibyte nil)
682 (setq buffer-file-coding-system 'no-conversion)
683 (insert (format-network-address
684 (process-contact server-process :local))
685 " " (number-to-string (emacs-pid)) ; Kept for compatibility
686 "\n" auth-key)))))))))
688 (defun server-force-stop ()
689 "Kill all connections to the current server.
690 This function is meant to be called from `kill-emacs-hook'."
691 (server-start t t))
693 ;;;###autoload
694 (defun server-force-delete (&optional name)
695 "Unconditionally delete connection file for server NAME.
696 If server is running, it is first stopped.
697 NAME defaults to `server-name'. With argument, ask for NAME."
698 (interactive
699 (list (if current-prefix-arg
700 (read-string "Server name: " nil nil server-name))))
701 (when server-mode (with-temp-message nil (server-mode -1)))
702 (let ((file (expand-file-name (or name server-name)
703 (if server-use-tcp
704 server-auth-dir
705 server-socket-dir))))
706 (condition-case nil
707 (let (delete-by-moving-to-trash)
708 (delete-file file)
709 (message "Connection file %S deleted" file))
710 (file-error
711 (message "No connection file %S" file)))))
713 (defun server-running-p (&optional name)
714 "Test whether server NAME is running.
716 Return values:
717 nil the server is definitely not running.
718 t the server seems to be running.
719 something else we cannot determine whether it's running without using
720 commands which may have to wait for a long time."
721 (unless name (setq name server-name))
722 (condition-case nil
723 (if server-use-tcp
724 (with-temp-buffer
725 (insert-file-contents-literally (expand-file-name name server-auth-dir))
726 (or (and (looking-at "127\\.0\\.0\\.1:[0-9]+ \\([0-9]+\\)")
727 (assq 'comm
728 (process-attributes
729 (string-to-number (match-string 1))))
731 :other))
732 (delete-process
733 (make-network-process
734 :name "server-client-test" :family 'local :server nil :noquery t
735 :service (expand-file-name name server-socket-dir)))
737 (file-error nil)))
739 ;;;###autoload
740 (define-minor-mode server-mode
741 "Toggle Server mode.
742 With a prefix argument ARG, enable Server mode if ARG is
743 positive, and disable it otherwise. If called from Lisp, enable
744 Server mode if ARG is omitted or nil.
746 Server mode runs a process that accepts commands from the
747 `emacsclient' program. See Info node `Emacs server' and
748 `server-start' for details."
749 :global t
750 :group 'server
751 :version "22.1"
752 ;; Fixme: Should this check for an existing server socket and do
753 ;; nothing if there is one (for multiple Emacs sessions)?
754 (server-start (not server-mode)))
756 (defun server-eval-and-print (expr proc)
757 "Eval EXPR and send the result back to client PROC."
758 ;; While we're running asynchronously (from a process filter), it is likely
759 ;; that the emacsclient command was run in response to a user
760 ;; action, so the user probably knows that Emacs is processing this
761 ;; emacsclient request, so if we get a C-g it's likely that the user
762 ;; intended it to interrupt us rather than interrupt whatever Emacs
763 ;; was doing before it started handling the process filter.
764 ;; Hence `with-local-quit' (bug#6585).
765 (let ((v (with-local-quit (eval (car (read-from-string expr))))))
766 (when proc
767 (with-temp-buffer
768 (let ((standard-output (current-buffer)))
769 (pp v)
770 (let ((text (buffer-substring-no-properties
771 (point-min) (point-max))))
772 (server-reply-print (server-quote-arg text) proc)))))))
774 (defconst server-msg-size 1024
775 "Maximum size of a message sent to a client.")
777 (defun server-reply-print (qtext proc)
778 "Send a `-print QTEXT' command to client PROC.
779 QTEXT must be already quoted.
780 This handles splitting the command if it would be bigger than
781 `server-msg-size'."
782 (let ((prefix "-print ")
783 part)
784 (while (> (+ (length qtext) (length prefix) 1) server-msg-size)
785 ;; We have to split the string
786 (setq part (substring qtext 0 (- server-msg-size (length prefix) 1)))
787 ;; Don't split in the middle of a quote sequence
788 (if (string-match "\\(^\\|[^&]\\)&\\(&&\\)*$" part)
789 ;; There is an uneven number of & at the end
790 (setq part (substring part 0 -1)))
791 (setq qtext (substring qtext (length part)))
792 (server-send-string proc (concat prefix part "\n"))
793 (setq prefix "-print-nonl "))
794 (server-send-string proc (concat prefix qtext "\n"))))
796 (defun server-create-tty-frame (tty type proc)
797 (unless tty
798 (error "Invalid terminal device"))
799 (unless type
800 (error "Invalid terminal type"))
801 (add-to-list 'frame-inherited-parameters 'client)
802 (let ((frame
803 (server-with-environment
804 (process-get proc 'env)
805 '("LANG" "LC_CTYPE" "LC_ALL"
806 ;; For tgetent(3); list according to ncurses(3).
807 "BAUDRATE" "COLUMNS" "ESCDELAY" "HOME" "LINES"
808 "NCURSES_ASSUMED_COLORS" "NCURSES_NO_PADDING"
809 "NCURSES_NO_SETBUF" "TERM" "TERMCAP" "TERMINFO"
810 "TERMINFO_DIRS" "TERMPATH"
811 ;; rxvt wants these
812 "COLORFGBG" "COLORTERM")
813 (make-frame `((window-system . nil)
814 (tty . ,tty)
815 (tty-type . ,type)
816 ;; Ignore nowait here; we always need to
817 ;; clean up opened ttys when the client dies.
818 (client . ,proc)
819 ;; This is a leftover from an earlier
820 ;; attempt at making it possible for process
821 ;; run in the server process to use the
822 ;; environment of the client process.
823 ;; It has no effect now and to make it work
824 ;; we'd need to decide how to make
825 ;; process-environment interact with client
826 ;; envvars, and then to change the
827 ;; C functions `child_setup' and
828 ;; `getenv_internal' accordingly.
829 (environment . ,(process-get proc 'env)))))))
831 ;; ttys don't use the `display' parameter, but callproc.c does to set
832 ;; the DISPLAY environment on subprocesses.
833 (set-frame-parameter frame 'display
834 (getenv-internal "DISPLAY" (process-get proc 'env)))
835 (select-frame frame)
836 (process-put proc 'frame frame)
837 (process-put proc 'terminal (frame-terminal frame))
838 frame))
840 (defun server-create-window-system-frame (display nowait proc parent-id
841 &optional parameters)
842 (let* ((display (or display
843 (frame-parameter nil 'display)
844 (error "Please specify display.")))
845 (w (or (cdr (assq 'window-system parameters))
846 (window-system-for-display display))))
848 ;; Special case for ns. This is because DISPLAY may not be set at all
849 ;; which in the ns case isn't an error. The variable display then becomes
850 ;; the fully qualified hostname, which make-frame-on-display below
851 ;; does not understand and throws an error.
852 ;; It may also be a valid X display, but if Emacs is compiled for ns, it
853 ;; can not make X frames.
854 (if (featurep 'ns-win)
855 (setq w 'ns display "ns")
856 ;; FIXME! Not sure what this was for, and not sure how it should work
857 ;; in the cl-defmethod new world!
858 ;;(unless (assq w window-system-initialization-alist)
859 ;; (setq w nil))
862 (cond (w
863 ;; Flag frame as client-created, but use a dummy client.
864 ;; This will prevent the frame from being deleted when
865 ;; emacsclient quits while also preventing
866 ;; `server-save-buffers-kill-terminal' from unexpectedly
867 ;; killing emacs on that frame.
868 (let* ((params `((client . ,(if nowait 'nowait proc))
869 ;; This is a leftover, see above.
870 (environment . ,(process-get proc 'env))
871 ,@parameters))
872 frame)
873 (if parent-id
874 (push (cons 'parent-id (string-to-number parent-id)) params))
875 (add-to-list 'frame-inherited-parameters 'client)
876 (setq frame (make-frame-on-display display params))
877 (server-log (format "%s created" frame) proc)
878 (select-frame frame)
879 (process-put proc 'frame frame)
880 (process-put proc 'terminal (frame-terminal frame))
881 frame))
884 (server-log "Window system unsupported" proc)
885 (server-send-string proc "-window-system-unsupported \n")
886 nil))))
888 (defun server-goto-toplevel (proc)
889 (condition-case nil
890 ;; If we're running isearch, we must abort it to allow Emacs to
891 ;; display the buffer and switch to it.
892 (dolist (buffer (buffer-list))
893 (with-current-buffer buffer
894 (when (bound-and-true-p isearch-mode)
895 (isearch-cancel))))
896 ;; Signaled by isearch-cancel.
897 (quit (message nil)))
898 (when (> (recursion-depth) 0)
899 ;; We're inside a minibuffer already, so if the emacs-client is trying
900 ;; to open a frame on a new display, we might end up with an unusable
901 ;; frame because input from that display will be blocked (until exiting
902 ;; the minibuffer). Better exit this minibuffer right away.
903 ;; Similarly with recursive-edits such as the splash screen.
904 (run-with-timer 0 nil (lambda () (server-execute-continuation proc)))
905 (top-level)))
907 ;; We use various special properties on process objects:
908 ;; - `env' stores the info about the environment of the emacsclient process.
909 ;; - `continuation' is a no-arg function that we need to execute. It contains
910 ;; commands we wanted to execute in some earlier invocation of the process
911 ;; filter but that we somehow were unable to process at that time
912 ;; (e.g. because we first need to throw to the toplevel).
914 (defun server-execute-continuation (proc)
915 (let ((continuation (process-get proc 'continuation)))
916 (process-put proc 'continuation nil)
917 (if continuation (ignore-errors (funcall continuation)))))
919 (cl-defun server-process-filter (proc string)
920 "Process a request from the server to edit some files.
921 PROC is the server process. STRING consists of a sequence of
922 commands prefixed by a dash. Some commands have arguments;
923 these are &-quoted and need to be decoded by `server-unquote-arg'.
924 The filter parses and executes these commands.
926 To illustrate the protocol, here is an example command that
927 emacsclient sends to create a new X frame (note that the whole
928 sequence is sent on a single line):
930 -env HOME=/home/lorentey
931 -env DISPLAY=:0.0
932 ... lots of other -env commands
933 -display :0.0
934 -window-system
936 The following commands are accepted by the server:
938 `-auth AUTH-STRING'
939 Authenticate the client using the secret authentication string
940 AUTH-STRING.
942 `-env NAME=VALUE'
943 An environment variable on the client side.
945 `-dir DIRNAME'
946 The current working directory of the client process.
948 `-current-frame'
949 Forbid the creation of new frames.
951 `-frame-parameters ALIST'
952 Set the parameters of the created frame.
954 `-nowait'
955 Request that the next frame created should not be
956 associated with this client.
958 `-display DISPLAY'
959 Set the display name to open X frames on.
961 `-position LINE[:COLUMN]'
962 Go to the given line and column number
963 in the next file opened.
965 `-file FILENAME'
966 Load the given file in the current frame.
968 `-eval EXPR'
969 Evaluate EXPR as a Lisp expression and return the
970 result in -print commands.
972 `-window-system'
973 Open a new X frame.
975 `-tty DEVICENAME TYPE'
976 Open a new tty frame at the client.
978 `-suspend'
979 Suspend this tty frame. The client sends this string in
980 response to SIGTSTP and SIGTTOU. The server must cease all I/O
981 on this tty until it gets a -resume command.
983 `-resume'
984 Resume this tty frame. The client sends this string when it
985 gets the SIGCONT signal and it is the foreground process on its
986 controlling tty.
988 `-ignore COMMENT'
989 Do nothing, but put the comment in the server log.
990 Useful for debugging.
993 The following commands are accepted by the client:
995 `-emacs-pid PID'
996 Describes the process id of the Emacs process;
997 used to forward window change signals to it.
999 `-window-system-unsupported'
1000 Signals that the server does not support creating X frames;
1001 the client must try again with a tty frame.
1003 `-print STRING'
1004 Print STRING on stdout. Used to send values
1005 returned by -eval.
1007 `-print-nonl STRING'
1008 Print STRING on stdout. Used to continue a
1009 preceding -print command that would be too big to send
1010 in a single message.
1012 `-error DESCRIPTION'
1013 Signal an error and delete process PROC.
1015 `-suspend'
1016 Suspend this terminal, i.e., stop the client process.
1017 Sent when the user presses C-z."
1018 (server-log (concat "Received " string) proc)
1019 ;; First things first: let's check the authentication
1020 (unless (process-get proc :authenticated)
1021 (if (and (string-match "-auth \\([!-~]+\\)\n?" string)
1022 (equal (match-string 1 string) (process-get proc :auth-key)))
1023 (progn
1024 (setq string (substring string (match-end 0)))
1025 (process-put proc :authenticated t)
1026 (server-log "Authentication successful" proc))
1027 (server-log "Authentication failed" proc)
1028 (server-send-string
1029 proc (concat "-error " (server-quote-arg "Authentication failed")))
1030 ;; Before calling `delete-process', give emacsclient time to
1031 ;; receive the error string and shut down on its own.
1032 (sit-for 1)
1033 (delete-process proc)
1034 ;; We return immediately.
1035 (cl-return-from server-process-filter)))
1036 (let ((prev (process-get proc 'previous-string)))
1037 (when prev
1038 (setq string (concat prev string))
1039 (process-put proc 'previous-string nil)))
1040 (condition-case err
1041 (progn
1042 (server-add-client proc)
1043 ;; Send our pid
1044 (server-send-string proc (concat "-emacs-pid "
1045 (number-to-string (emacs-pid)) "\n"))
1046 (if (not (string-match "\n" string))
1047 ;; Save for later any partial line that remains.
1048 (when (> (length string) 0)
1049 (process-put proc 'previous-string string))
1051 ;; In earlier versions of server.el (where we used an `emacsserver'
1052 ;; process), there could be multiple lines. Nowadays this is not
1053 ;; supported any more.
1054 (cl-assert (eq (match-end 0) (length string)))
1055 (let ((request (substring string 0 (match-beginning 0)))
1056 (coding-system (and (default-value 'enable-multibyte-characters)
1057 (or file-name-coding-system
1058 default-file-name-coding-system)))
1059 nowait ; t if emacsclient does not want to wait for us.
1060 frame ; Frame opened for the client (if any).
1061 display ; Open frame on this display.
1062 parent-id ; Window ID for XEmbed
1063 dontkill ; t if client should not be killed.
1064 commands
1066 use-current-frame
1067 frame-parameters ;parameters for newly created frame
1068 tty-name ; nil, `window-system', or the tty name.
1069 tty-type ; string.
1070 files
1071 filepos
1072 args-left)
1073 ;; Remove this line from STRING.
1074 (setq string (substring string (match-end 0)))
1075 (setq args-left
1076 (mapcar 'server-unquote-arg (split-string request " " t)))
1077 (while args-left
1078 (pcase (pop args-left)
1079 ;; -version CLIENT-VERSION: obsolete at birth.
1080 (`"-version" (pop args-left))
1082 ;; -nowait: Emacsclient won't wait for a result.
1083 (`"-nowait" (setq nowait t))
1085 ;; -current-frame: Don't create frames.
1086 (`"-current-frame" (setq use-current-frame t))
1088 ;; -frame-parameters: Set frame parameters
1089 (`"-frame-parameters"
1090 (let ((alist (pop args-left)))
1091 (if coding-system
1092 (setq alist (decode-coding-string alist coding-system)))
1093 (setq frame-parameters (car (read-from-string alist)))))
1095 ;; -display DISPLAY:
1096 ;; Open X frames on the given display instead of the default.
1097 (`"-display"
1098 (setq display (pop args-left))
1099 (if (zerop (length display)) (setq display nil)))
1101 ;; -parent-id ID:
1102 ;; Open X frame within window ID, via XEmbed.
1103 (`"-parent-id"
1104 (setq parent-id (pop args-left))
1105 (if (zerop (length parent-id)) (setq parent-id nil)))
1107 ;; -window-system: Open a new X frame.
1108 (`"-window-system"
1109 (if (fboundp 'x-create-frame)
1110 (setq dontkill t
1111 tty-name 'window-system)))
1113 ;; -resume: Resume a suspended tty frame.
1114 (`"-resume"
1115 (let ((terminal (process-get proc 'terminal)))
1116 (setq dontkill t)
1117 (push (lambda ()
1118 (when (eq (terminal-live-p terminal) t)
1119 (resume-tty terminal)))
1120 commands)))
1122 ;; -suspend: Suspend the client's frame. (In case we
1123 ;; get out of sync, and a C-z sends a SIGTSTP to
1124 ;; emacsclient.)
1125 (`"-suspend"
1126 (let ((terminal (process-get proc 'terminal)))
1127 (setq dontkill t)
1128 (push (lambda ()
1129 (when (eq (terminal-live-p terminal) t)
1130 (suspend-tty terminal)))
1131 commands)))
1133 ;; -ignore COMMENT: Noop; useful for debugging emacsclient.
1134 ;; (The given comment appears in the server log.)
1135 (`"-ignore"
1136 (setq dontkill t)
1137 (pop args-left))
1139 ;; -tty DEVICE-NAME TYPE: Open a new tty frame.
1140 ;; (But if we see -window-system later, use that.)
1141 (`"-tty"
1142 (setq tty-name (pop args-left)
1143 tty-type (pop args-left)
1144 dontkill (or dontkill
1145 (not use-current-frame)))
1146 ;; On Windows, emacsclient always asks for a tty
1147 ;; frame. If running a GUI server, force the frame
1148 ;; type to GUI. (Cygwin is perfectly happy with
1149 ;; multi-tty support, so don't override the user's
1150 ;; choice there.) In daemon mode on Windows, we can't
1151 ;; make tty frames, so force the frame type to GUI
1152 ;; there too.
1153 (when (and (eq system-type 'windows-nt)
1154 (or (daemonp)
1155 (eq window-system 'w32)))
1156 (push "-window-system" args-left)))
1158 ;; -position LINE[:COLUMN]: Set point to the given
1159 ;; position in the next file.
1160 (`"-position"
1161 (if (not (string-match "\\+\\([0-9]+\\)\\(?::\\([0-9]+\\)\\)?"
1162 (car args-left)))
1163 (error "Invalid -position command in client args"))
1164 (let ((arg (pop args-left)))
1165 (setq filepos
1166 (cons (string-to-number (match-string 1 arg))
1167 (string-to-number (or (match-string 2 arg)
1168 ""))))))
1170 ;; -file FILENAME: Load the given file.
1171 (`"-file"
1172 (let ((file (pop args-left)))
1173 (if coding-system
1174 (setq file (decode-coding-string file coding-system)))
1175 ;; Allow Cygwin's emacsclient to be used as a file
1176 ;; handler on MS-Windows, in which case FILENAME
1177 ;; might start with a drive letter.
1178 (when (and (fboundp 'cygwin-convert-file-name-from-windows)
1179 (string-match "\\`[A-Za-z]:" file))
1180 (setq file (cygwin-convert-file-name-from-windows file)))
1181 (setq file (expand-file-name file dir))
1182 (push (cons file filepos) files)
1183 (server-log (format "New file: %s %s"
1184 file (or filepos ""))
1185 proc))
1186 (setq filepos nil))
1188 ;; -eval EXPR: Evaluate a Lisp expression.
1189 (`"-eval"
1190 (if use-current-frame
1191 (setq use-current-frame 'always))
1192 (let ((expr (pop args-left)))
1193 (if coding-system
1194 (setq expr (decode-coding-string expr coding-system)))
1195 (push (lambda () (server-eval-and-print expr proc))
1196 commands)
1197 (setq filepos nil)))
1199 ;; -env NAME=VALUE: An environment variable.
1200 (`"-env"
1201 (let ((var (pop args-left)))
1202 ;; XXX Variables should be encoded as in getenv/setenv.
1203 (process-put proc 'env
1204 (cons var (process-get proc 'env)))))
1206 ;; -dir DIRNAME: The cwd of the emacsclient process.
1207 (`"-dir"
1208 (setq dir (pop args-left))
1209 (if coding-system
1210 (setq dir (decode-coding-string dir coding-system)))
1211 (setq dir (command-line-normalize-file-name dir))
1212 (process-put proc 'server-client-directory dir))
1214 ;; Unknown command.
1215 (arg (error "Unknown command: %s" arg))))
1217 ;; If both -no-wait and -tty are given with file or sexp
1218 ;; arguments, use an existing frame.
1219 (and nowait
1220 (not (eq tty-name 'window-system))
1221 (or files commands)
1222 (setq use-current-frame t))
1224 (setq frame
1225 (cond
1226 ((and use-current-frame
1227 (or (eq use-current-frame 'always)
1228 ;; We can't use the Emacs daemon's
1229 ;; terminal frame.
1230 (not (and (daemonp)
1231 (null (cdr (frame-list)))
1232 (eq (selected-frame)
1233 terminal-frame)))))
1234 (setq tty-name nil tty-type nil)
1235 (if display (server-select-display display)))
1236 ((or (and (eq system-type 'windows-nt)
1237 (daemonp)
1238 (setq display "w32"))
1239 (eq tty-name 'window-system))
1240 (server-create-window-system-frame display nowait proc
1241 parent-id
1242 frame-parameters))
1243 ;; When resuming on a tty, tty-name is nil.
1244 (tty-name
1245 (server-create-tty-frame tty-name tty-type proc))))
1247 (process-put
1248 proc 'continuation
1249 (lambda ()
1250 (with-current-buffer (get-buffer-create server-buffer)
1251 ;; Use the same cwd as the emacsclient, if possible, so
1252 ;; relative file names work correctly, even in `eval'.
1253 (let ((default-directory
1254 (if (and dir (file-directory-p dir))
1255 dir default-directory)))
1256 (server-execute proc files nowait commands
1257 dontkill frame tty-name)))))
1259 (when (or frame files)
1260 (server-goto-toplevel proc))
1262 (server-execute-continuation proc))))
1263 ;; condition-case
1264 (error (server-return-error proc err))))
1266 (defun server-execute (proc files nowait commands dontkill frame tty-name)
1267 ;; This is run from timers and process-filters, i.e. "asynchronously".
1268 ;; But w.r.t the user, this is not really asynchronous since the timer
1269 ;; is run after 0s and the process-filter is run in response to the
1270 ;; user running `emacsclient'. So it is OK to override the
1271 ;; inhibit-quit flag, which is good since `commands' (as well as
1272 ;; find-file-noselect via the major-mode) can run arbitrary code,
1273 ;; including code that needs to wait.
1274 (with-local-quit
1275 (condition-case err
1276 (let ((buffers (server-visit-files files proc nowait)))
1277 (mapc 'funcall (nreverse commands))
1279 ;; If we were told only to open a new client, obey
1280 ;; `initial-buffer-choice' if it specifies a file
1281 ;; or a function.
1282 (unless (or files commands)
1283 (let ((buf
1284 (cond ((stringp initial-buffer-choice)
1285 (find-file-noselect initial-buffer-choice))
1286 ((functionp initial-buffer-choice)
1287 (funcall initial-buffer-choice)))))
1288 (switch-to-buffer
1289 (if (buffer-live-p buf) buf (get-buffer-create "*scratch*"))
1290 'norecord)))
1292 ;; Delete the client if necessary.
1293 (cond
1294 (nowait
1295 ;; Client requested nowait; return immediately.
1296 (server-log "Close nowait client" proc)
1297 (server-delete-client proc))
1298 ((and (not dontkill) (null buffers))
1299 ;; This client is empty; get rid of it immediately.
1300 (server-log "Close empty client" proc)
1301 (server-delete-client proc)))
1302 (cond
1303 ((or isearch-mode (minibufferp))
1304 nil)
1305 ((and frame (null buffers))
1306 (message "%s" (substitute-command-keys
1307 "When done with this frame, type \\[delete-frame]")))
1308 ((not (null buffers))
1309 (server-switch-buffer (car buffers) nil (cdr (car files)))
1310 (run-hooks 'server-switch-hook)
1311 (unless nowait
1312 (message "%s" (substitute-command-keys
1313 "When done with a buffer, type \\[server-edit]")))))
1314 (when (and frame (null tty-name))
1315 (server-unselect-display frame)))
1316 ((quit error)
1317 (when (eq (car err) 'quit)
1318 (message "Quit emacsclient request"))
1319 (server-return-error proc err)))))
1321 (defun server-return-error (proc err)
1322 (ignore-errors
1323 (server-send-string
1324 proc (concat "-error " (server-quote-arg
1325 (error-message-string err))))
1326 (server-log (error-message-string err) proc)
1327 ;; Before calling `delete-process', give emacsclient time to
1328 ;; receive the error string and shut down on its own.
1329 (sit-for 5)
1330 (delete-process proc)))
1332 (defun server-goto-line-column (line-col)
1333 "Move point to the position indicated in LINE-COL.
1334 LINE-COL should be a pair (LINE . COL)."
1335 (when line-col
1336 (goto-char (point-min))
1337 (forward-line (1- (car line-col)))
1338 (let ((column-number (cdr line-col)))
1339 (when (> column-number 0)
1340 (move-to-column (1- column-number))))))
1342 (defun server-visit-files (files proc &optional nowait)
1343 "Find FILES and return a list of buffers created.
1344 FILES is an alist whose elements are (FILENAME . FILEPOS)
1345 where FILEPOS can be nil or a pair (LINENUMBER . COLUMNNUMBER).
1346 PROC is the client that requested this operation.
1347 NOWAIT non-nil means this client is not waiting for the results,
1348 so don't mark these buffers specially, just visit them normally."
1349 ;; Bind last-nonmenu-event to force use of keyboard, not mouse, for queries.
1350 (let ((last-nonmenu-event t) client-record)
1351 ;; Restore the current buffer afterward, but not using save-excursion,
1352 ;; because we don't want to save point in this buffer
1353 ;; if it happens to be one of those specified by the server.
1354 (save-current-buffer
1355 (dolist (file files)
1356 ;; If there is an existing buffer modified or the file is
1357 ;; modified, revert it. If there is an existing buffer with
1358 ;; deleted file, offer to write it.
1359 (let* ((minibuffer-auto-raise (or server-raise-frame
1360 minibuffer-auto-raise))
1361 (filen (car file))
1362 (obuf (get-file-buffer filen)))
1363 (add-to-history 'file-name-history filen)
1364 (if (null obuf)
1365 (progn
1366 (run-hooks 'pre-command-hook)
1367 (set-buffer (find-file-noselect filen)))
1368 (set-buffer obuf)
1369 ;; separately for each file, in sync with post-command hooks,
1370 ;; with the new buffer current:
1371 (run-hooks 'pre-command-hook)
1372 (cond ((file-exists-p filen)
1373 (when (not (verify-visited-file-modtime obuf))
1374 (revert-buffer t nil)))
1376 (when (y-or-n-p
1377 (concat "File no longer exists: " filen
1378 ", write buffer to file? "))
1379 (write-file filen))))
1380 (unless server-buffer-clients
1381 (setq server-existing-buffer t)))
1382 (server-goto-line-column (cdr file))
1383 (run-hooks 'server-visit-hook)
1384 ;; hooks may be specific to current buffer:
1385 (run-hooks 'post-command-hook))
1386 (unless nowait
1387 ;; When the buffer is killed, inform the clients.
1388 (add-hook 'kill-buffer-hook 'server-kill-buffer nil t)
1389 (push proc server-buffer-clients))
1390 (push (current-buffer) client-record)))
1391 (unless nowait
1392 (process-put proc 'buffers
1393 (nconc (process-get proc 'buffers) client-record)))
1394 client-record))
1396 (defvar server-kill-buffer-running nil
1397 "Non-nil while `server-kill-buffer' or `server-buffer-done' is running.")
1399 (defun server-buffer-done (buffer &optional for-killing)
1400 "Mark BUFFER as \"done\" for its client(s).
1401 This buries the buffer, then returns a list of the form (NEXT-BUFFER KILLED).
1402 NEXT-BUFFER is another server buffer, as a suggestion for what to select next,
1403 or nil. KILLED is t if we killed BUFFER (typically, because it was visiting
1404 a temp file).
1405 FOR-KILLING if non-nil indicates that we are called from `kill-buffer'."
1406 (let ((next-buffer nil)
1407 (killed nil))
1408 (dolist (proc server-clients)
1409 (let ((buffers (process-get proc 'buffers)))
1410 (or next-buffer
1411 (setq next-buffer (nth 1 (memq buffer buffers))))
1412 (when buffers ; Ignore bufferless clients.
1413 (setq buffers (delq buffer buffers))
1414 ;; Delete all dead buffers from PROC.
1415 (dolist (b buffers)
1416 (and (bufferp b)
1417 (not (buffer-live-p b))
1418 (setq buffers (delq b buffers))))
1419 (process-put proc 'buffers buffers)
1420 ;; If client now has no pending buffers,
1421 ;; tell it that it is done, and forget it entirely.
1422 (unless buffers
1423 (server-log "Close" proc)
1424 (if for-killing
1425 ;; `server-delete-client' might delete the client's
1426 ;; frames, which might change the current buffer. We
1427 ;; don't want that (bug#640).
1428 (save-current-buffer
1429 (server-delete-client proc))
1430 (server-delete-client proc))))))
1431 (when (and (bufferp buffer) (buffer-name buffer))
1432 ;; We may or may not kill this buffer;
1433 ;; if we do, do not call server-buffer-done recursively
1434 ;; from kill-buffer-hook.
1435 (let ((server-kill-buffer-running t))
1436 (with-current-buffer buffer
1437 (setq server-buffer-clients nil)
1438 (run-hooks 'server-done-hook))
1439 ;; Notice whether server-done-hook killed the buffer.
1440 (if (null (buffer-name buffer))
1441 (setq killed t)
1442 ;; Don't bother killing or burying the buffer
1443 ;; when we are called from kill-buffer.
1444 (unless for-killing
1445 (when (and (not killed)
1446 server-kill-new-buffers
1447 (with-current-buffer buffer
1448 (not server-existing-buffer)))
1449 (setq killed t)
1450 (bury-buffer buffer)
1451 ;; Prevent kill-buffer from prompting (Bug#3696).
1452 (with-current-buffer buffer
1453 (set-buffer-modified-p nil))
1454 (kill-buffer buffer))
1455 (unless killed
1456 (if (server-temp-file-p buffer)
1457 (progn
1458 (with-current-buffer buffer
1459 (set-buffer-modified-p nil))
1460 (kill-buffer buffer)
1461 (setq killed t))
1462 (bury-buffer buffer)))))))
1463 (list next-buffer killed)))
1465 (defun server-temp-file-p (&optional buffer)
1466 "Return non-nil if BUFFER contains a file considered temporary.
1467 These are files whose names suggest they are repeatedly
1468 reused to pass information to another program.
1470 The variable `server-temp-file-regexp' controls which filenames
1471 are considered temporary."
1472 (and (buffer-file-name buffer)
1473 (string-match-p server-temp-file-regexp (buffer-file-name buffer))))
1475 (defun server-done ()
1476 "Offer to save current buffer, mark it as \"done\" for clients.
1477 This kills or buries the buffer, then returns a list
1478 of the form (NEXT-BUFFER KILLED). NEXT-BUFFER is another server buffer,
1479 as a suggestion for what to select next, or nil.
1480 KILLED is t if we killed BUFFER, which happens if it was created
1481 specifically for the clients and did not exist before their request for it."
1482 (when server-buffer-clients
1483 (if (server-temp-file-p)
1484 ;; For a temp file, save, and do make a non-numeric backup
1485 ;; (unless make-backup-files is nil).
1486 (let ((version-control nil)
1487 (buffer-backed-up nil))
1488 (save-buffer))
1489 (when (and (buffer-modified-p)
1490 buffer-file-name
1491 (y-or-n-p (concat "Save file " buffer-file-name "? ")))
1492 (save-buffer)))
1493 (server-buffer-done (current-buffer))))
1495 (defun server-kill-emacs-query-function ()
1496 "Ask before exiting Emacs if it has live clients."
1497 (or (not (let (live-client)
1498 (dolist (proc server-clients)
1499 (when (memq t (mapcar 'buffer-live-p (process-get
1500 proc 'buffers)))
1501 (setq live-client t)))
1502 live-client))
1503 (yes-or-no-p "This Emacs session has clients; exit anyway? ")))
1505 (defun server-kill-buffer ()
1506 "Remove the current buffer from its clients' buffer list.
1507 Designed to be added to `kill-buffer-hook'."
1508 ;; Prevent infinite recursion if user has made server-done-hook
1509 ;; call kill-buffer.
1510 (or server-kill-buffer-running
1511 (and server-buffer-clients
1512 (let ((server-kill-buffer-running t))
1513 (when server-process
1514 (server-buffer-done (current-buffer) t))))))
1516 (defun server-edit (&optional arg)
1517 "Switch to next server editing buffer; say \"Done\" for current buffer.
1518 If a server buffer is current, it is marked \"done\" and optionally saved.
1519 The buffer is also killed if it did not exist before the clients asked for it.
1520 When all of a client's buffers are marked as \"done\", the client is notified.
1522 Temporary files such as MH <draft> files are always saved and backed up,
1523 no questions asked. (The variable `make-backup-files', if nil, still
1524 inhibits a backup; you can set it locally in a particular buffer to
1525 prevent a backup for it.) The variable `server-temp-file-regexp' controls
1526 which filenames are considered temporary.
1528 If invoked with a prefix argument, or if there is no server process running,
1529 starts server process and that is all. Invoked by \\[server-edit]."
1530 (interactive "P")
1531 (cond
1532 ((or arg
1533 (not server-process)
1534 (memq (process-status server-process) '(signal exit)))
1535 (server-mode 1))
1536 (server-clients (apply 'server-switch-buffer (server-done)))
1537 (t (message "No server editing buffers exist"))))
1539 (defun server-switch-buffer (&optional next-buffer killed-one filepos)
1540 "Switch to another buffer, preferably one that has a client.
1541 Arg NEXT-BUFFER is a suggestion; if it is a live buffer, use it.
1543 KILLED-ONE is t in a recursive call if we have already killed one
1544 temp-file server buffer. This means we should avoid the final
1545 \"switch to some other buffer\" since we've already effectively
1546 done that.
1548 FILEPOS specifies a new buffer position for NEXT-BUFFER, if we
1549 visit NEXT-BUFFER in an existing window. If non-nil, it should
1550 be a cons cell (LINENUMBER . COLUMNNUMBER)."
1551 (if (null next-buffer)
1552 (progn
1553 (let ((rest server-clients))
1554 (while (and rest (not next-buffer))
1555 (let ((proc (car rest)))
1556 ;; Only look at frameless clients, or those in the selected
1557 ;; frame.
1558 (when (or (not (process-get proc 'frame))
1559 (eq (process-get proc 'frame) (selected-frame)))
1560 (setq next-buffer (car (process-get proc 'buffers))))
1561 (setq rest (cdr rest)))))
1562 (and next-buffer (server-switch-buffer next-buffer killed-one))
1563 (unless (or next-buffer killed-one (window-dedicated-p))
1564 ;; (switch-to-buffer (other-buffer))
1565 (message "No server buffers remain to edit")))
1566 (if (not (buffer-live-p next-buffer))
1567 ;; If NEXT-BUFFER is a dead buffer, remove the server records for it
1568 ;; and try the next surviving server buffer.
1569 (apply 'server-switch-buffer (server-buffer-done next-buffer))
1570 ;; OK, we know next-buffer is live, let's display and select it.
1571 (if (functionp server-window)
1572 (funcall server-window next-buffer)
1573 (let ((win (get-buffer-window next-buffer 0)))
1574 (if (and win (not server-window))
1575 ;; The buffer is already displayed: just reuse the
1576 ;; window. If FILEPOS is non-nil, use it to replace the
1577 ;; window's own value of point.
1578 (progn
1579 (select-window win)
1580 (set-buffer next-buffer)
1581 (when filepos
1582 (server-goto-line-column filepos)))
1583 ;; Otherwise, let's find an appropriate window.
1584 (cond ((window-live-p server-window)
1585 (select-window server-window))
1586 ((framep server-window)
1587 (unless (frame-live-p server-window)
1588 (setq server-window (make-frame)))
1589 (select-window (frame-selected-window server-window))))
1590 (when (window-minibuffer-p)
1591 (select-window (next-window nil 'nomini 0)))
1592 ;; Move to a non-dedicated window, if we have one.
1593 (when (window-dedicated-p)
1594 (select-window
1595 (get-window-with-predicate
1596 (lambda (w)
1597 (and (not (window-dedicated-p w))
1598 (equal (frame-terminal (window-frame w))
1599 (frame-terminal))))
1600 'nomini 'visible (selected-window))))
1601 (condition-case nil
1602 (switch-to-buffer next-buffer)
1603 ;; After all the above, we might still have ended up with
1604 ;; a minibuffer/dedicated-window (if there's no other).
1605 (error (pop-to-buffer next-buffer)))))))
1606 (when server-raise-frame
1607 (select-frame-set-input-focus (window-frame)))))
1609 ;;;###autoload
1610 (defun server-save-buffers-kill-terminal (arg)
1611 ;; Called from save-buffers-kill-terminal in files.el.
1612 "Offer to save each buffer, then kill the current client.
1613 With ARG non-nil, silently save all file-visiting buffers, then kill.
1615 If emacsclient was started with a list of filenames to edit, then
1616 only these files will be asked to be saved."
1617 (let ((proc (frame-parameter nil 'client)))
1618 (cond ((eq proc 'nowait)
1619 ;; Nowait frames have no client buffer list.
1620 (if (cdr (frame-list))
1621 (progn (save-some-buffers arg)
1622 (delete-frame))
1623 ;; If we're the last frame standing, kill Emacs.
1624 (save-buffers-kill-emacs arg)))
1625 ((processp proc)
1626 (let ((buffers (process-get proc 'buffers)))
1627 ;; If client is bufferless, emulate a normal Emacs exit
1628 ;; and offer to save all buffers. Otherwise, offer to
1629 ;; save only the buffers belonging to the client.
1630 (save-some-buffers
1631 arg (if buffers
1632 (lambda () (memq (current-buffer) buffers))
1634 (server-delete-client proc)))
1635 (t (error "Invalid client frame")))))
1637 (define-key ctl-x-map "#" 'server-edit)
1639 (defun server-unload-function ()
1640 "Unload the Server library."
1641 (server-mode -1)
1642 (substitute-key-definition 'server-edit nil ctl-x-map)
1643 (save-current-buffer
1644 (dolist (buffer (buffer-list))
1645 (set-buffer buffer)
1646 (remove-hook 'kill-buffer-hook 'server-kill-buffer t)))
1647 ;; continue standard unloading
1648 nil)
1650 (defun server-eval-at (server form)
1651 "Contact the Emacs server named SERVER and evaluate FORM there.
1652 Returns the result of the evaluation, or signals an error if it
1653 cannot contact the specified server. For example:
1654 (server-eval-at \"server\" \\='(emacs-pid))
1655 returns the process ID of the Emacs instance running \"server\"."
1656 (let* ((server-dir (if server-use-tcp server-auth-dir server-socket-dir))
1657 (server-file (expand-file-name server server-dir))
1658 (coding-system-for-read 'binary)
1659 (coding-system-for-write 'binary)
1660 address port secret process)
1661 (unless (file-exists-p server-file)
1662 (error "No such server: %s" server))
1663 (with-temp-buffer
1664 (when server-use-tcp
1665 (let ((coding-system-for-read 'no-conversion))
1666 (insert-file-contents server-file)
1667 (unless (looking-at "\\([0-9.]+\\):\\([0-9]+\\)")
1668 (error "Invalid auth file"))
1669 (setq address (match-string 1)
1670 port (string-to-number (match-string 2)))
1671 (forward-line 1)
1672 (setq secret (buffer-substring (point) (line-end-position)))
1673 (erase-buffer)))
1674 (unless (setq process (make-network-process
1675 :name "eval-at"
1676 :buffer (current-buffer)
1677 :host address
1678 :service (if server-use-tcp port server-file)
1679 :family (if server-use-tcp 'ipv4 'local)
1680 :noquery t))
1681 (error "Unable to contact the server"))
1682 (if server-use-tcp
1683 (process-send-string process (concat "-auth " secret "\n")))
1684 (process-send-string process
1685 (concat "-eval "
1686 (server-quote-arg (format "%S" form))
1687 "\n"))
1688 (while (memq (process-status process) '(open run))
1689 (accept-process-output process 0 10))
1690 (goto-char (point-min))
1691 ;; If the result is nil, there's nothing in the buffer. If the
1692 ;; result is non-nil, it's after "-print ".
1693 (let ((answer ""))
1694 (while (re-search-forward "\n-print\\(-nonl\\)? " nil t)
1695 (setq answer
1696 (concat answer
1697 (buffer-substring (point)
1698 (progn (skip-chars-forward "^\n")
1699 (point))))))
1700 (if (not (equal answer ""))
1701 (read (decode-coding-string (server-unquote-arg answer)
1702 'emacs-internal)))))))
1705 (provide 'server)
1707 ;;; server.el ends here