edit-server.el 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635
  1. ;;; edit-server.el --- server that responds to edit requests from Chrome
  2. ;; Copyright (C) 2009-2011 Alex Bennee
  3. ;; Copyright (C) 2010-2011 Riccardo Murri
  4. ;; Author: Alex Bennee <alex@bennee.com>
  5. ;; Maintainer: Alex Bennee <alex@bennee.com>
  6. ;; Version: 1.10
  7. ;; Homepage: https://github.com/stsquad/emacs_chrome
  8. ;; This file is not part of GNU Emacs.
  9. ;; This file is free software; you can redistribute it and/or modify
  10. ;; it under the terms of the GNU General Public License as published by
  11. ;; the Free Software Foundation; either version 3, or (at your option)
  12. ;; any later version.
  13. ;; This file is distributed in the hope that it will be useful,
  14. ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. ;; GNU General Public License for more details.
  17. ;; You should have received a copy of the GNU General Public License
  18. ;; along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. ;;; Commentary:
  20. ;; This provides an edit server to respond to requests from the Chrome
  21. ;; Emacs Chrome plugin. This is my first attempt at doing something
  22. ;; with sockets in Emacs. I based it on the following examples:
  23. ;;
  24. ;; http://www.emacswiki.org/emacs/EmacsEchoServer
  25. ;; http://nullprogram.com/blog/2009/05/17/
  26. ;;
  27. ;; To use it ensure the file is in your load-path and add something
  28. ;; like the following examples to your .emacs:
  29. ;;
  30. ;; To open pages for editing in new buffers in your existing Emacs
  31. ;; instance:
  32. ;;
  33. ;; (when (require 'edit-server nil t)
  34. ;; (setq edit-server-new-frame nil)
  35. ;; (edit-server-start))
  36. ;;
  37. ;; To open pages for editing in new frames using a running emacs
  38. ;; started in --daemon mode:
  39. ;;
  40. ;; (when (and (require 'edit-server nil t) (daemonp))
  41. ;; (edit-server-start))
  42. ;;
  43. ;; Buffers are edited in `text-mode' by default; to use a different
  44. ;; major mode, change `edit-server-default-major-mode' or customize
  45. ;; `edit-server-url-major-mode-alist' to specify major modes based
  46. ;; on the remote URL:
  47. ;;
  48. ;; (setq edit-server-url-major-mode-alist
  49. ;; '(("github\\.com" . markdown-mode)))
  50. ;;
  51. ;; Alternatively, set the mode in `edit-server-start-hook'. For
  52. ;; example:
  53. ;;
  54. ;; (add-hook 'edit-server-start-hook
  55. ;; (lambda ()
  56. ;; (when (string-match "github.com" (buffer-name))
  57. ;; (markdown-mode))))
  58. ;;; Code:
  59. ;; uncomment to debug
  60. ;; (setq debug-on-error t)
  61. ;; (setq edebug-all-defs t)
  62. (unless (featurep 'make-network-process)
  63. (error "Incompatible version of [X]Emacs - lacks make-network-process"))
  64. ;;; Customization
  65. (defcustom edit-server-port 9292
  66. "Local port the edit server listens to."
  67. :group 'edit-server
  68. :type 'integer)
  69. (defcustom edit-server-host nil
  70. "If not nil, accept connections from HOST address rather than just
  71. localhost. This may present a security issue."
  72. :group 'edit-server
  73. :type 'boolean)
  74. (defcustom edit-server-verbose nil
  75. "If not nil, log connections and progress also to the echo area."
  76. :group 'edit-server
  77. :type 'boolean)
  78. (defcustom edit-server-done-hook nil
  79. "Hook run when done editing a buffer for the Emacs HTTP edit-server.
  80. Current buffer holds the text that is about to be sent back to the client."
  81. :group 'edit-server
  82. :type 'hook)
  83. (defcustom edit-server-start-hook nil
  84. "Hook run when starting a editing buffer. Current buffer is
  85. the fully prepared editing buffer. Use this hook to enable
  86. buffer-specific modes or add key bindings."
  87. :group 'edit-server
  88. :type 'hook)
  89. ;; frame options
  90. (defcustom edit-server-new-frame t
  91. "If not nil, edit each buffer in a new frame (and raise it)."
  92. :group 'edit-server
  93. :type 'boolean)
  94. (defcustom edit-server-new-frame-alist
  95. '((name . "Emacs TEXTAREA")
  96. (width . 80)
  97. (height . 25)
  98. (minibuffer . t)
  99. (menu-bar-lines . t))
  100. "Frame parameters for new frames. See `default-frame-alist' for examples.
  101. If nil, the new frame will use the existing `default-frame-alist' values."
  102. :group 'edit-server
  103. :type '(repeat (cons :format "%v"
  104. (symbol :tag "Parameter")
  105. (sexp :tag "Value"))))
  106. (defcustom edit-server-default-major-mode
  107. 'text-mode
  108. "The default major mode to use in editing buffers, if no other
  109. mode is selected by `edit-server-url-major-mode-alist'."
  110. :group 'edit-server
  111. :type 'function)
  112. (defcustom edit-server-url-major-mode-alist
  113. nil
  114. "A-list of patterns and corresponding functions; when the first
  115. pattern is encountered which matches `edit-server-url', the
  116. corresponding function will be called in order to set the desired
  117. major mode. If no pattern matches,
  118. `edit-server-default-major-mode' will be used."
  119. :group 'edit-server
  120. :type '(alist :key-type (string :tag "Regexp")
  121. :value-type (function :tag "Major mode function")))
  122. (defcustom edit-server-new-frame-mode-line t
  123. "Show the emacs frame's mode-line if set to t; hide if nil."
  124. :group 'edit-server
  125. :type 'boolean)
  126. ;;; Variables
  127. (defconst edit-server-process-buffer-name " *edit-server*"
  128. "Template name of the edit-server process buffers.")
  129. (defconst edit-server-log-buffer-name "*edit-server-log*"
  130. "Template name of the edit-server process buffers.")
  131. (defconst edit-server-edit-buffer-name "TEXTAREA"
  132. "Template name of the edit-server text editing buffers.")
  133. (defvar edit-server-clients ()
  134. "List of all client processes associated with the server process.")
  135. ;; Buffer local variables
  136. ;;
  137. ;; These are all required to associate the edit buffer with the
  138. ;; correct connection to the client and allow for the buffer to be sent
  139. ;; back when ready. They are `permanent-local` to avoid being reset if
  140. ;; the buffer changes major modes.
  141. (defvar edit-server-proc nil
  142. "Network process associated with the current edit.")
  143. (make-variable-buffer-local 'edit-server-proc)
  144. (put 'edit-server-proc 'permanent-local t)
  145. (defvar edit-server-frame nil
  146. "The frame created for a new edit-server process.")
  147. (make-variable-buffer-local 'edit-server-frame)
  148. (put 'edit-server-frame 'permanent-local t)
  149. (defvar edit-server-phase nil
  150. "Symbol indicating the state of the HTTP request parsing.")
  151. (make-variable-buffer-local 'edit-server-phase)
  152. (put 'edit-server-phase 'permanent-local t)
  153. (defvar edit-server-received nil
  154. "Number of bytes received so far in the client buffer.
  155. Depending on the character encoding, may be different from the buffer length.")
  156. (make-variable-buffer-local 'edit-server-received)
  157. (put 'edit-server-received 'permanent-local t)
  158. (defvar edit-server-request nil
  159. "The HTTP request (GET, HEAD, POST) received.")
  160. (make-variable-buffer-local 'edit-server-request)
  161. (put 'edit-server-request 'permanent-local t)
  162. (defvar edit-server-content-length nil
  163. "The value gotten from the HTTP `Content-Length' header.")
  164. (make-variable-buffer-local 'edit-server-content-length)
  165. (put 'edit-server-content-length 'permanent-local t)
  166. (defvar edit-server-url nil
  167. "The value gotten from the HTTP `x-url' header.")
  168. (make-variable-buffer-local 'edit-server-url)
  169. (put 'edit-server-url 'permanent-local t)
  170. (defvar edit-server-file nil
  171. "The value gotten from the HTTP `x-file' header.")
  172. (make-variable-buffer-local 'edit-server-file)
  173. (put 'edit-server-file 'permanent-local t)
  174. ;;; Mode magic
  175. ;;
  176. ;; We want to re-map some of the keys to trigger edit-server-done
  177. ;; instead of the usual emacs like behaviour. However using
  178. ;; local-set-key will affect all buffers of the same mode, hence we
  179. ;; define a special (derived) mode for handling editing of text areas.
  180. (defvar edit-server-edit-mode-map
  181. (let ((map (make-sparse-keymap)))
  182. (define-key map (kbd "C-x C-s") 'edit-server-save)
  183. (define-key map (kbd "C-x #") 'edit-server-done)
  184. (define-key map (kbd "C-c C-c") 'edit-server-done)
  185. (define-key map (kbd "C-x C-c") 'edit-server-abort)
  186. map)
  187. "Keymap for minor mode `edit-server-edit-mode'.
  188. Redefine a few common Emacs keystrokes to functions that can
  189. deal with the response to the edit-server request.
  190. Any of the following keys will close the buffer and send the text
  191. to the HTTP client: C-x #, C-c C-c.
  192. Pressing C-x C-s will save the current state to the kill-ring.
  193. If any of the above isused with a prefix argument, the
  194. unmodified text is sent back instead.")
  195. (define-minor-mode edit-server-edit-mode
  196. "Minor mode enabled on buffers opened by `edit-server-accept'.
  197. Its sole purpose is currently to enable
  198. `edit-server-edit-mode-map', which overrides common keystrokes to
  199. send a response back to the client."
  200. :group 'edit-server
  201. :lighter " EditSrv"
  202. :init-value nil
  203. :keymap edit-server-edit-mode-map)
  204. (defun turn-on-edit-server-edit-mode-if-server ()
  205. "Turn on `edit-server-edit-mode' if in an edit-server buffer."
  206. (when edit-server-proc
  207. (edit-server-edit-mode t)))
  208. (define-globalized-minor-mode global-edit-server-edit-mode
  209. edit-server-edit-mode turn-on-edit-server-edit-mode-if-server)
  210. (global-edit-server-edit-mode t)
  211. ;; Edit Server socket code
  212. ;; Avoid an unnecessary prompt about active processes when exiting
  213. ;; emacs with no active edit-server clients
  214. ;; https://github.com/stsquad/emacs_chrome/issues/67
  215. ;;
  216. ;; According to http://emacswiki.org/emacs/AdviceVsHooks advice is a
  217. ;; sledgehammer which should be avoided if possible. However, the
  218. ;; only hooks run by save-buffers-kill-emacs are defined by
  219. ;; kill-emacs-query-functions and run *after* the check for active
  220. ;; processes which results in precisely the interactive prompt we want
  221. ;; to avoid when edit-server has no active clients. So it seems that
  222. ;; advice is the only solution until save-buffers-kill-emacs offers an
  223. ;; earlier hook.
  224. (defadvice save-buffers-kill-emacs
  225. (before edit-server-stop-before-kill-emacs)
  226. "Call `edit-server-stop' if there are no active clients, to
  227. avoid the user being prompted to kill the edit-server process."
  228. (or edit-server-clients (edit-server-stop)))
  229. ;;;###autoload
  230. (defun edit-server-start (&optional verbose)
  231. "Start the edit server.
  232. If argument VERBOSE is non-nil, logs all server activity to buffer
  233. `*edit-server-log*'. When called interactivity, a prefix argument
  234. will cause it to be verbose."
  235. (interactive "P")
  236. (if (or (process-status "edit-server")
  237. (null (condition-case err
  238. (let ((proc (make-network-process
  239. :name "edit-server"
  240. :buffer edit-server-process-buffer-name
  241. :family 'ipv4
  242. :host (or edit-server-host 'local)
  243. :service edit-server-port
  244. :log 'edit-server-accept
  245. :server t
  246. :noquery t)))
  247. (set-process-coding-system proc 'utf-8 'utf-8)
  248. proc)
  249. (file-error nil))))
  250. (message "An edit-server process is already running")
  251. (ad-activate 'save-buffers-kill-emacs)
  252. (setq edit-server-clients '())
  253. (if verbose (get-buffer-create edit-server-log-buffer-name))
  254. (edit-server-log nil "Created a new edit-server process")))
  255. (defun edit-server-stop nil
  256. "Stop the edit server"
  257. (interactive)
  258. (while edit-server-clients
  259. (edit-server-kill-client (car edit-server-clients))
  260. (setq edit-server-clients (cdr edit-server-clients)))
  261. (if (process-status "edit-server")
  262. (delete-process "edit-server")
  263. (message "No edit server running"))
  264. (when (get-buffer edit-server-process-buffer-name)
  265. (kill-buffer edit-server-process-buffer-name))
  266. (ad-disable-advice 'save-buffers-kill-emacs
  267. 'before 'edit-server-stop-before-kill-emacs)
  268. ;; Disabling advice doesn't take effect until you (re-)activate
  269. ;; all advice for the function.
  270. (ad-activate 'save-buffers-kill-emacs))
  271. (defun edit-server-log (proc fmt &rest args)
  272. "If a `*edit-server-log*' buffer exists, write STRING to it.
  273. This is done for logging purposes. If `edit-server-verbose' is
  274. non-nil, then STRING is also echoed to the message line."
  275. (let ((string (apply 'format fmt args)))
  276. (if edit-server-verbose
  277. (message string))
  278. (if (get-buffer edit-server-log-buffer-name)
  279. (with-current-buffer edit-server-log-buffer-name
  280. (goto-char (point-max))
  281. (insert (current-time-string)
  282. " "
  283. (if (processp proc)
  284. (concat
  285. (buffer-name (process-buffer proc))
  286. ": ")
  287. "") ; nil is not acceptable to 'insert
  288. string)
  289. (or (bolp) (newline))))))
  290. (defun edit-server-accept (server client msg)
  291. "Accept a new client connection."
  292. (let ((buffer (generate-new-buffer edit-server-process-buffer-name)))
  293. (when (fboundp 'set-buffer-multibyte)
  294. (set-buffer-multibyte t)) ; djb
  295. (buffer-disable-undo buffer)
  296. (set-process-buffer client buffer)
  297. (set-process-filter client 'edit-server-filter)
  298. ;; kill-buffer kills the associated process
  299. (set-process-query-on-exit-flag client nil)
  300. (with-current-buffer buffer
  301. (setq edit-server-phase 'wait
  302. edit-server-received 0
  303. edit-server-request nil))
  304. (setq edit-server-content-length nil
  305. edit-server-url nil
  306. edit-server-file nil))
  307. (add-to-list 'edit-server-clients client)
  308. (edit-server-log client msg))
  309. (defun edit-server-filter (proc string)
  310. "Process data received from the client."
  311. ;; there is no guarantee that data belonging to the same client
  312. ;; request will arrive all in one go; therefore, we must accumulate
  313. ;; data in the buffer and process it in different phases, which
  314. ;; requires us to keep track of the processing state.
  315. (with-current-buffer (process-buffer proc)
  316. (insert string)
  317. (setq edit-server-received
  318. (+ edit-server-received (string-bytes string)))
  319. (when (eq edit-server-phase 'wait)
  320. ;; look for a complete HTTP request string
  321. (save-excursion
  322. (goto-char (point-min))
  323. (when (re-search-forward
  324. "^\\([A-Z]+\\)\\s-+\\(\\S-+\\)\\s-+\\(HTTP/[0-9\.]+\\)\r?\n"
  325. nil t)
  326. (edit-server-log
  327. proc "Got HTTP `%s' request, processing in buffer `%s'..."
  328. (match-string 1) (current-buffer))
  329. (setq edit-server-request (match-string 1))
  330. (setq edit-server-content-length nil)
  331. (setq edit-server-phase 'head))))
  332. (when (eq edit-server-phase 'head)
  333. ;; look for "Content-length" header
  334. (save-excursion
  335. (goto-char (point-min))
  336. (when (re-search-forward "^Content-Length:\\s-+\\([0-9]+\\)" nil t)
  337. (setq edit-server-content-length
  338. (string-to-number (match-string 1)))))
  339. ;; look for "x-url" header
  340. (save-excursion
  341. (goto-char (point-min))
  342. (when (re-search-forward "^x-url: .*/\\{2,3\\}\\([^?\r\n ]+\\)" nil t)
  343. (setq edit-server-url (match-string 1))))
  344. ;; look for "x-file" header
  345. (save-excursion
  346. (goto-char (point-min))
  347. (when (re-search-forward "^x-file: \\([^?\r\n ]+\\)" nil t)
  348. (edit-server-log proc "Found x-file: %s" (match-string 1))
  349. (setq edit-server-file (match-string 1))))
  350. ;; look for head/body separator
  351. (save-excursion
  352. (goto-char (point-min))
  353. (when (re-search-forward "\\(\r?\n\\)\\{2\\}" nil t)
  354. ;; HTTP headers are pure ASCII (1 char = 1 byte), so we can subtract
  355. ;; the buffer position from the count of received bytes
  356. (setq edit-server-received
  357. (- edit-server-received (- (match-end 0) (point-min))))
  358. ;; discard headers - keep only HTTP content in buffer
  359. (delete-region (point-min) (match-end 0))
  360. (edit-server-log proc
  361. "Processed headers, length: %s, url: %s, file: %s"
  362. edit-server-content-length edit-server-url edit-server-file)
  363. (setq edit-server-phase 'body))))
  364. (when (eq edit-server-phase 'body)
  365. (if (and edit-server-content-length
  366. (> edit-server-content-length edit-server-received))
  367. (edit-server-log proc
  368. "Received %d bytes of %d ..."
  369. edit-server-received edit-server-content-length)
  370. ;; all content transferred - process request now
  371. (cond
  372. ((string= edit-server-request "POST")
  373. ;; create editing buffer, and move content to it
  374. (edit-server-find-or-create-edit-buffer proc edit-server-file))
  375. (t
  376. ;; send 200 OK response to any other request
  377. (edit-server-send-response proc "edit-server is running.\n")
  378. (edit-server-kill-client proc)))
  379. ;; wait for another connection to arrive
  380. (setq edit-server-received 0)
  381. (setq edit-server-phase 'wait)))))
  382. (defun edit-server-show-edit-buffer (buffer)
  383. "Show edit buffer by creating a frame or raising the selected
  384. frame."
  385. (if edit-server-new-frame
  386. (let ((new-frame
  387. (if (memq window-system '(ns mac))
  388. ;; Aquamacs, Emacs NS, Emacs (experimental) Mac port
  389. (make-frame edit-server-new-frame-alist)
  390. (make-frame-on-display (getenv "DISPLAY")
  391. edit-server-new-frame-alist))))
  392. (unless edit-server-new-frame-mode-line
  393. (setq mode-line-format nil))
  394. (select-frame new-frame)
  395. (when (and (eq window-system 'x)
  396. (fboundp 'x-send-client-message))
  397. (x-send-client-message nil 0 nil
  398. "_NET_ACTIVE_WINDOW" 32
  399. '(1 0 0)))
  400. (raise-frame new-frame)
  401. (set-window-buffer (frame-selected-window new-frame) buffer)
  402. new-frame)
  403. (select-frame-set-input-focus (window-frame (selected-window)))
  404. (pop-to-buffer buffer)
  405. (raise-frame)
  406. nil))
  407. (defun edit-server-choose-major-mode ()
  408. "Use `edit-server-url-major-mode-alist' to choose a major mode
  409. initialization function based on `edit-server-url', or fall back
  410. to `edit-server-default-major-mode'"
  411. (let ((pairs edit-server-url-major-mode-alist)
  412. (mode edit-server-default-major-mode))
  413. (while pairs
  414. (let ((entry (car pairs)))
  415. (if (string-match (car entry) edit-server-url)
  416. (setq mode (cdr entry)
  417. pairs nil)
  418. (setq pairs (cdr pairs)))))
  419. (funcall mode)))
  420. (defun edit-server-find-or-create-edit-buffer(proc &optional existing)
  421. "Find and existing or create an new edit buffer, place content in it
  422. and save the network process for the final call back"
  423. (let* ((existing-buffer (get-buffer (or (and (stringp existing) existing) "")))
  424. (buffer (or existing-buffer (generate-new-buffer
  425. (or edit-server-url
  426. edit-server-edit-buffer-name)))))
  427. (edit-server-log proc (format
  428. "using buffer %s for edit (existing-buffer
  429. is %s)"
  430. buffer existing-buffer))
  431. ;; set multi-byte for proper UTF-8 handling (djb)
  432. (when (fboundp 'set-buffer-multibyte)
  433. (with-current-buffer buffer
  434. (set-buffer-multibyte t)))
  435. ;; I seem to be working around a bug here :-/
  436. ;;
  437. ;; For some reason the copy-to-buffer doesn't blat the existing contents.
  438. ;; This screws up formatting as the contents where decoded before being
  439. ;; sent back to the browser. As a kludge I save the returned contents
  440. ;; in the kill-ring.
  441. (when existing-buffer
  442. (kill-ring-save (point-min) (point-max)))
  443. (edit-server-log proc "copying new data into buffer")
  444. (copy-to-buffer buffer (point-min) (point-max))
  445. (with-current-buffer buffer
  446. (setq edit-server-url (with-current-buffer (process-buffer proc) edit-server-url))
  447. (edit-server-choose-major-mode)
  448. ;; Allow `edit-server-start-hook' to override the major mode.
  449. ;; (re)setting the minor mode seems to clear the buffer-local
  450. ;; variables that we depend upon for the response, so call the
  451. ;; hooks early on
  452. (run-hooks 'edit-server-start-hook)
  453. (set-buffer-modified-p 'nil)
  454. (add-hook 'kill-buffer-hook 'edit-server-abort* nil t)
  455. (buffer-enable-undo)
  456. (setq edit-server-proc proc
  457. edit-server-frame (edit-server-show-edit-buffer buffer))
  458. (edit-server-edit-mode))))
  459. (defun edit-server-send-response (proc &optional body progress)
  460. "Send an HTTP 200 OK response back to process PROC.
  461. Optional second argument BODY specifies the response content:
  462. - If nil, the HTTP response will have null content.
  463. - If a string, the string is sent as response content.
  464. - Any other value will cause the contents of the current
  465. buffer to be sent.
  466. If optional third argument progress is non-nil, then the response
  467. will include x-file and x-open headers to allow continuation of editing."
  468. (interactive)
  469. (edit-server-log proc "sending edit-server response")
  470. (if (processp proc)
  471. (let ((response-header (concat
  472. "HTTP/1.0 200 OK\n"
  473. (format "Server: Emacs/%s\n" emacs-version)
  474. "Date: "
  475. (format-time-string
  476. "%a, %d %b %Y %H:%M:%S GMT\n"
  477. (current-time))
  478. (when progress
  479. (format "x-file: %s\nx-open: true\n" (buffer-name))))))
  480. (process-send-string proc response-header)
  481. (process-send-string proc "\n")
  482. (cond
  483. ((stringp body)
  484. (process-send-string proc (encode-coding-string body 'utf-8)))
  485. ((not body) nil)
  486. (t
  487. (encode-coding-region (point-min) (point-max) 'utf-8)
  488. (process-send-region proc (point-min) (point-max))))
  489. (process-send-eof proc)
  490. (edit-server-log proc "Editing done, sent HTTP OK response."))
  491. (message "edit-server-send-response: invalid proc (bug?)")))
  492. (defun edit-server-kill-client (proc)
  493. "Kill client process PROC and remove it from the list."
  494. (let ((procbuf (process-buffer proc)))
  495. (delete-process proc)
  496. (when (buffer-live-p procbuf)
  497. (kill-buffer procbuf))
  498. (setq edit-server-clients (delq proc edit-server-clients))))
  499. (defun edit-server-done (&optional abort nokill)
  500. "Finish editing: send HTTP response back, close client and editing buffers.
  501. The current contents of the buffer are sent back to the HTTP
  502. client, unless argument ABORT is non-nil, in which case then the
  503. original text is sent back.
  504. If optional second argument NOKILL is non-nil, then the editing
  505. buffer is not killed and the buffer name is passed to calling process.
  506. When called interactively, use prefix arg to abort editing."
  507. (interactive "P")
  508. ;; Do nothing if the connection is closed by the browser (tab killed, etc.)
  509. (unless (eq (process-status edit-server-proc) 'closed)
  510. (let ((buffer (current-buffer))
  511. (proc edit-server-proc)
  512. (procbuf (process-buffer edit-server-proc)))
  513. ;; edit-server-* vars are buffer-local,
  514. ;; so they must be used before issuing kill-buffer
  515. (if abort
  516. ;; send back original content
  517. (with-current-buffer procbuf
  518. (run-hooks 'edit-server-done-hook)
  519. (edit-server-send-response proc t))
  520. ;; send back edited content
  521. (save-restriction
  522. (widen)
  523. (buffer-disable-undo)
  524. ;; ensure any format encoding is done (like longlines)
  525. (dolist (format buffer-file-format)
  526. (format-encode-region (point-min) (point-max) format))
  527. ;; send back
  528. (run-hooks 'edit-server-done-hook)
  529. (edit-server-send-response proc t nokill)
  530. (edit-server-log proc "sent response to browser")))
  531. (when edit-server-frame
  532. (delete-frame edit-server-frame))
  533. ;; delete-frame may change the current buffer
  534. (unless nokill
  535. (kill-buffer buffer))
  536. (edit-server-kill-client proc))))
  537. ;; edit-server-save uses the iterative edit-server option (send a
  538. ;; buffer back to the client which then returns new request to
  539. ;; continue the session). The edit-server then switches back to the
  540. ;; buffer referenced by the x-file header.
  541. ;;
  542. (defun edit-server-save ()
  543. "Save the current state of the edit buffer but don't close it."
  544. (interactive)
  545. (edit-server-done nil t))
  546. (defun edit-server-abort ()
  547. "Discard editing and send the original text back to the browser."
  548. (interactive)
  549. (edit-server-done t))
  550. (defun edit-server-abort* ()
  551. "Discard editing and send the original text back to the browser,
  552. but don't kill the editing buffer."
  553. (interactive)
  554. (edit-server-done t t))
  555. (provide 'edit-server)
  556. ;;; edit-server.el ends here