annotate lisp/server.el @ 12411:884975f72dd5

(server-process-filter): Detect error messages from server.
author Richard M. Stallman <rms@gnu.org>
date Wed, 28 Jun 1995 10:02:03 +0000
parents ecbfde696360
children 6fb78108d62d
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
658
7cbd4fcd8b0f *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 445
diff changeset
1 ;;; server.el --- Lisp code for GNU Emacs running as server process.
7cbd4fcd8b0f *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 445
diff changeset
2
11235
e6bdaaa6ce1b Update copyright.
Karl Heuer <kwzh@gnu.org>
parents: 10961
diff changeset
3 ;; Copyright (C) 1986, 1987, 1992, 1994, 1995 Free Software Foundation, Inc.
844
bf829a2d63b4 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 814
diff changeset
4
787
3cece0106722 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 702
diff changeset
5 ;; Author: William Sommerfeld <wesommer@athena.mit.edu>
814
38b2499cb3e9 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 807
diff changeset
6 ;; Keywords: processes
787
3cece0106722 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 702
diff changeset
7
3cece0106722 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 702
diff changeset
8 ;; Changes by peck@sun.com and by rms.
3cece0106722 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 702
diff changeset
9
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
10 ;; This file is part of GNU Emacs.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
11
38da30b6253c Initial revision
root <root>
parents:
diff changeset
12 ;; GNU Emacs is free software; you can redistribute it and/or modify
38da30b6253c Initial revision
root <root>
parents:
diff changeset
13 ;; it under the terms of the GNU General Public License as published by
807
4f28bd14272c *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 787
diff changeset
14 ;; the Free Software Foundation; either version 2, or (at your option)
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
15 ;; any later version.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
16
38da30b6253c Initial revision
root <root>
parents:
diff changeset
17 ;; GNU Emacs is distributed in the hope that it will be useful,
38da30b6253c Initial revision
root <root>
parents:
diff changeset
18 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
38da30b6253c Initial revision
root <root>
parents:
diff changeset
19 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
38da30b6253c Initial revision
root <root>
parents:
diff changeset
20 ;; GNU General Public License for more details.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
21
38da30b6253c Initial revision
root <root>
parents:
diff changeset
22 ;; You should have received a copy of the GNU General Public License
38da30b6253c Initial revision
root <root>
parents:
diff changeset
23 ;; along with GNU Emacs; see the file COPYING. If not, write to
38da30b6253c Initial revision
root <root>
parents:
diff changeset
24 ;; the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
25
787
3cece0106722 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 702
diff changeset
26 ;;; Commentary:
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
27
38da30b6253c Initial revision
root <root>
parents:
diff changeset
28 ;;; This Lisp code is run in Emacs when it is to operate as
38da30b6253c Initial revision
root <root>
parents:
diff changeset
29 ;;; a server for other processes.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
30
38da30b6253c Initial revision
root <root>
parents:
diff changeset
31 ;;; Load this library and do M-x server-edit to enable Emacs as a server.
445
2a2230dd1b1c *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 413
diff changeset
32 ;;; Emacs runs the program ../arch-lib/emacsserver as a subprocess
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
33 ;;; for communication with clients. If there are no client buffers to edit,
38da30b6253c Initial revision
root <root>
parents:
diff changeset
34 ;;; server-edit acts like (switch-to-buffer (other-buffer))
38da30b6253c Initial revision
root <root>
parents:
diff changeset
35
38da30b6253c Initial revision
root <root>
parents:
diff changeset
36 ;;; When some other program runs "the editor" to edit a file,
445
2a2230dd1b1c *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 413
diff changeset
37 ;;; "the editor" can be the Emacs client program ../lib-src/emacsclient.
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
38 ;;; This program transmits the file names to Emacs through
38da30b6253c Initial revision
root <root>
parents:
diff changeset
39 ;;; the server subprocess, and Emacs visits them and lets you edit them.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
40
38da30b6253c Initial revision
root <root>
parents:
diff changeset
41 ;;; Note that any number of clients may dispatch files to emacs to be edited.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
42
38da30b6253c Initial revision
root <root>
parents:
diff changeset
43 ;;; When you finish editing a Server buffer, again call server-edit
38da30b6253c Initial revision
root <root>
parents:
diff changeset
44 ;;; to mark that buffer as done for the client and switch to the next
38da30b6253c Initial revision
root <root>
parents:
diff changeset
45 ;;; Server buffer. When all the buffers for a client have been edited
38da30b6253c Initial revision
root <root>
parents:
diff changeset
46 ;;; and exited with server-edit, the client "editor" will return
38da30b6253c Initial revision
root <root>
parents:
diff changeset
47 ;;; to the program that invoked it.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
48
38da30b6253c Initial revision
root <root>
parents:
diff changeset
49 ;;; Your editing commands and Emacs's display output go to and from
38da30b6253c Initial revision
root <root>
parents:
diff changeset
50 ;;; the terminal in the usual way. Thus, server operation is possible
38da30b6253c Initial revision
root <root>
parents:
diff changeset
51 ;;; only when Emacs can talk to the terminal at the time you invoke
38da30b6253c Initial revision
root <root>
parents:
diff changeset
52 ;;; the client. This is possible in four cases:
38da30b6253c Initial revision
root <root>
parents:
diff changeset
53
38da30b6253c Initial revision
root <root>
parents:
diff changeset
54 ;;; 1. On a window system, where Emacs runs in one window and the
38da30b6253c Initial revision
root <root>
parents:
diff changeset
55 ;;; program that wants to use "the editor" runs in another.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
56
38da30b6253c Initial revision
root <root>
parents:
diff changeset
57 ;;; 2. On a multi-terminal system, where Emacs runs on one terminal and the
38da30b6253c Initial revision
root <root>
parents:
diff changeset
58 ;;; program that wants to use "the editor" runs on another.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
59
38da30b6253c Initial revision
root <root>
parents:
diff changeset
60 ;;; 3. When the program that wants to use "the editor" is running
38da30b6253c Initial revision
root <root>
parents:
diff changeset
61 ;;; as a subprocess of Emacs.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
62
38da30b6253c Initial revision
root <root>
parents:
diff changeset
63 ;;; 4. On a system with job control, when Emacs is suspended, the program
38da30b6253c Initial revision
root <root>
parents:
diff changeset
64 ;;; that wants to use "the editor" will stop and display
38da30b6253c Initial revision
root <root>
parents:
diff changeset
65 ;;; "Waiting for Emacs...". It can then be suspended, and Emacs can be
38da30b6253c Initial revision
root <root>
parents:
diff changeset
66 ;;; brought into the foreground for editing. When done editing, Emacs is
38da30b6253c Initial revision
root <root>
parents:
diff changeset
67 ;;; suspended again, and the client program is brought into the foreground.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
68
38da30b6253c Initial revision
root <root>
parents:
diff changeset
69 ;;; The buffer local variable "server-buffer-clients" lists
38da30b6253c Initial revision
root <root>
parents:
diff changeset
70 ;;; the clients who are waiting for this buffer to be edited.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
71 ;;; The global variable "server-clients" lists all the waiting clients,
38da30b6253c Initial revision
root <root>
parents:
diff changeset
72 ;;; and which files are yet to be edited for each.
787
3cece0106722 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 702
diff changeset
73
3cece0106722 *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 702
diff changeset
74 ;;; Code:
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
75
6176
1dbec303c87b (kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents: 5749
diff changeset
76 (defvar server-program (expand-file-name "emacsserver" exec-directory)
5749
4555bdf89b40 (server-program): Add exec-directory to value.
Richard M. Stallman <rms@gnu.org>
parents: 4500
diff changeset
77 "*The program to use as the edit server.")
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
78
38da30b6253c Initial revision
root <root>
parents:
diff changeset
79 (defvar server-visit-hook nil
2866
48ddb3600ae6 * server.el (server-switch-hook): New hook.
Jim Blandy <jimb@redhat.com>
parents: 1540
diff changeset
80 "*List of hooks to call when visiting a file for the Emacs server.")
48ddb3600ae6 * server.el (server-switch-hook): New hook.
Jim Blandy <jimb@redhat.com>
parents: 1540
diff changeset
81
48ddb3600ae6 * server.el (server-switch-hook): New hook.
Jim Blandy <jimb@redhat.com>
parents: 1540
diff changeset
82 (defvar server-switch-hook nil
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
83 "*List of hooks to call when switching to a buffer for the Emacs server.")
38da30b6253c Initial revision
root <root>
parents:
diff changeset
84
7597
99a600c67e82 (server-done-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 7553
diff changeset
85 (defvar server-done-hook nil
99a600c67e82 (server-done-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 7553
diff changeset
86 "*List of hooks to call when done editing a buffer for the Emacs server.")
99a600c67e82 (server-done-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 7553
diff changeset
87
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
88 (defvar server-process nil
38da30b6253c Initial revision
root <root>
parents:
diff changeset
89 "the current server process")
38da30b6253c Initial revision
root <root>
parents:
diff changeset
90
138
f3f3651d2520 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 50
diff changeset
91 (defvar server-previous-string "")
f3f3651d2520 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 50
diff changeset
92
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
93 (defvar server-clients nil
38da30b6253c Initial revision
root <root>
parents:
diff changeset
94 "List of current server clients.
7736
8c8410bc0f1b (server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents: 7597
diff changeset
95 Each element is (CLIENTID BUFFERS...) where CLIENTID is a string
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
96 that can be given to the server process to identify a client.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
97 When a buffer is marked as \"done\", it is removed from this list.")
38da30b6253c Initial revision
root <root>
parents:
diff changeset
98
38da30b6253c Initial revision
root <root>
parents:
diff changeset
99 (defvar server-buffer-clients nil
38da30b6253c Initial revision
root <root>
parents:
diff changeset
100 "List of clientids for clients requesting editing of current buffer.")
6176
1dbec303c87b (kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents: 5749
diff changeset
101 (make-variable-buffer-local 'server-buffer-clients)
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
102 ;; Changing major modes should not erase this local.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
103 (put 'server-buffer-clients 'permanent-local t)
38da30b6253c Initial revision
root <root>
parents:
diff changeset
104
3661
65d530f613a8 (server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 2866
diff changeset
105 (defvar server-window nil
65d530f613a8 (server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 2866
diff changeset
106 "*The window to use for selecting Emacs server buffers.
65d530f613a8 (server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 2866
diff changeset
107 If nil, use the selected window.
65d530f613a8 (server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 2866
diff changeset
108 If it is a frame, use the frame's selected window.")
65d530f613a8 (server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 2866
diff changeset
109
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
110 (defvar server-temp-file-regexp "^/tmp/Re\\|/draft$"
38da30b6253c Initial revision
root <root>
parents:
diff changeset
111 "*Regexp which should match filenames of temporary files
38da30b6253c Initial revision
root <root>
parents:
diff changeset
112 which are deleted and reused after each edit
38da30b6253c Initial revision
root <root>
parents:
diff changeset
113 by the programs that invoke the emacs server.")
38da30b6253c Initial revision
root <root>
parents:
diff changeset
114
38da30b6253c Initial revision
root <root>
parents:
diff changeset
115 (or (assq 'server-buffer-clients minor-mode-alist)
38da30b6253c Initial revision
root <root>
parents:
diff changeset
116 (setq minor-mode-alist (cons '(server-buffer-clients " Server") minor-mode-alist)))
38da30b6253c Initial revision
root <root>
parents:
diff changeset
117
38da30b6253c Initial revision
root <root>
parents:
diff changeset
118 ;; If a *server* buffer exists,
38da30b6253c Initial revision
root <root>
parents:
diff changeset
119 ;; write STRING to it for logging purposes.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
120 (defun server-log (string)
38da30b6253c Initial revision
root <root>
parents:
diff changeset
121 (if (get-buffer "*server*")
38da30b6253c Initial revision
root <root>
parents:
diff changeset
122 (save-excursion
38da30b6253c Initial revision
root <root>
parents:
diff changeset
123 (set-buffer "*server*")
38da30b6253c Initial revision
root <root>
parents:
diff changeset
124 (goto-char (point-max))
38da30b6253c Initial revision
root <root>
parents:
diff changeset
125 (insert string)
38da30b6253c Initial revision
root <root>
parents:
diff changeset
126 (or (bobp) (newline)))))
38da30b6253c Initial revision
root <root>
parents:
diff changeset
127
38da30b6253c Initial revision
root <root>
parents:
diff changeset
128 (defun server-sentinel (proc msg)
38da30b6253c Initial revision
root <root>
parents:
diff changeset
129 (cond ((eq (process-status proc) 'exit)
38da30b6253c Initial revision
root <root>
parents:
diff changeset
130 (server-log (message "Server subprocess exited")))
38da30b6253c Initial revision
root <root>
parents:
diff changeset
131 ((eq (process-status proc) 'signal)
38da30b6253c Initial revision
root <root>
parents:
diff changeset
132 (server-log (message "Server subprocess killed")))))
38da30b6253c Initial revision
root <root>
parents:
diff changeset
133
256
7e4c7ef44243 *** empty log message ***
Roland McGrath <roland@gnu.org>
parents: 138
diff changeset
134 ;;;###autoload
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
135 (defun server-start (&optional leave-dead)
38da30b6253c Initial revision
root <root>
parents:
diff changeset
136 "Allow this Emacs process to be a server for client processes.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
137 This starts a server communications subprocess through which
38da30b6253c Initial revision
root <root>
parents:
diff changeset
138 client \"editors\" can send your editing commands to this Emacs job.
7855
69ec123ef310 (server-start): Doc fix.
Richard M. Stallman <rms@gnu.org>
parents: 7736
diff changeset
139 To use the server, set up the program `emacsclient' in the
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
140 Emacs distribution as your standard \"editor\".
38da30b6253c Initial revision
root <root>
parents:
diff changeset
141
38da30b6253c Initial revision
root <root>
parents:
diff changeset
142 Prefix arg means just kill any existing server communications subprocess."
38da30b6253c Initial revision
root <root>
parents:
diff changeset
143 (interactive "P")
38da30b6253c Initial revision
root <root>
parents:
diff changeset
144 ;; kill it dead!
38da30b6253c Initial revision
root <root>
parents:
diff changeset
145 (if server-process
38da30b6253c Initial revision
root <root>
parents:
diff changeset
146 (progn
38da30b6253c Initial revision
root <root>
parents:
diff changeset
147 (set-process-sentinel server-process nil)
38da30b6253c Initial revision
root <root>
parents:
diff changeset
148 (condition-case () (delete-process server-process) (error nil))))
38da30b6253c Initial revision
root <root>
parents:
diff changeset
149 (condition-case () (delete-file "~/.emacs_server") (error nil))
8202
80350a95921a (server-start): Try both possible socket file names for the file to delete.
Richard M. Stallman <rms@gnu.org>
parents: 7855
diff changeset
150 (condition-case ()
80350a95921a (server-start): Try both possible socket file names for the file to delete.
Richard M. Stallman <rms@gnu.org>
parents: 7855
diff changeset
151 (delete-file (format "/tmp/esrv%d-%s" (user-uid) (system-name)))
80350a95921a (server-start): Try both possible socket file names for the file to delete.
Richard M. Stallman <rms@gnu.org>
parents: 7855
diff changeset
152 (error nil))
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
153 ;; If we already had a server, clear out associated status.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
154 (while server-clients
38da30b6253c Initial revision
root <root>
parents:
diff changeset
155 (let ((buffer (nth 1 (car server-clients))))
38da30b6253c Initial revision
root <root>
parents:
diff changeset
156 (server-buffer-done buffer)))
38da30b6253c Initial revision
root <root>
parents:
diff changeset
157 (if leave-dead
38da30b6253c Initial revision
root <root>
parents:
diff changeset
158 nil
38da30b6253c Initial revision
root <root>
parents:
diff changeset
159 (if server-process
38da30b6253c Initial revision
root <root>
parents:
diff changeset
160 (server-log (message "Restarting server")))
8733
14b8f8a28ace (server-start): Always use pipes for communication.
Richard M. Stallman <rms@gnu.org>
parents: 8202
diff changeset
161 ;; Using a pty is wasteful, and the separate session causes
14b8f8a28ace (server-start): Always use pipes for communication.
Richard M. Stallman <rms@gnu.org>
parents: 8202
diff changeset
162 ;; annoyance sometimes (some systems kill idle sessions).
14b8f8a28ace (server-start): Always use pipes for communication.
Richard M. Stallman <rms@gnu.org>
parents: 8202
diff changeset
163 (let ((process-connection-type nil))
14b8f8a28ace (server-start): Always use pipes for communication.
Richard M. Stallman <rms@gnu.org>
parents: 8202
diff changeset
164 (setq server-process (start-process "server" nil server-program)))
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
165 (set-process-sentinel server-process 'server-sentinel)
38da30b6253c Initial revision
root <root>
parents:
diff changeset
166 (set-process-filter server-process 'server-process-filter)
38da30b6253c Initial revision
root <root>
parents:
diff changeset
167 (process-kill-without-query server-process)))
38da30b6253c Initial revision
root <root>
parents:
diff changeset
168
38da30b6253c Initial revision
root <root>
parents:
diff changeset
169 ;Process a request from the server to edit some files.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
170 ;Format of STRING is "Client: CLIENTID PATH PATH PATH... \n"
38da30b6253c Initial revision
root <root>
parents:
diff changeset
171 (defun server-process-filter (proc string)
38da30b6253c Initial revision
root <root>
parents:
diff changeset
172 (server-log string)
138
f3f3651d2520 *** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents: 50
diff changeset
173 (setq string (concat server-previous-string string))
10281
44d98e169823 (server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents: 10218
diff changeset
174 ;; If the input is multiple lines,
44d98e169823 (server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents: 10218
diff changeset
175 ;; process each line individually.
44d98e169823 (server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents: 10218
diff changeset
176 (while (string-match "\n" string)
44d98e169823 (server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents: 10218
diff changeset
177 (let ((request (substring string 0 (match-beginning 0)))
44d98e169823 (server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents: 10218
diff changeset
178 client
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
179 (files nil)
38da30b6253c Initial revision
root <root>
parents:
diff changeset
180 (lineno 1))
10281
44d98e169823 (server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents: 10218
diff changeset
181 ;; Remove this line from STRING.
44d98e169823 (server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents: 10218
diff changeset
182 (setq string (substring string (match-end 0)))
12411
884975f72dd5 (server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents: 11329
diff changeset
183 (if (string-match "^Error: " request)
884975f72dd5 (server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents: 11329
diff changeset
184 (message (concat "Server error: " (substring request (match-end 0))))
884975f72dd5 (server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents: 11329
diff changeset
185 (if (string-match "^Client: " request)
884975f72dd5 (server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents: 11329
diff changeset
186 (setq request (substring request (match-end 0))))
884975f72dd5 (server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents: 11329
diff changeset
187 (setq client (list (substring request 0 (string-match " " request))))
884975f72dd5 (server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents: 11329
diff changeset
188 (setq request (substring request (match-end 0)))
884975f72dd5 (server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents: 11329
diff changeset
189 (while (string-match "[^ ]+ " request)
884975f72dd5 (server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents: 11329
diff changeset
190 (let ((arg
884975f72dd5 (server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents: 11329
diff changeset
191 (substring request (match-beginning 0) (1- (match-end 0)))))
884975f72dd5 (server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents: 11329
diff changeset
192 (setq request (substring request (match-end 0)))
884975f72dd5 (server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents: 11329
diff changeset
193 (if (string-match "\\`\\+[0-9]+\\'" arg)
884975f72dd5 (server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents: 11329
diff changeset
194 (setq lineno (read (substring arg 1)))
884975f72dd5 (server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents: 11329
diff changeset
195 (setq files
884975f72dd5 (server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents: 11329
diff changeset
196 (cons (list arg lineno)
884975f72dd5 (server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents: 11329
diff changeset
197 files))
884975f72dd5 (server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents: 11329
diff changeset
198 (setq lineno 1))))
884975f72dd5 (server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents: 11329
diff changeset
199 (server-visit-files files client)
884975f72dd5 (server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents: 11329
diff changeset
200 ;; CLIENT is now a list (CLIENTNUM BUFFERS...)
884975f72dd5 (server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents: 11329
diff changeset
201 (setq server-clients (cons client server-clients))
884975f72dd5 (server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents: 11329
diff changeset
202 (server-switch-buffer (nth 1 client))
884975f72dd5 (server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents: 11329
diff changeset
203 (run-hooks 'server-switch-hook)
884975f72dd5 (server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents: 11329
diff changeset
204 (message (substitute-command-keys
884975f72dd5 (server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents: 11329
diff changeset
205 "When done with a buffer, type \\[server-edit]")))))
10281
44d98e169823 (server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents: 10218
diff changeset
206 ;; Save for later any partial line that remains.
44d98e169823 (server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents: 10218
diff changeset
207 (setq server-previous-string string))
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
208
38da30b6253c Initial revision
root <root>
parents:
diff changeset
209 (defun server-visit-files (files client)
38da30b6253c Initial revision
root <root>
parents:
diff changeset
210 "Finds FILES and returns the list CLIENT with the buffers nconc'd.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
211 FILES is an alist whose elements are (FILENAME LINENUMBER)."
7736
8c8410bc0f1b (server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents: 7597
diff changeset
212 ;; Bind last-nonmenu-event to force use of keyboard, not mouse, for queries.
8c8410bc0f1b (server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents: 7597
diff changeset
213 (let (client-record (last-nonmenu-event t) (obuf (current-buffer)))
4500
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
214 ;; Restore the current buffer afterward, but not using save-excursion,
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
215 ;; because we don't want to save point in this buffer
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
216 ;; if it happens to be one of those specified by the server.
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
217 (unwind-protect
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
218 (while files
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
219 ;; If there is an existing buffer modified or the file is modified,
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
220 ;; revert it.
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
221 ;; If there is an existing buffer with deleted file, offer to write it.
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
222 (let* ((filen (car (car files)))
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
223 (obuf (get-file-buffer filen)))
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
224 (if (and obuf (set-buffer obuf))
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
225 (if (file-exists-p filen)
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
226 (if (or (not (verify-visited-file-modtime obuf))
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
227 (buffer-modified-p obuf))
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
228 (revert-buffer t nil))
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
229 (if (y-or-n-p
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
230 (concat "File no longer exists: "
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
231 filen
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
232 ", write buffer to file? "))
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
233 (write-file filen)))
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
234 (set-buffer (find-file-noselect filen))
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
235 (run-hooks 'server-visit-hook)))
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
236 (goto-line (nth 1 (car files)))
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
237 (setq server-buffer-clients (cons (car client) server-buffer-clients))
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
238 (setq client-record (cons (current-buffer) client-record))
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
239 (setq files (cdr files)))
56d7c4beae9f (server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents: 4096
diff changeset
240 (set-buffer obuf))
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
241 (nconc client client-record)))
38da30b6253c Initial revision
root <root>
parents:
diff changeset
242
38da30b6253c Initial revision
root <root>
parents:
diff changeset
243 (defun server-buffer-done (buffer)
38da30b6253c Initial revision
root <root>
parents:
diff changeset
244 "Mark BUFFER as \"done\" for its client(s).
10961
88cba63f2a9b (server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents: 10281
diff changeset
245 This buries the buffer, then returns a list of the form (NEXT-BUFFER KILLED).
88cba63f2a9b (server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents: 10281
diff changeset
246 NEXT-BUFFER is another server buffer, as a suggestion for what to select next,
88cba63f2a9b (server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents: 10281
diff changeset
247 or nil. KILLED is t if we killed BUFFER (because it was a temp file)."
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
248 (let ((running (eq (process-status server-process) 'run))
38da30b6253c Initial revision
root <root>
parents:
diff changeset
249 (next-buffer nil)
10961
88cba63f2a9b (server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents: 10281
diff changeset
250 (killed nil)
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
251 (old-clients server-clients))
38da30b6253c Initial revision
root <root>
parents:
diff changeset
252 (while old-clients
38da30b6253c Initial revision
root <root>
parents:
diff changeset
253 (let ((client (car old-clients)))
38da30b6253c Initial revision
root <root>
parents:
diff changeset
254 (or next-buffer
38da30b6253c Initial revision
root <root>
parents:
diff changeset
255 (setq next-buffer (nth 1 (memq buffer client))))
38da30b6253c Initial revision
root <root>
parents:
diff changeset
256 (delq buffer client)
10281
44d98e169823 (server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents: 10218
diff changeset
257 ;; Delete all dead buffers from CLIENT.
44d98e169823 (server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents: 10218
diff changeset
258 (let ((tail client))
44d98e169823 (server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents: 10218
diff changeset
259 (while tail
44d98e169823 (server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents: 10218
diff changeset
260 (and (bufferp (car tail))
44d98e169823 (server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents: 10218
diff changeset
261 (null (buffer-name (car tail)))
44d98e169823 (server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents: 10218
diff changeset
262 (delq (car tail) client))
44d98e169823 (server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents: 10218
diff changeset
263 (setq tail (cdr tail))))
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
264 ;; If client now has no pending buffers,
38da30b6253c Initial revision
root <root>
parents:
diff changeset
265 ;; tell it that it is done, and forget it entirely.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
266 (if (cdr client) nil
38da30b6253c Initial revision
root <root>
parents:
diff changeset
267 (if running
38da30b6253c Initial revision
root <root>
parents:
diff changeset
268 (progn
38da30b6253c Initial revision
root <root>
parents:
diff changeset
269 (send-string server-process
38da30b6253c Initial revision
root <root>
parents:
diff changeset
270 (format "Close: %s Done\n" (car client)))
10281
44d98e169823 (server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents: 10218
diff changeset
271 (server-log (format "Close: %s Done\n" (car client)))
44d98e169823 (server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents: 10218
diff changeset
272 ;; Don't send emacsserver two commands in close succession.
44d98e169823 (server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents: 10218
diff changeset
273 ;; It cannot handle that.
44d98e169823 (server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents: 10218
diff changeset
274 (sit-for 1)))
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
275 (setq server-clients (delq client server-clients))))
38da30b6253c Initial revision
root <root>
parents:
diff changeset
276 (setq old-clients (cdr old-clients)))
10281
44d98e169823 (server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents: 10218
diff changeset
277 (if (and (bufferp buffer) (buffer-name buffer))
6176
1dbec303c87b (kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents: 5749
diff changeset
278 (progn
1dbec303c87b (kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents: 5749
diff changeset
279 (save-excursion
1dbec303c87b (kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents: 5749
diff changeset
280 (set-buffer buffer)
7597
99a600c67e82 (server-done-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 7553
diff changeset
281 (setq server-buffer-clients nil)
99a600c67e82 (server-done-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents: 7553
diff changeset
282 (run-hooks 'server-done-hook))
7553
e473c5ad9e7d (server-done): Never kill buffer here.
Richard M. Stallman <rms@gnu.org>
parents: 7300
diff changeset
283 (if (server-temp-file-p buffer)
10961
88cba63f2a9b (server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents: 10281
diff changeset
284 (progn (kill-buffer buffer)
88cba63f2a9b (server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents: 10281
diff changeset
285 (setq killed t))
7553
e473c5ad9e7d (server-done): Never kill buffer here.
Richard M. Stallman <rms@gnu.org>
parents: 7300
diff changeset
286 (bury-buffer buffer))))
10961
88cba63f2a9b (server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents: 10281
diff changeset
287 (list next-buffer killed)))
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
288
38da30b6253c Initial revision
root <root>
parents:
diff changeset
289 (defun server-temp-file-p (buffer)
38da30b6253c Initial revision
root <root>
parents:
diff changeset
290 "Return non-nil if BUFFER contains a file considered temporary.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
291 These are files whose names suggest they are repeatedly
38da30b6253c Initial revision
root <root>
parents:
diff changeset
292 reused to pass information to another program.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
293
38da30b6253c Initial revision
root <root>
parents:
diff changeset
294 The variable `server-temp-file-regexp' controls which filenames
38da30b6253c Initial revision
root <root>
parents:
diff changeset
295 are considered temporary."
38da30b6253c Initial revision
root <root>
parents:
diff changeset
296 (and (buffer-file-name buffer)
38da30b6253c Initial revision
root <root>
parents:
diff changeset
297 (string-match server-temp-file-regexp (buffer-file-name buffer))))
38da30b6253c Initial revision
root <root>
parents:
diff changeset
298
38da30b6253c Initial revision
root <root>
parents:
diff changeset
299 (defun server-done ()
1540
f3554332993b Doc fix.
Christopher Zaborsky <rogue@erratum.com>
parents: 1079
diff changeset
300 "Offer to save current buffer, mark it as \"done\" for clients.
10961
88cba63f2a9b (server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents: 10281
diff changeset
301 This buries the buffer, then returns a list of the form (NEXT-BUFFER KILLED).
88cba63f2a9b (server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents: 10281
diff changeset
302 NEXT-BUFFER is another server buffer, as a suggestion for what to select next,
88cba63f2a9b (server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents: 10281
diff changeset
303 or nil. KILLED is t if we killed the BUFFER (because it was a temp file)."
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
304 (let ((buffer (current-buffer)))
38da30b6253c Initial revision
root <root>
parents:
diff changeset
305 (if server-buffer-clients
7553
e473c5ad9e7d (server-done): Never kill buffer here.
Richard M. Stallman <rms@gnu.org>
parents: 7300
diff changeset
306 (progn
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
307 (if (server-temp-file-p buffer)
4096
badd80e9e4fc (server-done): Let save-buffer make the backup,
Richard M. Stallman <rms@gnu.org>
parents: 3746
diff changeset
308 ;; For a temp file, save, and do make a non-numeric backup
badd80e9e4fc (server-done): Let save-buffer make the backup,
Richard M. Stallman <rms@gnu.org>
parents: 3746
diff changeset
309 ;; (unless make-backup-files is nil).
badd80e9e4fc (server-done): Let save-buffer make the backup,
Richard M. Stallman <rms@gnu.org>
parents: 3746
diff changeset
310 (let ((version-control nil)
badd80e9e4fc (server-done): Let save-buffer make the backup,
Richard M. Stallman <rms@gnu.org>
parents: 3746
diff changeset
311 (buffer-backed-up nil))
7553
e473c5ad9e7d (server-done): Never kill buffer here.
Richard M. Stallman <rms@gnu.org>
parents: 7300
diff changeset
312 (save-buffer))
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
313 (if (and (buffer-modified-p)
38da30b6253c Initial revision
root <root>
parents:
diff changeset
314 (y-or-n-p (concat "Save file " buffer-file-name "? ")))
38da30b6253c Initial revision
root <root>
parents:
diff changeset
315 (save-buffer buffer)))
7553
e473c5ad9e7d (server-done): Never kill buffer here.
Richard M. Stallman <rms@gnu.org>
parents: 7300
diff changeset
316 (server-buffer-done buffer)))))
6176
1dbec303c87b (kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents: 5749
diff changeset
317
9883
7c4393810151 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 9252
diff changeset
318 ;; Ask before killing a server buffer.
7c4393810151 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 9252
diff changeset
319 ;; It was suggested to release its client instead,
7c4393810151 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 9252
diff changeset
320 ;; but I think that is dangerous--the client would proceed
7c4393810151 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 9252
diff changeset
321 ;; using whatever is on disk in that file. -- rms.
6993
0983fe01e614 (server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents: 6960
diff changeset
322 (defun server-kill-buffer-query-function ()
0983fe01e614 (server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents: 6960
diff changeset
323 (or (not server-buffer-clients)
0983fe01e614 (server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents: 6960
diff changeset
324 (yes-or-no-p (format "Buffer `%s' still has clients; kill it? "
0983fe01e614 (server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents: 6960
diff changeset
325 (buffer-name (current-buffer))))))
0983fe01e614 (server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents: 6960
diff changeset
326
6176
1dbec303c87b (kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents: 5749
diff changeset
327 (add-hook 'kill-buffer-query-functions
6993
0983fe01e614 (server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents: 6960
diff changeset
328 'server-kill-buffer-query-function)
6176
1dbec303c87b (kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents: 5749
diff changeset
329
6993
0983fe01e614 (server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents: 6960
diff changeset
330 (defun server-kill-emacs-query-function ()
7736
8c8410bc0f1b (server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents: 7597
diff changeset
331 (let (live-client
8c8410bc0f1b (server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents: 7597
diff changeset
332 (tail server-clients))
8c8410bc0f1b (server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents: 7597
diff changeset
333 ;; See if any clients have any buffers that are still alive.
8c8410bc0f1b (server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents: 7597
diff changeset
334 (while tail
8c8410bc0f1b (server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents: 7597
diff changeset
335 (if (memq t (mapcar 'stringp (mapcar 'buffer-name (cdr (car tail)))))
8c8410bc0f1b (server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents: 7597
diff changeset
336 (setq live-client t))
8c8410bc0f1b (server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents: 7597
diff changeset
337 (setq tail (cdr tail)))
8c8410bc0f1b (server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents: 7597
diff changeset
338 (or (not live-client)
8c8410bc0f1b (server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents: 7597
diff changeset
339 (yes-or-no-p "Server buffers still have clients; exit anyway? "))))
6993
0983fe01e614 (server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents: 6960
diff changeset
340
0983fe01e614 (server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents: 6960
diff changeset
341 (add-hook 'kill-emacs-query-functions 'server-kill-emacs-query-function)
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
342
38da30b6253c Initial revision
root <root>
parents:
diff changeset
343 (defun server-edit (&optional arg)
38da30b6253c Initial revision
root <root>
parents:
diff changeset
344 "Switch to next server editing buffer; say \"Done\" for current buffer.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
345 If a server buffer is current, it is marked \"done\" and optionally saved.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
346 When all of a client's buffers are marked as \"done\", the client is notified.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
347
38da30b6253c Initial revision
root <root>
parents:
diff changeset
348 Temporary files such as MH <draft> files are always saved and backed up,
4096
badd80e9e4fc (server-done): Let save-buffer make the backup,
Richard M. Stallman <rms@gnu.org>
parents: 3746
diff changeset
349 no questions asked. (The variable `make-backup-files', if nil, still
badd80e9e4fc (server-done): Let save-buffer make the backup,
Richard M. Stallman <rms@gnu.org>
parents: 3746
diff changeset
350 inhibits a backup; you can set it locally in a particular buffer to
badd80e9e4fc (server-done): Let save-buffer make the backup,
Richard M. Stallman <rms@gnu.org>
parents: 3746
diff changeset
351 prevent a backup for it.) The variable `server-temp-file-regexp' controls
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
352 which filenames are considered temporary.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
353
38da30b6253c Initial revision
root <root>
parents:
diff changeset
354 If invoked with a prefix argument, or if there is no server process running,
38da30b6253c Initial revision
root <root>
parents:
diff changeset
355 starts server process and that is all. Invoked by \\[server-edit]."
38da30b6253c Initial revision
root <root>
parents:
diff changeset
356 (interactive "P")
38da30b6253c Initial revision
root <root>
parents:
diff changeset
357 (if (or arg
38da30b6253c Initial revision
root <root>
parents:
diff changeset
358 (not server-process)
38da30b6253c Initial revision
root <root>
parents:
diff changeset
359 (memq (process-status server-process) '(signal exit)))
38da30b6253c Initial revision
root <root>
parents:
diff changeset
360 (server-start nil)
10961
88cba63f2a9b (server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents: 10281
diff changeset
361 (apply 'server-switch-buffer (server-done))))
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
362
11329
ecbfde696360 (server-switch-buffer): Make first arg optional too;
Roland McGrath <roland@gnu.org>
parents: 11235
diff changeset
363 (defun server-switch-buffer (&optional next-buffer killed-one)
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
364 "Switch to another buffer, preferably one that has a client.
38da30b6253c Initial revision
root <root>
parents:
diff changeset
365 Arg NEXT-BUFFER is a suggestion; if it is a live buffer, use it."
10961
88cba63f2a9b (server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents: 10281
diff changeset
366 ;; KILLED-ONE is t in a recursive call
88cba63f2a9b (server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents: 10281
diff changeset
367 ;; if we have already killed one temp-file server buffer.
88cba63f2a9b (server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents: 10281
diff changeset
368 ;; This means we should avoid the final "switch to some other buffer"
88cba63f2a9b (server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents: 10281
diff changeset
369 ;; since we've already effectively done that.
10218
b78b8c445f33 (server-switch-buffer): Cope with dead frames and windows.
Richard M. Stallman <rms@gnu.org>
parents: 9883
diff changeset
370 (cond ((and (windowp server-window)
b78b8c445f33 (server-switch-buffer): Cope with dead frames and windows.
Richard M. Stallman <rms@gnu.org>
parents: 9883
diff changeset
371 (window-live-p server-window))
3661
65d530f613a8 (server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 2866
diff changeset
372 (select-window server-window))
65d530f613a8 (server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 2866
diff changeset
373 ((framep server-window)
10218
b78b8c445f33 (server-switch-buffer): Cope with dead frames and windows.
Richard M. Stallman <rms@gnu.org>
parents: 9883
diff changeset
374 (if (not (frame-live-p server-window))
b78b8c445f33 (server-switch-buffer): Cope with dead frames and windows.
Richard M. Stallman <rms@gnu.org>
parents: 9883
diff changeset
375 (setq server-window (make-frame)))
3661
65d530f613a8 (server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents: 2866
diff changeset
376 (select-window (frame-selected-window server-window))))
6182
472277144da6 (server-switch-buffer): Don't select a minibuffer.
Karl Heuer <kwzh@gnu.org>
parents: 6176
diff changeset
377 (if (window-minibuffer-p (selected-window))
9252
8c659649649e (server-switch-buffer): Don't go to an invisible frame.
Richard M. Stallman <rms@gnu.org>
parents: 8733
diff changeset
378 (select-window (next-window nil 'nomini 0)))
8c659649649e (server-switch-buffer): Don't go to an invisible frame.
Richard M. Stallman <rms@gnu.org>
parents: 8733
diff changeset
379 ;; Move to a non-dedicated window, if we have one.
8c659649649e (server-switch-buffer): Don't go to an invisible frame.
Richard M. Stallman <rms@gnu.org>
parents: 8733
diff changeset
380 (let ((last-window (previous-window nil 'nomini 0)))
8c659649649e (server-switch-buffer): Don't go to an invisible frame.
Richard M. Stallman <rms@gnu.org>
parents: 8733
diff changeset
381 (while (and (window-dedicated-p (selected-window))
8c659649649e (server-switch-buffer): Don't go to an invisible frame.
Richard M. Stallman <rms@gnu.org>
parents: 8733
diff changeset
382 (not (eq last-window (selected-window))))
8c659649649e (server-switch-buffer): Don't go to an invisible frame.
Richard M. Stallman <rms@gnu.org>
parents: 8733
diff changeset
383 (select-window (next-window nil 'nomini 0))))
8c659649649e (server-switch-buffer): Don't go to an invisible frame.
Richard M. Stallman <rms@gnu.org>
parents: 8733
diff changeset
384 (set-window-dedicated-p (selected-window) nil)
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
385 (if next-buffer
38da30b6253c Initial revision
root <root>
parents:
diff changeset
386 (if (and (bufferp next-buffer)
38da30b6253c Initial revision
root <root>
parents:
diff changeset
387 (buffer-name next-buffer))
38da30b6253c Initial revision
root <root>
parents:
diff changeset
388 (switch-to-buffer next-buffer)
38da30b6253c Initial revision
root <root>
parents:
diff changeset
389 ;; If NEXT-BUFFER is a dead buffer,
38da30b6253c Initial revision
root <root>
parents:
diff changeset
390 ;; remove the server records for it
38da30b6253c Initial revision
root <root>
parents:
diff changeset
391 ;; and try the next surviving server buffer.
10961
88cba63f2a9b (server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents: 10281
diff changeset
392 (apply 'server-switch-buffer
88cba63f2a9b (server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents: 10281
diff changeset
393 (server-buffer-done next-buffer)))
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
394 (if server-clients
10961
88cba63f2a9b (server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents: 10281
diff changeset
395 (server-switch-buffer (nth 1 (car server-clients)) killed-one)
88cba63f2a9b (server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents: 10281
diff changeset
396 (if (not killed-one)
88cba63f2a9b (server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents: 10281
diff changeset
397 (switch-to-buffer (other-buffer))))))
50
38da30b6253c Initial revision
root <root>
parents:
diff changeset
398
38da30b6253c Initial revision
root <root>
parents:
diff changeset
399 (global-set-key "\C-x#" 'server-edit)
1079
0c960257c363 entered into RCS
Roland McGrath <roland@gnu.org>
parents: 844
diff changeset
400
0c960257c363 entered into RCS
Roland McGrath <roland@gnu.org>
parents: 844
diff changeset
401 (provide 'server)
658
7cbd4fcd8b0f *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 445
diff changeset
402
7cbd4fcd8b0f *** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents: 445
diff changeset
403 ;;; server.el ends here