12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631 |
- (eval-when-compile (require 'cl))
- (defgroup server nil
- "Emacs running as a server process."
- :group 'external)
- (defcustom server-use-tcp nil
- "If non-nil, use TCP sockets instead of local sockets."
- :set #'(lambda (sym val)
- (unless (featurep 'make-network-process '(:family local))
- (setq val t)
- (unless load-in-progress
- (message "Local sockets unsupported, using TCP sockets")))
- (when val (random t))
- (set-default sym val))
- :group 'server
- :type 'boolean
- :version "22.1")
- (defcustom server-host nil
- "The name or IP address to use as host address of the server process.
- If set, the server accepts remote connections; otherwise it is local."
- :group 'server
- :type '(choice
- (string :tag "Name or IP address")
- (const :tag "Local" nil))
- :version "22.1")
- (put 'server-host 'risky-local-variable t)
- (defcustom server-port nil
- "The port number that the server process should listen on.
- This variable only takes effect when the Emacs server is using
- TCP instead of local sockets. A nil value means to use a random
- port number."
- :group 'server
- :type '(choice
- (string :tag "Port number")
- (const :tag "Random" nil))
- :version "24.1")
- (put 'server-port 'risky-local-variable t)
- (defcustom server-auth-dir (locate-user-emacs-file "server/")
- "Directory for server authentication files.
- We only use this if `server-use-tcp' is non-nil.
- Otherwise we use `server-socket-dir'.
- NOTE: On FAT32 filesystems, directories are not secure;
- files can be read and modified by any user or process.
- It is strongly suggested to set `server-auth-dir' to a
- directory residing in a NTFS partition instead."
- :group 'server
- :type 'directory
- :version "22.1")
- (put 'server-auth-dir 'risky-local-variable t)
- (defcustom server-raise-frame t
- "If non-nil, raise frame when switching to a buffer."
- :group 'server
- :type 'boolean
- :version "22.1")
- (defcustom server-visit-hook nil
- "Hook run when visiting a file for the Emacs server."
- :group 'server
- :type 'hook)
- (defcustom server-switch-hook nil
- "Hook run when switching to a buffer for the Emacs server."
- :group 'server
- :type 'hook)
- (defcustom server-done-hook nil
- "Hook run when done editing a buffer for the Emacs server."
- :group 'server
- :type 'hook)
- (defvar server-process nil
- "The current server process.")
- (defvar server-clients nil
- "List of current server clients.
- Each element is a process.")
- (defvar server-buffer-clients nil
- "List of client processes requesting editing of current buffer.")
- (make-variable-buffer-local 'server-buffer-clients)
- (put 'server-buffer-clients 'permanent-local t)
- (defcustom server-window nil
- "Specification of the window to use for selecting Emacs server buffers.
- If nil, use the selected window.
- If it is a function, it should take one argument (a buffer) and
- display and select it. A common value is `pop-to-buffer'.
- If it is a window, use that.
- If it is a frame, use the frame's selected window.
- It is not meaningful to set this to a specific frame or window with Custom.
- Only programs can do so."
- :group 'server
- :version "22.1"
- :type '(choice (const :tag "Use selected window"
- :match (lambda (widget value)
- (not (functionp value)))
- nil)
- (function-item :tag "Display in new frame" switch-to-buffer-other-frame)
- (function-item :tag "Use pop-to-buffer" pop-to-buffer)
- (function :tag "Other function")))
- (defcustom server-temp-file-regexp "^/tmp/Re\\|/draft$"
- "Regexp matching names of temporary files.
- These are deleted and reused after each edit by the programs that
- invoke the Emacs server."
- :group 'server
- :type 'regexp)
- (defcustom server-kill-new-buffers t
- "Whether to kill buffers when done with them.
- If non-nil, kill a buffer unless it already existed before editing
- it with the Emacs server. If nil, kill only buffers as specified by
- `server-temp-file-regexp'.
- Please note that only buffers that still have a client are killed,
- i.e. buffers visited with \"emacsclient --no-wait\" are never killed
- in this way."
- :group 'server
- :type 'boolean
- :version "21.1")
- (or (assq 'server-buffer-clients minor-mode-alist)
- (push '(server-buffer-clients " Server") minor-mode-alist))
- (defvar server-existing-buffer nil
- "Non-nil means the buffer existed before the server was asked to visit it.
- This means that the server should not kill the buffer when you say you
- are done with it in the server.")
- (make-variable-buffer-local 'server-existing-buffer)
- (defcustom server-name "server"
- "The name of the Emacs server, if this Emacs process creates one.
- The command `server-start' makes use of this. It should not be
- changed while a server is running."
- :group 'server
- :type 'string
- :version "23.1")
- (defvar server-socket-dir
- (and (featurep 'make-network-process '(:family local))
- (format "%s/emacs%d" (or (getenv "TMPDIR") "/tmp") (user-uid)))
- "The directory in which to place the server socket.
- If local sockets are not supported, this is nil.")
- (defun server-clients-with (property value)
- "Return a list of clients with PROPERTY set to VALUE."
- (let (result)
- (dolist (proc server-clients)
- (when (equal value (process-get proc property))
- (push proc result)))
- result))
- (defun server-add-client (proc)
- "Create a client for process PROC, if it doesn't already have one.
- New clients have no properties."
- (add-to-list 'server-clients proc))
- (defmacro server-with-environment (env vars &rest body)
- "Evaluate BODY with environment variables VARS set to those in ENV.
- The environment variables are then restored to their previous values.
- VARS should be a list of strings.
- ENV should be in the same format as `process-environment'."
- (declare (indent 2))
- (let ((var (make-symbol "var"))
- (value (make-symbol "value")))
- `(let ((process-environment process-environment))
- (dolist (,var ,vars)
- (let ((,value (getenv-internal ,var ,env)))
- (push (if (stringp ,value)
- (concat ,var "=" ,value)
- ,var)
- process-environment)))
- (progn ,@body))))
- (defun server-delete-client (proc &optional noframe)
- "Delete PROC, including its buffers, terminals and frames.
- If NOFRAME is non-nil, let the frames live.
- Updates `server-clients'."
- (server-log (concat "server-delete-client" (if noframe " noframe")) proc)
-
- (when (memq proc server-clients)
- (let ((buffers (process-get proc 'buffers)))
-
- (dolist (buf buffers)
- (when (buffer-live-p buf)
- (with-current-buffer buf
-
- (when (and (equal server-buffer-clients
- (list proc))
- (or (and server-kill-new-buffers
- (not server-existing-buffer))
- (server-temp-file-p))
- (not (buffer-modified-p)))
- (let (flag)
- (unwind-protect
- (progn (setq server-buffer-clients nil)
- (kill-buffer (current-buffer))
- (setq flag t))
- (unless flag
-
- (setq server-buffer-clients (list proc)))))))))
-
- (unless noframe
- (dolist (frame (frame-list))
- (when (and (frame-live-p frame)
- (equal proc (frame-parameter frame 'client)))
-
-
- (set-frame-parameter frame 'client nil)
- (delete-frame frame))))
- (setq server-clients (delq proc server-clients))
-
-
- (unless (eq system-type 'windows-nt)
- (let ((terminal (process-get proc 'terminal)))
-
- (when (and terminal (eq (terminal-live-p terminal) t))
- (delete-terminal terminal))))
-
- (if (eq (process-status proc) 'open)
- (delete-process proc))
- (server-log "Deleted" proc))))
- (defvar server-log-time-function 'current-time-string
- "Function to generate timestamps for `server-buffer'.")
- (defconst server-buffer " *server*"
- "Buffer used internally by Emacs's server.
- One use is to log the I/O for debugging purposes (see `server-log'),
- the other is to provide a current buffer in which the process filter can
- safely let-bind buffer-local variables like `default-directory'.")
- (defvar server-log nil
- "If non-nil, log the server's inputs and outputs in the `server-buffer'.")
- (defun server-log (string &optional client)
- "If `server-log' is non-nil, log STRING to `server-buffer'.
- If CLIENT is non-nil, add a description of it to the logged message."
- (when server-log
- (with-current-buffer (get-buffer-create server-buffer)
- (goto-char (point-max))
- (insert (funcall server-log-time-function)
- (cond
- ((null client) " ")
- ((listp client) (format " %s: " (car client)))
- (t (format " %s: " client)))
- string)
- (or (bolp) (newline)))))
- (defun server-sentinel (proc msg)
- "The process sentinel for Emacs server connections."
-
-
- (when (and (eq (process-status proc) 'open)
- (process-query-on-exit-flag proc))
- (set-process-query-on-exit-flag proc nil))
-
-
-
-
- (and (process-contact proc :server)
- (eq (process-status proc) 'closed)
- (ignore-errors
- (delete-file (process-get proc :server-file))))
- (server-log (format "Status changed to %s: %s" (process-status proc) msg) proc)
- (server-delete-client proc))
- (defun server--on-display-p (frame display)
- (and (equal (frame-parameter frame 'display) display)
-
-
-
-
-
- (not (eq (framep frame) t))))
- (defun server-select-display (display)
-
-
-
- (unless (or (not (fboundp 'make-frame-on-display))
- (server--on-display-p (selected-frame) display))
-
- (dolist (frame (frame-list))
- (when (server--on-display-p frame display)
- (select-frame frame)))
-
- (unless (server--on-display-p (selected-frame) display)
- (let* ((buffer (generate-new-buffer " *server-dummy*"))
- (frame (make-frame-on-display
- display
-
-
- `((server-dummy-buffer . ,buffer)
-
-
-
- (visibility . nil)))))
- (select-frame frame)
- (set-window-buffer (selected-window) buffer)
- frame))))
- (defun server-unselect-display (frame)
- (when (frame-live-p frame)
-
-
-
-
-
-
- (let ((buffer (frame-parameter frame 'server-dummy-buffer)))
- (if (and (one-window-p 'nomini frame)
- (eq (window-buffer (frame-first-window frame)) buffer))
-
-
- (delete-frame frame)
- (set-frame-parameter frame 'visibility t)
- (set-frame-parameter frame 'server-dummy-buffer nil))
- (when (buffer-live-p buffer)
- (kill-buffer buffer)))))
- (defun server-handle-delete-frame (frame)
- "Delete the client connection when the emacsclient frame is deleted.
- \(To be used from `delete-frame-functions'.)"
- (let ((proc (frame-parameter frame 'client)))
- (when (and (frame-live-p frame)
- proc
-
- (>= 1 (let ((frame-num 0))
- (dolist (f (frame-list))
- (when (eq proc (frame-parameter f 'client))
- (setq frame-num (1+ frame-num))))
- frame-num)))
- (server-log (format "server-handle-delete-frame, frame %s" frame) proc)
- (server-delete-client proc 'noframe))))
- (defun server-handle-suspend-tty (terminal)
- "Notify the client process that its tty device is suspended."
- (dolist (proc (server-clients-with 'terminal terminal))
- (server-log (format "server-handle-suspend-tty, terminal %s" terminal)
- proc)
- (condition-case nil
- (server-send-string proc "-suspend \n")
- (file-error
- (ignore-errors (server-delete-client proc))))))
- (defun server-unquote-arg (arg)
- "Remove &-quotation from ARG.
- See `server-quote-arg' and `server-process-filter'."
- (replace-regexp-in-string
- "&." (lambda (s)
- (case (aref s 1)
- (?& "&")
- (?- "-")
- (?n "\n")
- (t " ")))
- arg t t))
- (defun server-quote-arg (arg)
- "In ARG, insert a & before each &, each space, each newline, and -.
- Change spaces to underscores, too, so that the return value never
- contains a space.
- See `server-unquote-arg' and `server-process-filter'."
- (replace-regexp-in-string
- "[-&\n ]" (lambda (s)
- (case (aref s 0)
- (?& "&&")
- (?- "&-")
- (?\n "&n")
- (?\s "&_")))
- arg t t))
- (defun server-send-string (proc string)
- "A wrapper around `process-send-string' for logging."
- (server-log (concat "Sent " string) proc)
- (process-send-string proc string))
- (defun server-ensure-safe-dir (dir)
- "Make sure DIR is a directory with no race-condition issues.
- Creates the directory if necessary and makes sure:
- - there's no symlink involved
- - it's owned by us
- - it's not readable/writable by anybody else."
- (setq dir (directory-file-name dir))
- (let ((attrs (file-attributes dir 'integer)))
- (unless attrs
- (letf (((default-file-modes) ?\700)) (make-directory dir t))
- (setq attrs (file-attributes dir 'integer)))
-
- (let* ((uid (nth 2 attrs))
- (w32 (eq system-type 'windows-nt))
- (safe (catch :safe
- (unless (eq t (car attrs))
- (throw :safe nil))
- (when (and w32 (zerop uid))
- (display-warning
- 'server
- (format "Using `%s' to store Emacs-server authentication files.
- Directories on FAT32 filesystems are NOT secure against tampering.
- See variable `server-auth-dir' for details."
- (file-name-as-directory dir))
- :warning)
- (throw :safe t))
- (unless (or (= uid (user-uid))
- (and w32
-
-
-
-
- (= uid 544) (= (user-uid) 500)))
- (throw :safe nil))
- (when w32
- (throw :safe t))
- (unless (zerop (logand ?\077 (file-modes dir)))
- (throw :safe nil))
- t)))
- (unless safe
- (error "The directory `%s' is unsafe" dir)))))
- (defun server-start (&optional leave-dead inhibit-prompt)
- "Allow this Emacs process to be a server for client processes.
- This starts a server communications subprocess through which
- client \"editors\" can send your editing commands to this Emacs
- job. To use the server, set up the program `emacsclient' in the
- Emacs distribution as your standard \"editor\".
- Optional argument LEAVE-DEAD (interactively, a prefix arg) means just
- kill any existing server communications subprocess.
- If a server is already running, restart it. If clients are
- running, ask the user for confirmation first, unless optional
- argument INHIBIT-PROMPT is non-nil.
- To force-start a server, do \\[server-force-delete] and then
- \\[server-start]."
- (interactive "P")
- (when (or (not server-clients)
-
-
-
- (cond
- ((and (daemonp)
- (null (cdr (frame-list)))
- (eq (selected-frame) terminal-frame))
- leave-dead)
- (inhibit-prompt t)
- (t (yes-or-no-p
- "The current server still has clients; delete them? "))))
- (let* ((server-dir (if server-use-tcp server-auth-dir server-socket-dir))
- (server-file (expand-file-name server-name server-dir)))
- (when server-process
-
- (ignore-errors (delete-process server-process)))
-
- (if (not (eq t (server-running-p server-name)))
-
- (ignore-errors
- (let (delete-by-moving-to-trash)
- (delete-file server-file)))
- (setq server-mode nil)
- (display-warning
- 'server
- (concat "Unable to start the Emacs server.\n"
- (format "There is an existing Emacs server, named %S.\n"
- server-name)
- "To start the server in this Emacs process, stop the existing
- server or call `M-x server-force-delete' to forcibly disconnect it.")
- :warning)
- (setq leave-dead t))
-
- (while server-clients
- (server-delete-client (car server-clients)))
-
- (if leave-dead
- (progn
- (unless (eq t leave-dead) (server-log (message "Server stopped")))
- (setq server-process nil))
-
- (server-ensure-safe-dir server-dir)
- (when server-process
- (server-log (message "Restarting server")))
- (letf (((default-file-modes) ?\700))
- (add-hook 'suspend-tty-functions 'server-handle-suspend-tty)
- (add-hook 'delete-frame-functions 'server-handle-delete-frame)
- (add-hook 'kill-buffer-query-functions 'server-kill-buffer-query-function)
- (add-hook 'kill-emacs-query-functions 'server-kill-emacs-query-function)
- (add-hook 'kill-emacs-hook 'server-force-stop)
- (setq server-process
- (apply #'make-network-process
- :name server-name
- :server t
- :noquery t
- :sentinel 'server-sentinel
- :filter 'server-process-filter
-
-
-
-
- :coding 'raw-text-unix
-
- (if server-use-tcp
- (list :family 'ipv4
- :service (or server-port t)
- :host (or server-host 'local)
- :plist '(:authenticated nil))
- (list :family 'local
- :service server-file
- :plist '(:authenticated t)))))
- (unless server-process (error "Could not start server process"))
- (process-put server-process :server-file server-file)
- (when server-use-tcp
- (let ((auth-key
- (loop
-
-
- repeat 64
- collect (+ 33 (random 94)) into auth
- finally return (concat auth))))
- (process-put server-process :auth-key auth-key)
- (with-temp-file server-file
- (set-buffer-multibyte nil)
- (setq buffer-file-coding-system 'no-conversion)
- (insert (format-network-address
- (process-contact server-process :local))
- " " (number-to-string (emacs-pid))
- "\n" auth-key)))))))))
- (defun server-force-stop ()
- "Kill all connections to the current server.
- This function is meant to be called from `kill-emacs-hook'."
- (server-start t t))
- (defun server-force-delete (&optional name)
- "Unconditionally delete connection file for server NAME.
- If server is running, it is first stopped.
- NAME defaults to `server-name'. With argument, ask for NAME."
- (interactive
- (list (if current-prefix-arg
- (read-string "Server name: " nil nil server-name))))
- (when server-mode (with-temp-message nil (server-mode -1)))
- (let ((file (expand-file-name (or name server-name)
- (if server-use-tcp
- server-auth-dir
- server-socket-dir))))
- (condition-case nil
- (let (delete-by-moving-to-trash)
- (delete-file file)
- (message "Connection file %S deleted" file))
- (file-error
- (message "No connection file %S" file)))))
- (defun server-running-p (&optional name)
- "Test whether server NAME is running.
- Return values:
- nil the server is definitely not running.
- t the server seems to be running.
- something else we cannot determine whether it's running without using
- commands which may have to wait for a long time."
- (unless name (setq name server-name))
- (condition-case nil
- (if server-use-tcp
- (with-temp-buffer
- (insert-file-contents-literally (expand-file-name name server-auth-dir))
- (or (and (looking-at "127\\.0\\.0\\.1:[0-9]+ \\([0-9]+\\)")
- (assq 'comm
- (process-attributes
- (string-to-number (match-string 1))))
- t)
- :other))
- (delete-process
- (make-network-process
- :name "server-client-test" :family 'local :server nil :noquery t
- :service (expand-file-name name server-socket-dir)))
- t)
- (file-error nil)))
- (define-minor-mode server-mode
- "Toggle Server mode.
- With a prefix argument ARG, enable Server mode if ARG is
- positive, and disable it otherwise. If called from Lisp, enable
- Server mode if ARG is omitted or nil.
- Server mode runs a process that accepts commands from the
- `emacsclient' program. See Info node `Emacs server' and
- `server-start' for details."
- :global t
- :group 'server
- :version "22.1"
-
-
- (server-start (not server-mode)))
- (defun server-eval-and-print (expr proc)
- "Eval EXPR and send the result back to client PROC."
-
-
-
-
-
-
-
- (let ((v (with-local-quit (eval (car (read-from-string expr))))))
- (when proc
- (with-temp-buffer
- (let ((standard-output (current-buffer)))
- (pp v)
- (let ((text (buffer-substring-no-properties
- (point-min) (point-max))))
- (server-reply-print (server-quote-arg text) proc)))))))
- (defconst server-msg-size 1024
- "Maximum size of a message sent to a client.")
- (defun server-reply-print (qtext proc)
- "Send a `-print QTEXT' command to client PROC.
- QTEXT must be already quoted.
- This handles splitting the command if it would be bigger than
- `server-msg-size'."
- (let ((prefix "-print ")
- part)
- (while (> (+ (length qtext) (length prefix) 1) server-msg-size)
-
- (setq part (substring qtext 0 (- server-msg-size (length prefix) 1)))
-
- (if (string-match "\\(^\\|[^&]\\)\\(&&\\)+$" part)
-
- (setq part (substring part 0 -1)))
- (setq qtext (substring qtext (length part)))
- (server-send-string proc (concat prefix part "\n"))
- (setq prefix "-print-nonl "))
- (server-send-string proc (concat prefix qtext "\n"))))
- (defun server-create-tty-frame (tty type proc)
- (unless tty
- (error "Invalid terminal device"))
- (unless type
- (error "Invalid terminal type"))
- (add-to-list 'frame-inherited-parameters 'client)
- (let ((frame
- (server-with-environment (process-get proc 'env)
- '("LANG" "LC_CTYPE" "LC_ALL"
-
- "BAUDRATE" "COLUMNS" "ESCDELAY" "HOME" "LINES"
- "NCURSES_ASSUMED_COLORS" "NCURSES_NO_PADDING"
- "NCURSES_NO_SETBUF" "TERM" "TERMCAP" "TERMINFO"
- "TERMINFO_DIRS" "TERMPATH"
-
- "COLORFGBG" "COLORTERM")
- (make-frame `((window-system . nil)
- (tty . ,tty)
- (tty-type . ,type)
-
-
- (client . ,proc)
-
-
-
-
-
-
-
-
-
-
- (environment . ,(process-get proc 'env)))))))
-
-
- (set-frame-parameter frame 'display
- (getenv-internal "DISPLAY" (process-get proc 'env)))
- (select-frame frame)
- (process-put proc 'frame frame)
- (process-put proc 'terminal (frame-terminal frame))
-
- (switch-to-buffer (get-buffer-create "*scratch*") 'norecord)
- frame))
- (defun server-create-window-system-frame (display nowait proc parent-id
- &optional parameters)
- (add-to-list 'frame-inherited-parameters 'client)
- (if (not (fboundp 'make-frame-on-display))
- (progn
-
- (server-log "Window system unsupported" proc)
- (server-send-string proc "-window-system-unsupported \n")
- nil)
-
-
-
-
-
- (let* ((params `((client . ,(if nowait 'nowait proc))
-
- (environment . ,(process-get proc 'env))
- ,@parameters))
- (display (or display
- (frame-parameter nil 'display)
- (getenv "DISPLAY")
- (error "Please specify display")))
- frame)
- (if parent-id
- (push (cons 'parent-id (string-to-number parent-id)) params))
- (setq frame (make-frame-on-display display params))
- (server-log (format "%s created" frame) proc)
- (select-frame frame)
- (process-put proc 'frame frame)
- (process-put proc 'terminal (frame-terminal frame))
-
- (switch-to-buffer (get-buffer-create "*scratch*") 'norecord)
- frame)))
- (defun server-goto-toplevel (proc)
- (condition-case nil
-
-
- (dolist (buffer (buffer-list))
- (with-current-buffer buffer
- (when (bound-and-true-p isearch-mode)
- (isearch-cancel))))
-
- (quit (message nil)))
- (when (> (recursion-depth) 0)
-
-
-
-
-
- (run-with-timer 0 nil (lambda () (server-execute-continuation proc)))
- (top-level)))
- (defun server-execute-continuation (proc)
- (let ((continuation (process-get proc 'continuation)))
- (process-put proc 'continuation nil)
- (if continuation (ignore-errors (funcall continuation)))))
- (defun* server-process-filter (proc string)
- "Process a request from the server to edit some files.
- PROC is the server process. STRING consists of a sequence of
- commands prefixed by a dash. Some commands have arguments;
- these are &-quoted and need to be decoded by `server-unquote-arg'.
- The filter parses and executes these commands.
- To illustrate the protocol, here is an example command that
- emacsclient sends to create a new X frame (note that the whole
- sequence is sent on a single line):
- -env HOME=/home/lorentey
- -env DISPLAY=:0.0
- ... lots of other -env commands
- -display :0.0
- -window-system
- The following commands are accepted by the server:
- `-auth AUTH-STRING'
- Authenticate the client using the secret authentication string
- AUTH-STRING.
- `-env NAME=VALUE'
- An environment variable on the client side.
- `-dir DIRNAME'
- The current working directory of the client process.
- `-current-frame'
- Forbid the creation of new frames.
- `-frame-parameters ALIST'
- Set the parameters of the created frame.
- `-nowait'
- Request that the next frame created should not be
- associated with this client.
- `-display DISPLAY'
- Set the display name to open X frames on.
- `-position LINE[:COLUMN]'
- Go to the given line and column number
- in the next file opened.
- `-file FILENAME'
- Load the given file in the current frame.
- `-eval EXPR'
- Evaluate EXPR as a Lisp expression and return the
- result in -print commands.
- `-window-system'
- Open a new X frame.
- `-tty DEVICENAME TYPE'
- Open a new tty frame at the client.
- `-suspend'
- Suspend this tty frame. The client sends this string in
- response to SIGTSTP and SIGTTOU. The server must cease all I/O
- on this tty until it gets a -resume command.
- `-resume'
- Resume this tty frame. The client sends this string when it
- gets the SIGCONT signal and it is the foreground process on its
- controlling tty.
- `-ignore COMMENT'
- Do nothing, but put the comment in the server log.
- Useful for debugging.
- The following commands are accepted by the client:
- `-emacs-pid PID'
- Describes the process id of the Emacs process;
- used to forward window change signals to it.
- `-window-system-unsupported'
- Signals that the server does not support creating X frames;
- the client must try again with a tty frame.
- `-print STRING'
- Print STRING on stdout. Used to send values
- returned by -eval.
- `-print-nonl STRING'
- Print STRING on stdout. Used to continue a
- preceding -print command that would be too big to send
- in a single message.
- `-error DESCRIPTION'
- Signal an error and delete process PROC.
- `-suspend'
- Suspend this terminal, i.e., stop the client process.
- Sent when the user presses C-z."
- (server-log (concat "Received " string) proc)
-
- (unless (process-get proc :authenticated)
- (if (and (string-match "-auth \\([!-~]+\\)\n?" string)
- (equal (match-string 1 string) (process-get proc :auth-key)))
- (progn
- (setq string (substring string (match-end 0)))
- (process-put proc :authenticated t)
- (server-log "Authentication successful" proc))
- (server-log "Authentication failed" proc)
- (server-send-string
- proc (concat "-error " (server-quote-arg "Authentication failed")))
-
-
- (sit-for 1)
- (delete-process proc)
-
- (return-from server-process-filter)))
- (let ((prev (process-get proc 'previous-string)))
- (when prev
- (setq string (concat prev string))
- (process-put proc 'previous-string nil)))
- (condition-case err
- (progn
- (server-add-client proc)
-
- (server-send-string proc (concat "-emacs-pid "
- (number-to-string (emacs-pid)) "\n"))
- (if (not (string-match "\n" string))
-
- (when (> (length string) 0)
- (process-put proc 'previous-string string))
-
-
-
- (assert (eq (match-end 0) (length string)))
- (let ((request (substring string 0 (match-beginning 0)))
- (coding-system (and (default-value 'enable-multibyte-characters)
- (or file-name-coding-system
- default-file-name-coding-system)))
- nowait
- frame
- display
- parent-id
- dontkill
- commands
- dir
- use-current-frame
- frame-parameters
- tty-name
- tty-type
- files
- filepos
- args-left)
-
- (setq string (substring string (match-end 0)))
- (setq args-left
- (mapcar 'server-unquote-arg (split-string request " " t)))
- (while args-left
- (pcase (pop args-left)
-
- (`"-version" (pop args-left))
-
- (`"-nowait" (setq nowait t))
-
- (`"-current-frame" (setq use-current-frame t))
-
- (`"-frame-parameters"
- (let ((alist (pop args-left)))
- (if coding-system
- (setq alist (decode-coding-string alist coding-system)))
- (setq frame-parameters (car (read-from-string alist)))))
-
-
- (`"-display"
- (setq display (pop args-left))
- (if (zerop (length display)) (setq display nil)))
-
-
- (`"-parent-id"
- (setq parent-id (pop args-left))
- (if (zerop (length parent-id)) (setq parent-id nil)))
-
- (`"-window-system"
- (setq dontkill t)
- (setq tty-name 'window-system))
-
- (`"-resume"
- (let ((terminal (process-get proc 'terminal)))
- (setq dontkill t)
- (push (lambda ()
- (when (eq (terminal-live-p terminal) t)
- (resume-tty terminal)))
- commands)))
-
-
-
- (`"-suspend"
- (let ((terminal (process-get proc 'terminal)))
- (setq dontkill t)
- (push (lambda ()
- (when (eq (terminal-live-p terminal) t)
- (suspend-tty terminal)))
- commands)))
-
-
- (`"-ignore"
- (setq dontkill t)
- (pop args-left))
-
- (`"-tty"
- (setq tty-name (pop args-left)
- tty-type (pop args-left)
- dontkill (or dontkill
- (not use-current-frame)))
-
-
- (when (eq window-system 'w32)
- (push "-window-system" args-left)))
-
-
- (`"-position"
- (if (not (string-match "\\+\\([0-9]+\\)\\(?::\\([0-9]+\\)\\)?"
- (car args-left)))
- (error "Invalid -position command in client args"))
- (let ((arg (pop args-left)))
- (setq filepos
- (cons (string-to-number (match-string 1 arg))
- (string-to-number (or (match-string 2 arg)
- ""))))))
-
- (`"-file"
- (let ((file (pop args-left)))
- (if coding-system
- (setq file (decode-coding-string file coding-system)))
- (setq file (expand-file-name file dir))
- (push (cons file filepos) files)
- (server-log (format "New file: %s %s"
- file (or filepos "")) proc))
- (setq filepos nil))
-
- (`"-eval"
- (if use-current-frame
- (setq use-current-frame 'always))
- (let ((expr (pop args-left)))
- (if coding-system
- (setq expr (decode-coding-string expr coding-system)))
- (push (lambda () (server-eval-and-print expr proc))
- commands)
- (setq filepos nil)))
-
- (`"-env"
- (let ((var (pop args-left)))
-
- (process-put proc 'env
- (cons var (process-get proc 'env)))))
-
- (`"-dir"
- (setq dir (pop args-left))
- (if coding-system
- (setq dir (decode-coding-string dir coding-system)))
- (setq dir (command-line-normalize-file-name dir)))
-
- (arg (error "Unknown command: %s" arg))))
-
-
- (and nowait
- (not (eq tty-name 'window-system))
- (or files commands)
- (setq use-current-frame t))
- (setq frame
- (cond
- ((and use-current-frame
- (or (eq use-current-frame 'always)
-
-
- (not (and (daemonp)
- (null (cdr (frame-list)))
- (eq (selected-frame)
- terminal-frame)))))
- (setq tty-name nil tty-type nil)
- (if display (server-select-display display)))
- ((eq tty-name 'window-system)
- (server-create-window-system-frame display nowait proc
- parent-id
- frame-parameters))
-
- (tty-name
- (server-create-tty-frame tty-name tty-type proc))))
- (process-put
- proc 'continuation
- (lambda ()
- (with-current-buffer (get-buffer-create server-buffer)
-
-
- (let ((default-directory
- (if (and dir (file-directory-p dir))
- dir default-directory)))
- (server-execute proc files nowait commands
- dontkill frame tty-name)))))
- (when (or frame files)
- (server-goto-toplevel proc))
- (server-execute-continuation proc))))
-
- (error (server-return-error proc err))))
- (defun server-execute (proc files nowait commands dontkill frame tty-name)
-
-
-
-
-
-
-
- (with-local-quit
- (condition-case err
- (let* ((buffers
- (when files
- (server-visit-files files proc nowait))))
- (mapc 'funcall (nreverse commands))
-
- (cond
- (nowait
-
- (server-log "Close nowait client" proc)
- (server-delete-client proc))
- ((and (not dontkill) (null buffers))
-
- (server-log "Close empty client" proc)
- (server-delete-client proc)))
- (cond
- ((or isearch-mode (minibufferp))
- nil)
- ((and frame (null buffers))
- (message "%s" (substitute-command-keys
- "When done with this frame, type \\[delete-frame]")))
- ((not (null buffers))
- (server-switch-buffer (car buffers) nil (cdr (car files)))
- (run-hooks 'server-switch-hook)
- (unless nowait
- (message "%s" (substitute-command-keys
- "When done with a buffer, type \\[server-edit]")))))
- (when (and frame (null tty-name))
- (server-unselect-display frame)))
- ((quit error)
- (when (eq (car err) 'quit)
- (message "Quit emacsclient request"))
- (server-return-error proc err)))))
- (defun server-return-error (proc err)
- (ignore-errors
- (server-send-string
- proc (concat "-error " (server-quote-arg
- (error-message-string err))))
- (server-log (error-message-string err) proc)
-
-
- (sit-for 5)
- (delete-process proc)))
- (defun server-goto-line-column (line-col)
- "Move point to the position indicated in LINE-COL.
- LINE-COL should be a pair (LINE . COL)."
- (when line-col
- (goto-char (point-min))
- (forward-line (1- (car line-col)))
- (let ((column-number (cdr line-col)))
- (when (> column-number 0)
- (move-to-column (1- column-number))))))
- (defun server-visit-files (files proc &optional nowait)
- "Find FILES and return a list of buffers created.
- FILES is an alist whose elements are (FILENAME . FILEPOS)
- where FILEPOS can be nil or a pair (LINENUMBER . COLUMNNUMBER).
- PROC is the client that requested this operation.
- NOWAIT non-nil means this client is not waiting for the results,
- so don't mark these buffers specially, just visit them normally."
-
- (let ((last-nonmenu-event t) client-record)
-
-
-
- (save-current-buffer
- (dolist (file files)
-
-
-
- (let* ((minibuffer-auto-raise (or server-raise-frame
- minibuffer-auto-raise))
- (filen (car file))
- (obuf (get-file-buffer filen)))
- (add-to-history 'file-name-history filen)
- (if (null obuf)
- (progn
- (run-hooks 'pre-command-hook)
- (set-buffer (find-file-noselect filen)))
- (set-buffer obuf)
-
-
- (run-hooks 'pre-command-hook)
- (cond ((file-exists-p filen)
- (when (not (verify-visited-file-modtime obuf))
- (revert-buffer t nil)))
- (t
- (when (y-or-n-p
- (concat "File no longer exists: " filen
- ", write buffer to file? "))
- (write-file filen))))
- (unless server-buffer-clients
- (setq server-existing-buffer t)))
- (server-goto-line-column (cdr file))
- (run-hooks 'server-visit-hook)
-
- (run-hooks 'post-command-hook))
- (unless nowait
-
- (add-hook 'kill-buffer-hook 'server-kill-buffer nil t)
- (push proc server-buffer-clients))
- (push (current-buffer) client-record)))
- (unless nowait
- (process-put proc 'buffers
- (nconc (process-get proc 'buffers) client-record)))
- client-record))
- (defvar server-kill-buffer-running nil
- "Non-nil while `server-kill-buffer' or `server-buffer-done' is running.")
- (defun server-buffer-done (buffer &optional for-killing)
- "Mark BUFFER as \"done\" for its client(s).
- This buries the buffer, then returns a list of the form (NEXT-BUFFER KILLED).
- NEXT-BUFFER is another server buffer, as a suggestion for what to select next,
- or nil. KILLED is t if we killed BUFFER (typically, because it was visiting
- a temp file).
- FOR-KILLING if non-nil indicates that we are called from `kill-buffer'."
- (let ((next-buffer nil)
- (killed nil))
- (dolist (proc server-clients)
- (let ((buffers (process-get proc 'buffers)))
- (or next-buffer
- (setq next-buffer (nth 1 (memq buffer buffers))))
- (when buffers
- (setq buffers (delq buffer buffers))
-
- (dolist (b buffers)
- (and (bufferp b)
- (not (buffer-live-p b))
- (setq buffers (delq b buffers))))
- (process-put proc 'buffers buffers)
-
-
- (unless buffers
- (server-log "Close" proc)
- (if for-killing
-
-
-
- (save-current-buffer
- (server-delete-client proc))
- (server-delete-client proc))))))
- (when (and (bufferp buffer) (buffer-name buffer))
-
-
-
- (let ((server-kill-buffer-running t))
- (with-current-buffer buffer
- (setq server-buffer-clients nil)
- (run-hooks 'server-done-hook))
-
- (if (null (buffer-name buffer))
- (setq killed t)
-
-
- (unless for-killing
- (when (and (not killed)
- server-kill-new-buffers
- (with-current-buffer buffer
- (not server-existing-buffer)))
- (setq killed t)
- (bury-buffer buffer)
-
- (with-current-buffer buffer
- (set-buffer-modified-p nil))
- (kill-buffer buffer))
- (unless killed
- (if (server-temp-file-p buffer)
- (progn
- (with-current-buffer buffer
- (set-buffer-modified-p nil))
- (kill-buffer buffer)
- (setq killed t))
- (bury-buffer buffer)))))))
- (list next-buffer killed)))
- (defun server-temp-file-p (&optional buffer)
- "Return non-nil if BUFFER contains a file considered temporary.
- These are files whose names suggest they are repeatedly
- reused to pass information to another program.
- The variable `server-temp-file-regexp' controls which filenames
- are considered temporary."
- (and (buffer-file-name buffer)
- (string-match-p server-temp-file-regexp (buffer-file-name buffer))))
- (defun server-done ()
- "Offer to save current buffer, mark it as \"done\" for clients.
- This kills or buries the buffer, then returns a list
- of the form (NEXT-BUFFER KILLED). NEXT-BUFFER is another server buffer,
- as a suggestion for what to select next, or nil.
- KILLED is t if we killed BUFFER, which happens if it was created
- specifically for the clients and did not exist before their request for it."
- (when server-buffer-clients
- (if (server-temp-file-p)
-
-
- (let ((version-control nil)
- (buffer-backed-up nil))
- (save-buffer))
- (when (and (buffer-modified-p)
- buffer-file-name
- (y-or-n-p (concat "Save file " buffer-file-name "? ")))
- (save-buffer)))
- (server-buffer-done (current-buffer))))
- (defun server-kill-buffer-query-function ()
- "Ask before killing a server buffer."
- (or (not server-buffer-clients)
- (let ((res t))
- (dolist (proc server-buffer-clients)
- (when (and (memq proc server-clients)
- (eq (process-status proc) 'open))
- (setq res nil)))
- res)
- (yes-or-no-p (format "Buffer `%s' still has clients; kill it? "
- (buffer-name (current-buffer))))))
- (defun server-kill-emacs-query-function ()
- "Ask before exiting Emacs if it has live clients."
- (or (not server-clients)
- (let (live-client)
- (dolist (proc server-clients)
- (when (memq t (mapcar 'buffer-live-p (process-get
- proc 'buffers)))
- (setq live-client t)))
- live-client)
- (yes-or-no-p "This Emacs session has clients; exit anyway? ")))
- (defun server-kill-buffer ()
- "Remove the current buffer from its clients' buffer list.
- Designed to be added to `kill-buffer-hook'."
-
-
- (or server-kill-buffer-running
- (and server-buffer-clients
- (let ((server-kill-buffer-running t))
- (when server-process
- (server-buffer-done (current-buffer) t))))))
- (defun server-edit (&optional arg)
- "Switch to next server editing buffer; say \"Done\" for current buffer.
- If a server buffer is current, it is marked \"done\" and optionally saved.
- The buffer is also killed if it did not exist before the clients asked for it.
- When all of a client's buffers are marked as \"done\", the client is notified.
- Temporary files such as MH <draft> files are always saved and backed up,
- no questions asked. (The variable `make-backup-files', if nil, still
- inhibits a backup; you can set it locally in a particular buffer to
- prevent a backup for it.) The variable `server-temp-file-regexp' controls
- which filenames are considered temporary.
- If invoked with a prefix argument, or if there is no server process running,
- starts server process and that is all. Invoked by \\[server-edit]."
- (interactive "P")
- (cond
- ((or arg
- (not server-process)
- (memq (process-status server-process) '(signal exit)))
- (server-mode 1))
- (server-clients (apply 'server-switch-buffer (server-done)))
- (t (message "No server editing buffers exist"))))
- (defun server-switch-buffer (&optional next-buffer killed-one filepos)
- "Switch to another buffer, preferably one that has a client.
- Arg NEXT-BUFFER is a suggestion; if it is a live buffer, use it.
- KILLED-ONE is t in a recursive call if we have already killed one
- temp-file server buffer. This means we should avoid the final
- \"switch to some other buffer\" since we've already effectively
- done that.
- FILEPOS specifies a new buffer position for NEXT-BUFFER, if we
- visit NEXT-BUFFER in an existing window. If non-nil, it should
- be a cons cell (LINENUMBER . COLUMNNUMBER)."
- (if (null next-buffer)
- (progn
- (let ((rest server-clients))
- (while (and rest (not next-buffer))
- (let ((proc (car rest)))
-
-
- (when (or (not (process-get proc 'frame))
- (eq (process-get proc 'frame) (selected-frame)))
- (setq next-buffer (car (process-get proc 'buffers))))
- (setq rest (cdr rest)))))
- (and next-buffer (server-switch-buffer next-buffer killed-one))
- (unless (or next-buffer killed-one (window-dedicated-p (selected-window)))
-
- (message "No server buffers remain to edit")))
- (if (not (buffer-live-p next-buffer))
-
-
- (apply 'server-switch-buffer (server-buffer-done next-buffer))
-
- (if (functionp server-window)
- (funcall server-window next-buffer)
- (let ((win (get-buffer-window next-buffer 0)))
- (if (and win (not server-window))
-
-
-
- (progn
- (select-window win)
- (set-buffer next-buffer)
- (when filepos
- (server-goto-line-column filepos)))
-
- (cond ((window-live-p server-window)
- (select-window server-window))
- ((framep server-window)
- (unless (frame-live-p server-window)
- (setq server-window (make-frame)))
- (select-window (frame-selected-window server-window))))
- (when (window-minibuffer-p (selected-window))
- (select-window (next-window nil 'nomini 0)))
-
- (when (window-dedicated-p (selected-window))
- (select-window
- (get-window-with-predicate
- (lambda (w)
- (and (not (window-dedicated-p w))
- (equal (frame-terminal (window-frame w))
- (frame-terminal (selected-frame)))))
- 'nomini 'visible (selected-window))))
- (condition-case nil
- (switch-to-buffer next-buffer)
-
-
- (error (pop-to-buffer next-buffer)))))))
- (when server-raise-frame
- (select-frame-set-input-focus (window-frame (selected-window))))))
- (defun server-save-buffers-kill-terminal (arg)
-
- "Offer to save each buffer, then kill the current client.
- With ARG non-nil, silently save all file-visiting buffers, then kill.
- If emacsclient was started with a list of filenames to edit, then
- only these files will be asked to be saved."
- (let ((proc (frame-parameter (selected-frame) 'client)))
- (cond ((eq proc 'nowait)
-
- (if (cdr (frame-list))
- (progn (save-some-buffers arg)
- (delete-frame))
-
- (save-buffers-kill-emacs arg)))
- ((processp proc)
- (let ((buffers (process-get proc 'buffers)))
-
-
-
- (save-some-buffers
- arg (if buffers
- (lambda () (memq (current-buffer) buffers))
- t))
- (server-delete-client proc)))
- (t (error "Invalid client frame")))))
- (define-key ctl-x-map "#" 'server-edit)
- (defun server-unload-function ()
- "Unload the server library."
- (server-mode -1)
- (substitute-key-definition 'server-edit nil ctl-x-map)
- (save-current-buffer
- (dolist (buffer (buffer-list))
- (set-buffer buffer)
- (remove-hook 'kill-buffer-hook 'server-kill-buffer t)))
-
- nil)
- (defun server-eval-at (server form)
- "Contact the Emacs server named SERVER and evaluate FORM there.
- Returns the result of the evaluation, or signals an error if it
- cannot contact the specified server. For example:
- \(server-eval-at \"server\" '(emacs-pid))
- returns the process ID of the Emacs instance running \"server\"."
- (let* ((server-dir (if server-use-tcp server-auth-dir server-socket-dir))
- (server-file (expand-file-name server server-dir))
- (coding-system-for-read 'binary)
- (coding-system-for-write 'binary)
- address port secret process)
- (unless (file-exists-p server-file)
- (error "No such server: %s" server))
- (with-temp-buffer
- (when server-use-tcp
- (let ((coding-system-for-read 'no-conversion))
- (insert-file-contents server-file)
- (unless (looking-at "\\([0-9.]+\\):\\([0-9]+\\)")
- (error "Invalid auth file"))
- (setq address (match-string 1)
- port (string-to-number (match-string 2)))
- (forward-line 1)
- (setq secret (buffer-substring (point) (line-end-position)))
- (erase-buffer)))
- (unless (setq process (make-network-process
- :name "eval-at"
- :buffer (current-buffer)
- :host address
- :service (if server-use-tcp port server-file)
- :family (if server-use-tcp 'ipv4 'local)
- :noquery t))
- (error "Unable to contact the server"))
- (if server-use-tcp
- (process-send-string process (concat "-auth " secret "\n")))
- (process-send-string process
- (concat "-eval "
- (server-quote-arg (format "%S" form))
- "\n"))
- (while (memq (process-status process) '(open run))
- (accept-process-output process 0 10))
- (goto-char (point-min))
-
-
- (let ((answer ""))
- (while (re-search-forward "\n-print\\(-nonl\\)? " nil t)
- (setq answer
- (concat answer
- (buffer-substring (point)
- (progn (skip-chars-forward "^\n")
- (point))))))
- (if (not (equal answer ""))
- (read (decode-coding-string (server-unquote-arg answer)
- 'emacs-internal)))))))
- (provide 'server)
|