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,
6 ;; Author: William Sommerfeld <wesommer@athena.mit.edu>
7 ;; Maintainer: emacs-devel@gnu.org
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/>.
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
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.
78 ;; - handle command-line-args-left.
79 ;; - move most of the args processing and decision making from emacsclient.c
81 ;; - fix up handling of the client's environment (place it in the terminal?).
85 (eval-when-compile (require 'cl-lib
))
88 "Emacs running as a server process."
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
))
96 (unless load-in-progress
97 (message "Local sockets unsupported, using TCP sockets")))
98 (set-default sym val
))
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)
113 (string :tag
"Name or IP address")
114 (const :tag
"Local" nil
))
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
126 (string :tag
"Port number")
127 (const :tag
"Random" nil
))
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."
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."
171 (const :tag
"Random" nil
)
172 (string :tag
"Password"))
175 (defcustom server-raise-frame t
176 "If non-nil, raise frame when switching to a buffer."
181 (defcustom server-visit-hook nil
182 "Hook run when visiting a file for the Emacs server."
186 (defcustom server-switch-hook nil
187 "Hook run when switching to a buffer for the Emacs server."
191 (defcustom server-done-hook nil
192 "Hook run when done editing a buffer for the Emacs server."
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."
221 :type
'(choice (const :tag
"Use selected window"
222 :match
(lambda (widget value
)
223 (not (functionp value
)))
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."
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
248 (or (assq 'server-buffer-clients minor-mode-alist
)
249 (push '(server-buffer-clients " Server") minor-mode-alist
))
251 (defvar server-existing-buffer nil
252 "Non-nil means the buffer existed before the server was asked to visit it.
253 This means that the server should not kill the buffer when you say you
254 are done with it in the server.")
255 (make-variable-buffer-local 'server-existing-buffer
)
257 (defcustom server-name
"server"
258 "The name of the Emacs server, if this Emacs process creates one.
259 The command `server-start' makes use of this. It should not be
260 changed while a server is running."
265 ;; We do not use `temporary-file-directory' here, because emacsclient
266 ;; does not read the init file.
267 (defvar server-socket-dir
268 (and (featurep 'make-network-process
'(:family local
))
269 (format "%s/emacs%d" (or (getenv "TMPDIR") "/tmp") (user-uid)))
270 "The directory in which to place the server socket.
271 If local sockets are not supported, this is nil.")
273 (defun server-clients-with (property value
)
274 "Return a list of clients with PROPERTY set to VALUE."
276 (dolist (proc server-clients
)
277 (when (equal value
(process-get proc property
))
281 (defun server-add-client (proc)
282 "Create a client for process PROC, if it doesn't already have one.
283 New clients have no properties."
284 (add-to-list 'server-clients proc
))
286 (defmacro server-with-environment
(env vars
&rest body
)
287 "Evaluate BODY with environment variables VARS set to those in ENV.
288 The environment variables are then restored to their previous values.
290 VARS should be a list of strings.
291 ENV should be in the same format as `process-environment'."
293 (let ((var (make-symbol "var"))
294 (value (make-symbol "value")))
295 `(let ((process-environment process-environment
))
297 (let ((,value
(getenv-internal ,var
,env
)))
298 (push (if (stringp ,value
)
299 (concat ,var
"=" ,value
)
301 process-environment
)))
304 (defun server-delete-client (proc &optional noframe
)
305 "Delete PROC, including its buffers, terminals and frames.
306 If NOFRAME is non-nil, let the frames live.
307 Updates `server-clients'."
308 (server-log (concat "server-delete-client" (if noframe
" noframe")) proc
)
309 ;; Force a new lookup of client (prevents infinite recursion).
310 (when (memq proc server-clients
)
311 (let ((buffers (process-get proc
'buffers
)))
313 ;; Kill the client's buffers.
314 (dolist (buf buffers
)
315 (when (buffer-live-p buf
)
316 (with-current-buffer buf
317 ;; Kill the buffer if necessary.
318 (when (and (equal server-buffer-clients
320 (or (and server-kill-new-buffers
321 (not server-existing-buffer
))
322 (server-temp-file-p))
323 (not (buffer-modified-p)))
326 (progn (setq server-buffer-clients nil
)
327 (kill-buffer (current-buffer))
330 ;; Restore clients if user pressed C-g in `kill-buffer'.
331 (setq server-buffer-clients
(list proc
)))))))))
333 ;; Delete the client's frames.
335 (dolist (frame (frame-list))
336 (when (and (frame-live-p frame
)
337 (equal proc
(frame-parameter frame
'client
)))
338 ;; Prevent `server-handle-delete-frame' from calling us
340 (set-frame-parameter frame
'client nil
)
341 (delete-frame frame
))))
343 (setq server-clients
(delq proc server-clients
))
345 ;; Delete the client's tty, except on Windows (both GUI and console),
346 ;; where there's only one terminal and does not make sense to delete it.
347 (unless (eq system-type
'windows-nt
)
348 (let ((terminal (process-get proc
'terminal
)))
349 ;; Only delete the terminal if it is non-nil.
350 (when (and terminal
(eq (terminal-live-p terminal
) t
))
351 (delete-terminal terminal
))))
353 ;; Delete the client's process.
354 (if (eq (process-status proc
) 'open
)
355 (delete-process proc
))
357 (server-log "Deleted" proc
))))
359 (defvar server-log-time-function
'current-time-string
360 "Function to generate timestamps for `server-buffer'.")
362 (defconst server-buffer
" *server*"
363 "Buffer used internally by Emacs's server.
364 One use is to log the I/O for debugging purposes (see option `server-log'),
365 the other is to provide a current buffer in which the process filter can
366 safely let-bind buffer-local variables like `default-directory'.")
368 (defvar server-log nil
369 "If non-nil, log the server's inputs and outputs in the `server-buffer'.")
371 (defun server-log (string &optional client
)
372 "If option `server-log' is non-nil, log STRING to `server-buffer'.
373 If CLIENT is non-nil, add a description of it to the logged message."
375 (with-current-buffer (get-buffer-create server-buffer
)
376 (goto-char (point-max))
377 (insert (funcall server-log-time-function
)
380 ((listp client
) (format " %s: " (car client
)))
381 (t (format " %s: " client
)))
383 (or (bolp) (newline)))))
385 (defun server-sentinel (proc msg
)
386 "The process sentinel for Emacs server connections."
387 ;; If this is a new client process, set the query-on-exit flag to nil
388 ;; for this process (it isn't inherited from the server process).
389 (when (and (eq (process-status proc
) 'open
)
390 (process-query-on-exit-flag proc
))
391 (set-process-query-on-exit-flag proc nil
))
392 ;; Delete the associated connection file, if applicable.
393 ;; Although there's no 100% guarantee that the file is owned by the
394 ;; running Emacs instance, server-start uses server-running-p to check
395 ;; for possible servers before doing anything, so it *should* be ours.
396 (and (process-contact proc
:server
)
397 (eq (process-status proc
) 'closed
)
399 (delete-file (process-get proc
:server-file
))))
400 (server-log (format "Status changed to %s: %s" (process-status proc
) msg
) proc
)
401 (server-delete-client proc
))
403 (defun server--on-display-p (frame display
)
404 (and (equal (frame-parameter frame
'display
) display
)
405 ;; Note: TTY frames still get a `display' parameter set to the value of
406 ;; $DISPLAY. This is useful when running from that tty frame
407 ;; sub-processes that want to connect to the X server, but that means we
408 ;; have to be careful here not to be tricked into thinking those frames
410 (not (eq (framep frame
) t
))))
412 (defun server-select-display (display)
413 ;; If the current frame is on `display' we're all set.
414 ;; Similarly if we are unable to open frames on other displays, there's
415 ;; nothing more we can do.
416 (unless (or (not (fboundp 'make-frame-on-display
))
417 (server--on-display-p (selected-frame) display
))
418 ;; Otherwise, look for an existing frame there and select it.
419 (dolist (frame (frame-list))
420 (when (server--on-display-p frame display
)
421 (select-frame frame
)))
422 ;; If there's no frame on that display yet, create and select one.
423 (unless (server--on-display-p (selected-frame) display
)
424 (let* ((buffer (generate-new-buffer " *server-dummy*"))
425 (frame (make-frame-on-display
427 ;; Make it display (and remember) some dummy buffer, so
428 ;; we can detect later if the frame is in use or not.
429 `((server-dummy-buffer .
,buffer
)
430 ;; This frame may be deleted later (see
431 ;; server-unselect-display) so we want it to be as
432 ;; unobtrusive as possible.
433 (visibility . nil
)))))
435 (set-window-buffer (selected-window) buffer
)
438 (defun server-unselect-display (frame)
439 (when (frame-live-p frame
)
440 ;; If the temporary frame is in use (displays something real), make it
441 ;; visible. If not (which can happen if the user's customizations call
442 ;; pop-to-buffer etc.), delete it to avoid preserving the connection after
443 ;; the last real frame is deleted.
445 ;; Rewritten to avoid inadvertently killing the current buffer after
446 ;; `delete-frame' removed FRAME (Bug#10729).
447 (let ((buffer (frame-parameter frame
'server-dummy-buffer
)))
448 (if (and (one-window-p 'nomini frame
)
449 (eq (window-buffer (frame-first-window frame
)) buffer
))
450 ;; The temp frame still only shows one buffer, and that is the
451 ;; internal temp buffer.
453 (set-frame-parameter frame
'visibility t
)
454 (set-frame-parameter frame
'server-dummy-buffer nil
))
455 (when (buffer-live-p buffer
)
456 (kill-buffer buffer
)))))
458 (defun server-handle-delete-frame (frame)
459 "Delete the client connection when the emacsclient frame is deleted.
460 \(To be used from `delete-frame-functions'.)"
461 (let ((proc (frame-parameter frame
'client
)))
462 (when (and (frame-live-p frame
)
464 ;; See if this is the last frame for this client.
465 (>= 1 (let ((frame-num 0))
466 (dolist (f (frame-list))
467 (when (eq proc
(frame-parameter f
'client
))
468 (setq frame-num
(1+ frame-num
))))
470 (server-log (format "server-handle-delete-frame, frame %s" frame
) proc
)
471 (server-delete-client proc
'noframe
)))) ; Let delete-frame delete the frame later.
473 (defun server-handle-suspend-tty (terminal)
474 "Notify the client process that its tty device is suspended."
475 (dolist (proc (server-clients-with 'terminal terminal
))
476 (server-log (format "server-handle-suspend-tty, terminal %s" terminal
)
479 (server-send-string proc
"-suspend \n")
480 (file-error ;The pipe/socket was closed.
481 (ignore-errors (server-delete-client proc
))))))
483 (defun server-unquote-arg (arg)
484 "Remove &-quotation from ARG.
485 See `server-quote-arg' and `server-process-filter'."
486 (replace-regexp-in-string
495 (defun server-quote-arg (arg)
496 "In ARG, insert a & before each &, each space, each newline, and -.
497 Change spaces to underscores, too, so that the return value never
500 See `server-unquote-arg' and `server-process-filter'."
501 (replace-regexp-in-string
502 "[-&\n ]" (lambda (s)
510 (defun server-send-string (proc string
)
511 "A wrapper around `process-send-string' for logging."
512 (server-log (concat "Sent " string
) proc
)
513 (process-send-string proc string
))
515 (defun server-ensure-safe-dir (dir)
516 "Make sure DIR is a directory with no race-condition issues.
517 Creates the directory if necessary and makes sure:
518 - there's no symlink involved
520 - it's not readable/writable by anybody else."
521 (setq dir
(directory-file-name dir
))
522 (let ((attrs (file-attributes dir
'integer
)))
524 (cl-letf (((default-file-modes) ?
\700)) (make-directory dir t
))
525 (setq attrs
(file-attributes dir
'integer
)))
527 ;; Check that it's safe for use.
528 (let* ((uid (nth 2 attrs
))
529 (w32 (eq system-type
'windows-nt
))
531 ((not (eq t
(car attrs
))) nil
) ; is a dir?
532 ((and w32
(zerop uid
)) ; on FAT32?
535 (format "Using `%s' to store Emacs-server authentication files.
536 Directories on FAT32 filesystems are NOT secure against tampering.
537 See variable `server-auth-dir' for details."
538 (file-name-as-directory dir
))
541 ((and (/= uid
(user-uid)) ; is the dir ours?
543 ;; Files created on Windows by Administrator
544 ;; (RID=500) have the Administrators (RID=544)
545 ;; group recorded as the owner.
546 (/= uid
544) (/= (user-uid) 500)))
549 (t ; else, check permissions
550 (zerop (logand ?
\077 (file-modes dir
)))))))
552 (error "The directory `%s' is unsafe" dir
)))))
554 (defun server-generate-key ()
555 "Generate and return a random authentication key.
556 The key is a 64-byte string of random chars in the range `!'..`~'.
557 If called interactively, also inserts it into current buffer."
561 collect
(+ 33 (random 94)) into auth
562 finally return
(concat auth
))))
563 (if (called-interactively-p 'interactive
)
567 (defun server-get-auth-key ()
568 "Return server's authentication key.
570 If `server-auth-key' is nil, just call `server-generate-key'.
571 Otherwise, if `server-auth-key' is a valid key, return it.
572 If the key is not valid, signal an error."
574 (if (string-match-p "^[!-~]\\{64\\}$" server-auth-key
)
576 (error "The key '%s' is invalid" server-auth-key
))
577 (server-generate-key)))
580 (defun server-start (&optional leave-dead inhibit-prompt
)
581 "Allow this Emacs process to be a server for client processes.
582 This starts a server communications subprocess through which client
583 \"editors\" can send your editing commands to this Emacs job.
584 To use the server, set up the program `emacsclient' in the Emacs
585 distribution as your standard \"editor\".
587 Optional argument LEAVE-DEAD (interactively, a prefix arg) means just
588 kill any existing server communications subprocess.
590 If a server is already running, restart it. If clients are
591 running, ask the user for confirmation first, unless optional
592 argument INHIBIT-PROMPT is non-nil.
594 To force-start a server, do \\[server-force-delete] and then
597 (when (or (not server-clients
)
598 ;; Ask the user before deleting existing clients---except
599 ;; when we can't get user input, which may happen when
600 ;; doing emacsclient --eval "(kill-emacs)" in daemon mode.
603 (null (cdr (frame-list)))
604 (eq (selected-frame) terminal-frame
))
608 "The current server still has clients; delete them? "))))
609 (let* ((server-dir (if server-use-tcp server-auth-dir server-socket-dir
))
610 (server-file (expand-file-name server-name server-dir
)))
613 (ignore-errors (delete-process server-process
)))
614 ;; Delete the socket files made by previous server invocations.
615 (if (not (eq t
(server-running-p server-name
)))
616 ;; Remove any leftover socket or authentication file
618 (let (delete-by-moving-to-trash)
619 (delete-file server-file
)))
620 (setq server-mode nil
) ;; already set by the minor mode code
623 (concat "Unable to start the Emacs server.\n"
624 (format "There is an existing Emacs server, named %S.\n"
626 "To start the server in this Emacs process, stop the existing
627 server or call `M-x server-force-delete' to forcibly disconnect it.")
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.
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
)
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 (add-hook 'kill-emacs-hook
'server-force-stop
) ;Cleanup upon exit.
649 (apply #'make-network-process
653 :sentinel
'server-sentinel
654 :filter
'server-process-filter
655 ;; We must receive file names without being decoded.
656 ;; Those are decoded by server-process-filter according
657 ;; to file-name-coding-system. Also don't get
658 ;; confused by CRs since we don't quote them.
659 :coding
'raw-text-unix
660 ;; The other args depend on the kind of socket used.
662 (list :family
'ipv4
;; We're not ready for IPv6 yet
663 :service
(or server-port t
)
664 :host
(or server-host
'local
)
665 :plist
'(:authenticated nil
))
668 :plist
'(:authenticated t
)))))
669 (unless server-process
(error "Could not start server process"))
670 (process-put server-process
:server-file server-file
)
672 (let ((auth-key (server-get-auth-key)))
673 (process-put server-process
:auth-key auth-key
)
674 (with-temp-file server-file
675 (set-buffer-multibyte nil
)
676 (setq buffer-file-coding-system
'no-conversion
)
677 (insert (format-network-address
678 (process-contact server-process
:local
))
679 " " (number-to-string (emacs-pid)) ; Kept for compatibility
680 "\n" auth-key
)))))))))
682 (defun server-force-stop ()
683 "Kill all connections to the current server.
684 This function is meant to be called from `kill-emacs-hook'."
688 (defun server-force-delete (&optional name
)
689 "Unconditionally delete connection file for server NAME.
690 If server is running, it is first stopped.
691 NAME defaults to `server-name'. With argument, ask for NAME."
693 (list (if current-prefix-arg
694 (read-string "Server name: " nil nil server-name
))))
695 (when server-mode
(with-temp-message nil
(server-mode -
1)))
696 (let ((file (expand-file-name (or name server-name
)
699 server-socket-dir
))))
701 (let (delete-by-moving-to-trash)
703 (message "Connection file %S deleted" file
))
705 (message "No connection file %S" file
)))))
707 (defun server-running-p (&optional name
)
708 "Test whether server NAME is running.
711 nil the server is definitely not running.
712 t the server seems to be running.
713 something else we cannot determine whether it's running without using
714 commands which may have to wait for a long time."
715 (unless name
(setq name server-name
))
719 (insert-file-contents-literally (expand-file-name name server-auth-dir
))
720 (or (and (looking-at "127\\.0\\.0\\.1:[0-9]+ \\([0-9]+\\)")
723 (string-to-number (match-string 1))))
727 (make-network-process
728 :name
"server-client-test" :family
'local
:server nil
:noquery t
729 :service
(expand-file-name name server-socket-dir
)))
734 (define-minor-mode server-mode
736 With a prefix argument ARG, enable Server mode if ARG is
737 positive, and disable it otherwise. If called from Lisp, enable
738 Server mode if ARG is omitted or nil.
740 Server mode runs a process that accepts commands from the
741 `emacsclient' program. See Info node `Emacs server' and
742 `server-start' for details."
746 ;; Fixme: Should this check for an existing server socket and do
747 ;; nothing if there is one (for multiple Emacs sessions)?
748 (server-start (not server-mode
)))
750 (defun server-eval-and-print (expr proc
)
751 "Eval EXPR and send the result back to client PROC."
752 ;; While we're running asynchronously (from a process filter), it is likely
753 ;; that the emacsclient command was run in response to a user
754 ;; action, so the user probably knows that Emacs is processing this
755 ;; emacsclient request, so if we get a C-g it's likely that the user
756 ;; intended it to interrupt us rather than interrupt whatever Emacs
757 ;; was doing before it started handling the process filter.
758 ;; Hence `with-local-quit' (bug#6585).
759 (let ((v (with-local-quit (eval (car (read-from-string expr
))))))
762 (let ((standard-output (current-buffer)))
764 (let ((text (buffer-substring-no-properties
765 (point-min) (point-max))))
766 (server-reply-print (server-quote-arg text
) proc
)))))))
768 (defconst server-msg-size
1024
769 "Maximum size of a message sent to a client.")
771 (defun server-reply-print (qtext proc
)
772 "Send a `-print QTEXT' command to client PROC.
773 QTEXT must be already quoted.
774 This handles splitting the command if it would be bigger than
776 (let ((prefix "-print ")
778 (while (> (+ (length qtext
) (length prefix
) 1) server-msg-size
)
779 ;; We have to split the string
780 (setq part
(substring qtext
0 (- server-msg-size
(length prefix
) 1)))
781 ;; Don't split in the middle of a quote sequence
782 (if (string-match "\\(^\\|[^&]\\)\\(&&\\)+$" part
)
783 ;; There is an uneven number of & at the end
784 (setq part
(substring part
0 -
1)))
785 (setq qtext
(substring qtext
(length part
)))
786 (server-send-string proc
(concat prefix part
"\n"))
787 (setq prefix
"-print-nonl "))
788 (server-send-string proc
(concat prefix qtext
"\n"))))
790 (defun server-create-tty-frame (tty type proc
)
792 (error "Invalid terminal device"))
794 (error "Invalid terminal type"))
795 (add-to-list 'frame-inherited-parameters
'client
)
797 (server-with-environment
798 (process-get proc
'env
)
799 '("LANG" "LC_CTYPE" "LC_ALL"
800 ;; For tgetent(3); list according to ncurses(3).
801 "BAUDRATE" "COLUMNS" "ESCDELAY" "HOME" "LINES"
802 "NCURSES_ASSUMED_COLORS" "NCURSES_NO_PADDING"
803 "NCURSES_NO_SETBUF" "TERM" "TERMCAP" "TERMINFO"
804 "TERMINFO_DIRS" "TERMPATH"
806 "COLORFGBG" "COLORTERM")
807 (make-frame `((window-system . nil
)
810 ;; Ignore nowait here; we always need to
811 ;; clean up opened ttys when the client dies.
813 ;; This is a leftover from an earlier
814 ;; attempt at making it possible for process
815 ;; run in the server process to use the
816 ;; environment of the client process.
817 ;; It has no effect now and to make it work
818 ;; we'd need to decide how to make
819 ;; process-environment interact with client
820 ;; envvars, and then to change the
821 ;; C functions `child_setup' and
822 ;; `getenv_internal' accordingly.
823 (environment .
,(process-get proc
'env
)))))))
825 ;; ttys don't use the `display' parameter, but callproc.c does to set
826 ;; the DISPLAY environment on subprocesses.
827 (set-frame-parameter frame
'display
828 (getenv-internal "DISPLAY" (process-get proc
'env
)))
830 (process-put proc
'frame frame
)
831 (process-put proc
'terminal
(frame-terminal frame
))
834 (defun server-create-window-system-frame (display nowait proc parent-id
835 &optional parameters
)
836 (let* ((display (or display
837 (frame-parameter nil
'display
)
838 (error "Please specify display.")))
839 (w (or (cdr (assq 'window-system parameters
))
840 (window-system-for-display display
))))
842 (unless (assq w window-system-initialization-alist
)
845 ;; Special case for ns. This is because DISPLAY may not be set at all
846 ;; which in the ns case isn't an error. The variable display then becomes
847 ;; the fully qualified hostname, which make-frame-on-display below
848 ;; does not understand and throws an error.
849 ;; It may also be a valid X display, but if Emacs is compiled for ns, it
850 ;; can not make X frames.
851 (if (featurep 'ns-win
)
852 (setq w
'ns display
"ns"))
855 ;; Flag frame as client-created, but use a dummy client.
856 ;; This will prevent the frame from being deleted when
857 ;; emacsclient quits while also preventing
858 ;; `server-save-buffers-kill-terminal' from unexpectedly
859 ;; killing emacs on that frame.
860 (let* ((params `((client .
,(if nowait
'nowait proc
))
861 ;; This is a leftover, see above.
862 (environment .
,(process-get proc
'env
))
866 (push (cons 'parent-id
(string-to-number parent-id
)) params
))
867 (add-to-list 'frame-inherited-parameters
'client
)
868 (setq frame
(make-frame-on-display display params
))
869 (server-log (format "%s created" frame
) proc
)
871 (process-put proc
'frame frame
)
872 (process-put proc
'terminal
(frame-terminal frame
))
876 (server-log "Window system unsupported" proc
)
877 (server-send-string proc
"-window-system-unsupported \n")
880 (defun server-goto-toplevel (proc)
882 ;; If we're running isearch, we must abort it to allow Emacs to
883 ;; display the buffer and switch to it.
884 (dolist (buffer (buffer-list))
885 (with-current-buffer buffer
886 (when (bound-and-true-p isearch-mode
)
888 ;; Signaled by isearch-cancel.
889 (quit (message nil
)))
890 (when (> (recursion-depth) 0)
891 ;; We're inside a minibuffer already, so if the emacs-client is trying
892 ;; to open a frame on a new display, we might end up with an unusable
893 ;; frame because input from that display will be blocked (until exiting
894 ;; the minibuffer). Better exit this minibuffer right away.
895 ;; Similarly with recursive-edits such as the splash screen.
896 (run-with-timer 0 nil
(lambda () (server-execute-continuation proc
)))
899 ;; We use various special properties on process objects:
900 ;; - `env' stores the info about the environment of the emacsclient process.
901 ;; - `continuation' is a no-arg function that we need to execute. It contains
902 ;; commands we wanted to execute in some earlier invocation of the process
903 ;; filter but that we somehow were unable to process at that time
904 ;; (e.g. because we first need to throw to the toplevel).
906 (defun server-execute-continuation (proc)
907 (let ((continuation (process-get proc
'continuation
)))
908 (process-put proc
'continuation nil
)
909 (if continuation
(ignore-errors (funcall continuation
)))))
911 (cl-defun server-process-filter (proc string
)
912 "Process a request from the server to edit some files.
913 PROC is the server process. STRING consists of a sequence of
914 commands prefixed by a dash. Some commands have arguments;
915 these are &-quoted and need to be decoded by `server-unquote-arg'.
916 The filter parses and executes these commands.
918 To illustrate the protocol, here is an example command that
919 emacsclient sends to create a new X frame (note that the whole
920 sequence is sent on a single line):
922 -env HOME=/home/lorentey
924 ... lots of other -env commands
928 The following commands are accepted by the server:
931 Authenticate the client using the secret authentication string
935 An environment variable on the client side.
938 The current working directory of the client process.
941 Forbid the creation of new frames.
943 `-frame-parameters ALIST'
944 Set the parameters of the created frame.
947 Request that the next frame created should not be
948 associated with this client.
951 Set the display name to open X frames on.
953 `-position LINE[:COLUMN]'
954 Go to the given line and column number
955 in the next file opened.
958 Load the given file in the current frame.
961 Evaluate EXPR as a Lisp expression and return the
962 result in -print commands.
967 `-tty DEVICENAME TYPE'
968 Open a new tty frame at the client.
971 Suspend this tty frame. The client sends this string in
972 response to SIGTSTP and SIGTTOU. The server must cease all I/O
973 on this tty until it gets a -resume command.
976 Resume this tty frame. The client sends this string when it
977 gets the SIGCONT signal and it is the foreground process on its
981 Do nothing, but put the comment in the server log.
982 Useful for debugging.
985 The following commands are accepted by the client:
988 Describes the process id of the Emacs process;
989 used to forward window change signals to it.
991 `-window-system-unsupported'
992 Signals that the server does not support creating X frames;
993 the client must try again with a tty frame.
996 Print STRING on stdout. Used to send values
1000 Print STRING on stdout. Used to continue a
1001 preceding -print command that would be too big to send
1002 in a single message.
1004 `-error DESCRIPTION'
1005 Signal an error and delete process PROC.
1008 Suspend this terminal, i.e., stop the client process.
1009 Sent when the user presses C-z."
1010 (server-log (concat "Received " string
) proc
)
1011 ;; First things first: let's check the authentication
1012 (unless (process-get proc
:authenticated
)
1013 (if (and (string-match "-auth \\([!-~]+\\)\n?" string
)
1014 (equal (match-string 1 string
) (process-get proc
:auth-key
)))
1016 (setq string
(substring string
(match-end 0)))
1017 (process-put proc
:authenticated t
)
1018 (server-log "Authentication successful" proc
))
1019 (server-log "Authentication failed" proc
)
1021 proc
(concat "-error " (server-quote-arg "Authentication failed")))
1022 ;; Before calling `delete-process', give emacsclient time to
1023 ;; receive the error string and shut down on its own.
1025 (delete-process proc
)
1026 ;; We return immediately.
1027 (cl-return-from server-process-filter
)))
1028 (let ((prev (process-get proc
'previous-string
)))
1030 (setq string
(concat prev string
))
1031 (process-put proc
'previous-string nil
)))
1034 (server-add-client proc
)
1036 (server-send-string proc
(concat "-emacs-pid "
1037 (number-to-string (emacs-pid)) "\n"))
1038 (if (not (string-match "\n" string
))
1039 ;; Save for later any partial line that remains.
1040 (when (> (length string
) 0)
1041 (process-put proc
'previous-string string
))
1043 ;; In earlier versions of server.el (where we used an `emacsserver'
1044 ;; process), there could be multiple lines. Nowadays this is not
1045 ;; supported any more.
1046 (cl-assert (eq (match-end 0) (length string
)))
1047 (let ((request (substring string
0 (match-beginning 0)))
1048 (coding-system (and (default-value 'enable-multibyte-characters
)
1049 (or file-name-coding-system
1050 default-file-name-coding-system
)))
1051 nowait
; t if emacsclient does not want to wait for us.
1052 frame
; Frame opened for the client (if any).
1053 display
; Open frame on this display.
1054 parent-id
; Window ID for XEmbed
1055 dontkill
; t if client should not be killed.
1059 frame-parameters
;parameters for newly created frame
1060 tty-name
; nil, `window-system', or the tty name.
1065 ;; Remove this line from STRING.
1066 (setq string
(substring string
(match-end 0)))
1068 (mapcar 'server-unquote-arg
(split-string request
" " t
)))
1070 (pcase (pop args-left
)
1071 ;; -version CLIENT-VERSION: obsolete at birth.
1072 (`"-version" (pop args-left
))
1074 ;; -nowait: Emacsclient won't wait for a result.
1075 (`"-nowait" (setq nowait t
))
1077 ;; -current-frame: Don't create frames.
1078 (`"-current-frame" (setq use-current-frame t
))
1080 ;; -frame-parameters: Set frame parameters
1081 (`"-frame-parameters"
1082 (let ((alist (pop args-left
)))
1084 (setq alist
(decode-coding-string alist coding-system
)))
1085 (setq frame-parameters
(car (read-from-string alist
)))))
1087 ;; -display DISPLAY:
1088 ;; Open X frames on the given display instead of the default.
1090 (setq display
(pop args-left
))
1091 (if (zerop (length display
)) (setq display nil
)))
1094 ;; Open X frame within window ID, via XEmbed.
1096 (setq parent-id
(pop args-left
))
1097 (if (zerop (length parent-id
)) (setq parent-id nil
)))
1099 ;; -window-system: Open a new X frame.
1101 (if (fboundp 'x-create-frame
)
1103 tty-name
'window-system
)))
1105 ;; -resume: Resume a suspended tty frame.
1107 (let ((terminal (process-get proc
'terminal
)))
1110 (when (eq (terminal-live-p terminal
) t
)
1111 (resume-tty terminal
)))
1114 ;; -suspend: Suspend the client's frame. (In case we
1115 ;; get out of sync, and a C-z sends a SIGTSTP to
1118 (let ((terminal (process-get proc
'terminal
)))
1121 (when (eq (terminal-live-p terminal
) t
)
1122 (suspend-tty terminal
)))
1125 ;; -ignore COMMENT: Noop; useful for debugging emacsclient.
1126 ;; (The given comment appears in the server log.)
1131 ;; -tty DEVICE-NAME TYPE: Open a new tty frame.
1132 ;; (But if we see -window-system later, use that.)
1134 (setq tty-name
(pop args-left
)
1135 tty-type
(pop args-left
)
1136 dontkill
(or dontkill
1137 (not use-current-frame
)))
1138 ;; On Windows, emacsclient always asks for a tty
1139 ;; frame. If running a GUI server, force the frame
1140 ;; type to GUI. (Cygwin is perfectly happy with
1141 ;; multi-tty support, so don't override the user's
1142 ;; choice there.) In daemon mode on Windows, we can't
1143 ;; make tty frames, so force the frame type to GUI
1145 (when (and (eq system-type
'windows-nt
)
1147 (eq window-system
'w32
)))
1148 (push "-window-system" args-left
)))
1150 ;; -position LINE[:COLUMN]: Set point to the given
1151 ;; position in the next file.
1153 (if (not (string-match "\\+\\([0-9]+\\)\\(?::\\([0-9]+\\)\\)?"
1155 (error "Invalid -position command in client args"))
1156 (let ((arg (pop args-left
)))
1158 (cons (string-to-number (match-string 1 arg
))
1159 (string-to-number (or (match-string 2 arg
)
1162 ;; -file FILENAME: Load the given file.
1164 (let ((file (pop args-left
)))
1166 (setq file
(decode-coding-string file coding-system
)))
1167 (setq file
(expand-file-name file dir
))
1168 (push (cons file filepos
) files
)
1169 (server-log (format "New file: %s %s"
1170 file
(or filepos
"")) proc
))
1173 ;; -eval EXPR: Evaluate a Lisp expression.
1175 (if use-current-frame
1176 (setq use-current-frame
'always
))
1177 (let ((expr (pop args-left
)))
1179 (setq expr
(decode-coding-string expr coding-system
)))
1180 (push (lambda () (server-eval-and-print expr proc
))
1182 (setq filepos nil
)))
1184 ;; -env NAME=VALUE: An environment variable.
1186 (let ((var (pop args-left
)))
1187 ;; XXX Variables should be encoded as in getenv/setenv.
1188 (process-put proc
'env
1189 (cons var
(process-get proc
'env
)))))
1191 ;; -dir DIRNAME: The cwd of the emacsclient process.
1193 (setq dir
(pop args-left
))
1195 (setq dir
(decode-coding-string dir coding-system
)))
1196 (setq dir
(command-line-normalize-file-name dir
))
1197 (process-put proc
'server-client-directory dir
))
1200 (arg (error "Unknown command: %s" arg
))))
1202 ;; If both -no-wait and -tty are given with file or sexp
1203 ;; arguments, use an existing frame.
1205 (not (eq tty-name
'window-system
))
1207 (setq use-current-frame t
))
1211 ((and use-current-frame
1212 (or (eq use-current-frame
'always
)
1213 ;; We can't use the Emacs daemon's
1216 (null (cdr (frame-list)))
1217 (eq (selected-frame)
1219 (setq tty-name nil tty-type nil
)
1220 (if display
(server-select-display display
)))
1221 ((or (and (eq system-type
'windows-nt
)
1223 (setq display
"w32"))
1224 (eq tty-name
'window-system
))
1225 (server-create-window-system-frame display nowait proc
1228 ;; When resuming on a tty, tty-name is nil.
1230 (server-create-tty-frame tty-name tty-type proc
))))
1235 (with-current-buffer (get-buffer-create server-buffer
)
1236 ;; Use the same cwd as the emacsclient, if possible, so
1237 ;; relative file names work correctly, even in `eval'.
1238 (let ((default-directory
1239 (if (and dir
(file-directory-p dir
))
1240 dir default-directory
)))
1241 (server-execute proc files nowait commands
1242 dontkill frame tty-name
)))))
1244 (when (or frame files
)
1245 (server-goto-toplevel proc
))
1247 (server-execute-continuation proc
))))
1249 (error (server-return-error proc err
))))
1251 (defun server-execute (proc files nowait commands dontkill frame tty-name
)
1252 ;; This is run from timers and process-filters, i.e. "asynchronously".
1253 ;; But w.r.t the user, this is not really asynchronous since the timer
1254 ;; is run after 0s and the process-filter is run in response to the
1255 ;; user running `emacsclient'. So it is OK to override the
1256 ;; inhibit-quit flag, which is good since `commands' (as well as
1257 ;; find-file-noselect via the major-mode) can run arbitrary code,
1258 ;; including code that needs to wait.
1261 (let ((buffers (server-visit-files files proc nowait
)))
1262 (mapc 'funcall
(nreverse commands
))
1264 ;; If we were told only to open a new client, obey
1265 ;; `initial-buffer-choice' if it specifies a file
1267 (unless (or files commands
)
1269 (cond ((stringp initial-buffer-choice
)
1270 (find-file-noselect initial-buffer-choice
))
1271 ((functionp initial-buffer-choice
)
1272 (funcall initial-buffer-choice
)))))
1274 (if (buffer-live-p buf
) buf
(get-buffer-create "*scratch*"))
1277 ;; Delete the client if necessary.
1280 ;; Client requested nowait; return immediately.
1281 (server-log "Close nowait client" proc
)
1282 (server-delete-client proc
))
1283 ((and (not dontkill
) (null buffers
))
1284 ;; This client is empty; get rid of it immediately.
1285 (server-log "Close empty client" proc
)
1286 (server-delete-client proc
)))
1288 ((or isearch-mode
(minibufferp))
1290 ((and frame
(null buffers
))
1291 (message "%s" (substitute-command-keys
1292 "When done with this frame, type \\[delete-frame]")))
1293 ((not (null buffers
))
1294 (server-switch-buffer (car buffers
) nil
(cdr (car files
)))
1295 (run-hooks 'server-switch-hook
)
1297 (message "%s" (substitute-command-keys
1298 "When done with a buffer, type \\[server-edit]")))))
1299 (when (and frame
(null tty-name
))
1300 (server-unselect-display frame
)))
1302 (when (eq (car err
) 'quit
)
1303 (message "Quit emacsclient request"))
1304 (server-return-error proc err
)))))
1306 (defun server-return-error (proc err
)
1309 proc
(concat "-error " (server-quote-arg
1310 (error-message-string err
))))
1311 (server-log (error-message-string err
) proc
)
1312 ;; Before calling `delete-process', give emacsclient time to
1313 ;; receive the error string and shut down on its own.
1315 (delete-process proc
)))
1317 (defun server-goto-line-column (line-col)
1318 "Move point to the position indicated in LINE-COL.
1319 LINE-COL should be a pair (LINE . COL)."
1321 (goto-char (point-min))
1322 (forward-line (1- (car line-col
)))
1323 (let ((column-number (cdr line-col
)))
1324 (when (> column-number
0)
1325 (move-to-column (1- column-number
))))))
1327 (defun server-visit-files (files proc
&optional nowait
)
1328 "Find FILES and return a list of buffers created.
1329 FILES is an alist whose elements are (FILENAME . FILEPOS)
1330 where FILEPOS can be nil or a pair (LINENUMBER . COLUMNNUMBER).
1331 PROC is the client that requested this operation.
1332 NOWAIT non-nil means this client is not waiting for the results,
1333 so don't mark these buffers specially, just visit them normally."
1334 ;; Bind last-nonmenu-event to force use of keyboard, not mouse, for queries.
1335 (let ((last-nonmenu-event t
) client-record
)
1336 ;; Restore the current buffer afterward, but not using save-excursion,
1337 ;; because we don't want to save point in this buffer
1338 ;; if it happens to be one of those specified by the server.
1339 (save-current-buffer
1340 (dolist (file files
)
1341 ;; If there is an existing buffer modified or the file is
1342 ;; modified, revert it. If there is an existing buffer with
1343 ;; deleted file, offer to write it.
1344 (let* ((minibuffer-auto-raise (or server-raise-frame
1345 minibuffer-auto-raise
))
1347 (obuf (get-file-buffer filen
)))
1348 (add-to-history 'file-name-history filen
)
1351 (run-hooks 'pre-command-hook
)
1352 (set-buffer (find-file-noselect filen
)))
1354 ;; separately for each file, in sync with post-command hooks,
1355 ;; with the new buffer current:
1356 (run-hooks 'pre-command-hook
)
1357 (cond ((file-exists-p filen
)
1358 (when (not (verify-visited-file-modtime obuf
))
1359 (revert-buffer t nil
)))
1362 (concat "File no longer exists: " filen
1363 ", write buffer to file? "))
1364 (write-file filen
))))
1365 (unless server-buffer-clients
1366 (setq server-existing-buffer t
)))
1367 (server-goto-line-column (cdr file
))
1368 (run-hooks 'server-visit-hook
)
1369 ;; hooks may be specific to current buffer:
1370 (run-hooks 'post-command-hook
))
1372 ;; When the buffer is killed, inform the clients.
1373 (add-hook 'kill-buffer-hook
'server-kill-buffer nil t
)
1374 (push proc server-buffer-clients
))
1375 (push (current-buffer) client-record
)))
1377 (process-put proc
'buffers
1378 (nconc (process-get proc
'buffers
) client-record
)))
1381 (defvar server-kill-buffer-running nil
1382 "Non-nil while `server-kill-buffer' or `server-buffer-done' is running.")
1384 (defun server-buffer-done (buffer &optional for-killing
)
1385 "Mark BUFFER as \"done\" for its client(s).
1386 This buries the buffer, then returns a list of the form (NEXT-BUFFER KILLED).
1387 NEXT-BUFFER is another server buffer, as a suggestion for what to select next,
1388 or nil. KILLED is t if we killed BUFFER (typically, because it was visiting
1390 FOR-KILLING if non-nil indicates that we are called from `kill-buffer'."
1391 (let ((next-buffer nil
)
1393 (dolist (proc server-clients
)
1394 (let ((buffers (process-get proc
'buffers
)))
1396 (setq next-buffer
(nth 1 (memq buffer buffers
))))
1397 (when buffers
; Ignore bufferless clients.
1398 (setq buffers
(delq buffer buffers
))
1399 ;; Delete all dead buffers from PROC.
1402 (not (buffer-live-p b
))
1403 (setq buffers
(delq b buffers
))))
1404 (process-put proc
'buffers buffers
)
1405 ;; If client now has no pending buffers,
1406 ;; tell it that it is done, and forget it entirely.
1408 (server-log "Close" proc
)
1410 ;; `server-delete-client' might delete the client's
1411 ;; frames, which might change the current buffer. We
1412 ;; don't want that (bug#640).
1413 (save-current-buffer
1414 (server-delete-client proc
))
1415 (server-delete-client proc
))))))
1416 (when (and (bufferp buffer
) (buffer-name buffer
))
1417 ;; We may or may not kill this buffer;
1418 ;; if we do, do not call server-buffer-done recursively
1419 ;; from kill-buffer-hook.
1420 (let ((server-kill-buffer-running t
))
1421 (with-current-buffer buffer
1422 (setq server-buffer-clients nil
)
1423 (run-hooks 'server-done-hook
))
1424 ;; Notice whether server-done-hook killed the buffer.
1425 (if (null (buffer-name buffer
))
1427 ;; Don't bother killing or burying the buffer
1428 ;; when we are called from kill-buffer.
1430 (when (and (not killed
)
1431 server-kill-new-buffers
1432 (with-current-buffer buffer
1433 (not server-existing-buffer
)))
1435 (bury-buffer buffer
)
1436 ;; Prevent kill-buffer from prompting (Bug#3696).
1437 (with-current-buffer buffer
1438 (set-buffer-modified-p nil
))
1439 (kill-buffer buffer
))
1441 (if (server-temp-file-p buffer
)
1443 (with-current-buffer buffer
1444 (set-buffer-modified-p nil
))
1445 (kill-buffer buffer
)
1447 (bury-buffer buffer
)))))))
1448 (list next-buffer killed
)))
1450 (defun server-temp-file-p (&optional buffer
)
1451 "Return non-nil if BUFFER contains a file considered temporary.
1452 These are files whose names suggest they are repeatedly
1453 reused to pass information to another program.
1455 The variable `server-temp-file-regexp' controls which filenames
1456 are considered temporary."
1457 (and (buffer-file-name buffer
)
1458 (string-match-p server-temp-file-regexp
(buffer-file-name buffer
))))
1460 (defun server-done ()
1461 "Offer to save current buffer, mark it as \"done\" for clients.
1462 This kills or buries the buffer, then returns a list
1463 of the form (NEXT-BUFFER KILLED). NEXT-BUFFER is another server buffer,
1464 as a suggestion for what to select next, or nil.
1465 KILLED is t if we killed BUFFER, which happens if it was created
1466 specifically for the clients and did not exist before their request for it."
1467 (when server-buffer-clients
1468 (if (server-temp-file-p)
1469 ;; For a temp file, save, and do make a non-numeric backup
1470 ;; (unless make-backup-files is nil).
1471 (let ((version-control nil
)
1472 (buffer-backed-up nil
))
1474 (when (and (buffer-modified-p)
1476 (y-or-n-p (concat "Save file " buffer-file-name
"? ")))
1478 (server-buffer-done (current-buffer))))
1480 (defun server-kill-emacs-query-function ()
1481 "Ask before exiting Emacs if it has live clients."
1482 (or (not server-clients
)
1484 (dolist (proc server-clients
)
1485 (when (memq t
(mapcar 'buffer-live-p
(process-get
1487 (setq live-client t
)))
1489 (yes-or-no-p "This Emacs session has clients; exit anyway? ")))
1491 (defun server-kill-buffer ()
1492 "Remove the current buffer from its clients' buffer list.
1493 Designed to be added to `kill-buffer-hook'."
1494 ;; Prevent infinite recursion if user has made server-done-hook
1495 ;; call kill-buffer.
1496 (or server-kill-buffer-running
1497 (and server-buffer-clients
1498 (let ((server-kill-buffer-running t
))
1499 (when server-process
1500 (server-buffer-done (current-buffer) t
))))))
1502 (defun server-edit (&optional arg
)
1503 "Switch to next server editing buffer; say \"Done\" for current buffer.
1504 If a server buffer is current, it is marked \"done\" and optionally saved.
1505 The buffer is also killed if it did not exist before the clients asked for it.
1506 When all of a client's buffers are marked as \"done\", the client is notified.
1508 Temporary files such as MH <draft> files are always saved and backed up,
1509 no questions asked. (The variable `make-backup-files', if nil, still
1510 inhibits a backup; you can set it locally in a particular buffer to
1511 prevent a backup for it.) The variable `server-temp-file-regexp' controls
1512 which filenames are considered temporary.
1514 If invoked with a prefix argument, or if there is no server process running,
1515 starts server process and that is all. Invoked by \\[server-edit]."
1519 (not server-process
)
1520 (memq (process-status server-process
) '(signal exit
)))
1522 (server-clients (apply 'server-switch-buffer
(server-done)))
1523 (t (message "No server editing buffers exist"))))
1525 (defun server-switch-buffer (&optional next-buffer killed-one filepos
)
1526 "Switch to another buffer, preferably one that has a client.
1527 Arg NEXT-BUFFER is a suggestion; if it is a live buffer, use it.
1529 KILLED-ONE is t in a recursive call if we have already killed one
1530 temp-file server buffer. This means we should avoid the final
1531 \"switch to some other buffer\" since we've already effectively
1534 FILEPOS specifies a new buffer position for NEXT-BUFFER, if we
1535 visit NEXT-BUFFER in an existing window. If non-nil, it should
1536 be a cons cell (LINENUMBER . COLUMNNUMBER)."
1537 (if (null next-buffer
)
1539 (let ((rest server-clients
))
1540 (while (and rest
(not next-buffer
))
1541 (let ((proc (car rest
)))
1542 ;; Only look at frameless clients, or those in the selected
1544 (when (or (not (process-get proc
'frame
))
1545 (eq (process-get proc
'frame
) (selected-frame)))
1546 (setq next-buffer
(car (process-get proc
'buffers
))))
1547 (setq rest
(cdr rest
)))))
1548 (and next-buffer
(server-switch-buffer next-buffer killed-one
))
1549 (unless (or next-buffer killed-one
(window-dedicated-p))
1550 ;; (switch-to-buffer (other-buffer))
1551 (message "No server buffers remain to edit")))
1552 (if (not (buffer-live-p next-buffer
))
1553 ;; If NEXT-BUFFER is a dead buffer, remove the server records for it
1554 ;; and try the next surviving server buffer.
1555 (apply 'server-switch-buffer
(server-buffer-done next-buffer
))
1556 ;; OK, we know next-buffer is live, let's display and select it.
1557 (if (functionp server-window
)
1558 (funcall server-window next-buffer
)
1559 (let ((win (get-buffer-window next-buffer
0)))
1560 (if (and win
(not server-window
))
1561 ;; The buffer is already displayed: just reuse the
1562 ;; window. If FILEPOS is non-nil, use it to replace the
1563 ;; window's own value of point.
1566 (set-buffer next-buffer
)
1568 (server-goto-line-column filepos
)))
1569 ;; Otherwise, let's find an appropriate window.
1570 (cond ((window-live-p server-window
)
1571 (select-window server-window
))
1572 ((framep server-window
)
1573 (unless (frame-live-p server-window
)
1574 (setq server-window
(make-frame)))
1575 (select-window (frame-selected-window server-window
))))
1576 (when (window-minibuffer-p)
1577 (select-window (next-window nil
'nomini
0)))
1578 ;; Move to a non-dedicated window, if we have one.
1579 (when (window-dedicated-p)
1581 (get-window-with-predicate
1583 (and (not (window-dedicated-p w
))
1584 (equal (frame-terminal (window-frame w
))
1586 'nomini
'visible
(selected-window))))
1588 (switch-to-buffer next-buffer
)
1589 ;; After all the above, we might still have ended up with
1590 ;; a minibuffer/dedicated-window (if there's no other).
1591 (error (pop-to-buffer next-buffer
)))))))
1592 (when server-raise-frame
1593 (select-frame-set-input-focus (window-frame)))))
1596 (defun server-save-buffers-kill-terminal (arg)
1597 ;; Called from save-buffers-kill-terminal in files.el.
1598 "Offer to save each buffer, then kill the current client.
1599 With ARG non-nil, silently save all file-visiting buffers, then kill.
1601 If emacsclient was started with a list of filenames to edit, then
1602 only these files will be asked to be saved."
1603 (let ((proc (frame-parameter nil
'client
)))
1604 (cond ((eq proc
'nowait
)
1605 ;; Nowait frames have no client buffer list.
1606 (if (cdr (frame-list))
1607 (progn (save-some-buffers arg
)
1609 ;; If we're the last frame standing, kill Emacs.
1610 (save-buffers-kill-emacs arg
)))
1612 (let ((buffers (process-get proc
'buffers
)))
1613 ;; If client is bufferless, emulate a normal Emacs exit
1614 ;; and offer to save all buffers. Otherwise, offer to
1615 ;; save only the buffers belonging to the client.
1618 (lambda () (memq (current-buffer) buffers
))
1620 (server-delete-client proc
)))
1621 (t (error "Invalid client frame")))))
1623 (define-key ctl-x-map
"#" 'server-edit
)
1625 (defun server-unload-function ()
1626 "Unload the Server library."
1628 (substitute-key-definition 'server-edit nil ctl-x-map
)
1629 (save-current-buffer
1630 (dolist (buffer (buffer-list))
1632 (remove-hook 'kill-buffer-hook
'server-kill-buffer t
)))
1633 ;; continue standard unloading
1636 (defun server-eval-at (server form
)
1637 "Contact the Emacs server named SERVER and evaluate FORM there.
1638 Returns the result of the evaluation, or signals an error if it
1639 cannot contact the specified server. For example:
1640 (server-eval-at \"server\" '(emacs-pid))
1641 returns the process ID of the Emacs instance running \"server\"."
1642 (let* ((server-dir (if server-use-tcp server-auth-dir server-socket-dir
))
1643 (server-file (expand-file-name server server-dir
))
1644 (coding-system-for-read 'binary
)
1645 (coding-system-for-write 'binary
)
1646 address port secret process
)
1647 (unless (file-exists-p server-file
)
1648 (error "No such server: %s" server
))
1650 (when server-use-tcp
1651 (let ((coding-system-for-read 'no-conversion
))
1652 (insert-file-contents server-file
)
1653 (unless (looking-at "\\([0-9.]+\\):\\([0-9]+\\)")
1654 (error "Invalid auth file"))
1655 (setq address
(match-string 1)
1656 port
(string-to-number (match-string 2)))
1658 (setq secret
(buffer-substring (point) (line-end-position)))
1660 (unless (setq process
(make-network-process
1662 :buffer
(current-buffer)
1664 :service
(if server-use-tcp port server-file
)
1665 :family
(if server-use-tcp
'ipv4
'local
)
1667 (error "Unable to contact the server"))
1669 (process-send-string process
(concat "-auth " secret
"\n")))
1670 (process-send-string process
1672 (server-quote-arg (format "%S" form
))
1674 (while (memq (process-status process
) '(open run
))
1675 (accept-process-output process
0 10))
1676 (goto-char (point-min))
1677 ;; If the result is nil, there's nothing in the buffer. If the
1678 ;; result is non-nil, it's after "-print ".
1680 (while (re-search-forward "\n-print\\(-nonl\\)? " nil t
)
1683 (buffer-substring (point)
1684 (progn (skip-chars-forward "^\n")
1686 (if (not (equal answer
""))
1687 (read (decode-coding-string (server-unquote-arg answer
)
1688 'emacs-internal
)))))))
1693 ;;; server.el ends here