-
Notifications
You must be signed in to change notification settings - Fork 2
/
ot.go
379 lines (353 loc) · 8.22 KB
/
ot.go
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
package ot
import "errors"
// Example:
// ln := len(str)
// opLn := 0
// for _, op := range ops {
// switch o := op.(type) {
// case Retain:
// opLn += int(o)
// case Delete:
// opLn += len(o)
// case Insert:
// opLn += 0
// }
// }
// if ln != opLn {
// return str, errors.New("operations could not be applied to input")
// }
// Basic Operation
type (
Retain int
Delete int
Insert string
)
type Applier interface {
Apply(cursor int, str []rune) (int, []rune)
baseLength() int // 操作之前字符串的长度
targetLength() int // 操作完成字符串的长度
}
func (op Retain) Apply(cursor int, str []rune) (int, []rune) {
return cursor + int(op), str
}
func (op Retain) baseLength() int {
return int(op)
}
func (op Retain) targetLength() int {
return int(op)
}
func (op Delete) Apply(cursor int, str []rune) (int, []rune) {
var res []rune
res = append(res, str[:cursor]...)
res = append(res, str[cursor-int(op):]...)
return cursor, res
}
func (op Delete) baseLength() int {
return -int(op)
}
func (op Delete) targetLength() int {
return 0
}
func (op Insert) Apply(cursor int, str []rune) (int, []rune) {
var res []rune
res = append(res, str[:cursor]...)
res = append(res, []rune(op)...)
res = append(res, str[cursor:]...)
return cursor + len(op), res
}
func (op Insert) baseLength() int {
return 0
}
func (op Insert) targetLength() int {
return len(op)
}
// Actions
func Apply(str string, ops ...Applier) (string, error) {
var (
cursor int
result = []rune(str)
)
if len(result) != baseLength(ops) {
return "", errors.New("can't apply operations to string")
}
for _, op := range ops {
cursor, result = op.Apply(cursor, result)
}
return string(result), nil
}
// Invert operation
// eg: Insert => Delete
func Invert(str string, ops []Applier) []Applier {
buf := []rune(str)
cursor := 0
var inverse []Applier
for _, op := range ops {
switch o := op.(type) {
case Retain:
inverse = append(inverse, o)
cursor += int(o)
case Delete:
inverse = append(inverse, Insert(string(buf[cursor:cursor+(-int(o))])))
cursor -= int(o)
case Insert:
inverse = append(inverse, Delete(-len(o)))
}
}
return inverse
}
// Compose merges two consecutive operation lists into one
// such that: Apply(Apply(S, listA...), listB...)) == Apply(S, Compose(listA, listB)...)
func Compose(opListA, opListB []Applier) ([]Applier, error) {
if targetLength(opListA) != baseLength(opListB) {
return nil, errors.New("the base length of the second operation must be the target length of the first operation")
}
var (
composed []Applier // 合并后的operation
opA = opListA[0]
opB = opListB[0]
aIndex, bIndex = 1, 1
)
opListA = append(opListA, nil)
opListB = append(opListB, nil)
for {
if opA == nil && opB == nil {
break
}
if op, ok := opA.(Delete); ok {
composed = append(composed, op)
opA = opListA[aIndex]
aIndex++
continue
}
if op, ok := opB.(Insert); ok {
composed = append(composed, op)
opB = opListB[bIndex]
bIndex++
continue
}
if len(opListA) == 1 {
return nil, errors.New("cannot compose: the first list is too short")
}
if len(opListB) == 1 {
return nil, errors.New("cannot compose: the second list is too long")
}
switch a := opA.(type) {
case Retain:
switch b := opB.(type) {
case Retain:
if a > b {
composed = append(composed, Retain(b))
opA = Retain(a - b)
opB = opListB[bIndex]
bIndex++
} else if a < b {
composed = append(composed, Retain(a))
opB = Retain(b - a)
opA = opListA[aIndex]
aIndex++
} else { // a == b
composed = append(composed, Retain(a))
opA = opListA[aIndex]
aIndex++
opB = opListB[bIndex]
bIndex++
}
case Delete:
if int(a) > -int(b) {
composed = append(composed, Delete(b))
opA = Retain(int(a) + int(b))
opB = opListB[bIndex]
bIndex++
} else if int(a) < -int(b) {
composed = append(composed, Delete(a))
opB = Retain(int(b) + int(a))
opA = opListA[aIndex]
aIndex++
} else {
composed = append(composed, Delete(b))
opA = opListA[aIndex]
aIndex++
opB = opListB[bIndex]
bIndex++
}
}
case Insert:
switch b := opB.(type) {
case Retain:
if len(a) > int(b) {
composed = append(composed, Insert(a[:b]))
opA = Insert(a[:b])
opB = opListB[bIndex]
bIndex++
} else if len(a) < int(b) {
composed = append(composed, Insert(a))
opB = Retain(int(b) - len(a))
opA = opListA[aIndex]
aIndex++
} else { // a == b
composed = append(composed, Insert(a))
opA = opListA[aIndex]
aIndex++
opB = opListB[bIndex]
bIndex++
}
case Delete:
if len(a) > -int(b) {
opA = Insert(a[:-b])
opB = opListB[bIndex]
bIndex++
} else if len(a) < -int(b) {
opB = Delete(int(b) + len(a))
opA = opListA[aIndex]
aIndex++
} else {
opA = opListA[aIndex]
aIndex++
opB = opListB[bIndex]
bIndex++
}
}
}
}
return composed, nil
}
// Transform A => A'
func Transform(opListA, opListB []Applier) ([]Applier, []Applier, error) {
if baseLength(opListA) != baseLength(opListB) {
return nil, nil, errors.New("the base lengths of the operations must be equal")
}
opListA = append(opListA, nil)
opListB = append(opListB, nil)
var (
opAPrime []Applier
opBPrime []Applier
opA = opListA[0]
opB = opListB[0]
aIndex, bIndex = 1, 1
)
for {
if opA == nil && opB == nil {
break
}
if op, ok := opA.(Insert); ok {
opAPrime = append(opAPrime, op) // A insert
opBPrime = append(opBPrime, Retain(len([]rune(op)))) // 那么 B retain
opA = opListA[aIndex]
aIndex++
continue
}
if op, ok := opB.(Insert); ok {
opAPrime = append(opAPrime, Retain(len([]rune(op)))) // B insert
opBPrime = append(opBPrime, opB) // 那么 A retain
opB = opListB[bIndex]
bIndex++
continue
}
if len(opListA) == 1 {
return nil, nil, errors.New("cannot compose: the first list is too short")
}
if len(opListB) == 1 {
return nil, nil, errors.New("cannot compose: the second list is too long")
}
switch a := opA.(type) {
case Retain:
switch b := opB.(type) {
case Retain:
var minlen int
if a > b {
minlen = int(b)
opA = Retain(a - b)
opB = opListB[bIndex]
bIndex++
} else if a < b {
minlen = int(a)
opB = Retain(b - a)
opA = opListA[aIndex]
aIndex++
} else { // a == b
minlen = int(b)
opA = opListA[aIndex]
aIndex++
opB = opListB[bIndex]
bIndex++
}
opAPrime = append(opAPrime, Retain(minlen))
opBPrime = append(opBPrime, Retain(minlen))
case Delete:
var minlen int
if int(a) > -int(b) {
minlen = -int(b)
opA = Retain(int(a) + int(b))
opB = opListB[bIndex]
bIndex++
} else if int(a) < -int(b) {
minlen = int(a)
opB = Delete(int(b) + int(a))
opA = opListA[aIndex]
aIndex++
} else { // a == b
minlen = int(a)
opA = opListA[aIndex]
aIndex++
opB = opListB[bIndex]
bIndex++
}
opBPrime = append(opBPrime, Retain(minlen))
}
case Delete:
switch b := opB.(type) {
case Delete:
if -a > -b {
opA = Delete(a - b)
opB = opListB[bIndex]
bIndex++
} else if -a < -b {
opB = Delete(b - a)
opA = opListA[aIndex]
aIndex++
} else { // a == b
opA = opListA[aIndex]
aIndex++
opB = opListB[bIndex]
aIndex++
}
case Retain:
var minlen int
if int(a) > -int(b) {
minlen = -int(b)
opA = Retain(int(a) + int(b))
opB = opListB[bIndex]
bIndex++
} else if int(a) < -int(b) {
minlen = int(a)
opB = Delete(int(b) + int(a))
opA = opListA[aIndex]
aIndex++
} else { // a == b
minlen = int(a)
opA = opListA[aIndex]
aIndex++
opB = opListB[bIndex]
bIndex++
}
opBPrime = append(opBPrime, Retain(minlen))
}
}
}
return opAPrime, opBPrime, nil
}
// priavate helper functions
func baseLength(ops []Applier) int {
l := 0
for _, op := range ops {
l += op.baseLength()
}
return l
}
func targetLength(ops []Applier) int {
l := 0
for _, op := range ops {
l += op.targetLength()
}
return l
}