Mercurial > emacs
annotate lisp/server.el @ 32222:ae7e7e548bf3
(backward-word): Doc fix.
author | Dave Love <fx@gnu.org> |
---|---|
date | Fri, 06 Oct 2000 18:13:28 +0000 |
parents | ac8beefc28a9 |
children | a160265d0a06 |
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 |
19418 | 3 ;; Copyright (C) 1986, 87, 92, 94, 95, 96, 1997 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> |
17970 | 6 ;; Maintainer: FSF |
814
38b2499cb3e9
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
807
diff
changeset
|
7 ;; Keywords: processes |
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
702
diff
changeset
|
8 |
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
702
diff
changeset
|
9 ;; Changes by peck@sun.com and by rms. |
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
702
diff
changeset
|
10 |
50 | 11 ;; This file is part of GNU Emacs. |
12 | |
13 ;; GNU Emacs is free software; you can redistribute it and/or modify | |
14 ;; 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
|
15 ;; the Free Software Foundation; either version 2, or (at your option) |
50 | 16 ;; any later version. |
17 | |
18 ;; GNU Emacs is distributed in the hope that it will be useful, | |
19 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of | |
20 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
21 ;; GNU General Public License for more details. | |
22 | |
23 ;; You should have received a copy of the GNU General Public License | |
14169 | 24 ;; along with GNU Emacs; see the file COPYING. If not, write to the |
25 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
26 ;; Boston, MA 02111-1307, USA. | |
50 | 27 |
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
702
diff
changeset
|
28 ;;; Commentary: |
50 | 29 |
14169 | 30 ;; This Lisp code is run in Emacs when it is to operate as |
31 ;; a server for other processes. | |
50 | 32 |
14169 | 33 ;; Load this library and do M-x server-edit to enable Emacs as a server. |
34 ;; Emacs runs the program ../arch-lib/emacsserver as a subprocess | |
35 ;; for communication with clients. If there are no client buffers to edit, | |
36 ;; server-edit acts like (switch-to-buffer (other-buffer)) | |
50 | 37 |
14169 | 38 ;; When some other program runs "the editor" to edit a file, |
39 ;; "the editor" can be the Emacs client program ../lib-src/emacsclient. | |
40 ;; This program transmits the file names to Emacs through | |
41 ;; the server subprocess, and Emacs visits them and lets you edit them. | |
50 | 42 |
14169 | 43 ;; Note that any number of clients may dispatch files to emacs to be edited. |
50 | 44 |
14169 | 45 ;; When you finish editing a Server buffer, again call server-edit |
46 ;; to mark that buffer as done for the client and switch to the next | |
47 ;; Server buffer. When all the buffers for a client have been edited | |
48 ;; and exited with server-edit, the client "editor" will return | |
49 ;; to the program that invoked it. | |
50 | 50 |
14169 | 51 ;; Your editing commands and Emacs's display output go to and from |
52 ;; the terminal in the usual way. Thus, server operation is possible | |
53 ;; only when Emacs can talk to the terminal at the time you invoke | |
54 ;; the client. This is possible in four cases: | |
50 | 55 |
14169 | 56 ;; 1. On a window system, where Emacs runs in one window and the |
57 ;; program that wants to use "the editor" runs in another. | |
50 | 58 |
14169 | 59 ;; 2. On a multi-terminal system, where Emacs runs on one terminal and the |
60 ;; program that wants to use "the editor" runs on another. | |
50 | 61 |
14169 | 62 ;; 3. When the program that wants to use "the editor" is running |
63 ;; as a subprocess of Emacs. | |
50 | 64 |
14169 | 65 ;; 4. On a system with job control, when Emacs is suspended, the program |
66 ;; that wants to use "the editor" will stop and display | |
67 ;; "Waiting for Emacs...". It can then be suspended, and Emacs can be | |
68 ;; brought into the foreground for editing. When done editing, Emacs is | |
69 ;; suspended again, and the client program is brought into the foreground. | |
50 | 70 |
14169 | 71 ;; The buffer local variable "server-buffer-clients" lists |
72 ;; the clients who are waiting for this buffer to be edited. | |
73 ;; The global variable "server-clients" lists all the waiting clients, | |
74 ;; and which files are yet to be edited for each. | |
787
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
702
diff
changeset
|
75 |
3cece0106722
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
702
diff
changeset
|
76 ;;; Code: |
50 | 77 |
19418 | 78 (defgroup server nil |
79 "Emacs running as a server process." | |
80 :group 'external) | |
50 | 81 |
19418 | 82 (defcustom server-program (expand-file-name "emacsserver" exec-directory) |
83 "*The program to use as the edit server." | |
84 :group 'server | |
85 :type 'string) | |
2866
48ddb3600ae6
* server.el (server-switch-hook): New hook.
Jim Blandy <jimb@redhat.com>
parents:
1540
diff
changeset
|
86 |
19418 | 87 (defcustom server-visit-hook nil |
88 "*List of hooks to call when visiting a file for the Emacs server." | |
89 :group 'server | |
90 :type '(repeat function)) | |
50 | 91 |
19418 | 92 (defcustom server-switch-hook nil |
93 "*List of hooks to call when switching to a buffer for the Emacs server." | |
94 :group 'server | |
95 :type '(repeat function)) | |
96 | |
97 (defcustom server-done-hook nil | |
98 "*List of hooks to call when done editing a buffer for the Emacs server." | |
99 :group 'server | |
100 :type '(repeat function)) | |
7597
99a600c67e82
(server-done-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
7553
diff
changeset
|
101 |
50 | 102 (defvar server-process nil |
103 "the current server process") | |
104 | |
138 | 105 (defvar server-previous-string "") |
106 | |
50 | 107 (defvar server-clients nil |
108 "List of current server clients. | |
7736
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
109 Each element is (CLIENTID BUFFERS...) where CLIENTID is a string |
50 | 110 that can be given to the server process to identify a client. |
111 When a buffer is marked as \"done\", it is removed from this list.") | |
112 | |
113 (defvar server-buffer-clients nil | |
114 "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
|
115 (make-variable-buffer-local 'server-buffer-clients) |
50 | 116 ;; Changing major modes should not erase this local. |
117 (put 'server-buffer-clients 'permanent-local t) | |
118 | |
3661
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
119 (defvar server-window nil |
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
120 "*The window to use for selecting Emacs server buffers. |
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
121 If nil, use the selected window. |
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
122 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
|
123 |
19418 | 124 (defcustom server-temp-file-regexp "^/tmp/Re\\|/draft$" |
50 | 125 "*Regexp which should match filenames of temporary files |
126 which are deleted and reused after each edit | |
31008
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
127 by the programs that invoke the Emacs server." |
19418 | 128 :group 'server |
129 :type 'regexp) | |
50 | 130 |
31008
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
131 (defcustom server-kill-new-buffers t |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
132 "*Whether to kill buffers when done with them. |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
133 If non-nil, kill a buffer unless it already existed before editing |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
134 it with Emacs server. If nil, kill only buffers as specified by |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
135 `server-temp-file-regexp'. |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
136 Please note that only buffers are killed that still have a client, |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
137 i.e. buffers visited which \"emacsclient --no-wait\" are never killed in |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
138 this way." |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
139 :group 'server |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
140 :type 'boolean |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
141 :version "21.1") |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
142 |
50 | 143 (or (assq 'server-buffer-clients minor-mode-alist) |
144 (setq minor-mode-alist (cons '(server-buffer-clients " Server") minor-mode-alist))) | |
145 | |
31008
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
146 (defvar server-existing-buffer nil |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
147 "Non-nil means a server buffer existed before visiting a file.") |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
148 (make-variable-buffer-local 'server-existing-buffer) |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
149 |
50 | 150 ;; If a *server* buffer exists, |
151 ;; write STRING to it for logging purposes. | |
152 (defun server-log (string) | |
153 (if (get-buffer "*server*") | |
154 (save-excursion | |
155 (set-buffer "*server*") | |
156 (goto-char (point-max)) | |
13468
2c8da6b3b9e0
(server-log): Record the current time.
Richard M. Stallman <rms@gnu.org>
parents:
13157
diff
changeset
|
157 (insert (current-time-string) " " string) |
2c8da6b3b9e0
(server-log): Record the current time.
Richard M. Stallman <rms@gnu.org>
parents:
13157
diff
changeset
|
158 (or (bolp) (newline))))) |
50 | 159 |
160 (defun server-sentinel (proc msg) | |
161 (cond ((eq (process-status proc) 'exit) | |
162 (server-log (message "Server subprocess exited"))) | |
163 ((eq (process-status proc) 'signal) | |
164 (server-log (message "Server subprocess killed"))))) | |
165 | |
256 | 166 ;;;###autoload |
50 | 167 (defun server-start (&optional leave-dead) |
168 "Allow this Emacs process to be a server for client processes. | |
169 This starts a server communications subprocess through which | |
170 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
|
171 To use the server, set up the program `emacsclient' in the |
50 | 172 Emacs distribution as your standard \"editor\". |
173 | |
174 Prefix arg means just kill any existing server communications subprocess." | |
175 (interactive "P") | |
176 ;; kill it dead! | |
177 (if server-process | |
178 (progn | |
179 (set-process-sentinel server-process nil) | |
180 (condition-case () (delete-process server-process) (error nil)))) | |
16789
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
181 ;; Delete the socket files made by previous server invocations. |
13157
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
182 (let* ((sysname (system-name)) |
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
183 (dot-index (string-match "\\." sysname))) |
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
184 (condition-case () |
16789
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
185 (delete-file (format "~/.emacs-server-%s" sysname)) |
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
186 (error nil)) |
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
187 (condition-case () |
13157
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
188 (delete-file (format "/tmp/esrv%d-%s" (user-uid) sysname)) |
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
189 (error nil)) |
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
190 ;; In case the server file name was made with a domainless hostname, |
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
191 ;; try deleting that name too. |
31242cebf1d3
(server-start): Try both full hostname and shortened
Richard M. Stallman <rms@gnu.org>
parents:
13070
diff
changeset
|
192 (if dot-index |
16789
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
193 (let ((shortname (substring sysname 0 dot-index))) |
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
194 (condition-case () |
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
195 (delete-file (format "~/.emacs-server-%s" shortname)) |
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
196 (error nil)) |
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
197 (condition-case () |
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
198 (delete-file (format "/tmp/esrv%d-%s" (user-uid) shortname)) |
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
199 (error nil))))) |
85b1a10101ff
(server-start): Don't delete ~/.emacs-server.
Richard M. Stallman <rms@gnu.org>
parents:
16075
diff
changeset
|
200 ;; If this Emacs already had a server, clear out associated status. |
50 | 201 (while server-clients |
202 (let ((buffer (nth 1 (car server-clients)))) | |
203 (server-buffer-done buffer))) | |
204 (if leave-dead | |
205 nil | |
206 (if server-process | |
207 (server-log (message "Restarting server"))) | |
8733
14b8f8a28ace
(server-start): Always use pipes for communication.
Richard M. Stallman <rms@gnu.org>
parents:
8202
diff
changeset
|
208 ;; 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
|
209 ;; 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
|
210 (let ((process-connection-type nil)) |
14b8f8a28ace
(server-start): Always use pipes for communication.
Richard M. Stallman <rms@gnu.org>
parents:
8202
diff
changeset
|
211 (setq server-process (start-process "server" nil server-program))) |
50 | 212 (set-process-sentinel server-process 'server-sentinel) |
213 (set-process-filter server-process 'server-process-filter) | |
24474
3b77bf7b709e
(server-start): Set coding system for the server
Kenichi Handa <handa@m17n.org>
parents:
21941
diff
changeset
|
214 ;; We must receive file names without being decoded. Those are |
3b77bf7b709e
(server-start): Set coding system for the server
Kenichi Handa <handa@m17n.org>
parents:
21941
diff
changeset
|
215 ;; decoded by server-process-filter accoding to |
3b77bf7b709e
(server-start): Set coding system for the server
Kenichi Handa <handa@m17n.org>
parents:
21941
diff
changeset
|
216 ;; file-name-coding-system. |
3b77bf7b709e
(server-start): Set coding system for the server
Kenichi Handa <handa@m17n.org>
parents:
21941
diff
changeset
|
217 (set-process-coding-system server-process 'raw-text 'raw-text) |
50 | 218 (process-kill-without-query server-process))) |
219 | |
220 ;Process a request from the server to edit some files. | |
221 ;Format of STRING is "Client: CLIENTID PATH PATH PATH... \n" | |
222 (defun server-process-filter (proc string) | |
223 (server-log string) | |
138 | 224 (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
|
225 ;; If the input is multiple lines, |
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
226 ;; process each line individually. |
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
227 (while (string-match "\n" string) |
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
228 (let ((request (substring string 0 (match-beginning 0))) |
24474
3b77bf7b709e
(server-start): Set coding system for the server
Kenichi Handa <handa@m17n.org>
parents:
21941
diff
changeset
|
229 (coding-system (and default-enable-multibyte-characters |
3b77bf7b709e
(server-start): Set coding system for the server
Kenichi Handa <handa@m17n.org>
parents:
21941
diff
changeset
|
230 (or file-name-coding-system |
3b77bf7b709e
(server-start): Set coding system for the server
Kenichi Handa <handa@m17n.org>
parents:
21941
diff
changeset
|
231 default-file-name-coding-system))) |
15956
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
232 client nowait |
50 | 233 (files nil) |
234 (lineno 1)) | |
10281
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
235 ;; Remove this line from STRING. |
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
236 (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
|
237 (if (string-match "^Error: " request) |
14327
0df217c5842d
(server-process-filter): Pass proper format string to message.
Karl Heuer <kwzh@gnu.org>
parents:
14169
diff
changeset
|
238 (message "Server error: %s" (substring request (match-end 0))) |
12411
884975f72dd5
(server-process-filter): Detect error messages from server.
Richard M. Stallman <rms@gnu.org>
parents:
11329
diff
changeset
|
239 (if (string-match "^Client: " request) |
13070
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
240 (progn |
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
241 (setq request (substring request (match-end 0))) |
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
242 (setq client (list (substring request 0 (string-match " " request)))) |
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
243 (setq request (substring request (match-end 0))) |
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
244 (while (string-match "[^ ]+ " request) |
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
245 (let ((arg |
16805
4b8907e5a574
(server-process-filter): Let-bind `pos'.
Richard M. Stallman <rms@gnu.org>
parents:
16789
diff
changeset
|
246 (substring request (match-beginning 0) (1- (match-end 0)))) |
4b8907e5a574
(server-process-filter): Let-bind `pos'.
Richard M. Stallman <rms@gnu.org>
parents:
16789
diff
changeset
|
247 (pos 0)) |
13070
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
248 (setq request (substring request (match-end 0))) |
15956
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
249 (if (string-match "\\`-nowait" arg) |
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
250 (setq nowait t) |
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
251 (if (string-match "\\`\\+[0-9]+\\'" arg) |
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
252 ;; ARG is a line number option. |
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
253 (setq lineno (read (substring arg 1))) |
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
254 ;; ARG is a file name. |
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
255 ;; Collapse multiple slashes to single slashes. |
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
256 (setq arg (command-line-normalize-file-name arg)) |
16060
7e6b741a8b6a
(server-process-filter): Undo the quoting with
Richard M. Stallman <rms@gnu.org>
parents:
15956
diff
changeset
|
257 ;; Undo the quoting that emacsclient does |
7e6b741a8b6a
(server-process-filter): Undo the quoting with
Richard M. Stallman <rms@gnu.org>
parents:
15956
diff
changeset
|
258 ;; for certain special characters. |
16075
1fd0ed653ce6
(server-process-filter): Quote with &, not \.
Richard M. Stallman <rms@gnu.org>
parents:
16060
diff
changeset
|
259 (while (string-match "&." arg pos) |
16060
7e6b741a8b6a
(server-process-filter): Undo the quoting with
Richard M. Stallman <rms@gnu.org>
parents:
15956
diff
changeset
|
260 (setq pos (1+ (match-beginning 0))) |
7e6b741a8b6a
(server-process-filter): Undo the quoting with
Richard M. Stallman <rms@gnu.org>
parents:
15956
diff
changeset
|
261 (let ((nextchar (aref arg pos))) |
16075
1fd0ed653ce6
(server-process-filter): Quote with &, not \.
Richard M. Stallman <rms@gnu.org>
parents:
16060
diff
changeset
|
262 (cond ((= nextchar ?&) |
1fd0ed653ce6
(server-process-filter): Quote with &, not \.
Richard M. Stallman <rms@gnu.org>
parents:
16060
diff
changeset
|
263 (setq arg (replace-match "&" t t arg))) |
16060
7e6b741a8b6a
(server-process-filter): Undo the quoting with
Richard M. Stallman <rms@gnu.org>
parents:
15956
diff
changeset
|
264 ((= nextchar ?-) |
7e6b741a8b6a
(server-process-filter): Undo the quoting with
Richard M. Stallman <rms@gnu.org>
parents:
15956
diff
changeset
|
265 (setq arg (replace-match "-" t t arg))) |
7e6b741a8b6a
(server-process-filter): Undo the quoting with
Richard M. Stallman <rms@gnu.org>
parents:
15956
diff
changeset
|
266 (t |
7e6b741a8b6a
(server-process-filter): Undo the quoting with
Richard M. Stallman <rms@gnu.org>
parents:
15956
diff
changeset
|
267 (setq arg (replace-match " " t t arg)))))) |
24474
3b77bf7b709e
(server-start): Set coding system for the server
Kenichi Handa <handa@m17n.org>
parents:
21941
diff
changeset
|
268 ;; Now decode the file name if necessary. |
3b77bf7b709e
(server-start): Set coding system for the server
Kenichi Handa <handa@m17n.org>
parents:
21941
diff
changeset
|
269 (if coding-system |
3b77bf7b709e
(server-start): Set coding system for the server
Kenichi Handa <handa@m17n.org>
parents:
21941
diff
changeset
|
270 (setq arg (decode-coding-string arg coding-system))) |
15956
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
271 (setq files |
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
272 (cons (list arg lineno) |
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
273 files)) |
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
274 (setq lineno 1))))) |
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
275 (server-visit-files files client nowait) |
13070
c668502d5a93
(server-process-filter): Ignore lines that don't start
Richard M. Stallman <rms@gnu.org>
parents:
12822
diff
changeset
|
276 ;; CLIENT is now a list (CLIENTNUM BUFFERS...) |
25272
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
277 (if (null (cdr client)) |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
278 ;; This client is empty; get rid of it immediately. |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
279 (progn |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
280 (send-string server-process |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
281 (format "Close: %s Done\n" (car client))) |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
282 (server-log (format "Close empty client: %s Done\n" (car client)))) |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
283 ;; We visited some buffer for this client. |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
284 (or nowait |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
285 (setq server-clients (cons client server-clients))) |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
286 (server-switch-buffer (nth 1 client)) |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
287 (run-hooks 'server-switch-hook) |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
288 (message (substitute-command-keys |
db26c1e76313
(server-process-filter): If a client visits no buffers,
Karl Heuer <kwzh@gnu.org>
parents:
24474
diff
changeset
|
289 "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
|
290 ;; 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
|
291 (setq server-previous-string string)) |
50 | 292 |
15956
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
293 (defun server-visit-files (files client &optional nowait) |
50 | 294 "Finds FILES and returns the list CLIENT with the buffers nconc'd. |
15956
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
295 FILES is an alist whose elements are (FILENAME LINENUMBER). |
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
296 NOWAIT non-nil means this client is not waiting for the results, |
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
297 so don't mark these buffers specially, just visit them normally." |
7736
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
298 ;; 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
|
299 (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
|
300 ;; 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
|
301 ;; 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
|
302 ;; 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
|
303 (unwind-protect |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
304 (while files |
31008
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
305 ;; If there is an existing buffer modified or the file is |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
306 ;; modified, revert it. If there is an existing buffer with |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
307 ;; deleted file, offer to write it. |
4500
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
308 (let* ((filen (car (car files))) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
309 (obuf (get-file-buffer filen))) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
310 (if (and obuf (set-buffer obuf)) |
31008
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
311 (cond ((file-exists-p filen) |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
312 (if (or (not (verify-visited-file-modtime obuf)) |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
313 (buffer-modified-p obuf)) |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
314 (revert-buffer t nil))) |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
315 (t |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
316 (if (y-or-n-p |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
317 (concat "File no longer exists: " |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
318 filen |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
319 ", write buffer to file? ")) |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
320 (write-file filen)))) |
4500
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
321 (set-buffer (find-file-noselect filen)) |
31008
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
322 (setq server-existing-buffer t) |
4500
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
323 (run-hooks 'server-visit-hook))) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
324 (goto-line (nth 1 (car files))) |
15956
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
325 (if (not nowait) |
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
326 (setq server-buffer-clients |
0cefc98d243d
(server-visit-files): New argument NOWAIT.
Richard M. Stallman <rms@gnu.org>
parents:
14717
diff
changeset
|
327 (cons (car client) server-buffer-clients))) |
4500
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
328 (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
|
329 (setq files (cdr files))) |
56d7c4beae9f
(server-visit-files): Restore current-buffer by hand,
Richard M. Stallman <rms@gnu.org>
parents:
4096
diff
changeset
|
330 (set-buffer obuf)) |
50 | 331 (nconc client client-record))) |
332 | |
17712
41a4624c1e79
(server-buffer-done): New arg FOR-KILLING.
Richard M. Stallman <rms@gnu.org>
parents:
17434
diff
changeset
|
333 (defun server-buffer-done (buffer &optional for-killing) |
50 | 334 "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
|
335 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
|
336 NEXT-BUFFER is another server buffer, as a suggestion for what to select next, |
21941
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
337 or nil. KILLED is t if we killed BUFFER |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
338 \(typically, because it was visiting a temp file)." |
50 | 339 (let ((running (eq (process-status server-process) 'run)) |
340 (next-buffer nil) | |
10961
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
341 (killed nil) |
12822
6fb78108d62d
(server-buffer-done): Pause between client commands,
Richard M. Stallman <rms@gnu.org>
parents:
12411
diff
changeset
|
342 (first t) |
50 | 343 (old-clients server-clients)) |
344 (while old-clients | |
345 (let ((client (car old-clients))) | |
346 (or next-buffer | |
347 (setq next-buffer (nth 1 (memq buffer client)))) | |
348 (delq buffer client) | |
10281
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
349 ;; Delete all dead buffers from CLIENT. |
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
350 (let ((tail client)) |
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
351 (while tail |
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
352 (and (bufferp (car tail)) |
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
353 (null (buffer-name (car tail))) |
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
354 (delq (car tail) client)) |
44d98e169823
(server-process-filter): Process each line separately.
Richard M. Stallman <rms@gnu.org>
parents:
10218
diff
changeset
|
355 (setq tail (cdr tail)))) |
50 | 356 ;; If client now has no pending buffers, |
357 ;; tell it that it is done, and forget it entirely. | |
358 (if (cdr client) nil | |
359 (if running | |
360 (progn | |
12822
6fb78108d62d
(server-buffer-done): Pause between client commands,
Richard M. Stallman <rms@gnu.org>
parents:
12411
diff
changeset
|
361 ;; Don't send emacsserver two commands in close succession. |
6fb78108d62d
(server-buffer-done): Pause between client commands,
Richard M. Stallman <rms@gnu.org>
parents:
12411
diff
changeset
|
362 ;; It cannot handle that. |
6fb78108d62d
(server-buffer-done): Pause between client commands,
Richard M. Stallman <rms@gnu.org>
parents:
12411
diff
changeset
|
363 (or first (sit-for 1)) |
6fb78108d62d
(server-buffer-done): Pause between client commands,
Richard M. Stallman <rms@gnu.org>
parents:
12411
diff
changeset
|
364 (setq first nil) |
50 | 365 (send-string server-process |
366 (format "Close: %s Done\n" (car client))) | |
12822
6fb78108d62d
(server-buffer-done): Pause between client commands,
Richard M. Stallman <rms@gnu.org>
parents:
12411
diff
changeset
|
367 (server-log (format "Close: %s Done\n" (car client))))) |
50 | 368 (setq server-clients (delq client server-clients)))) |
369 (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
|
370 (if (and (bufferp buffer) (buffer-name buffer)) |
21941
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
371 ;; We may or may not kill this buffer; |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
372 ;; if we do, do not call server-buffer-done recursively |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
373 ;; from kill-buffer-hook. |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
374 (let ((server-kill-buffer-running t)) |
6176
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
375 (save-excursion |
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
376 (set-buffer buffer) |
7597
99a600c67e82
(server-done-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
7553
diff
changeset
|
377 (setq server-buffer-clients nil) |
99a600c67e82
(server-done-hook): New hook.
Richard M. Stallman <rms@gnu.org>
parents:
7553
diff
changeset
|
378 (run-hooks 'server-done-hook)) |
21941
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
379 ;; Notice whether server-done-hook killed the buffer. |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
380 (if (null (buffer-name buffer)) |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
381 (setq killed t) |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
382 ;; Don't bother killing or burying the buffer |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
383 ;; when we are called from kill-buffer. |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
384 (unless for-killing |
31008
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
385 (when (and (not killed) |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
386 server-kill-new-buffers |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
387 (save-excursion |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
388 (set-buffer buffer) |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
389 server-existing-buffer)) |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
390 (setq killed t) |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
391 (kill-buffer buffer)) |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
392 (unless killed |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
393 (if (server-temp-file-p buffer) |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
394 (progn |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
395 (kill-buffer buffer) |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
396 (setq killed t)) |
ac8beefc28a9
(server-kill-new-buffers): New user option.
Gerd Moellmann <gerd@gnu.org>
parents:
30004
diff
changeset
|
397 (bury-buffer buffer))))))) |
10961
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
398 (list next-buffer killed))) |
50 | 399 |
400 (defun server-temp-file-p (buffer) | |
401 "Return non-nil if BUFFER contains a file considered temporary. | |
402 These are files whose names suggest they are repeatedly | |
403 reused to pass information to another program. | |
404 | |
405 The variable `server-temp-file-regexp' controls which filenames | |
406 are considered temporary." | |
407 (and (buffer-file-name buffer) | |
408 (string-match server-temp-file-regexp (buffer-file-name buffer)))) | |
409 | |
410 (defun server-done () | |
1540 | 411 "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
|
412 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
|
413 NEXT-BUFFER is another server buffer, as a suggestion for what to select next, |
21941
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
414 or nil. KILLED is t if we killed BUFFER |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
415 \(typically, because it was visiting a temp file)." |
50 | 416 (let ((buffer (current-buffer))) |
417 (if server-buffer-clients | |
7553
e473c5ad9e7d
(server-done): Never kill buffer here.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
418 (progn |
50 | 419 (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
|
420 ;; 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
|
421 ;; (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
|
422 (let ((version-control nil) |
badd80e9e4fc
(server-done): Let save-buffer make the backup,
Richard M. Stallman <rms@gnu.org>
parents:
3746
diff
changeset
|
423 (buffer-backed-up nil)) |
7553
e473c5ad9e7d
(server-done): Never kill buffer here.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
424 (save-buffer)) |
50 | 425 (if (and (buffer-modified-p) |
17434
5fb0f4a5336f
(server-done): If buffer visits no file, don't offer save.
Richard M. Stallman <rms@gnu.org>
parents:
16805
diff
changeset
|
426 buffer-file-name |
50 | 427 (y-or-n-p (concat "Save file " buffer-file-name "? "))) |
428 (save-buffer buffer))) | |
7553
e473c5ad9e7d
(server-done): Never kill buffer here.
Richard M. Stallman <rms@gnu.org>
parents:
7300
diff
changeset
|
429 (server-buffer-done buffer))))) |
6176
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
430 |
9883 | 431 ;; Ask before killing a server buffer. |
432 ;; It was suggested to release its client instead, | |
433 ;; but I think that is dangerous--the client would proceed | |
434 ;; 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
|
435 (defun server-kill-buffer-query-function () |
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
436 (or (not server-buffer-clients) |
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
437 (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
|
438 (buffer-name (current-buffer)))))) |
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
439 |
6176
1dbec303c87b
(kill-emacs-query-functions, kill-buffer-query-functions):
Richard M. Stallman <rms@gnu.org>
parents:
5749
diff
changeset
|
440 (add-hook 'kill-buffer-query-functions |
6993
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
441 '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
|
442 |
6993
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
443 (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
|
444 (let (live-client |
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
445 (tail server-clients)) |
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
446 ;; 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
|
447 (while tail |
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
448 (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
|
449 (setq live-client t)) |
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
450 (setq tail (cdr tail))) |
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
451 (or (not live-client) |
8c8410bc0f1b
(server-visit-files): Bind last-nonmenu-event.
Richard M. Stallman <rms@gnu.org>
parents:
7597
diff
changeset
|
452 (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
|
453 |
0983fe01e614
(server-kill-emacs-query-function)
Richard M. Stallman <rms@gnu.org>
parents:
6960
diff
changeset
|
454 (add-hook 'kill-emacs-query-functions 'server-kill-emacs-query-function) |
17712
41a4624c1e79
(server-buffer-done): New arg FOR-KILLING.
Richard M. Stallman <rms@gnu.org>
parents:
17434
diff
changeset
|
455 |
18049
f1fa9625e2b9
(server-kill-buffer): Prevent infinite recursion.
Richard M. Stallman <rms@gnu.org>
parents:
17970
diff
changeset
|
456 (defvar server-kill-buffer-running nil |
21941
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
457 "Non-nil while `server-kill-buffer' or `server-buffer-done' is running.") |
18049
f1fa9625e2b9
(server-kill-buffer): Prevent infinite recursion.
Richard M. Stallman <rms@gnu.org>
parents:
17970
diff
changeset
|
458 |
17712
41a4624c1e79
(server-buffer-done): New arg FOR-KILLING.
Richard M. Stallman <rms@gnu.org>
parents:
17434
diff
changeset
|
459 ;; When a buffer is killed, inform the clients. |
41a4624c1e79
(server-buffer-done): New arg FOR-KILLING.
Richard M. Stallman <rms@gnu.org>
parents:
17434
diff
changeset
|
460 (add-hook 'kill-buffer-hook 'server-kill-buffer) |
41a4624c1e79
(server-buffer-done): New arg FOR-KILLING.
Richard M. Stallman <rms@gnu.org>
parents:
17434
diff
changeset
|
461 (defun server-kill-buffer () |
18049
f1fa9625e2b9
(server-kill-buffer): Prevent infinite recursion.
Richard M. Stallman <rms@gnu.org>
parents:
17970
diff
changeset
|
462 ;; Prevent infinite recursion if user has made server-done-hook |
f1fa9625e2b9
(server-kill-buffer): Prevent infinite recursion.
Richard M. Stallman <rms@gnu.org>
parents:
17970
diff
changeset
|
463 ;; call kill-buffer. |
f1fa9625e2b9
(server-kill-buffer): Prevent infinite recursion.
Richard M. Stallman <rms@gnu.org>
parents:
17970
diff
changeset
|
464 (or server-kill-buffer-running |
21941
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
465 (and server-buffer-clients |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
466 (let ((server-kill-buffer-running t)) |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
467 (when server-process |
1baa3e876ad0
(server-buffer-done): Bind server-kill-buffer-running
Richard M. Stallman <rms@gnu.org>
parents:
19418
diff
changeset
|
468 (server-buffer-done (current-buffer) t)))))) |
50 | 469 |
470 (defun server-edit (&optional arg) | |
471 "Switch to next server editing buffer; say \"Done\" for current buffer. | |
472 If a server buffer is current, it is marked \"done\" and optionally saved. | |
473 When all of a client's buffers are marked as \"done\", the client is notified. | |
474 | |
475 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
|
476 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
|
477 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
|
478 prevent a backup for it.) The variable `server-temp-file-regexp' controls |
50 | 479 which filenames are considered temporary. |
480 | |
481 If invoked with a prefix argument, or if there is no server process running, | |
482 starts server process and that is all. Invoked by \\[server-edit]." | |
483 (interactive "P") | |
484 (if (or arg | |
485 (not server-process) | |
486 (memq (process-status server-process) '(signal exit))) | |
487 (server-start nil) | |
10961
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
488 (apply 'server-switch-buffer (server-done)))) |
50 | 489 |
11329
ecbfde696360
(server-switch-buffer): Make first arg optional too;
Roland McGrath <roland@gnu.org>
parents:
11235
diff
changeset
|
490 (defun server-switch-buffer (&optional next-buffer killed-one) |
50 | 491 "Switch to another buffer, preferably one that has a client. |
492 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
|
493 ;; 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
|
494 ;; 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
|
495 ;; 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
|
496 ;; 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
|
497 (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
|
498 (window-live-p server-window)) |
3661
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
499 (select-window server-window)) |
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
500 ((framep server-window) |
10218
b78b8c445f33
(server-switch-buffer): Cope with dead frames and windows.
Richard M. Stallman <rms@gnu.org>
parents:
9883
diff
changeset
|
501 (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
|
502 (setq server-window (make-frame))) |
3661
65d530f613a8
(server-window): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
2866
diff
changeset
|
503 (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
|
504 (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
|
505 (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
|
506 ;; Move to a non-dedicated window, if we have one. |
30004
531536b6475b
(server-switch-buffer): Use some-window instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25272
diff
changeset
|
507 (select-window (some-window (lambda (w) (not (window-dedicated-p w))) |
531536b6475b
(server-switch-buffer): Use some-window instead of
Gerd Moellmann <gerd@gnu.org>
parents:
25272
diff
changeset
|
508 'nomini 0 (selected-window))) |
9252
8c659649649e
(server-switch-buffer): Don't go to an invisible frame.
Richard M. Stallman <rms@gnu.org>
parents:
8733
diff
changeset
|
509 (set-window-dedicated-p (selected-window) nil) |
50 | 510 (if next-buffer |
511 (if (and (bufferp next-buffer) | |
512 (buffer-name next-buffer)) | |
513 (switch-to-buffer next-buffer) | |
514 ;; If NEXT-BUFFER is a dead buffer, | |
515 ;; remove the server records for it | |
516 ;; 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
|
517 (apply 'server-switch-buffer |
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
518 (server-buffer-done next-buffer))) |
50 | 519 (if server-clients |
10961
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
520 (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
|
521 (if (not killed-one) |
88cba63f2a9b
(server-buffer-done): Return a list
Richard M. Stallman <rms@gnu.org>
parents:
10281
diff
changeset
|
522 (switch-to-buffer (other-buffer)))))) |
50 | 523 |
524 (global-set-key "\C-x#" 'server-edit) | |
1079 | 525 |
526 (provide 'server) | |
658
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
445
diff
changeset
|
527 |
7cbd4fcd8b0f
*** empty log message ***
Eric S. Raymond <esr@snark.thyrsus.com>
parents:
445
diff
changeset
|
528 ;;; server.el ends here |