This repository was archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathbuffer-proxy.js
232 lines (197 loc) · 6.95 KB
/
buffer-proxy.js
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
const assert = require('assert')
const {CompositeDisposable, Emitter} = require('event-kit')
const {Document, serializeOperation, deserializeOperation} = require('@atom/teletype-crdt')
const Messages = require('./teletype-client_pb')
function doNothing () {}
module.exports =
class BufferProxy {
static deserialize (message, props) {
const id = message.getId()
const uri = message.getUri()
const operations = message.getOperationsList().map(deserializeOperation)
return new BufferProxy(Object.assign({id, uri, operations}, props))
}
constructor ({id, uri, text, history, operations, router, hostPeerId, siteId, didDispose}) {
this.id = id
this.hostPeerId = hostPeerId
this.siteId = siteId
this.isHost = (this.siteId === 1)
this.uri = uri
this.router = router
this.emitDidDispose = didDispose || doNothing
this.document = new Document({siteId, text, history})
this.nextMarkerLayerId = 1
this.emitter = new Emitter()
this.subscriptions = new CompositeDisposable()
this.subscriptions.add(
this.router.onNotification(`/buffers/${id}`, this.receiveUpdate.bind(this))
)
if (this.isHost) {
this.subscriptions.add(
this.router.onRequest(`/buffers/${id}`, this.receiveFetch.bind(this)),
this.router.onNotification(`/buffers/${id}/save`, this.receiveSave.bind(this))
)
} else {
this.subscriptions.add(
this.router.onNotification(`/buffers/${id}/disposal`, this.dispose.bind(this))
)
}
if (operations) this.integrateOperations(operations)
}
dispose () {
this.subscriptions.dispose()
if (this.delegate) this.delegate.dispose()
if (this.isHost) this.router.notify({channelId: `/buffers/${this.id}/disposal`})
this.emitDidDispose()
}
serialize () {
const bufferProxyMessage = new Messages.BufferProxy()
bufferProxyMessage.setId(this.id)
bufferProxyMessage.setUri(this.uri)
bufferProxyMessage.setOperationsList(this.document.getOperations().map(serializeOperation))
return bufferProxyMessage
}
setDelegate (delegate) {
this.delegate = delegate
if (this.siteId !== 1 && this.delegate) {
this.delegate.setText(this.document.getText())
}
}
getNextMarkerLayerId () {
return this.nextMarkerLayerId++
}
setTextInRange (oldStart, oldEnd, newText) {
const operations = this.document.setTextInRange(oldStart, oldEnd, newText)
this.broadcastOperations(operations)
this.emitter.emit('did-update-text', {remote: false})
}
setURI (uri) {
assert(this.isHost, 'Only hosts can change the URI')
this.uri = uri
this.broadcastURIChange(uri)
}
getMarkers () {
return this.document.getMarkers()
}
updateMarkers (markerUpdatesByLayerId, broadcastOperations = true) {
const operations = this.document.updateMarkers(markerUpdatesByLayerId)
if (broadcastOperations) this.broadcastOperations(operations)
return operations
}
onDidUpdateMarkers (listener) {
return this.emitter.on('did-update-markers', listener)
}
onDidUpdateText (listener) {
return this.emitter.on('did-update-text', listener)
}
undo () {
const undoEntry = this.document.undo()
if (undoEntry) {
const {operations, textUpdates, markers} = undoEntry
this.broadcastOperations(operations)
if (textUpdates.length > 0) {
this.emitter.emit('did-update-text', {remote: false})
}
return {textUpdates, markers}
} else {
return null
}
}
redo () {
const redoEntry = this.document.redo()
if (redoEntry) {
const {operations, textUpdates, markers} = redoEntry
this.broadcastOperations(operations)
if (textUpdates.length > 0) {
this.emitter.emit('did-update-text', {remote: false})
}
return {textUpdates, markers}
} else {
return null
}
}
createCheckpoint (options) {
return this.document.createCheckpoint(options)
}
getChangesSinceCheckpoint (checkpoint) {
return this.document.getChangesSinceCheckpoint(checkpoint)
}
groupChangesSinceCheckpoint (checkpoint, options) {
return this.document.groupChangesSinceCheckpoint(checkpoint, options)
}
groupLastChanges () {
return this.document.groupLastChanges()
}
revertToCheckpoint (checkpoint, options) {
const result = this.document.revertToCheckpoint(checkpoint, options)
if (result) {
const {operations, textUpdates, markers} = result
this.broadcastOperations(operations)
if (textUpdates.length > 0) {
this.emitter.emit('did-update-text', {remote: false})
}
return {textUpdates, markers}
} else {
return false
}
}
applyGroupingInterval (groupingInterval) {
this.document.applyGroupingInterval(groupingInterval)
}
getHistory (maxEntries) {
return this.document.getHistory(maxEntries)
}
requestSave () {
assert(!this.isHost, 'Only guests can request a save')
this.router.notify({recipientId: this.hostPeerId, channelId: `/buffers/${this.id}/save`})
}
receiveFetch ({requestId}) {
this.router.respond({requestId, body: this.serialize().serializeBinary()})
}
receiveUpdate ({body}) {
const updateMessage = Messages.BufferProxyUpdate.deserializeBinary(body)
if (updateMessage.hasOperationsUpdate()) {
this.receiveOperationsUpdate(updateMessage.getOperationsUpdate())
} else if (updateMessage.hasUriUpdate()) {
this.receiveURIUpdate(updateMessage.getUriUpdate())
} else {
throw new Error('Received unknown update message')
}
}
receiveOperationsUpdate (operationsUpdateMessage) {
const operations = operationsUpdateMessage.getOperationsList().map(deserializeOperation)
this.integrateOperations(operations)
}
receiveURIUpdate (uriUpdateMessage) {
this.uri = uriUpdateMessage.getUri()
this.delegate.didChangeURI(this.uri)
}
receiveSave () {
this.delegate.save()
}
broadcastOperations (operations) {
const operationsUpdateMessage = new Messages.BufferProxyUpdate.OperationsUpdate()
operationsUpdateMessage.setOperationsList(operations.map(serializeOperation))
const updateMessage = new Messages.BufferProxyUpdate()
updateMessage.setOperationsUpdate(operationsUpdateMessage)
this.broadcastUpdate(updateMessage)
}
integrateOperations (operations) {
const {textUpdates, markerUpdates} = this.document.integrateOperations(operations)
if (this.delegate) this.delegate.updateText(textUpdates)
this.emitter.emit('did-update-markers', markerUpdates)
if (textUpdates.length > 0) {
this.emitter.emit('did-update-text', {remote: true})
}
}
broadcastURIChange (uri) {
const uriUpdateMessage = new Messages.BufferProxyUpdate.URIUpdate()
uriUpdateMessage.setUri(uri)
const updateMessage = new Messages.BufferProxyUpdate()
updateMessage.setUriUpdate(uriUpdateMessage)
this.broadcastUpdate(updateMessage)
}
broadcastUpdate (updateMessage) {
this.router.notify({channelId: `/buffers/${this.id}`, body: updateMessage.serializeBinary()})
}
}