-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathetherpad-esync.el
542 lines (451 loc) · 21.7 KB
/
etherpad-esync.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
;;; etherpad-esync.el --- Etherpad easysync protocol -*- coding: utf-8; lexical-binding: t -*-
;; Copyright 2020 FoAM
;;
;; Author: nik gaffney <[email protected]>
;; Created: 2020-12-12
;; Version: 0.1
;; Keywords: comm, etherpad, collaborative editing
;; URL: https://github.com/zzkt/ethermacs
;; This file is not part of GNU Emacs.
;; This program is free software; you can redistribute it and/or modify
;; it under the terms of the GNU General Public License as published by
;; the Free Software Foundation, either version 3 of the License, or
;; (at your option) any later version.
;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
;; GNU General Public License for more details.
;; You should have received a copy of the GNU General Public License
;; along with this program. If not, see <https://www.gnu.org/licenses/>.
;;; Commentary:
;; Etherpad is a highly customizable Open Source online editor providing
;; collaborative editing in really real-time.
;;
;; The easysync protocol is used for communication of edits, changesets
;; and metadata between etherpad server and clients. It uses websockets
;; for the transport layer
;;
;; details -> https://etherpad.org/doc/v1.8.5/#index_http_api
;; current issues 2020-12-15 00:52:32
;; - one ws per buffer. buffer local. shared.
;; - incorrect newline counts when sending changesets
;; - problems w. deleting text and/or changing buffer size & change-hooks
;; - see "Additional Constraints" of easysync
;; - potential race conditions sending changesets on buffer changes
;; - doesn't apply attributes or changes from the apool
;; - general lack of error checking
;;; Code:
(require 'websocket)
(require 'let-alist)
(require 'calc-bin)
(require 'parsec)
(require '0xc)
(require 's)
;; debug details
;; (setq websocket-debug t)
;; local and buffer local variables
(defvar-local etherpad-esync--pre-buffer-length 0)
(defvar-local etherpad-esync--new-buffer-length 0)
(defvar-local etherpad-esync--change-length 0)
(defvar-local etherpad-esync--change-string "")
(defvar-local etherpad-esync--local-rev 0)
(defvar-local etherpad-esync--current-pad "")
(defvar-local etherpad-esync--local-author "") ;; e.g. "a.touCZaixjPgKDSiN"
(defvar-local etherpad-esync--hearbeat-timer nil)
(defvar-local etherpad-esync--current-socket nil)
;; session
(defvar etherpad-esync-session-token "") ;; see also *session-token*
;; buffering
(defvar etherpad-esync-buffer (generate-new-buffer "*etherpad (easysync)*"))
;; keep-alive message & heartbeat timers
(defun etherpad-esync-heartbeat-send ()
"Send a keep-alive message."
;; only send if there is a current socket
;; and delete an active timer when there isn't a socket open
(message "heartbeat?")
(when (etherpad-esync-current-socket)
(etherpad-esync-wss-send "2")
(message "heartbeat sent: %s" etherpad-esync-buffer))
(when (not (etherpad-esync-current-socket))
(etherpad-esync-heartbeat-stop)
(message "heartbeat stopped: %s" etherpad-esync--hearbeat-timer)))
(defun etherpad-esync-heartbeat-start ()
"Maintain connection to server with periodic pings."
(message "heartbeat started: %s" etherpad-esync-buffer)
(setq etherpad-esync--hearbeat-timer
(run-with-timer 5 15 #'etherpad-esync-heartbeat-send))
(etherpad-esync-current-socket))
(defun etherpad-esync-heartbeat-stop ()
"Stop sending keep-alive messages."
(when etherpad-esync--hearbeat-timer
(cancel-timer etherpad-esync--hearbeat-timer))
(setq etherpad-esync--hearbeat-timer nil)
(message "heartbeat stopped: %s" etherpad-esync-buffer))
;; sockets
(defun etherpad-esync-current-socket (&optional socket)
"Return currently active socket or set SOCKET as current."
(when socket
(setq etherpad-esync--current-socket socket))
(message "current socket: set")
etherpad-esync--current-socket)
;; setters
(defun etherpad-esync--set-local-rev (n)
"Set the local revision to N."
(message "current rev: %s" etherpad-esync--local-rev)
(setq etherpad-esync--local-rev n)
(message "updated rev: %s" etherpad-esync--local-rev)
(with-current-buffer etherpad-esync-buffer
(rename-buffer (format "etherpad:%s:%s"
etherpad-esync--current-pad
etherpad-esync--local-rev))))
;; see also -> inhibit-modification-hooks
(defun etherpad-esync--add-change-hooks ()
"Add predefined change hooks."
(interactive)
(message "setting up buffer change hooks")
(with-current-buffer etherpad-esync-buffer
(add-hook 'before-change-functions
#'etherpad-esync--before-buffer-changes nil t)
;; ordering is important...
(add-hook 'after-change-functions
#'etherpad-esync--after-buffer-changes 22 t)
(add-hook 'after-change-functions
#'etherpad-esync--send-changes 23 t)))
(defun etherpad-esync--remove-change-hooks ()
"Remove predefined change hooks."
(interactive)
(message "removing buffer change hooks")
(with-current-buffer etherpad-esync-buffer
(remove-hook 'before-change-functions
#'etherpad-esync--before-buffer-changes t)
(remove-hook 'after-change-functions
#'etherpad-esync--after-buffer-changes t)
(remove-hook 'after-change-functions
#'etherpad-esync--send-changes t)))
(defun etherpad-esync--before-buffer-changes (begin end)
"Length before buffer is synced. BEGIN END."
;; (message "before -> b:%s e:%s" begin end)
(setq-local etherpad-esync--pre-buffer-length (length (buffer-string))
etherpad-esync--change-length (- end begin)))
(defun etherpad-esync--after-buffer-changes (begin end _pre)
"Length after buffer is synced. BEGIN END."
;; (message "after -> b:%s e:%s p:%s" begin end pre)
(setq-local etherpad-esync--new-buffer-length (length (buffer-string))
etherpad-esync--change-string (buffer-substring begin end)
etherpad-esync--change-length (- end begin)))
;; (message "eabc: pre: %s post: %s changed: %s chars to: %s at: %s(%s)"
;; etherpad-esync--pre-buffer-length
;; etherpad-esync--new-buffer-length
;; etherpad-esync--change-length
;; etherpad-esync--change-string
;; (point)
;; (n-36 (point))))
;; emacs -> etherpad changes
(defun etherpad-esync--send-changes (_b _e _p)
"Create and encode a changeset."
(let* ((b0 etherpad-esync--pre-buffer-length)
(b1 etherpad-esync--new-buffer-length)
(ops (if (< b0 b1)
(format "+%s" (- b1 b0))
(format "-%s" (- b0 b1))))
(changeset
(etherpad-esync--encode-changeset
b0
(- b1 b0)
ops
etherpad-esync--change-string)))
(message "changeset: %s" changeset)
(etherpad-esync--send-user-changes changeset)))
(defun etherpad-esync--encode-changeset (length change-size ops chars)
"Create a changeset from some buffer activity. LENGTH CHANGE-SIZE OPS CHARS."
(cl-labels ((n-36 (n)
(let ((calc-number-radix 36))
(downcase (math-format-radix n)))))
(message "encoding: o:%s (%s) cs:%s op:%s ch:%s"
length (n-36 length)
change-size ops chars)
(let* ((change (cond ((= 0 change-size) "=0")
((> 0 change-size)
(format "<%s" (n-36 (abs change-size))))
((< 0 change-size)
(format ">%s" (n-36 change-size)))))
(newline-count (s-count-matches "\n" (buffer-substring
(point-min)
(point))))
(offset (- (point) (length chars) 1))
;; offset is distance from point-min to point w.out inserted chars and w. newlines
(pos-op (if (< 0 newline-count)
(format "|%s=%s"
;; 2 steps reqd. newline insert, then from beginning of line?
(n-36 newline-count)
(let ((p1 (- offset
(caar
(reverse
(s-matched-positions-all
"\n" (buffer-substring
(point-min) (point))))))))
(message "offset: %s p1: %s" offset p1)
(if (= 1 p1)
(n-36 (+ 1 offset))
(format "%s=%s"
(n-36 (- offset p1 -1))
(n-36 (- p1 1))))))
(format "=%s" (n-36 offset)))))
(format "Z:%s%s%s%s$%s" (n-36 length) change pos-op ops chars))))
(defun etherpad-esync--send-user-changes (cs)
"Send a `USER_CHANGES' message with changeset CS."
(let* ((author etherpad-esync--local-author)
(rev etherpad-esync--local-rev)
(changeset cs)
(payload
(format "42[\"message\",{\"type\":\"COLLABROOM\",\"component\":\"pad\",\"data\":{\"type\":\"USER_CHANGES\",\"baseRev\":%s,\"changeset\":\"%s\",\"apool\":{\"numToAttrib\":{},\"nextNum\":1}}}]"
rev changeset))) ;; author?
(message "send this (as %s) -> %s" payload author)
(etherpad-esync-wss-send payload)))
;; parsec info https://github.com/cute-jumper/parsec.el
(defun etherpad-esync-parse-changeset (cs)
"Parse a changeset CS.
:N : Source text has length N (must be first op)
>N : Final text is N (positive) characters longer than source text (must be second op)
<N : Final text is N (positive) characters shorter than source text (must be second op)
>0 : Final text is same length as source text
+N : Insert N characters from the bank, none of them newlines
-N : Skip over (delete) N characters from the source text, none of them newlines
=N : Keep N characters from the source text, none of them newlines
|L+N : Insert N characters from the source text, containing L newlines. The last
character inserted MUST be a newline, but not the (new) document's final newline.
|L-N : Delete N characters from the source text, containing L newlines. The last
character inserted MUST be a newline, but not the (old) document's final newline.
|L=N : Keep N characters from the source text, containing L newlines. The last character
kept MUST be a newline, and the final newline of the document is allowed.
*I : Apply attribute I from the pool to the following +, =, |+, or |= command.
In other words, any number of * ops can come before a +, =, or | but not
between a | and the corresponding + or =.
If +, text is inserted having this attribute. If =, text is kept but with
the attribute applied as an attribute addition or removal.
Consecutive attributes must be sorted lexically by (key,value) with key
and value taken as strings. It's illegal to have duplicate keys
for (key,value) pairs that apply to the same text. It's illegal to
have an empty value for a key in the case of an insertion (+), the
pair should just be omitted."
(let* ((changes
(parsec-with-input
cs
;; a letter Z (the "magic character" and format version identifier)
(parsec-str "Z")
(parsec-collect*
;; source text length
(parsec-re ":[0-9a-z]+")
;; change in text length
(parsec-re "[>=<][0-9a-z]+")
;; insertion & deletion operations
(parsec-many
(parsec-or
(parsec-re "|[0-9a-z]+[+-=][0-9a-z]+")
(parsec-re "[><+-=*][0-9a-z]+")))
;; separator
(parsec-str "$")
;; a string of characters used by insertion operations (the "char bank")
(parsec-many-s
(parsec-any-ch))))))
(let* ((old-length
(0xc-string-to-number (substring (car changes) 1) 36))
(change-sign
(if (s-equals? ">" (substring (nth 1 changes) 0 1)) 1 -1))
(change-size
(0xc-string-to-number (substring (nth 1 changes) 1) 36))
(new-length
(+ old-length (* change-sign change-size)))
(ops
(nth 2 changes))
(chars
(car (last changes))))
(message "old length: %s new length: %s ops: %s" old-length new-length ops)
(list old-length ops chars))))
;; operations -> buffer changes
(defun etherpad-esync-apply-ops (ops chars)
"Apply a series of insert/delete OPS using CHARS.
Numeric offsets are calculated from the beginning of the buffer."
(with-current-buffer etherpad-esync-buffer
(save-mark-and-excursion
(goto-char (point-min))
(cl-flet
;; Convert a base-36 number STRING to decimal.
((s-36 (string)
(0xc-string-to-number string 36)))
(let ((char-bank chars))
(mapcar
(lambda (s)
(let* ((o1 (s-left 1 s))
(p1 (substring s 1)))
(message "op: %s val: %s" o1 p1)
(pcase o1
("+" (etherpad-esync-insert (s-left (s-36 p1) char-bank))
(setq char-bank (s-right (s-36 p1) char-bank)))
("-" (etherpad-esync-delete (s-36 p1)))
("=" (etherpad-esync-keep (s-36 p1)))
("|" (let* ((p2 (s-split "[+=-]" p1))
(l1 (s-36 (car p2)))
(n1 (s-36 (cadr p2))))
;; doesn't insert or delete newlines correctly (yet)
(message "op: | → l1: %s n1: %s" l1 n1)
(pcase p1
((pred (s-matches? "+"))
(etherpad-esync-insert (make-string n1 10)))
((pred (s-matches? "-")) (etherpad-esync-delete n1))
((pred (s-matches? "=")) (etherpad-esync-keep n1)))))
("*" t)
(_ nil))))
ops))))))
;; character operations for remote->local sync
;; which should not trigger change hooks
(defun etherpad-esync-insert (chars)
"Insert CHARS into the source text."
(let ((inhibit-modification-hooks t))
(insert chars)))
(defun etherpad-esync-delete (n)
"Delete (skip over) N chars from the source text."
(let ((inhibit-modification-hooks t))
(delete-char n)))
(defun etherpad-esync-keep (n)
"Keep N chars from the source text."
(let ((inhibit-modification-hooks t))
(forward-char n)))
;; start with current pad text
(defun etherpad-esync-init-text (chars)
"Seeds a buffer with CHARS from a remote pad."
(with-current-buffer etherpad-esync-buffer
(let ((inhibit-modification-hooks t))
(erase-buffer)
(goto-char (point-min))
(insert chars))))
(defun etherpad-esync-try-changeset (cs)
"Try changeset CS."
(let* ((changes
(etherpad-esync-parse-changeset cs))
(len (nth 0 changes))
(ops (nth 1 changes))
(chars (nth 2 changes)))
(etherpad-esync--check-length len)
(etherpad-esync-apply-ops ops chars)))
(defun etherpad-esync--check-length (size)
"Check the changeset and buffer SIZE are consistent."
(when (not (= size (length (buffer-string))))
(message "changeset and buffer length are inconsistent.")))
;; various stanzas
(defun etherpad-esync--request-client-ready (padId)
"Ethersync: send CLIENT_READY for PADID."
(format "42[\"message\",{\"component\":\"pad\",\"type\":\"CLIENT_READY\",\"padId\":\"%s\",\"token\":\"%s\",\"protocolVersion\":2}]" padId etherpad-esync-session-token))
(defun etherpad-esync--request-get-comments (padId)
"Ethersync: request comments on PADID."
(format "42/comment,0[\"getComments\",{\"padId\":\"%s\"}]" padId))
(defun etherpad-esync--request-get-comment-replies (padId)
"Ethersync: request comment replies on PADID."
(format "42/comment,1[\"getCommentReplies\",{\"padId\":\"%s\"}]" padId))
;; sending via websockets
(defun etherpad-esync-wss-send (msg)
"Send MSG to a websocket."
(if (websocket-openp (etherpad-esync-current-socket))
(when (stringp msg)
(websocket-send-text
(etherpad-esync-current-socket) msg))
(message "websocket is closed. not sending: %s" msg)))
;; parsing & dispatch of incoming frames
(defun etherpad-esync-parse-wsframe (_websocket frame)
"Parse & dispatch incoming FRAME.
Parsing occurs `with-current-buffer' for constancy with buffer-local variables
use let bindings for multiple connections."
;; (message "parsing: %s" frame)
(with-current-buffer etherpad-esync-buffer
(let* ((fr0 (websocket-frame-text frame))
(frp (parsec-with-input
fr0
(parsec-collect* (parsec-re "[0-9]+")
(parsec-many-s (parsec-any-ch))))))
(message "frame: %s" (length fr0))
(when (= 2 (length fr0))
(message "frame: %s" fr0))
(pcase (car frp)
("0" (etherpad-esync--parse-0 frp))
("2" (etherpad-esync--parse-2 frp))
("3" (message "3: keep-alive"))
("40" (etherpad-esync--parse-40 frp))
("42" (etherpad-esync--parse-42 frp))))))
;; parse various incoming message types
(defun etherpad-esync--parse-0 (p0)
"Parse messages beginning with 0 from P0.
set sid, upgrades, pingInterval and pingTimeout for session."
(when (listp p0)
(pcase (length p0)
(0 nil)
(1 (car p0))
(_ (let* ((p1 (json-parse-string (nth 1 p0) :object-type 'alist))
(sid (alist-get 'sid p1)))
(message "sid %s" sid))))))
(defun etherpad-esync--parse-2 (p0)
"Parse messages beginning with 2 from P0.
set revisions etc."
(when (listp p0)
(pcase (length p0)
(0 nil)
(1 (car p0))
(_ (let* ((p1 (json-parse-string (nth 1 p0) :object-type 'alist)))
(let-alist (aref p1 1)
(pcase .type
("COLLABROOM"
(pcase .data.type
("ACCEPT_COMMIT"
(message "accepted changes: rev:%s"
.data.newRev)
(etherpad-esync--set-local-rev .data.newRev)))))))))))
(defun etherpad-esync--parse-40 (p0)
"Parse messages beginning with 40 from P0.
comments and comment threads."
(message "40: comments: %s" p0))
(defun etherpad-esync--parse-42 (p0)
"Parse messages beginning with 42 from P0.
most of the COLLABROOM and update stuff..."
(when (listp p0)
(pcase (length p0)
(0 nil)
(1 (car p0))
(_ (let* ((p1 (json-parse-string (nth 1 p0) :object-type 'alist)))
(let-alist (aref p1 1)
(pcase .type
("COLLABROOM"
(pcase .data.type
("USER_NEWINFO"
(message "42: new user %s (color %s)"
.data.userInfo.userId
.data.userInfo.colorId))
("NEW_CHANGES"
(message "42: new_changes rev:%s changeset:%s (by %s)"
.data.newRev
.data.changeset
.data.author)
(etherpad-esync--set-local-rev .data.newRev)
(etherpad-esync-try-changeset .data.changeset))
("USER_CHANGES"
(message "42: user_changes rev:%s changeset:%s (by %s)"
.data.baseRev
.data.changeset
.data.apool.author))
("ACCEPT_COMMIT"
(message "42: accept-commit rev:%s" .data.newRev)
(etherpad-esync--set-local-rev .data.newRev))))
("CLIENT_READY"
(message "42: ready -> %s and %s" .padId .token))
("CLIENT_VARS"
(message "42: client_vars (%s) rev:%s -> %s"
.data.padId
.data.collab_client_vars.rev
.data.collab_client_vars.initialAttributedText.text)
(etherpad-esync--set-local-rev
.data.collab_client_vars.rev)
(etherpad-esync-init-text
.data.collab_client_vars.initialAttributedText.text)))
(pcase .disconnect
("badChangeset"
(message "42: disconnect (%s)" .disconnect)))))))))
(provide 'etherpad-esync)
;;; etherpad-esync.el ends here