]> code.delx.au - gnu-emacs/blob - lisp/server.el
Merged from emacs@sv.gnu.org
[gnu-emacs] / lisp / server.el
1 ;;; server.el --- Lisp code for GNU Emacs running as server process
2
3 ;; Copyright (C) 1986, 1987, 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
4 ;; 2001, 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
5
6 ;; Author: William Sommerfeld <wesommer@athena.mit.edu>
7 ;; Maintainer: FSF
8 ;; Keywords: processes
9
10 ;; Changes by peck@sun.com and by rms.
11 ;; Overhaul by Karoly Lorentey <lorentey@elte.hu> for multi-tty support.
12
13 ;; This file is part of GNU Emacs.
14
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 2, or (at your option)
18 ;; any later version.
19
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.
24
25 ;; You should have received a copy of the GNU General Public License
26 ;; along with GNU Emacs; see the file COPYING. If not, write to the
27 ;; Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
28 ;; Boston, MA 02110-1301, USA.
29
30 ;;; Commentary:
31
32 ;; This Lisp code is run in Emacs when it is to operate as
33 ;; a server for other processes.
34
35 ;; Load this library and do M-x server-edit to enable Emacs as a server.
36 ;; Emacs opens up a socket for communication with clients. If there are no
37 ;; client buffers to edit, server-edit acts like (switch-to-buffer
38 ;; (other-buffer))
39
40 ;; When some other program runs "the editor" to edit a file,
41 ;; "the editor" can be the Emacs client program ../lib-src/emacsclient.
42 ;; This program transmits the file names to Emacs through
43 ;; the server subprocess, and Emacs visits them and lets you edit them.
44
45 ;; Note that any number of clients may dispatch files to Emacs to be edited.
46
47 ;; When you finish editing a Server buffer, again call server-edit
48 ;; to mark that buffer as done for the client and switch to the next
49 ;; Server buffer. When all the buffers for a client have been edited
50 ;; and exited with server-edit, the client "editor" will return
51 ;; to the program that invoked it.
52
53 ;; Your editing commands and Emacs's display output go to and from
54 ;; the terminal in the usual way. Thus, server operation is possible
55 ;; only when Emacs can talk to the terminal at the time you invoke
56 ;; the client. This is possible in four cases:
57
58 ;; 1. On a window system, where Emacs runs in one window and the
59 ;; program that wants to use "the editor" runs in another.
60
61 ;; 2. On a multi-terminal system, where Emacs runs on one terminal and the
62 ;; program that wants to use "the editor" runs on another.
63
64 ;; 3. When the program that wants to use "the editor" is running
65 ;; as a subprocess of Emacs.
66
67 ;; 4. On a system with job control, when Emacs is suspended, the program
68 ;; that wants to use "the editor" will stop and display
69 ;; "Waiting for Emacs...". It can then be suspended, and Emacs can be
70 ;; brought into the foreground for editing. When done editing, Emacs is
71 ;; suspended again, and the client program is brought into the foreground.
72
73 ;; The buffer local variable "server-buffer-clients" lists
74 ;; the clients who are waiting for this buffer to be edited.
75 ;; The global variable "server-clients" lists all the waiting clients,
76 ;; and which files are yet to be edited for each.
77
78 ;;; Code:
79
80 (eval-when-compile (require 'cl))
81
82 (defgroup server nil
83 "Emacs running as a server process."
84 :group 'external)
85
86 (defcustom server-visit-hook nil
87 "*Hook run when visiting a file for the Emacs server."
88 :group 'server
89 :type 'hook)
90
91 (defcustom server-switch-hook nil
92 "*Hook run when switching to a buffer for the Emacs server."
93 :group 'server
94 :type 'hook)
95
96 (defcustom server-done-hook nil
97 "*Hook run when done editing a buffer for the Emacs server."
98 :group 'server
99 :type 'hook)
100
101 (defvar server-process nil
102 "The current server process.")
103
104 (defvar server-clients nil
105 "List of current server clients.
106 Each element is (PROC PROPERTIES...) where PROC is a process object,
107 and PROPERTIES is an association list of client properties.")
108
109 (defvar server-buffer-clients nil
110 "List of client processes requesting editing of current buffer.")
111 (make-variable-buffer-local 'server-buffer-clients)
112 ;; Changing major modes should not erase this local.
113 (put 'server-buffer-clients 'permanent-local t)
114
115 (defcustom server-window nil
116 "*Specification of the window to use for selecting Emacs server buffers.
117 If nil, use the selected window.
118 If it is a function, it should take one argument (a buffer) and
119 display and select it. A common value is `pop-to-buffer'.
120 If it is a window, use that.
121 If it is a frame, use the frame's selected window.
122
123 It is not meaningful to set this to a specific frame or window with Custom.
124 Only programs can do so."
125 :group 'server
126 :version "22.1"
127 :type '(choice (const :tag "Use selected window"
128 :match (lambda (widget value)
129 (not (functionp value)))
130 nil)
131 (function-item :tag "Use pop-to-buffer" pop-to-buffer)
132 (function :tag "Other function")))
133
134 (defcustom server-temp-file-regexp "^/tmp/Re\\|/draft$"
135 "*Regexp matching names of temporary files.
136 These are deleted and reused after each edit by the programs that
137 invoke the Emacs server."
138 :group 'server
139 :type 'regexp)
140
141 (defcustom server-kill-new-buffers t
142 "*Whether to kill buffers when done with them.
143 If non-nil, kill a buffer unless it already existed before editing
144 it with Emacs server. If nil, kill only buffers as specified by
145 `server-temp-file-regexp'.
146 Please note that only buffers are killed that still have a client,
147 i.e. buffers visited which \"emacsclient --no-wait\" are never killed in
148 this way."
149 :group 'server
150 :type 'boolean
151 :version "21.1")
152
153 (or (assq 'server-buffer-clients minor-mode-alist)
154 (setq minor-mode-alist (cons '(server-buffer-clients " Server") minor-mode-alist)))
155
156 (defvar server-existing-buffer nil
157 "Non-nil means the buffer existed before the server was asked to visit it.
158 This means that the server should not kill the buffer when you say you
159 are done with it in the server.")
160 (make-variable-buffer-local 'server-existing-buffer)
161
162 (defvar server-name "server")
163
164 (defvar server-socket-dir nil
165 "The directory in which to place the server socket.
166 Initialized by `server-start'.")
167
168 (defun server-client (proc)
169 "Return the Emacs client corresponding to PROC.
170 PROC must be a process object.
171 The car of the result is PROC; the cdr is an association list.
172 See `server-client-get' and `server-client-set'."
173 (assq proc server-clients))
174
175 (defun server-client-get (client property)
176 "Get the value of PROPERTY in CLIENT.
177 CLIENT may be a process object, or a client returned by `server-client'.
178 Return nil if CLIENT has no such property."
179 (or (listp client) (setq client (server-client client)))
180 (cdr (assq property (cdr client))))
181
182 (defun server-client-set (client property value)
183 "Set the PROPERTY to VALUE in CLIENT, and return VALUE.
184 CLIENT may be a process object, or a client returned by `server-client'."
185 (let (p proc)
186 (if (listp client)
187 (setq proc (car client))
188 (setq proc client
189 client (server-client client)))
190 (setq p (assq property client))
191 (cond
192 (p (setcdr p value))
193 (client (setcdr client (cons (cons property value) (cdr client))))
194 (t (setq server-clients
195 `((,proc (,property . ,value)) . ,server-clients))))
196 value))
197
198 (defun server-clients-with (property value)
199 "Return a list of clients with PROPERTY set to VALUE."
200 (let (result)
201 (dolist (client server-clients result)
202 (when (equal value (server-client-get client property))
203 (setq result (cons (car client) result))))))
204
205 (defun server-add-client (proc)
206 "Create a client for process PROC, if it doesn't already have one.
207 New clients have no properties."
208 (unless (server-client proc)
209 (setq server-clients (cons (cons proc nil)
210 server-clients))))
211
212 (defun server-getenv-from (env variable)
213 "Get the value of VARIABLE in ENV.
214 VARIABLE should be a string. Value is nil if VARIABLE is
215 undefined in ENV. Otherwise, value is a string.
216
217 ENV should be in the same format as `process-environment'."
218 (let (entry result)
219 (while (and env (null result))
220 (setq entry (car env)
221 env (cdr env))
222 (if (and (> (length entry) (length variable))
223 (eq ?= (aref entry (length variable)))
224 (equal variable (substring entry 0 (length variable))))
225 (setq result (substring entry (+ (length variable) 1)))))
226 result))
227
228 (defmacro server-with-environment (env vars &rest body)
229 "Evaluate BODY with environment variables VARS set to those in ENV.
230 The environment variables are then restored to their previous values.
231
232 VARS should be a list of strings.
233 ENV should be in the same format as `process-environment'."
234 (declare (indent 2))
235 (let ((oldvalues (make-symbol "oldvalues"))
236 (var (make-symbol "var"))
237 (value (make-symbol "value"))
238 (pair (make-symbol "pair")))
239 `(let (,oldvalues)
240 (dolist (,var ,vars)
241 (let ((,value (server-getenv-from ,env ,var)))
242 (setq ,oldvalues (cons (cons ,var (getenv ,var)) ,oldvalues))
243 (setenv ,var ,value)))
244 (unwind-protect
245 (progn ,@body)
246 (dolist (,pair ,oldvalues)
247 (setenv (car ,pair) (cdr ,pair)))))))
248
249 (defun server-delete-client (client &optional noframe)
250 "Delete CLIENT, including its buffers, terminals and frames.
251 If NOFRAME is non-nil, let the frames live. (To be used from
252 `delete-frame-functions'.)"
253 (server-log (concat "server-delete-client" (if noframe " noframe"))
254 client)
255 ;; Force a new lookup of client (prevents infinite recursion).
256 (setq client (server-client
257 (if (listp client) (car client) client)))
258 (let ((proc (car client))
259 (buffers (server-client-get client 'buffers)))
260 (when client
261
262 ;; Kill the client's buffers.
263 (dolist (buf buffers)
264 (when (buffer-live-p buf)
265 (with-current-buffer buf
266 ;; Kill the buffer if necessary.
267 (when (and (equal server-buffer-clients
268 (list proc))
269 (or (and server-kill-new-buffers
270 (not server-existing-buffer))
271 (server-temp-file-p))
272 (not (buffer-modified-p)))
273 (let (flag)
274 (unwind-protect
275 (progn (setq server-buffer-clients nil)
276 (kill-buffer (current-buffer))
277 (setq flag t))
278 (unless flag
279 ;; Restore clients if user pressed C-g in `kill-buffer'.
280 (setq server-buffer-clients (list proc)))))))))
281
282 ;; Delete the client's frames.
283 (unless noframe
284 (dolist (frame (frame-list))
285 (when (and (frame-live-p frame)
286 (equal proc (frame-parameter frame 'client)))
287 ;; Prevent `server-handle-delete-frame' from calling us
288 ;; recursively.
289 (set-frame-parameter frame 'client nil)
290 (delete-frame frame))))
291
292 (setq server-clients (delq client server-clients))
293
294 ;; Delete the client's tty.
295 (let ((terminal (server-client-get client 'terminal)))
296 (when (eq (terminal-live-p terminal) t)
297 (delete-terminal terminal)))
298
299 ;; Delete the client's process.
300 (if (eq (process-status (car client)) 'open)
301 (delete-process (car client)))
302
303 (server-log "Deleted" proc))))
304
305 (defun server-log (string &optional client)
306 "If a *server* buffer exists, write STRING to it for logging purposes.
307 If CLIENT is non-nil, add a description of it to the logged
308 message."
309 (if (get-buffer "*server*")
310 (with-current-buffer "*server*"
311 (goto-char (point-max))
312 (insert (current-time-string)
313 (cond
314 ((null client) " ")
315 ((listp client) (format " %s: " (car client)))
316 (t (format " %s: " client)))
317 string)
318 (or (bolp) (newline)))))
319
320 (defun server-sentinel (proc msg)
321 "The process sentinel for Emacs server connections."
322 ;; If this is a new client process, set the query-on-exit flag to nil
323 ;; for this process (it isn't inherited from the server process).
324 (when (and (eq (process-status proc) 'open)
325 (process-query-on-exit-flag proc))
326 (set-process-query-on-exit-flag proc nil))
327 (server-log (format "Status changed to %s: %s" (process-status proc) msg) proc)
328 (server-delete-client proc))
329
330 (defun server-handle-delete-frame (frame)
331 "Delete the client connection when the emacsclient frame is deleted."
332 (let ((proc (frame-parameter frame 'client)))
333 (when (and (frame-live-p frame)
334 proc
335 ;; See if this is the last frame for this client.
336 (>= 1 (let ((frame-num 0))
337 (dolist (f (frame-list))
338 (when (eq proc (frame-parameter f 'client))
339 (setq frame-num (1+ frame-num))))
340 frame-num)))
341 (server-log (format "server-handle-delete-frame, frame %s" frame) proc)
342 (server-delete-client proc 'noframe)))) ; Let delete-frame delete the frame later.
343
344 (defun server-handle-suspend-tty (terminal)
345 "Notify the emacsclient process to suspend itself when its tty device is suspended."
346 (dolist (proc (server-clients-with 'terminal terminal))
347 (server-log (format "server-handle-suspend-tty, terminal %s" terminal) proc)
348 (condition-case err
349 (server-send-string proc "-suspend \n")
350 (file-error (condition-case nil (server-delete-client proc) (error nil))))))
351
352 (defun server-unquote-arg (arg)
353 "Remove &-quotation from ARG.
354 See `server-quote-arg' and `server-process-filter'."
355 (replace-regexp-in-string
356 "&." (lambda (s)
357 (case (aref s 1)
358 (?& "&")
359 (?- "-")
360 (?n "\n")
361 (t " ")))
362 arg t t))
363
364 (defun server-quote-arg (arg)
365 "In ARG, insert a & before each &, each space, each newline, and -.
366 Change spaces to underscores, too, so that the return value never
367 contains a space.
368
369 See `server-unquote-arg' and `server-process-filter'."
370 (replace-regexp-in-string
371 "[-&\n ]" (lambda (s)
372 (case (aref s 0)
373 (?& "&&")
374 (?- "&-")
375 (?\n "&n")
376 (?\s "&_")))
377 arg t t))
378
379 (defun server-send-string (proc string)
380 "A wrapper around `proc-send-string' for logging."
381 (server-log (concat "Sent " string) proc)
382 (process-send-string proc string))
383
384 (defun server-ensure-safe-dir (dir)
385 "Make sure DIR is a directory with no race-condition issues.
386 Creates the directory if necessary and makes sure:
387 - there's no symlink involved
388 - it's owned by us
389 - it's not readable/writable by anybody else."
390 (setq dir (directory-file-name dir))
391 (let ((attrs (file-attributes dir)))
392 (unless attrs
393 (letf (((default-file-modes) ?\700)) (make-directory dir))
394 (setq attrs (file-attributes dir)))
395 ;; Check that it's safe for use.
396 (unless (and (eq t (car attrs)) (eq (nth 2 attrs) (user-uid))
397 (zerop (logand ?\077 (file-modes dir))))
398 (error "The directory %s is unsafe" dir))))
399
400 ;;;###autoload
401 (defun server-start (&optional leave-dead)
402 "Allow this Emacs process to be a server for client processes.
403 This starts a server communications subprocess through which
404 client \"editors\" can send your editing commands to this Emacs
405 job. To use the server, set up the program `emacsclient' in the
406 Emacs distribution as your standard \"editor\".
407
408 Prefix arg LEAVE-DEAD means just kill any existing server
409 communications subprocess."
410 (interactive "P")
411 (when (or
412 (not server-clients)
413 (yes-or-no-p
414 "The current server still has clients; delete them? "))
415 ;; It is safe to get the user id now.
416 (setq server-socket-dir (or server-socket-dir
417 (format "/tmp/emacs%d" (user-uid))))
418 ;; Make sure there is a safe directory in which to place the socket.
419 (server-ensure-safe-dir server-socket-dir)
420 ;; kill it dead!
421 (if server-process
422 (condition-case () (delete-process server-process) (error nil)))
423 ;; Delete the socket files made by previous server invocations.
424 (condition-case ()
425 (delete-file (expand-file-name server-name server-socket-dir))
426 (error nil))
427 ;; If this Emacs already had a server, clear out associated status.
428 (while server-clients
429 (server-delete-client (car server-clients)))
430 (if leave-dead
431 (progn
432 (server-log (message "Server stopped"))
433 (setq server-process nil))
434 (if server-process
435 (server-log (message "Restarting server"))
436 (server-log (message "Starting server")))
437 (letf (((default-file-modes) ?\700))
438 (add-hook 'suspend-tty-functions 'server-handle-suspend-tty)
439 (add-hook 'delete-frame-functions 'server-handle-delete-frame)
440 (add-hook 'kill-buffer-query-functions 'server-kill-buffer-query-function)
441 (add-hook 'kill-emacs-query-functions 'server-kill-emacs-query-function)
442 (setq server-process
443 (make-network-process
444 :name "server" :family 'local :server t :noquery t
445 :service (expand-file-name server-name server-socket-dir)
446 :sentinel 'server-sentinel :filter 'server-process-filter
447 ;; We must receive file names without being decoded.
448 ;; Those are decoded by server-process-filter according
449 ;; to file-name-coding-system.
450 :coding 'raw-text))))))
451
452 ;;;###autoload
453 (define-minor-mode server-mode
454 "Toggle Server mode.
455 With ARG, turn Server mode on if ARG is positive, off otherwise.
456 Server mode runs a process that accepts commands from the
457 `emacsclient' program. See `server-start' and Info node `Emacs server'."
458 :global t
459 :group 'server
460 :version "22.1"
461 ;; Fixme: Should this check for an existing server socket and do
462 ;; nothing if there is one (for multiple Emacs sessions)?
463 (server-start (not server-mode)))
464 \f
465 (defun server-process-filter (proc string)
466 "Process a request from the server to edit some files.
467 PROC is the server process. STRING consists of a sequence of
468 commands prefixed by a dash. Some commands have arguments; these
469 are &-quoted and need to be decoded by `server-unquote-arg'. The
470 filter parses and executes these commands.
471
472 To illustrate the protocol, here is an example command that
473 emacsclient sends to create a new X frame (note that the whole
474 sequence is sent on a single line):
475
476 -version 21.3.50 xterm
477 -env HOME /home/lorentey
478 -env DISPLAY :0.0
479 ... lots of other -env commands
480 -display :0.0
481 -window-system
482
483 The server normally sends back the single command `-good-version'
484 as a response.
485
486 The following commands are accepted by the server:
487
488 `-version CLIENT-VERSION'
489 Check version numbers between server and client, and signal an
490 error if there is a mismatch. The server replies with
491 `-good-version' to confirm the match.
492
493 `-env NAME=VALUE'
494 An environment variable on the client side.
495
496 `-dir DIRNAME'
497 The current working directory of the client process.
498
499 `-current-frame'
500 Forbid the creation of new frames.
501
502 `-nowait'
503 Request that the next frame created should not be
504 associated with this client.
505
506 `-display DISPLAY'
507 Set the display name to open X frames on.
508
509 `-position LINE[:COLUMN]'
510 Go to the given line and column number
511 in the next file opened.
512
513 `-file FILENAME'
514 Load the given file in the current frame.
515
516 `-eval EXPR'
517 Evaluate EXPR as a Lisp expression and return the
518 result in -print commands.
519
520 `-window-system'
521 Open a new X frame.
522
523 `-tty DEVICENAME TYPE'
524 Open a new tty frame at the client.
525
526 `-suspend'
527 Suspend this tty frame. The client sends this string in
528 response to SIGTSTP and SIGTTOU. The server must cease all I/O
529 on this tty until it gets a -resume command.
530
531 `-resume'
532 Resume this tty frame. The client sends this string when it
533 gets the SIGCONT signal and it is the foreground process on its
534 controlling tty.
535
536 `-ignore COMMENT'
537 Do nothing, but put the comment in the server
538 log. Useful for debugging.
539
540
541 The following commands are accepted by the client:
542
543 `-good-version'
544 Signals a version match between the client and the server.
545
546 `-emacs-pid PID'
547 Describes the process id of the Emacs process;
548 used to forward window change signals to it.
549
550 `-window-system-unsupported'
551 Signals that the server does not
552 support creating X frames; the client must try again with a tty
553 frame.
554
555 `-print STRING'
556 Print STRING on stdout. Used to send values
557 returned by -eval.
558
559 `-error DESCRIPTION'
560 Signal an error (but continue processing).
561
562 `-suspend'
563 Suspend this terminal, i.e., stop the client process. Sent
564 when the user presses C-z."
565 (server-log (concat "Received " string) proc)
566 (let ((prev (process-get proc 'previous-string)))
567 (when prev
568 (setq string (concat prev string))
569 (process-put proc 'previous-string nil)))
570 (condition-case err
571 (progn
572 (server-add-client proc)
573 ;; If the input is multiple lines,
574 ;; process each line individually.
575 (while (string-match "\n" string)
576 (let ((request (substring string 0 (match-beginning 0)))
577 (coding-system (and default-enable-multibyte-characters
578 (or file-name-coding-system
579 default-file-name-coding-system)))
580 (client (server-client proc))
581 current-frame
582 nowait ; t if emacsclient does not want to wait for us.
583 frame ; The frame that was opened for the client (if any).
584 display ; Open the frame on this display.
585 dontkill ; t if the client should not be killed.
586 env
587 dir
588 (files nil)
589 (lineno 1)
590 (columnno 0))
591 ;; Remove this line from STRING.
592 (setq string (substring string (match-end 0)))
593 (while (string-match " *[^ ]* " request)
594 (let ((arg (substring request (match-beginning 0) (1- (match-end 0)))))
595 (setq request (substring request (match-end 0)))
596 (cond
597 ;; -version CLIENT-VERSION:
598 ;; Check version numbers, signal an error if there is a mismatch.
599 ((and (equal "-version" arg)
600 (string-match "\\([0-9.]+\\) " request))
601 (let* ((client-version (match-string 1 request))
602 (truncated-emacs-version
603 (substring emacs-version 0 (length client-version))))
604 (setq request (substring request (match-end 0)))
605 (if (equal client-version truncated-emacs-version)
606 (progn
607 (server-send-string proc "-good-version \n")
608 (server-client-set client 'version client-version))
609 (error (concat "Version mismatch: Emacs is "
610 truncated-emacs-version
611 ", emacsclient is " client-version)))))
612
613 ;; -nowait: Emacsclient won't wait for a result.
614 ((equal "-nowait" arg) (setq nowait t))
615
616 ;; -current-frame: Don't create frames.
617 ((equal "-current-frame" arg) (setq current-frame t))
618
619 ;; -display DISPLAY:
620 ;; Open X frames on the given display instead of the default.
621 ((and (equal "-display" arg) (string-match "\\([^ ]*\\) " request))
622 (setq display (match-string 1 request)
623 request (substring request (match-end 0))))
624
625 ;; -window-system: Open a new X frame.
626 ((equal "-window-system" arg)
627 (unless (server-client-get client 'version)
628 (error "Protocol error; make sure to use the correct version of emacsclient"))
629 (unless current-frame
630 (if (fboundp 'x-create-frame)
631 (let ((params (if nowait
632 ;; Flag frame as client-created, but use a dummy client.
633 ;; This will prevent the frame from being deleted when
634 ;; emacsclient quits while also preventing
635 ;; `server-save-buffers-kill-terminal' from unexpectedly
636 ;; killing emacs on that frame.
637 (list (cons 'client 'nowait) (cons 'environment env))
638 (list (cons 'client proc) (cons 'environment env)))))
639 (setq frame (make-frame-on-display
640 (or display
641 (frame-parameter nil 'display)
642 (getenv "DISPLAY")
643 (error "Please specify display"))
644 params))
645 (server-log (format "%s created" frame) proc)
646 ;; XXX We need to ensure the parameters are
647 ;; really set because Emacs forgets unhandled
648 ;; initialization parameters for X frames at
649 ;; the moment.
650 (modify-frame-parameters frame params)
651 (select-frame frame)
652 (server-client-set client 'frame frame)
653 (server-client-set client 'terminal (frame-terminal frame))
654
655 ;; Display *scratch* by default.
656 (switch-to-buffer (get-buffer-create "*scratch*") 'norecord)
657 (if dir (setq default-directory dir))
658
659 (setq dontkill t))
660 ;; This emacs does not support X.
661 (server-log "Window system unsupported" proc)
662 (server-send-string proc "-window-system-unsupported \n")
663 (setq dontkill t))))
664
665 ;; -resume: Resume a suspended tty frame.
666 ((equal "-resume" arg)
667 (let ((terminal (server-client-get client 'terminal)))
668 (setq dontkill t)
669 (when (eq (terminal-live-p terminal) t)
670 (resume-tty terminal))))
671
672 ;; -suspend: Suspend the client's frame. (In case we
673 ;; get out of sync, and a C-z sends a SIGTSTP to
674 ;; emacsclient.)
675 ((equal "-suspend" arg)
676 (let ((terminal (server-client-get client 'terminal)))
677 (setq dontkill t)
678 (when (eq (terminal-live-p terminal) t)
679 (suspend-tty terminal))))
680
681 ;; -ignore COMMENT: Noop; useful for debugging emacsclient.
682 ;; (The given comment appears in the server log.)
683 ((and (equal "-ignore" arg) (string-match "\\([^ ]*\\) " request))
684 (setq dontkill t
685 request (substring request (match-end 0))))
686
687 ;; -tty DEVICE-NAME TYPE: Open a new tty frame at the client.
688 ((and (equal "-tty" arg) (string-match "\\([^ ]*\\) \\([^ ]*\\) " request))
689 (let ((tty (server-unquote-arg (match-string 1 request)))
690 (type (server-unquote-arg (match-string 2 request))))
691 (setq request (substring request (match-end 0)))
692 (unless (server-client-get client 'version)
693 (error "Protocol error; make sure you use the correct version of emacsclient"))
694 (unless current-frame
695 (server-with-environment env
696 '("LANG" "LC_CTYPE" "LC_ALL"
697 ;; For tgetent(3); list according to ncurses(3).
698 "BAUDRATE" "COLUMNS" "ESCDELAY" "HOME" "LINES"
699 "NCURSES_ASSUMED_COLORS" "NCURSES_NO_PADDING"
700 "NCURSES_NO_SETBUF" "TERM" "TERMCAP" "TERMINFO"
701 "TERMINFO_DIRS" "TERMPATH")
702 (setq frame (make-frame-on-tty tty type
703 ;; Ignore nowait here; we always need to clean
704 ;; up opened ttys when the client dies.
705 `((client . ,proc)
706 (environment . ,env)))))
707 (select-frame frame)
708 (server-client-set client 'frame frame)
709 (server-client-set client 'tty (terminal-name frame))
710 (server-client-set client 'terminal (frame-terminal frame))
711
712 ;; Display *scratch* by default.
713 (switch-to-buffer (get-buffer-create "*scratch*") 'norecord)
714 (if dir (setq default-directory dir))
715
716 ;; Reply with our pid.
717 (server-send-string proc (concat "-emacs-pid " (number-to-string (emacs-pid)) "\n"))
718 (setq dontkill t))))
719
720 ;; -position LINE: Go to the given line in the next file.
721 ((and (equal "-position" arg) (string-match "\\(\\+[0-9]+\\) " request))
722 (setq lineno (string-to-number (substring (match-string 1 request) 1))
723 request (substring request (match-end 0))))
724
725 ;; -position LINE:COLUMN: Set point to the given position in the next file.
726 ((and (equal "-position" arg) (string-match "\\+\\([0-9]+\\):\\([0-9]+\\) " request))
727 (setq lineno (string-to-number (match-string 1 request))
728 columnno (string-to-number (match-string 2 request))
729 request (substring request (match-end 0))))
730
731 ;; -file FILENAME: Load the given file.
732 ((and (equal "-file" arg) (string-match "\\([^ ]+\\) " request))
733 (let ((file (server-unquote-arg (match-string 1 request))))
734 (setq request (substring request (match-end 0)))
735 (if coding-system
736 (setq file (decode-coding-string file coding-system)))
737 (setq file (command-line-normalize-file-name file))
738 (push (list file lineno columnno) files)
739 (server-log (format "New file: %s (%d:%d)" file lineno columnno) proc))
740 (setq lineno 1
741 columnno 0))
742
743 ;; -eval EXPR: Evaluate a Lisp expression.
744 ((and (equal "-eval" arg) (string-match "\\([^ ]+\\) " request))
745 (let ((expr (server-unquote-arg (match-string 1 request))))
746 (setq request (substring request (match-end 0)))
747 (if coding-system
748 (setq expr (decode-coding-string expr coding-system)))
749 (let ((v (eval (car (read-from-string expr)))))
750 (when (and (not frame) v)
751 (with-temp-buffer
752 (let ((standard-output (current-buffer)))
753 (pp v)
754 (server-send-string
755 proc (format "-print %s\n"
756 (server-quote-arg
757 (buffer-substring-no-properties (point-min)
758 (point-max)))))))))
759 (setq lineno 1
760 columnno 0)))
761
762 ;; -env NAME=VALUE: An environment variable.
763 ((and (equal "-env" arg) (string-match "\\([^ ]+\\) " request))
764 (let ((var (server-unquote-arg (match-string 1 request))))
765 ;; XXX Variables should be encoded as in getenv/setenv.
766 (setq request (substring request (match-end 0)))
767 (setq env (cons var env))))
768
769 ;; -dir DIRNAME: The cwd of the emacsclient process.
770 ((and (equal "-dir" arg) (string-match "\\([^ ]+\\) " request))
771 (setq dir (server-unquote-arg (match-string 1 request)))
772 (setq request (substring request (match-end 0)))
773 (if coding-system
774 (setq dir (decode-coding-string dir coding-system)))
775 (setq dir (command-line-normalize-file-name dir)))
776
777 ;; Unknown command.
778 (t (error "Unknown command: %s" arg)))))
779
780 (let (buffers)
781 (when files
782 (run-hooks 'pre-command-hook)
783 (setq buffers (server-visit-files files client nowait))
784 (run-hooks 'post-command-hook))
785
786 (when frame
787 (with-selected-frame frame
788 (display-startup-echo-area-message)
789 (unless inhibit-splash-screen
790 (condition-case err
791 ;; This looks scary because `fancy-splash-screens'
792 ;; will call `recursive-edit' from a process filter.
793 ;; However, that should be safe to do now.
794 (display-splash-screen)
795 ;; `recursive-edit' will throw an error if Emacs is
796 ;; already doing a recursive edit elsewhere. Catch it
797 ;; here so that we can finish normally.
798 (error nil)))))
799
800 ;; Delete the client if necessary.
801 (cond
802 (nowait
803 ;; Client requested nowait; return immediately.
804 (server-log "Close nowait client" proc)
805 (server-delete-client proc))
806 ((and (not dontkill) (null buffers))
807 ;; This client is empty; get rid of it immediately.
808 (server-log "Close empty client" proc)
809 (server-delete-client proc)))
810 (cond
811 ((or isearch-mode (minibufferp))
812 nil)
813 ((and frame (null buffers))
814 (message "%s" (substitute-command-keys
815 "When done with this frame, type \\[delete-frame]")))
816 ((not (null buffers))
817 (server-switch-buffer (car buffers))
818 (run-hooks 'server-switch-hook)
819 (unless nowait
820 (message "%s" (substitute-command-keys
821 "When done with a buffer, type \\[server-edit]"))))))))
822
823 ;; Save for later any partial line that remains.
824 (when (> (length string) 0)
825 (process-put proc 'previous-string string)))
826 ;; condition-case
827 (error (ignore-errors
828 (server-send-string
829 proc (concat "-error " (server-quote-arg (error-message-string err))))
830 (setq string "")
831 (server-log (error-message-string err) proc)
832 (delete-process proc)))))
833
834 (defun server-goto-line-column (file-line-col)
835 "Move point to the position indicated in FILE-LINE-COL.
836 FILE-LINE-COL should be a three-element list as described in
837 `server-visit-files'."
838 (goto-line (nth 1 file-line-col))
839 (let ((column-number (nth 2 file-line-col)))
840 (if (> column-number 0)
841 (move-to-column (1- column-number)))))
842
843 (defun server-visit-files (files client &optional nowait)
844 "Find FILES and return a list of buffers created.
845 FILES is an alist whose elements are (FILENAME LINENUMBER COLUMNNUMBER).
846 CLIENT is the client that requested this operation.
847 NOWAIT non-nil means this client is not waiting for the results,
848 so don't mark these buffers specially, just visit them normally."
849 ;; Bind last-nonmenu-event to force use of keyboard, not mouse, for queries.
850 (let ((last-nonmenu-event t) client-record)
851 ;; Restore the current buffer afterward, but not using save-excursion,
852 ;; because we don't want to save point in this buffer
853 ;; if it happens to be one of those specified by the server.
854 (save-current-buffer
855 (dolist (file files)
856 ;; If there is an existing buffer modified or the file is
857 ;; modified, revert it. If there is an existing buffer with
858 ;; deleted file, offer to write it.
859 (let* ((filen (car file))
860 (obuf (get-file-buffer filen)))
861 (push filen file-name-history)
862 (if (and obuf (set-buffer obuf))
863 (progn
864 (cond ((file-exists-p filen)
865 (if (not (verify-visited-file-modtime obuf))
866 (revert-buffer t nil)))
867 (t
868 (if (y-or-n-p
869 (concat "File no longer exists: " filen
870 ", write buffer to file? "))
871 (write-file filen))))
872 (unless server-buffer-clients
873 (setq server-existing-buffer t))
874 (server-goto-line-column file))
875 (set-buffer (find-file-noselect filen))
876 (server-goto-line-column file)
877 (run-hooks 'server-visit-hook)))
878 (unless nowait
879 ;; When the buffer is killed, inform the clients.
880 (add-hook 'kill-buffer-hook 'server-kill-buffer nil t)
881 (push (car client) server-buffer-clients))
882 (push (current-buffer) client-record)))
883 (unless nowait
884 (server-client-set
885 client 'buffers
886 (nconc (server-client-get client 'buffers) client-record)))
887 client-record))
888 \f
889 (defun server-buffer-done (buffer &optional for-killing)
890 "Mark BUFFER as \"done\" for its client(s).
891 This buries the buffer, then returns a list of the form (NEXT-BUFFER KILLED).
892 NEXT-BUFFER is another server buffer, as a suggestion for what to select next,
893 or nil. KILLED is t if we killed BUFFER (typically, because it was visiting
894 a temp file).
895 FOR-KILLING if non-nil indicates that we are called from `kill-buffer'."
896 (let ((next-buffer nil)
897 (killed nil))
898 (dolist (client server-clients)
899 (let ((buffers (server-client-get client 'buffers)))
900 (or next-buffer
901 (setq next-buffer (nth 1 (memq buffer buffers))))
902 (when buffers ; Ignore bufferless clients.
903 (setq buffers (delq buffer buffers))
904 ;; Delete all dead buffers from CLIENT.
905 (dolist (b buffers)
906 (and (bufferp b)
907 (not (buffer-live-p b))
908 (setq buffers (delq b buffers))))
909 (server-client-set client 'buffers buffers)
910 ;; If client now has no pending buffers,
911 ;; tell it that it is done, and forget it entirely.
912 (unless buffers
913 (server-log "Close" client)
914 (server-delete-client client)))))
915 (if (and (bufferp buffer) (buffer-name buffer))
916 ;; We may or may not kill this buffer;
917 ;; if we do, do not call server-buffer-done recursively
918 ;; from kill-buffer-hook.
919 (let ((server-kill-buffer-running t))
920 (with-current-buffer buffer
921 (setq server-buffer-clients nil)
922 (run-hooks 'server-done-hook))
923 ;; Notice whether server-done-hook killed the buffer.
924 (if (null (buffer-name buffer))
925 (setq killed t)
926 ;; Don't bother killing or burying the buffer
927 ;; when we are called from kill-buffer.
928 (unless for-killing
929 (when (and (not killed)
930 server-kill-new-buffers
931 (with-current-buffer buffer
932 (not server-existing-buffer)))
933 (setq killed t)
934 (bury-buffer buffer)
935 (kill-buffer buffer))
936 (unless killed
937 (if (server-temp-file-p buffer)
938 (progn
939 (kill-buffer buffer)
940 (setq killed t))
941 (bury-buffer buffer)))))))
942 (list next-buffer killed)))
943
944 (defun server-temp-file-p (&optional buffer)
945 "Return non-nil if BUFFER contains a file considered temporary.
946 These are files whose names suggest they are repeatedly
947 reused to pass information to another program.
948
949 The variable `server-temp-file-regexp' controls which filenames
950 are considered temporary."
951 (and (buffer-file-name buffer)
952 (string-match server-temp-file-regexp (buffer-file-name buffer))))
953
954 (defun server-done ()
955 "Offer to save current buffer, mark it as \"done\" for clients.
956 This kills or buries the buffer, then returns a list
957 of the form (NEXT-BUFFER KILLED). NEXT-BUFFER is another server buffer,
958 as a suggestion for what to select next, or nil.
959 KILLED is t if we killed BUFFER, which happens if it was created
960 specifically for the clients and did not exist before their request for it."
961 (when server-buffer-clients
962 (if (server-temp-file-p)
963 ;; For a temp file, save, and do make a non-numeric backup
964 ;; (unless make-backup-files is nil).
965 (let ((version-control nil)
966 (buffer-backed-up nil))
967 (save-buffer))
968 (if (and (buffer-modified-p)
969 buffer-file-name
970 (y-or-n-p (concat "Save file " buffer-file-name "? ")))
971 (save-buffer)))
972 (server-buffer-done (current-buffer))))
973
974 ;; Ask before killing a server buffer.
975 ;; It was suggested to release its client instead,
976 ;; but I think that is dangerous--the client would proceed
977 ;; using whatever is on disk in that file. -- rms.
978 (defun server-kill-buffer-query-function ()
979 "Ask before killing a server buffer."
980 (or (not server-buffer-clients)
981 (let ((res t))
982 (dolist (proc server-buffer-clients res)
983 (let ((client (server-client proc)))
984 (when (and client (eq (process-status proc) 'open))
985 (setq res nil)))))
986 (yes-or-no-p (format "Buffer `%s' still has clients; kill it? "
987 (buffer-name (current-buffer))))))
988
989 (defun server-kill-emacs-query-function ()
990 "Ask before exiting Emacs it has live clients."
991 (or (not server-clients)
992 (let (live-client)
993 (dolist (client server-clients live-client)
994 (if (memq t (mapcar 'buffer-live-p (server-client-get
995 client 'buffers)))
996 (setq live-client t))))
997 (yes-or-no-p "This Emacs session has clients; exit anyway? ")))
998
999 (defvar server-kill-buffer-running nil
1000 "Non-nil while `server-kill-buffer' or `server-buffer-done' is running.")
1001
1002 (defun server-kill-buffer ()
1003 "Remove the current buffer from its clients' buffer list.
1004 Designed to be added to `kill-buffer-hook'."
1005 ;; Prevent infinite recursion if user has made server-done-hook
1006 ;; call kill-buffer.
1007 (or server-kill-buffer-running
1008 (and server-buffer-clients
1009 (let ((server-kill-buffer-running t))
1010 (when server-process
1011 (server-buffer-done (current-buffer) t))))))
1012 \f
1013 (defun server-edit (&optional arg)
1014 "Switch to next server editing buffer; say \"Done\" for current buffer.
1015 If a server buffer is current, it is marked \"done\" and optionally saved.
1016 The buffer is also killed if it did not exist before the clients asked for it.
1017 When all of a client's buffers are marked as \"done\", the client is notified.
1018
1019 Temporary files such as MH <draft> files are always saved and backed up,
1020 no questions asked. (The variable `make-backup-files', if nil, still
1021 inhibits a backup; you can set it locally in a particular buffer to
1022 prevent a backup for it.) The variable `server-temp-file-regexp' controls
1023 which filenames are considered temporary.
1024
1025 If invoked with a prefix argument, or if there is no server process running,
1026 starts server process and that is all. Invoked by \\[server-edit]."
1027 (interactive "P")
1028 (if (or arg
1029 (not server-process)
1030 (memq (process-status server-process) '(signal exit)))
1031 (server-start nil)
1032 (apply 'server-switch-buffer (server-done))))
1033
1034 (defun server-switch-buffer (&optional next-buffer killed-one)
1035 "Switch to another buffer, preferably one that has a client.
1036 Arg NEXT-BUFFER is a suggestion; if it is a live buffer, use it.
1037
1038 KILLED-ONE is t in a recursive call if we have already killed one
1039 temp-file server buffer. This means we should avoid the final
1040 \"switch to some other buffer\" since we've already effectively
1041 done that."
1042 (if (null next-buffer)
1043 (progn
1044 (let ((rest server-clients))
1045 (while (and rest (not next-buffer))
1046 (let ((client (car rest)))
1047 ;; Only look at frameless clients.
1048 (when (not (server-client-get client 'frame))
1049 (setq next-buffer (car (server-client-get client 'buffers))))
1050 (setq rest (cdr rest)))))
1051 (and next-buffer (server-switch-buffer next-buffer killed-one))
1052 (unless (or next-buffer killed-one (window-dedicated-p (selected-window)))
1053 ;; (switch-to-buffer (other-buffer))
1054 (message "No server buffers remain to edit")))
1055 (if (not (buffer-live-p next-buffer))
1056 ;; If NEXT-BUFFER is a dead buffer, remove the server records for it
1057 ;; and try the next surviving server buffer.
1058 (apply 'server-switch-buffer (server-buffer-done next-buffer))
1059 ;; OK, we know next-buffer is live, let's display and select it.
1060 (if (functionp server-window)
1061 (funcall server-window next-buffer)
1062 (let ((win (get-buffer-window next-buffer 0)))
1063 (if (and win (not server-window))
1064 ;; The buffer is already displayed: just reuse the window.
1065 (let ((frame (window-frame win)))
1066 (if (eq (frame-visible-p frame) 'icon)
1067 (raise-frame frame))
1068 (select-window win)
1069 (set-buffer next-buffer))
1070 ;; Otherwise, let's find an appropriate window.
1071 (cond ((and (windowp server-window)
1072 (window-live-p server-window))
1073 (select-window server-window))
1074 ((framep server-window)
1075 (if (not (frame-live-p server-window))
1076 (setq server-window (make-frame)))
1077 (select-window (frame-selected-window server-window))))
1078 (if (window-minibuffer-p (selected-window))
1079 (select-window (next-window nil 'nomini 0)))
1080 ;; Move to a non-dedicated window, if we have one.
1081 (when (window-dedicated-p (selected-window))
1082 (select-window
1083 (get-window-with-predicate
1084 (lambda (w)
1085 (and (not (window-dedicated-p w))
1086 (equal (frame-terminal (window-frame w))
1087 (frame-terminal (selected-frame)))))
1088 'nomini 'visible (selected-window))))
1089 (condition-case nil
1090 (switch-to-buffer next-buffer)
1091 ;; After all the above, we might still have ended up with
1092 ;; a minibuffer/dedicated-window (if there's no other).
1093 (error (pop-to-buffer next-buffer)))))))))
1094
1095 ;;;###autoload
1096 (defun server-save-buffers-kill-terminal (proc &optional arg)
1097 "Offer to save each buffer, then kill PROC.
1098
1099 With prefix arg, silently save all file-visiting buffers, then kill.
1100
1101 If emacsclient was started with a list of filenames to edit, then
1102 only these files will be asked to be saved."
1103 (let ((buffers (server-client-get proc 'buffers)))
1104 ;; If client is bufferless, emulate a normal Emacs session
1105 ;; exit and offer to save all buffers. Otherwise, offer to
1106 ;; save only the buffers belonging to the client.
1107 (save-some-buffers arg
1108 (if buffers
1109 (lambda () (memq (current-buffer) buffers))
1110 t))
1111 (server-delete-client proc)))
1112
1113 (define-key ctl-x-map "#" 'server-edit)
1114
1115 (defun server-unload-hook ()
1116 "Unload the server library."
1117 (server-start t)
1118 (remove-hook 'suspend-tty-functions 'server-handle-suspend-tty)
1119 (remove-hook 'delete-frame-functions 'server-handle-delete-frame)
1120 (remove-hook 'kill-buffer-query-functions 'server-kill-buffer-query-function)
1121 (remove-hook 'kill-emacs-query-functions 'server-kill-emacs-query-function)
1122 (remove-hook 'kill-buffer-hook 'server-kill-buffer))
1123
1124 (add-hook 'server-unload-hook 'server-unload-hook)
1125 \f
1126 (provide 'server)
1127
1128 ;;; arch-tag: 1f7ecb42-f00a-49f8-906d-61995d84c8d6
1129 ;;; server.el ends here