Add xref-pulse-on-jump
[emacs.git] / lisp / server.el
blob29d21609bab05b2eb04fe35ffefa45723ba172c8
1 ;;; server.el --- Lisp code for GNU Emacs running as server process -*- lexical-binding: t -*-
3 ;; Copyright (C) 1986-1987, 1992, 1994-2015 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 ;; FIXME? This is not a minor mode; what's the point of this? (See bug#20201)
249 (or (assq 'server-buffer-clients minor-mode-alist)
250 (push '(server-buffer-clients " Server") minor-mode-alist))
252 (defvar server-existing-buffer nil
253 "Non-nil means the buffer existed before the server was asked to visit it.
254 This means that the server should not kill the buffer when you say you
255 are done with it in the server.")
256 (make-variable-buffer-local 'server-existing-buffer)
258 (defcustom server-name "server"
259 "The name of the Emacs server, if this Emacs process creates one.
260 The command `server-start' makes use of this. It should not be
261 changed while a server is running."
262 :group 'server
263 :type 'string
264 :version "23.1")
266 ;; We do not use `temporary-file-directory' here, because emacsclient
267 ;; does not read the init file.
268 (defvar server-socket-dir
269 (and (featurep 'make-network-process '(:family local))
270 (format "%s/emacs%d" (or (getenv "TMPDIR") "/tmp") (user-uid)))
271 "The directory in which to place the server socket.
272 If local sockets are not supported, this is nil.")
274 (defun server-clients-with (property value)
275 "Return a list of clients with PROPERTY set to VALUE."
276 (let (result)
277 (dolist (proc server-clients)
278 (when (equal value (process-get proc property))
279 (push proc result)))
280 result))
282 (defun server-add-client (proc)
283 "Create a client for process PROC, if it doesn't already have one.
284 New clients have no properties."
285 (add-to-list 'server-clients proc))
287 (defmacro server-with-environment (env vars &rest body)
288 "Evaluate BODY with environment variables VARS set to those in ENV.
289 The environment variables are then restored to their previous values.
291 VARS should be a list of strings.
292 ENV should be in the same format as `process-environment'."
293 (declare (indent 2))
294 (let ((var (make-symbol "var"))
295 (value (make-symbol "value")))
296 `(let ((process-environment process-environment))
297 (dolist (,var ,vars)
298 (let ((,value (getenv-internal ,var ,env)))
299 (push (if (stringp ,value)
300 (concat ,var "=" ,value)
301 ,var)
302 process-environment)))
303 (progn ,@body))))
305 (defun server-delete-client (proc &optional noframe)
306 "Delete PROC, including its buffers, terminals and frames.
307 If NOFRAME is non-nil, let the frames live.
308 Updates `server-clients'."
309 (server-log (concat "server-delete-client" (if noframe " noframe")) proc)
310 ;; Force a new lookup of client (prevents infinite recursion).
311 (when (memq proc server-clients)
312 (let ((buffers (process-get proc 'buffers)))
314 ;; Kill the client's buffers.
315 (dolist (buf buffers)
316 (when (buffer-live-p buf)
317 (with-current-buffer buf
318 ;; Kill the buffer if necessary.
319 (when (and (equal server-buffer-clients
320 (list proc))
321 (or (and server-kill-new-buffers
322 (not server-existing-buffer))
323 (server-temp-file-p))
324 (not (buffer-modified-p)))
325 (let (flag)
326 (unwind-protect
327 (progn (setq server-buffer-clients nil)
328 (kill-buffer (current-buffer))
329 (setq flag t))
330 (unless flag
331 ;; Restore clients if user pressed C-g in `kill-buffer'.
332 (setq server-buffer-clients (list proc)))))))))
334 ;; Delete the client's frames.
335 (unless noframe
336 (dolist (frame (frame-list))
337 (when (and (frame-live-p frame)
338 (equal proc (frame-parameter frame 'client)))
339 ;; Prevent `server-handle-delete-frame' from calling us
340 ;; recursively.
341 (set-frame-parameter frame 'client nil)
342 (delete-frame frame))))
344 (setq server-clients (delq proc server-clients))
346 ;; Delete the client's tty, except on Windows (both GUI and console),
347 ;; where there's only one terminal and does not make sense to delete it.
348 (unless (eq system-type 'windows-nt)
349 (let ((terminal (process-get proc 'terminal)))
350 ;; Only delete the terminal if it is non-nil.
351 (when (and terminal (eq (terminal-live-p terminal) t))
352 (delete-terminal terminal))))
354 ;; Delete the client's process.
355 (if (eq (process-status proc) 'open)
356 (delete-process proc))
358 (server-log "Deleted" proc))))
360 (defvar server-log-time-function 'current-time-string
361 "Function to generate timestamps for `server-buffer'.")
363 (defconst server-buffer " *server*"
364 "Buffer used internally by Emacs's server.
365 One use is to log the I/O for debugging purposes (see option `server-log'),
366 the other is to provide a current buffer in which the process filter can
367 safely let-bind buffer-local variables like `default-directory'.")
369 (defvar server-log nil
370 "If non-nil, log the server's inputs and outputs in the `server-buffer'.")
372 (defun server-log (string &optional client)
373 "If option `server-log' is non-nil, log STRING to `server-buffer'.
374 If CLIENT is non-nil, add a description of it to the logged message."
375 (when server-log
376 (with-current-buffer (get-buffer-create server-buffer)
377 (goto-char (point-max))
378 (insert (funcall server-log-time-function)
379 (cond
380 ((null client) " ")
381 ((listp client) (format " %s: " (car client)))
382 (t (format " %s: " client)))
383 string)
384 (or (bolp) (newline)))))
386 (defun server-sentinel (proc msg)
387 "The process sentinel for Emacs server connections."
388 ;; If this is a new client process, set the query-on-exit flag to nil
389 ;; for this process (it isn't inherited from the server process).
390 (when (and (eq (process-status proc) 'open)
391 (process-query-on-exit-flag proc))
392 (set-process-query-on-exit-flag proc nil))
393 ;; Delete the associated connection file, if applicable.
394 ;; Although there's no 100% guarantee that the file is owned by the
395 ;; running Emacs instance, server-start uses server-running-p to check
396 ;; for possible servers before doing anything, so it *should* be ours.
397 (and (process-contact proc :server)
398 (eq (process-status proc) 'closed)
399 (ignore-errors
400 (delete-file (process-get proc :server-file))))
401 (server-log (format "Status changed to %s: %s" (process-status proc) msg) proc)
402 (server-delete-client proc))
404 (defun server--on-display-p (frame display)
405 (and (equal (frame-parameter frame 'display) display)
406 ;; Note: TTY frames still get a `display' parameter set to the value of
407 ;; $DISPLAY. This is useful when running from that tty frame
408 ;; sub-processes that want to connect to the X server, but that means we
409 ;; have to be careful here not to be tricked into thinking those frames
410 ;; are on `display'.
411 (not (eq (framep frame) t))))
413 (defun server-select-display (display)
414 ;; If the current frame is on `display' we're all set.
415 ;; Similarly if we are unable to open frames on other displays, there's
416 ;; nothing more we can do.
417 (unless (or (not (fboundp 'make-frame-on-display))
418 (server--on-display-p (selected-frame) display))
419 ;; Otherwise, look for an existing frame there and select it.
420 (dolist (frame (frame-list))
421 (when (server--on-display-p frame display)
422 (select-frame frame)))
423 ;; If there's no frame on that display yet, create and select one.
424 (unless (server--on-display-p (selected-frame) display)
425 (let* ((buffer (generate-new-buffer " *server-dummy*"))
426 (frame (make-frame-on-display
427 display
428 ;; Make it display (and remember) some dummy buffer, so
429 ;; we can detect later if the frame is in use or not.
430 `((server-dummy-buffer . ,buffer)
431 ;; This frame may be deleted later (see
432 ;; server-unselect-display) so we want it to be as
433 ;; unobtrusive as possible.
434 (visibility . nil)))))
435 (select-frame frame)
436 (set-window-buffer (selected-window) buffer)
437 frame))))
439 (defun server-unselect-display (frame)
440 (when (frame-live-p frame)
441 ;; If the temporary frame is in use (displays something real), make it
442 ;; visible. If not (which can happen if the user's customizations call
443 ;; pop-to-buffer etc.), delete it to avoid preserving the connection after
444 ;; the last real frame is deleted.
446 ;; Rewritten to avoid inadvertently killing the current buffer after
447 ;; `delete-frame' removed FRAME (Bug#10729).
448 (let ((buffer (frame-parameter frame 'server-dummy-buffer)))
449 (if (and (one-window-p 'nomini frame)
450 (eq (window-buffer (frame-first-window frame)) buffer))
451 ;; The temp frame still only shows one buffer, and that is the
452 ;; internal temp buffer.
453 (delete-frame frame)
454 (set-frame-parameter frame 'visibility t)
455 (set-frame-parameter frame 'server-dummy-buffer nil))
456 (when (buffer-live-p buffer)
457 (kill-buffer buffer)))))
459 (defun server-handle-delete-frame (frame)
460 "Delete the client connection when the emacsclient frame is deleted.
461 \(To be used from `delete-frame-functions'.)"
462 (let ((proc (frame-parameter frame 'client)))
463 (when (and (frame-live-p frame)
464 proc
465 ;; See if this is the last frame for this client.
466 (>= 1 (let ((frame-num 0))
467 (dolist (f (frame-list))
468 (when (eq proc (frame-parameter f 'client))
469 (setq frame-num (1+ frame-num))))
470 frame-num)))
471 (server-log (format "server-handle-delete-frame, frame %s" frame) proc)
472 (server-delete-client proc 'noframe)))) ; Let delete-frame delete the frame later.
474 (defun server-handle-suspend-tty (terminal)
475 "Notify the client process that its tty device is suspended."
476 (dolist (proc (server-clients-with 'terminal terminal))
477 (server-log (format "server-handle-suspend-tty, terminal %s" terminal)
478 proc)
479 (condition-case nil
480 (server-send-string proc "-suspend \n")
481 (file-error ;The pipe/socket was closed.
482 (ignore-errors (server-delete-client proc))))))
484 (defun server-unquote-arg (arg)
485 "Remove &-quotation from ARG.
486 See `server-quote-arg' and `server-process-filter'."
487 (replace-regexp-in-string
488 "&." (lambda (s)
489 (pcase (aref s 1)
490 (?& "&")
491 (?- "-")
492 (?n "\n")
493 (_ " ")))
494 arg t t))
496 (defun server-quote-arg (arg)
497 "In ARG, insert a & before each &, each space, each newline, and -.
498 Change spaces to underscores, too, so that the return value never
499 contains a space.
501 See `server-unquote-arg' and `server-process-filter'."
502 (replace-regexp-in-string
503 "[-&\n ]" (lambda (s)
504 (pcase (aref s 0)
505 (?& "&&")
506 (?- "&-")
507 (?\n "&n")
508 (?\s "&_")))
509 arg t t))
511 (defun server-send-string (proc string)
512 "A wrapper around `process-send-string' for logging."
513 (server-log (concat "Sent " string) proc)
514 (process-send-string proc string))
516 (defun server-ensure-safe-dir (dir)
517 "Make sure DIR is a directory with no race-condition issues.
518 Creates the directory if necessary and makes sure:
519 - there's no symlink involved
520 - it's owned by us
521 - it's not readable/writable by anybody else."
522 (setq dir (directory-file-name dir))
523 (let ((attrs (file-attributes dir 'integer)))
524 (unless attrs
525 (cl-letf (((default-file-modes) ?\700)) (make-directory dir t))
526 (setq attrs (file-attributes dir 'integer)))
528 ;; Check that it's safe for use.
529 (let* ((uid (nth 2 attrs))
530 (w32 (eq system-type 'windows-nt))
531 (safe (cond
532 ((not (eq t (car attrs))) nil) ; is a dir?
533 ((and w32 (zerop uid)) ; on FAT32?
534 (display-warning
535 'server
536 (format "Using `%s' to store Emacs-server authentication files.
537 Directories on FAT32 filesystems are NOT secure against tampering.
538 See variable `server-auth-dir' for details."
539 (file-name-as-directory dir))
540 :warning)
542 ((and (/= uid (user-uid)) ; is the dir ours?
543 (or (not w32)
544 ;; Files created on Windows by Administrator
545 ;; (RID=500) have the Administrators (RID=544)
546 ;; group recorded as the owner.
547 (/= uid 544) (/= (user-uid) 500)))
548 nil)
549 (w32 t) ; on NTFS?
550 (t ; else, check permissions
551 (zerop (logand ?\077 (file-modes dir)))))))
552 (unless safe
553 (error "The directory `%s' is unsafe" dir)))))
555 (defun server-generate-key ()
556 "Generate and return a random authentication key.
557 The key is a 64-byte string of random chars in the range `!'..`~'.
558 If called interactively, also inserts it into current buffer."
559 (interactive)
560 (let ((auth-key
561 (cl-loop repeat 64
562 collect (+ 33 (random 94)) into auth
563 finally return (concat auth))))
564 (if (called-interactively-p 'interactive)
565 (insert auth-key))
566 auth-key))
568 (defun server-get-auth-key ()
569 "Return server's authentication key.
571 If `server-auth-key' is nil, just call `server-generate-key'.
572 Otherwise, if `server-auth-key' is a valid key, return it.
573 If the key is not valid, signal an error."
574 (if server-auth-key
575 (if (string-match-p "^[!-~]\\{64\\}$" server-auth-key)
576 server-auth-key
577 (error "The key '%s' is invalid" server-auth-key))
578 (server-generate-key)))
580 ;;;###autoload
581 (defun server-start (&optional leave-dead inhibit-prompt)
582 "Allow this Emacs process to be a server for client processes.
583 This starts a server communications subprocess through which client
584 \"editors\" can send your editing commands to this Emacs job.
585 To use the server, set up the program `emacsclient' in the Emacs
586 distribution as your standard \"editor\".
588 Optional argument LEAVE-DEAD (interactively, a prefix arg) means just
589 kill any existing server communications subprocess.
591 If a server is already running, restart it. If clients are
592 running, ask the user for confirmation first, unless optional
593 argument INHIBIT-PROMPT is non-nil.
595 To force-start a server, do \\[server-force-delete] and then
596 \\[server-start]."
597 (interactive "P")
598 (when (or (not server-clients)
599 ;; Ask the user before deleting existing clients---except
600 ;; when we can't get user input, which may happen when
601 ;; doing emacsclient --eval "(kill-emacs)" in daemon mode.
602 (cond
603 ((and (daemonp)
604 (null (cdr (frame-list)))
605 (eq (selected-frame) terminal-frame))
606 leave-dead)
607 (inhibit-prompt t)
608 (t (yes-or-no-p
609 "The current server still has clients; delete them? "))))
610 (let* ((server-dir (if server-use-tcp server-auth-dir server-socket-dir))
611 (server-file (expand-file-name server-name server-dir)))
612 (when server-process
613 ;; kill it dead!
614 (ignore-errors (delete-process server-process)))
615 ;; Delete the socket files made by previous server invocations.
616 (if (not (eq t (server-running-p server-name)))
617 ;; Remove any leftover socket or authentication file
618 (ignore-errors
619 (let (delete-by-moving-to-trash)
620 (delete-file server-file)))
621 (setq server-mode nil) ;; already set by the minor mode code
622 (display-warning
623 'server
624 (concat "Unable to start the Emacs server.\n"
625 (format "There is an existing Emacs server, named %S.\n"
626 server-name)
627 "To start the server in this Emacs process, stop the existing
628 server or call `M-x server-force-delete' to forcibly disconnect it.")
629 :warning)
630 (setq leave-dead t))
631 ;; If this Emacs already had a server, clear out associated status.
632 (while server-clients
633 (server-delete-client (car server-clients)))
634 ;; Now any previous server is properly stopped.
635 (if leave-dead
636 (progn
637 (unless (eq t leave-dead) (server-log (message "Server stopped")))
638 (setq server-process nil))
639 ;; Make sure there is a safe directory in which to place the socket.
640 (server-ensure-safe-dir server-dir)
641 (when server-process
642 (server-log (message "Restarting server")))
643 (cl-letf (((default-file-modes) ?\700))
644 (add-hook 'suspend-tty-functions 'server-handle-suspend-tty)
645 (add-hook 'delete-frame-functions 'server-handle-delete-frame)
646 (add-hook 'kill-emacs-query-functions
647 'server-kill-emacs-query-function)
648 (add-hook 'kill-emacs-hook 'server-force-stop) ;Cleanup upon exit.
649 (setq server-process
650 (apply #'make-network-process
651 :name server-name
652 :server t
653 :noquery t
654 :sentinel 'server-sentinel
655 :filter 'server-process-filter
656 ;; We must receive file names without being decoded.
657 ;; Those are decoded by server-process-filter according
658 ;; to file-name-coding-system. Also don't get
659 ;; confused by CRs since we don't quote them.
660 :coding 'raw-text-unix
661 ;; The other args depend on the kind of socket used.
662 (if server-use-tcp
663 (list :family 'ipv4 ;; We're not ready for IPv6 yet
664 :service (or server-port t)
665 :host (or server-host 'local)
666 :plist '(:authenticated nil))
667 (list :family 'local
668 :service server-file
669 :plist '(:authenticated t)))))
670 (unless server-process (error "Could not start server process"))
671 (process-put server-process :server-file server-file)
672 (when server-use-tcp
673 (let ((auth-key (server-get-auth-key)))
674 (process-put server-process :auth-key auth-key)
675 (with-temp-file server-file
676 (set-buffer-multibyte nil)
677 (setq buffer-file-coding-system 'no-conversion)
678 (insert (format-network-address
679 (process-contact server-process :local))
680 " " (number-to-string (emacs-pid)) ; Kept for compatibility
681 "\n" auth-key)))))))))
683 (defun server-force-stop ()
684 "Kill all connections to the current server.
685 This function is meant to be called from `kill-emacs-hook'."
686 (server-start t t))
688 ;;;###autoload
689 (defun server-force-delete (&optional name)
690 "Unconditionally delete connection file for server NAME.
691 If server is running, it is first stopped.
692 NAME defaults to `server-name'. With argument, ask for NAME."
693 (interactive
694 (list (if current-prefix-arg
695 (read-string "Server name: " nil nil server-name))))
696 (when server-mode (with-temp-message nil (server-mode -1)))
697 (let ((file (expand-file-name (or name server-name)
698 (if server-use-tcp
699 server-auth-dir
700 server-socket-dir))))
701 (condition-case nil
702 (let (delete-by-moving-to-trash)
703 (delete-file file)
704 (message "Connection file %S deleted" file))
705 (file-error
706 (message "No connection file %S" file)))))
708 (defun server-running-p (&optional name)
709 "Test whether server NAME is running.
711 Return values:
712 nil the server is definitely not running.
713 t the server seems to be running.
714 something else we cannot determine whether it's running without using
715 commands which may have to wait for a long time."
716 (unless name (setq name server-name))
717 (condition-case nil
718 (if server-use-tcp
719 (with-temp-buffer
720 (insert-file-contents-literally (expand-file-name name server-auth-dir))
721 (or (and (looking-at "127\\.0\\.0\\.1:[0-9]+ \\([0-9]+\\)")
722 (assq 'comm
723 (process-attributes
724 (string-to-number (match-string 1))))
726 :other))
727 (delete-process
728 (make-network-process
729 :name "server-client-test" :family 'local :server nil :noquery t
730 :service (expand-file-name name server-socket-dir)))
732 (file-error nil)))
734 ;;;###autoload
735 (define-minor-mode server-mode
736 "Toggle Server mode.
737 With a prefix argument ARG, enable Server mode if ARG is
738 positive, and disable it otherwise. If called from Lisp, enable
739 Server mode if ARG is omitted or nil.
741 Server mode runs a process that accepts commands from the
742 `emacsclient' program. See Info node `Emacs server' and
743 `server-start' for details."
744 :global t
745 :group 'server
746 :version "22.1"
747 ;; Fixme: Should this check for an existing server socket and do
748 ;; nothing if there is one (for multiple Emacs sessions)?
749 (server-start (not server-mode)))
751 (defun server-eval-and-print (expr proc)
752 "Eval EXPR and send the result back to client PROC."
753 ;; While we're running asynchronously (from a process filter), it is likely
754 ;; that the emacsclient command was run in response to a user
755 ;; action, so the user probably knows that Emacs is processing this
756 ;; emacsclient request, so if we get a C-g it's likely that the user
757 ;; intended it to interrupt us rather than interrupt whatever Emacs
758 ;; was doing before it started handling the process filter.
759 ;; Hence `with-local-quit' (bug#6585).
760 (let ((v (with-local-quit (eval (car (read-from-string expr))))))
761 (when proc
762 (with-temp-buffer
763 (let ((standard-output (current-buffer)))
764 (pp v)
765 (let ((text (buffer-substring-no-properties
766 (point-min) (point-max))))
767 (server-reply-print (server-quote-arg text) proc)))))))
769 (defconst server-msg-size 1024
770 "Maximum size of a message sent to a client.")
772 (defun server-reply-print (qtext proc)
773 "Send a `-print QTEXT' command to client PROC.
774 QTEXT must be already quoted.
775 This handles splitting the command if it would be bigger than
776 `server-msg-size'."
777 (let ((prefix "-print ")
778 part)
779 (while (> (+ (length qtext) (length prefix) 1) server-msg-size)
780 ;; We have to split the string
781 (setq part (substring qtext 0 (- server-msg-size (length prefix) 1)))
782 ;; Don't split in the middle of a quote sequence
783 (if (string-match "\\(^\\|[^&]\\)\\(&&\\)+$" part)
784 ;; There is an uneven number of & at the end
785 (setq part (substring part 0 -1)))
786 (setq qtext (substring qtext (length part)))
787 (server-send-string proc (concat prefix part "\n"))
788 (setq prefix "-print-nonl "))
789 (server-send-string proc (concat prefix qtext "\n"))))
791 (defun server-create-tty-frame (tty type proc)
792 (unless tty
793 (error "Invalid terminal device"))
794 (unless type
795 (error "Invalid terminal type"))
796 (add-to-list 'frame-inherited-parameters 'client)
797 (let ((frame
798 (server-with-environment
799 (process-get proc 'env)
800 '("LANG" "LC_CTYPE" "LC_ALL"
801 ;; For tgetent(3); list according to ncurses(3).
802 "BAUDRATE" "COLUMNS" "ESCDELAY" "HOME" "LINES"
803 "NCURSES_ASSUMED_COLORS" "NCURSES_NO_PADDING"
804 "NCURSES_NO_SETBUF" "TERM" "TERMCAP" "TERMINFO"
805 "TERMINFO_DIRS" "TERMPATH"
806 ;; rxvt wants these
807 "COLORFGBG" "COLORTERM")
808 (make-frame `((window-system . nil)
809 (tty . ,tty)
810 (tty-type . ,type)
811 ;; Ignore nowait here; we always need to
812 ;; clean up opened ttys when the client dies.
813 (client . ,proc)
814 ;; This is a leftover from an earlier
815 ;; attempt at making it possible for process
816 ;; run in the server process to use the
817 ;; environment of the client process.
818 ;; It has no effect now and to make it work
819 ;; we'd need to decide how to make
820 ;; process-environment interact with client
821 ;; envvars, and then to change the
822 ;; C functions `child_setup' and
823 ;; `getenv_internal' accordingly.
824 (environment . ,(process-get proc 'env)))))))
826 ;; ttys don't use the `display' parameter, but callproc.c does to set
827 ;; the DISPLAY environment on subprocesses.
828 (set-frame-parameter frame 'display
829 (getenv-internal "DISPLAY" (process-get proc 'env)))
830 (select-frame frame)
831 (process-put proc 'frame frame)
832 (process-put proc 'terminal (frame-terminal frame))
833 frame))
835 (defun server-create-window-system-frame (display nowait proc parent-id
836 &optional parameters)
837 (let* ((display (or display
838 (frame-parameter nil 'display)
839 (error "Please specify display.")))
840 (w (or (cdr (assq 'window-system parameters))
841 (window-system-for-display display))))
843 (unless (assq w window-system-initialization-alist)
844 (setq w nil))
846 ;; Special case for ns. This is because DISPLAY may not be set at all
847 ;; which in the ns case isn't an error. The variable display then becomes
848 ;; the fully qualified hostname, which make-frame-on-display below
849 ;; does not understand and throws an error.
850 ;; It may also be a valid X display, but if Emacs is compiled for ns, it
851 ;; can not make X frames.
852 (if (featurep 'ns-win)
853 (setq w 'ns display "ns"))
855 (cond (w
856 ;; Flag frame as client-created, but use a dummy client.
857 ;; This will prevent the frame from being deleted when
858 ;; emacsclient quits while also preventing
859 ;; `server-save-buffers-kill-terminal' from unexpectedly
860 ;; killing emacs on that frame.
861 (let* ((params `((client . ,(if nowait 'nowait proc))
862 ;; This is a leftover, see above.
863 (environment . ,(process-get proc 'env))
864 ,@parameters))
865 frame)
866 (if parent-id
867 (push (cons 'parent-id (string-to-number parent-id)) params))
868 (add-to-list 'frame-inherited-parameters 'client)
869 (setq frame (make-frame-on-display display params))
870 (server-log (format "%s created" frame) proc)
871 (select-frame frame)
872 (process-put proc 'frame frame)
873 (process-put proc 'terminal (frame-terminal frame))
874 frame))
877 (server-log "Window system unsupported" proc)
878 (server-send-string proc "-window-system-unsupported \n")
879 nil))))
881 (defun server-goto-toplevel (proc)
882 (condition-case nil
883 ;; If we're running isearch, we must abort it to allow Emacs to
884 ;; display the buffer and switch to it.
885 (dolist (buffer (buffer-list))
886 (with-current-buffer buffer
887 (when (bound-and-true-p isearch-mode)
888 (isearch-cancel))))
889 ;; Signaled by isearch-cancel.
890 (quit (message nil)))
891 (when (> (recursion-depth) 0)
892 ;; We're inside a minibuffer already, so if the emacs-client is trying
893 ;; to open a frame on a new display, we might end up with an unusable
894 ;; frame because input from that display will be blocked (until exiting
895 ;; the minibuffer). Better exit this minibuffer right away.
896 ;; Similarly with recursive-edits such as the splash screen.
897 (run-with-timer 0 nil (lambda () (server-execute-continuation proc)))
898 (top-level)))
900 ;; We use various special properties on process objects:
901 ;; - `env' stores the info about the environment of the emacsclient process.
902 ;; - `continuation' is a no-arg function that we need to execute. It contains
903 ;; commands we wanted to execute in some earlier invocation of the process
904 ;; filter but that we somehow were unable to process at that time
905 ;; (e.g. because we first need to throw to the toplevel).
907 (defun server-execute-continuation (proc)
908 (let ((continuation (process-get proc 'continuation)))
909 (process-put proc 'continuation nil)
910 (if continuation (ignore-errors (funcall continuation)))))
912 (cl-defun server-process-filter (proc string)
913 "Process a request from the server to edit some files.
914 PROC is the server process. STRING consists of a sequence of
915 commands prefixed by a dash. Some commands have arguments;
916 these are &-quoted and need to be decoded by `server-unquote-arg'.
917 The filter parses and executes these commands.
919 To illustrate the protocol, here is an example command that
920 emacsclient sends to create a new X frame (note that the whole
921 sequence is sent on a single line):
923 -env HOME=/home/lorentey
924 -env DISPLAY=:0.0
925 ... lots of other -env commands
926 -display :0.0
927 -window-system
929 The following commands are accepted by the server:
931 `-auth AUTH-STRING'
932 Authenticate the client using the secret authentication string
933 AUTH-STRING.
935 `-env NAME=VALUE'
936 An environment variable on the client side.
938 `-dir DIRNAME'
939 The current working directory of the client process.
941 `-current-frame'
942 Forbid the creation of new frames.
944 `-frame-parameters ALIST'
945 Set the parameters of the created frame.
947 `-nowait'
948 Request that the next frame created should not be
949 associated with this client.
951 `-display DISPLAY'
952 Set the display name to open X frames on.
954 `-position LINE[:COLUMN]'
955 Go to the given line and column number
956 in the next file opened.
958 `-file FILENAME'
959 Load the given file in the current frame.
961 `-eval EXPR'
962 Evaluate EXPR as a Lisp expression and return the
963 result in -print commands.
965 `-window-system'
966 Open a new X frame.
968 `-tty DEVICENAME TYPE'
969 Open a new tty frame at the client.
971 `-suspend'
972 Suspend this tty frame. The client sends this string in
973 response to SIGTSTP and SIGTTOU. The server must cease all I/O
974 on this tty until it gets a -resume command.
976 `-resume'
977 Resume this tty frame. The client sends this string when it
978 gets the SIGCONT signal and it is the foreground process on its
979 controlling tty.
981 `-ignore COMMENT'
982 Do nothing, but put the comment in the server log.
983 Useful for debugging.
986 The following commands are accepted by the client:
988 `-emacs-pid PID'
989 Describes the process id of the Emacs process;
990 used to forward window change signals to it.
992 `-window-system-unsupported'
993 Signals that the server does not support creating X frames;
994 the client must try again with a tty frame.
996 `-print STRING'
997 Print STRING on stdout. Used to send values
998 returned by -eval.
1000 `-print-nonl STRING'
1001 Print STRING on stdout. Used to continue a
1002 preceding -print command that would be too big to send
1003 in a single message.
1005 `-error DESCRIPTION'
1006 Signal an error and delete process PROC.
1008 `-suspend'
1009 Suspend this terminal, i.e., stop the client process.
1010 Sent when the user presses C-z."
1011 (server-log (concat "Received " string) proc)
1012 ;; First things first: let's check the authentication
1013 (unless (process-get proc :authenticated)
1014 (if (and (string-match "-auth \\([!-~]+\\)\n?" string)
1015 (equal (match-string 1 string) (process-get proc :auth-key)))
1016 (progn
1017 (setq string (substring string (match-end 0)))
1018 (process-put proc :authenticated t)
1019 (server-log "Authentication successful" proc))
1020 (server-log "Authentication failed" proc)
1021 (server-send-string
1022 proc (concat "-error " (server-quote-arg "Authentication failed")))
1023 ;; Before calling `delete-process', give emacsclient time to
1024 ;; receive the error string and shut down on its own.
1025 (sit-for 1)
1026 (delete-process proc)
1027 ;; We return immediately.
1028 (cl-return-from server-process-filter)))
1029 (let ((prev (process-get proc 'previous-string)))
1030 (when prev
1031 (setq string (concat prev string))
1032 (process-put proc 'previous-string nil)))
1033 (condition-case err
1034 (progn
1035 (server-add-client proc)
1036 ;; Send our pid
1037 (server-send-string proc (concat "-emacs-pid "
1038 (number-to-string (emacs-pid)) "\n"))
1039 (if (not (string-match "\n" string))
1040 ;; Save for later any partial line that remains.
1041 (when (> (length string) 0)
1042 (process-put proc 'previous-string string))
1044 ;; In earlier versions of server.el (where we used an `emacsserver'
1045 ;; process), there could be multiple lines. Nowadays this is not
1046 ;; supported any more.
1047 (cl-assert (eq (match-end 0) (length string)))
1048 (let ((request (substring string 0 (match-beginning 0)))
1049 (coding-system (and (default-value 'enable-multibyte-characters)
1050 (or file-name-coding-system
1051 default-file-name-coding-system)))
1052 nowait ; t if emacsclient does not want to wait for us.
1053 frame ; Frame opened for the client (if any).
1054 display ; Open frame on this display.
1055 parent-id ; Window ID for XEmbed
1056 dontkill ; t if client should not be killed.
1057 commands
1059 use-current-frame
1060 frame-parameters ;parameters for newly created frame
1061 tty-name ; nil, `window-system', or the tty name.
1062 tty-type ; string.
1063 files
1064 filepos
1065 args-left)
1066 ;; Remove this line from STRING.
1067 (setq string (substring string (match-end 0)))
1068 (setq args-left
1069 (mapcar 'server-unquote-arg (split-string request " " t)))
1070 (while args-left
1071 (pcase (pop args-left)
1072 ;; -version CLIENT-VERSION: obsolete at birth.
1073 (`"-version" (pop args-left))
1075 ;; -nowait: Emacsclient won't wait for a result.
1076 (`"-nowait" (setq nowait t))
1078 ;; -current-frame: Don't create frames.
1079 (`"-current-frame" (setq use-current-frame t))
1081 ;; -frame-parameters: Set frame parameters
1082 (`"-frame-parameters"
1083 (let ((alist (pop args-left)))
1084 (if coding-system
1085 (setq alist (decode-coding-string alist coding-system)))
1086 (setq frame-parameters (car (read-from-string alist)))))
1088 ;; -display DISPLAY:
1089 ;; Open X frames on the given display instead of the default.
1090 (`"-display"
1091 (setq display (pop args-left))
1092 (if (zerop (length display)) (setq display nil)))
1094 ;; -parent-id ID:
1095 ;; Open X frame within window ID, via XEmbed.
1096 (`"-parent-id"
1097 (setq parent-id (pop args-left))
1098 (if (zerop (length parent-id)) (setq parent-id nil)))
1100 ;; -window-system: Open a new X frame.
1101 (`"-window-system"
1102 (if (fboundp 'x-create-frame)
1103 (setq dontkill t
1104 tty-name 'window-system)))
1106 ;; -resume: Resume a suspended tty frame.
1107 (`"-resume"
1108 (let ((terminal (process-get proc 'terminal)))
1109 (setq dontkill t)
1110 (push (lambda ()
1111 (when (eq (terminal-live-p terminal) t)
1112 (resume-tty terminal)))
1113 commands)))
1115 ;; -suspend: Suspend the client's frame. (In case we
1116 ;; get out of sync, and a C-z sends a SIGTSTP to
1117 ;; emacsclient.)
1118 (`"-suspend"
1119 (let ((terminal (process-get proc 'terminal)))
1120 (setq dontkill t)
1121 (push (lambda ()
1122 (when (eq (terminal-live-p terminal) t)
1123 (suspend-tty terminal)))
1124 commands)))
1126 ;; -ignore COMMENT: Noop; useful for debugging emacsclient.
1127 ;; (The given comment appears in the server log.)
1128 (`"-ignore"
1129 (setq dontkill t)
1130 (pop args-left))
1132 ;; -tty DEVICE-NAME TYPE: Open a new tty frame.
1133 ;; (But if we see -window-system later, use that.)
1134 (`"-tty"
1135 (setq tty-name (pop args-left)
1136 tty-type (pop args-left)
1137 dontkill (or dontkill
1138 (not use-current-frame)))
1139 ;; On Windows, emacsclient always asks for a tty
1140 ;; frame. If running a GUI server, force the frame
1141 ;; type to GUI. (Cygwin is perfectly happy with
1142 ;; multi-tty support, so don't override the user's
1143 ;; choice there.) In daemon mode on Windows, we can't
1144 ;; make tty frames, so force the frame type to GUI
1145 ;; there too.
1146 (when (and (eq system-type 'windows-nt)
1147 (or (daemonp)
1148 (eq window-system 'w32)))
1149 (push "-window-system" args-left)))
1151 ;; -position LINE[:COLUMN]: Set point to the given
1152 ;; position in the next file.
1153 (`"-position"
1154 (if (not (string-match "\\+\\([0-9]+\\)\\(?::\\([0-9]+\\)\\)?"
1155 (car args-left)))
1156 (error "Invalid -position command in client args"))
1157 (let ((arg (pop args-left)))
1158 (setq filepos
1159 (cons (string-to-number (match-string 1 arg))
1160 (string-to-number (or (match-string 2 arg)
1161 ""))))))
1163 ;; -file FILENAME: Load the given file.
1164 (`"-file"
1165 (let ((file (pop args-left)))
1166 (if coding-system
1167 (setq file (decode-coding-string file coding-system)))
1168 (setq file (expand-file-name file dir))
1169 (push (cons file filepos) files)
1170 (server-log (format "New file: %s %s"
1171 file (or filepos "")) proc))
1172 (setq filepos nil))
1174 ;; -eval EXPR: Evaluate a Lisp expression.
1175 (`"-eval"
1176 (if use-current-frame
1177 (setq use-current-frame 'always))
1178 (let ((expr (pop args-left)))
1179 (if coding-system
1180 (setq expr (decode-coding-string expr coding-system)))
1181 (push (lambda () (server-eval-and-print expr proc))
1182 commands)
1183 (setq filepos nil)))
1185 ;; -env NAME=VALUE: An environment variable.
1186 (`"-env"
1187 (let ((var (pop args-left)))
1188 ;; XXX Variables should be encoded as in getenv/setenv.
1189 (process-put proc 'env
1190 (cons var (process-get proc 'env)))))
1192 ;; -dir DIRNAME: The cwd of the emacsclient process.
1193 (`"-dir"
1194 (setq dir (pop args-left))
1195 (if coding-system
1196 (setq dir (decode-coding-string dir coding-system)))
1197 (setq dir (command-line-normalize-file-name dir))
1198 (process-put proc 'server-client-directory dir))
1200 ;; Unknown command.
1201 (arg (error "Unknown command: %s" arg))))
1203 ;; If both -no-wait and -tty are given with file or sexp
1204 ;; arguments, use an existing frame.
1205 (and nowait
1206 (not (eq tty-name 'window-system))
1207 (or files commands)
1208 (setq use-current-frame t))
1210 (setq frame
1211 (cond
1212 ((and use-current-frame
1213 (or (eq use-current-frame 'always)
1214 ;; We can't use the Emacs daemon's
1215 ;; terminal frame.
1216 (not (and (daemonp)
1217 (null (cdr (frame-list)))
1218 (eq (selected-frame)
1219 terminal-frame)))))
1220 (setq tty-name nil tty-type nil)
1221 (if display (server-select-display display)))
1222 ((or (and (eq system-type 'windows-nt)
1223 (daemonp)
1224 (setq display "w32"))
1225 (eq tty-name 'window-system))
1226 (server-create-window-system-frame display nowait proc
1227 parent-id
1228 frame-parameters))
1229 ;; When resuming on a tty, tty-name is nil.
1230 (tty-name
1231 (server-create-tty-frame tty-name tty-type proc))))
1233 (process-put
1234 proc 'continuation
1235 (lambda ()
1236 (with-current-buffer (get-buffer-create server-buffer)
1237 ;; Use the same cwd as the emacsclient, if possible, so
1238 ;; relative file names work correctly, even in `eval'.
1239 (let ((default-directory
1240 (if (and dir (file-directory-p dir))
1241 dir default-directory)))
1242 (server-execute proc files nowait commands
1243 dontkill frame tty-name)))))
1245 (when (or frame files)
1246 (server-goto-toplevel proc))
1248 (server-execute-continuation proc))))
1249 ;; condition-case
1250 (error (server-return-error proc err))))
1252 (defun server-execute (proc files nowait commands dontkill frame tty-name)
1253 ;; This is run from timers and process-filters, i.e. "asynchronously".
1254 ;; But w.r.t the user, this is not really asynchronous since the timer
1255 ;; is run after 0s and the process-filter is run in response to the
1256 ;; user running `emacsclient'. So it is OK to override the
1257 ;; inhibit-quit flag, which is good since `commands' (as well as
1258 ;; find-file-noselect via the major-mode) can run arbitrary code,
1259 ;; including code that needs to wait.
1260 (with-local-quit
1261 (condition-case err
1262 (let ((buffers (server-visit-files files proc nowait)))
1263 (mapc 'funcall (nreverse commands))
1265 ;; If we were told only to open a new client, obey
1266 ;; `initial-buffer-choice' if it specifies a file
1267 ;; or a function.
1268 (unless (or files commands)
1269 (let ((buf
1270 (cond ((stringp initial-buffer-choice)
1271 (find-file-noselect initial-buffer-choice))
1272 ((functionp initial-buffer-choice)
1273 (funcall initial-buffer-choice)))))
1274 (switch-to-buffer
1275 (if (buffer-live-p buf) buf (get-buffer-create "*scratch*"))
1276 'norecord)))
1278 ;; Delete the client if necessary.
1279 (cond
1280 (nowait
1281 ;; Client requested nowait; return immediately.
1282 (server-log "Close nowait client" proc)
1283 (server-delete-client proc))
1284 ((and (not dontkill) (null buffers))
1285 ;; This client is empty; get rid of it immediately.
1286 (server-log "Close empty client" proc)
1287 (server-delete-client proc)))
1288 (cond
1289 ((or isearch-mode (minibufferp))
1290 nil)
1291 ((and frame (null buffers))
1292 (message "%s" (substitute-command-keys
1293 "When done with this frame, type \\[delete-frame]")))
1294 ((not (null buffers))
1295 (server-switch-buffer (car buffers) nil (cdr (car files)))
1296 (run-hooks 'server-switch-hook)
1297 (unless nowait
1298 (message "%s" (substitute-command-keys
1299 "When done with a buffer, type \\[server-edit]")))))
1300 (when (and frame (null tty-name))
1301 (server-unselect-display frame)))
1302 ((quit error)
1303 (when (eq (car err) 'quit)
1304 (message "Quit emacsclient request"))
1305 (server-return-error proc err)))))
1307 (defun server-return-error (proc err)
1308 (ignore-errors
1309 (server-send-string
1310 proc (concat "-error " (server-quote-arg
1311 (error-message-string err))))
1312 (server-log (error-message-string err) proc)
1313 ;; Before calling `delete-process', give emacsclient time to
1314 ;; receive the error string and shut down on its own.
1315 (sit-for 5)
1316 (delete-process proc)))
1318 (defun server-goto-line-column (line-col)
1319 "Move point to the position indicated in LINE-COL.
1320 LINE-COL should be a pair (LINE . COL)."
1321 (when line-col
1322 (goto-char (point-min))
1323 (forward-line (1- (car line-col)))
1324 (let ((column-number (cdr line-col)))
1325 (when (> column-number 0)
1326 (move-to-column (1- column-number))))))
1328 (defun server-visit-files (files proc &optional nowait)
1329 "Find FILES and return a list of buffers created.
1330 FILES is an alist whose elements are (FILENAME . FILEPOS)
1331 where FILEPOS can be nil or a pair (LINENUMBER . COLUMNNUMBER).
1332 PROC is the client that requested this operation.
1333 NOWAIT non-nil means this client is not waiting for the results,
1334 so don't mark these buffers specially, just visit them normally."
1335 ;; Bind last-nonmenu-event to force use of keyboard, not mouse, for queries.
1336 (let ((last-nonmenu-event t) client-record)
1337 ;; Restore the current buffer afterward, but not using save-excursion,
1338 ;; because we don't want to save point in this buffer
1339 ;; if it happens to be one of those specified by the server.
1340 (save-current-buffer
1341 (dolist (file files)
1342 ;; If there is an existing buffer modified or the file is
1343 ;; modified, revert it. If there is an existing buffer with
1344 ;; deleted file, offer to write it.
1345 (let* ((minibuffer-auto-raise (or server-raise-frame
1346 minibuffer-auto-raise))
1347 (filen (car file))
1348 (obuf (get-file-buffer filen)))
1349 (add-to-history 'file-name-history filen)
1350 (if (null obuf)
1351 (progn
1352 (run-hooks 'pre-command-hook)
1353 (set-buffer (find-file-noselect filen)))
1354 (set-buffer obuf)
1355 ;; separately for each file, in sync with post-command hooks,
1356 ;; with the new buffer current:
1357 (run-hooks 'pre-command-hook)
1358 (cond ((file-exists-p filen)
1359 (when (not (verify-visited-file-modtime obuf))
1360 (revert-buffer t nil)))
1362 (when (y-or-n-p
1363 (concat "File no longer exists: " filen
1364 ", write buffer to file? "))
1365 (write-file filen))))
1366 (unless server-buffer-clients
1367 (setq server-existing-buffer t)))
1368 (server-goto-line-column (cdr file))
1369 (run-hooks 'server-visit-hook)
1370 ;; hooks may be specific to current buffer:
1371 (run-hooks 'post-command-hook))
1372 (unless nowait
1373 ;; When the buffer is killed, inform the clients.
1374 (add-hook 'kill-buffer-hook 'server-kill-buffer nil t)
1375 (push proc server-buffer-clients))
1376 (push (current-buffer) client-record)))
1377 (unless nowait
1378 (process-put proc 'buffers
1379 (nconc (process-get proc 'buffers) client-record)))
1380 client-record))
1382 (defvar server-kill-buffer-running nil
1383 "Non-nil while `server-kill-buffer' or `server-buffer-done' is running.")
1385 (defun server-buffer-done (buffer &optional for-killing)
1386 "Mark BUFFER as \"done\" for its client(s).
1387 This buries the buffer, then returns a list of the form (NEXT-BUFFER KILLED).
1388 NEXT-BUFFER is another server buffer, as a suggestion for what to select next,
1389 or nil. KILLED is t if we killed BUFFER (typically, because it was visiting
1390 a temp file).
1391 FOR-KILLING if non-nil indicates that we are called from `kill-buffer'."
1392 (let ((next-buffer nil)
1393 (killed nil))
1394 (dolist (proc server-clients)
1395 (let ((buffers (process-get proc 'buffers)))
1396 (or next-buffer
1397 (setq next-buffer (nth 1 (memq buffer buffers))))
1398 (when buffers ; Ignore bufferless clients.
1399 (setq buffers (delq buffer buffers))
1400 ;; Delete all dead buffers from PROC.
1401 (dolist (b buffers)
1402 (and (bufferp b)
1403 (not (buffer-live-p b))
1404 (setq buffers (delq b buffers))))
1405 (process-put proc 'buffers buffers)
1406 ;; If client now has no pending buffers,
1407 ;; tell it that it is done, and forget it entirely.
1408 (unless buffers
1409 (server-log "Close" proc)
1410 (if for-killing
1411 ;; `server-delete-client' might delete the client's
1412 ;; frames, which might change the current buffer. We
1413 ;; don't want that (bug#640).
1414 (save-current-buffer
1415 (server-delete-client proc))
1416 (server-delete-client proc))))))
1417 (when (and (bufferp buffer) (buffer-name buffer))
1418 ;; We may or may not kill this buffer;
1419 ;; if we do, do not call server-buffer-done recursively
1420 ;; from kill-buffer-hook.
1421 (let ((server-kill-buffer-running t))
1422 (with-current-buffer buffer
1423 (setq server-buffer-clients nil)
1424 (run-hooks 'server-done-hook))
1425 ;; Notice whether server-done-hook killed the buffer.
1426 (if (null (buffer-name buffer))
1427 (setq killed t)
1428 ;; Don't bother killing or burying the buffer
1429 ;; when we are called from kill-buffer.
1430 (unless for-killing
1431 (when (and (not killed)
1432 server-kill-new-buffers
1433 (with-current-buffer buffer
1434 (not server-existing-buffer)))
1435 (setq killed t)
1436 (bury-buffer buffer)
1437 ;; Prevent kill-buffer from prompting (Bug#3696).
1438 (with-current-buffer buffer
1439 (set-buffer-modified-p nil))
1440 (kill-buffer buffer))
1441 (unless killed
1442 (if (server-temp-file-p buffer)
1443 (progn
1444 (with-current-buffer buffer
1445 (set-buffer-modified-p nil))
1446 (kill-buffer buffer)
1447 (setq killed t))
1448 (bury-buffer buffer)))))))
1449 (list next-buffer killed)))
1451 (defun server-temp-file-p (&optional buffer)
1452 "Return non-nil if BUFFER contains a file considered temporary.
1453 These are files whose names suggest they are repeatedly
1454 reused to pass information to another program.
1456 The variable `server-temp-file-regexp' controls which filenames
1457 are considered temporary."
1458 (and (buffer-file-name buffer)
1459 (string-match-p server-temp-file-regexp (buffer-file-name buffer))))
1461 (defun server-done ()
1462 "Offer to save current buffer, mark it as \"done\" for clients.
1463 This kills or buries the buffer, then returns a list
1464 of the form (NEXT-BUFFER KILLED). NEXT-BUFFER is another server buffer,
1465 as a suggestion for what to select next, or nil.
1466 KILLED is t if we killed BUFFER, which happens if it was created
1467 specifically for the clients and did not exist before their request for it."
1468 (when server-buffer-clients
1469 (if (server-temp-file-p)
1470 ;; For a temp file, save, and do make a non-numeric backup
1471 ;; (unless make-backup-files is nil).
1472 (let ((version-control nil)
1473 (buffer-backed-up nil))
1474 (save-buffer))
1475 (when (and (buffer-modified-p)
1476 buffer-file-name
1477 (y-or-n-p (concat "Save file " buffer-file-name "? ")))
1478 (save-buffer)))
1479 (server-buffer-done (current-buffer))))
1481 (defun server-kill-emacs-query-function ()
1482 "Ask before exiting Emacs if it has live clients."
1483 (or (not server-clients)
1484 (let (live-client)
1485 (dolist (proc server-clients)
1486 (when (memq t (mapcar 'buffer-live-p (process-get
1487 proc 'buffers)))
1488 (setq live-client t)))
1489 live-client)
1490 (yes-or-no-p "This Emacs session has clients; exit anyway? ")))
1492 (defun server-kill-buffer ()
1493 "Remove the current buffer from its clients' buffer list.
1494 Designed to be added to `kill-buffer-hook'."
1495 ;; Prevent infinite recursion if user has made server-done-hook
1496 ;; call kill-buffer.
1497 (or server-kill-buffer-running
1498 (and server-buffer-clients
1499 (let ((server-kill-buffer-running t))
1500 (when server-process
1501 (server-buffer-done (current-buffer) t))))))
1503 (defun server-edit (&optional arg)
1504 "Switch to next server editing buffer; say \"Done\" for current buffer.
1505 If a server buffer is current, it is marked \"done\" and optionally saved.
1506 The buffer is also killed if it did not exist before the clients asked for it.
1507 When all of a client's buffers are marked as \"done\", the client is notified.
1509 Temporary files such as MH <draft> files are always saved and backed up,
1510 no questions asked. (The variable `make-backup-files', if nil, still
1511 inhibits a backup; you can set it locally in a particular buffer to
1512 prevent a backup for it.) The variable `server-temp-file-regexp' controls
1513 which filenames are considered temporary.
1515 If invoked with a prefix argument, or if there is no server process running,
1516 starts server process and that is all. Invoked by \\[server-edit]."
1517 (interactive "P")
1518 (cond
1519 ((or arg
1520 (not server-process)
1521 (memq (process-status server-process) '(signal exit)))
1522 (server-mode 1))
1523 (server-clients (apply 'server-switch-buffer (server-done)))
1524 (t (message "No server editing buffers exist"))))
1526 (defun server-switch-buffer (&optional next-buffer killed-one filepos)
1527 "Switch to another buffer, preferably one that has a client.
1528 Arg NEXT-BUFFER is a suggestion; if it is a live buffer, use it.
1530 KILLED-ONE is t in a recursive call if we have already killed one
1531 temp-file server buffer. This means we should avoid the final
1532 \"switch to some other buffer\" since we've already effectively
1533 done that.
1535 FILEPOS specifies a new buffer position for NEXT-BUFFER, if we
1536 visit NEXT-BUFFER in an existing window. If non-nil, it should
1537 be a cons cell (LINENUMBER . COLUMNNUMBER)."
1538 (if (null next-buffer)
1539 (progn
1540 (let ((rest server-clients))
1541 (while (and rest (not next-buffer))
1542 (let ((proc (car rest)))
1543 ;; Only look at frameless clients, or those in the selected
1544 ;; frame.
1545 (when (or (not (process-get proc 'frame))
1546 (eq (process-get proc 'frame) (selected-frame)))
1547 (setq next-buffer (car (process-get proc 'buffers))))
1548 (setq rest (cdr rest)))))
1549 (and next-buffer (server-switch-buffer next-buffer killed-one))
1550 (unless (or next-buffer killed-one (window-dedicated-p))
1551 ;; (switch-to-buffer (other-buffer))
1552 (message "No server buffers remain to edit")))
1553 (if (not (buffer-live-p next-buffer))
1554 ;; If NEXT-BUFFER is a dead buffer, remove the server records for it
1555 ;; and try the next surviving server buffer.
1556 (apply 'server-switch-buffer (server-buffer-done next-buffer))
1557 ;; OK, we know next-buffer is live, let's display and select it.
1558 (if (functionp server-window)
1559 (funcall server-window next-buffer)
1560 (let ((win (get-buffer-window next-buffer 0)))
1561 (if (and win (not server-window))
1562 ;; The buffer is already displayed: just reuse the
1563 ;; window. If FILEPOS is non-nil, use it to replace the
1564 ;; window's own value of point.
1565 (progn
1566 (select-window win)
1567 (set-buffer next-buffer)
1568 (when filepos
1569 (server-goto-line-column filepos)))
1570 ;; Otherwise, let's find an appropriate window.
1571 (cond ((window-live-p server-window)
1572 (select-window server-window))
1573 ((framep server-window)
1574 (unless (frame-live-p server-window)
1575 (setq server-window (make-frame)))
1576 (select-window (frame-selected-window server-window))))
1577 (when (window-minibuffer-p)
1578 (select-window (next-window nil 'nomini 0)))
1579 ;; Move to a non-dedicated window, if we have one.
1580 (when (window-dedicated-p)
1581 (select-window
1582 (get-window-with-predicate
1583 (lambda (w)
1584 (and (not (window-dedicated-p w))
1585 (equal (frame-terminal (window-frame w))
1586 (frame-terminal))))
1587 'nomini 'visible (selected-window))))
1588 (condition-case nil
1589 (switch-to-buffer next-buffer)
1590 ;; After all the above, we might still have ended up with
1591 ;; a minibuffer/dedicated-window (if there's no other).
1592 (error (pop-to-buffer next-buffer)))))))
1593 (when server-raise-frame
1594 (select-frame-set-input-focus (window-frame)))))
1596 ;;;###autoload
1597 (defun server-save-buffers-kill-terminal (arg)
1598 ;; Called from save-buffers-kill-terminal in files.el.
1599 "Offer to save each buffer, then kill the current client.
1600 With ARG non-nil, silently save all file-visiting buffers, then kill.
1602 If emacsclient was started with a list of filenames to edit, then
1603 only these files will be asked to be saved."
1604 (let ((proc (frame-parameter nil 'client)))
1605 (cond ((eq proc 'nowait)
1606 ;; Nowait frames have no client buffer list.
1607 (if (cdr (frame-list))
1608 (progn (save-some-buffers arg)
1609 (delete-frame))
1610 ;; If we're the last frame standing, kill Emacs.
1611 (save-buffers-kill-emacs arg)))
1612 ((processp proc)
1613 (let ((buffers (process-get proc 'buffers)))
1614 ;; If client is bufferless, emulate a normal Emacs exit
1615 ;; and offer to save all buffers. Otherwise, offer to
1616 ;; save only the buffers belonging to the client.
1617 (save-some-buffers
1618 arg (if buffers
1619 (lambda () (memq (current-buffer) buffers))
1621 (server-delete-client proc)))
1622 (t (error "Invalid client frame")))))
1624 (define-key ctl-x-map "#" 'server-edit)
1626 (defun server-unload-function ()
1627 "Unload the Server library."
1628 (server-mode -1)
1629 (substitute-key-definition 'server-edit nil ctl-x-map)
1630 (save-current-buffer
1631 (dolist (buffer (buffer-list))
1632 (set-buffer buffer)
1633 (remove-hook 'kill-buffer-hook 'server-kill-buffer t)))
1634 ;; continue standard unloading
1635 nil)
1637 (defun server-eval-at (server form)
1638 "Contact the Emacs server named SERVER and evaluate FORM there.
1639 Returns the result of the evaluation, or signals an error if it
1640 cannot contact the specified server. For example:
1641 (server-eval-at \"server\" '(emacs-pid))
1642 returns the process ID of the Emacs instance running \"server\"."
1643 (let* ((server-dir (if server-use-tcp server-auth-dir server-socket-dir))
1644 (server-file (expand-file-name server server-dir))
1645 (coding-system-for-read 'binary)
1646 (coding-system-for-write 'binary)
1647 address port secret process)
1648 (unless (file-exists-p server-file)
1649 (error "No such server: %s" server))
1650 (with-temp-buffer
1651 (when server-use-tcp
1652 (let ((coding-system-for-read 'no-conversion))
1653 (insert-file-contents server-file)
1654 (unless (looking-at "\\([0-9.]+\\):\\([0-9]+\\)")
1655 (error "Invalid auth file"))
1656 (setq address (match-string 1)
1657 port (string-to-number (match-string 2)))
1658 (forward-line 1)
1659 (setq secret (buffer-substring (point) (line-end-position)))
1660 (erase-buffer)))
1661 (unless (setq process (make-network-process
1662 :name "eval-at"
1663 :buffer (current-buffer)
1664 :host address
1665 :service (if server-use-tcp port server-file)
1666 :family (if server-use-tcp 'ipv4 'local)
1667 :noquery t))
1668 (error "Unable to contact the server"))
1669 (if server-use-tcp
1670 (process-send-string process (concat "-auth " secret "\n")))
1671 (process-send-string process
1672 (concat "-eval "
1673 (server-quote-arg (format "%S" form))
1674 "\n"))
1675 (while (memq (process-status process) '(open run))
1676 (accept-process-output process 0 10))
1677 (goto-char (point-min))
1678 ;; If the result is nil, there's nothing in the buffer. If the
1679 ;; result is non-nil, it's after "-print ".
1680 (let ((answer ""))
1681 (while (re-search-forward "\n-print\\(-nonl\\)? " nil t)
1682 (setq answer
1683 (concat answer
1684 (buffer-substring (point)
1685 (progn (skip-chars-forward "^\n")
1686 (point))))))
1687 (if (not (equal answer ""))
1688 (read (decode-coding-string (server-unquote-arg answer)
1689 'emacs-internal)))))))
1692 (provide 'server)
1694 ;;; server.el ends here