-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathframe_append.go
464 lines (405 loc) · 10.9 KB
/
frame_append.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
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
package ron
import (
"fmt"
"math/bits"
"strconv"
)
const (
FORMAT_UNZIP = 1 << iota
FORMAT_GRID
FORMAT_SPACE
FORMAT_HEADER_SPACE
FORMAT_NOSKIP
FORMAT_REDEFAULT
FORMAT_OP_LINES
FORMAT_FRAME_LINES
FORMAT_INDENT
)
const FRAME_FORMAT_CARPET = FORMAT_GRID | FORMAT_SPACE | FORMAT_OP_LINES | FORMAT_NOSKIP | FORMAT_UNZIP
const FRAME_FORMAT_TABLE = FORMAT_GRID | FORMAT_SPACE | FORMAT_OP_LINES
const FRAME_FORMAT_LIST = FORMAT_OP_LINES | FORMAT_INDENT
const FRAME_FORMAT_LINE = FORMAT_FRAME_LINES | FORMAT_HEADER_SPACE
//FORMAT_CONDENSED = 1 << iota
//FORMAT_OP_LINES
//FORMAT_FRAMES
//FORMAT_TABLE
const SPACES22 = " "
const SPACES88 = SPACES22 + SPACES22 + SPACES22 + SPACES22
const ZEROS10 = "0000000000"
// FormatInt outputs a 60-bit "Base64x64" int into the output slice
func FormatInt(output []byte, value uint64) []byte {
tail := bits.TrailingZeros64(value)
if tail > 54 {
tail = 54
}
tail -= tail % 6
for i := 54; i >= tail; i -= 6 {
output = append(output, BASE64[(value>>uint(i))&63])
}
return output
}
func FormatZipInt(output []byte, value, context uint64) []byte {
prefix := Int60Prefix(value, context)
if prefix == 60 {
return output
}
if prefix >= 4*6 {
prefix -= prefix % 6
value = (value << uint(prefix)) & INT60_FULL
pchar := PREFIX_PUNCT[uint(prefix)/6-4]
output = append(output, pchar)
if value != 0 {
output = FormatInt(output, value)
}
} else {
output = FormatInt(output, value)
}
return output
}
func Int60Prefix(a, b uint64) int {
return bits.LeadingZeros64((a^b)&INT60_FULL) - 4
}
func FormatUUID(buf []byte, uuid UUID) []byte {
variety := uuid.Variety()
if variety != 0 {
buf = append(buf, BASE_PUNCT[variety], '/')
}
buf = FormatInt(buf, uuid.Value())
if uuid.Origin() != UUID_NAME_UPPER_BITS {
buf = append(buf, uuid.Sign())
buf = FormatInt(buf, uuid.Replica())
}
return buf
}
func FormatZipUUID(buf []byte, uuid, context UUID) []byte {
if uuid.Variety() != context.Variety() {
// don't want to optimize this; a rare case anyway
return FormatUUID(buf, uuid)
}
start := len(buf)
buf = FormatZipInt(buf, uuid.Value(), context.Value())
if uuid.IsTranscendentName() {
return buf
}
buf = append(buf, uuid.Sign())
at := len(buf)
buf = FormatZipInt(buf, uuid.Origin(), context.Origin())
// sometimes, we may skip UUID separator (+-%$)
if uuid.Scheme() == context.Scheme() && at > start+1 {
if len(buf) > at && !IsBase64(buf[at]) {
copy(buf[at-1:], buf[at:])
buf = buf[:len(buf)-1]
} else if len(buf) == at && !IsBase64(buf[start]) {
buf = buf[:len(buf)-1]
}
}
return buf
}
func IsBase64(b byte) bool {
bi := uint(b)
return ((IS_BASE[bi>>6] >> (bi & 63)) & 1) != 0
}
func sharedPrefix(uuid, context UUID) (ret int) {
vp := bits.LeadingZeros64(uuid.Value() ^ context.Value())
vp -= vp % 6
op := bits.LeadingZeros64((uuid.Origin() ^ context.Origin()) & INT60_FULL)
op -= op % 6
ret = vp + op
if uuid.Scheme() != context.Scheme() {
ret--
}
return
}
func (frame *Frame) appendUUID(uuid UUID, context UUID) {
if 0 != frame.Serializer.Format&FORMAT_UNZIP {
frame.Body = FormatUUID(frame.Body, uuid)
} else if uuid != context {
frame.Body = FormatZipUUID(frame.Body, uuid, context)
}
}
var zeros []byte = []byte("0000000000")
func (frame *Frame) appendFloat(a Atom) {
frame.Body = append(
frame.Body,
strconv.FormatFloat(a.Float(), 'e', -1, 64)...,
)
}
func (frame *Frame) appendSpec(other Frame) {
start := len(frame.Body)
flags := frame.Serializer.Format
skips := 0
spec := other.atoms[:4]
context := frame.atoms[:4]
do_grid := flags&FORMAT_GRID != 0
do_space := flags&FORMAT_SPACE != 0
do_noskip := flags&FORMAT_NOSKIP != 0
do_redef := flags&FORMAT_REDEFAULT != 0
k := 4
if spec[SPEC_TYPE] == Atom(COMMENT_UUID) {
k = 1
}
for t := 0; t < k; t++ {
if do_grid {
rest := t*22 - (len(frame.Body) - start)
frame.Body = append(frame.Body, SPACES88[:rest]...)
} else if do_space && t > 0 {
frame.Body = append(frame.Body, ' ')
}
if !do_noskip && spec[t] == context[t] && (other.term == TERM_REDUCED || spec[t] == ZERO_UUID_ATOM) {
skips++
continue
}
frame.Body = append(frame.Body, SPEC_PUNCT[uint(t)])
if t > 0 && do_redef {
ctxAt := 0
ctxUUID := UUID(spec[t-1])
ctxPL := sharedPrefix(UUID(spec[t]), ctxUUID)
for i := 1; i < 4; i++ {
pl := sharedPrefix(UUID(spec[t]), UUID(context[i]))
if pl > ctxPL {
ctxPL = pl
ctxUUID = UUID(context[i])
ctxAt = i
}
}
if ctxAt != t {
frame.Body = append(frame.Body, REDEF_PUNCT[uint(ctxAt)])
}
frame.appendUUID(UUID(spec[t]), ctxUUID)
} else {
frame.appendUUID(UUID(spec[t]), UUID(context[t]))
}
}
if skips == 4 {
frame.Body = append(frame.Body, '@')
}
}
func (frame *Frame) appendAtoms(other Frame) {
for i := 4; i < len(other.atoms); i++ {
a := other.atoms[i]
switch a.Type() {
case ATOM_INT:
{
frame.Body = append(frame.Body, ATOM_INT_SEP)
s := fmt.Sprint(a.Integer())
frame.Body = append(frame.Body, []byte(s)...)
}
case ATOM_STRING:
{
frame.Body = append(frame.Body, ATOM_STRING_SEP)
frame.Body = append(frame.Body, other.EscString(i-4)...)
frame.Body = append(frame.Body, ATOM_STRING_SEP)
}
case ATOM_FLOAT:
{
frame.Body = append(frame.Body, ATOM_FLOAT_SEP)
frame.appendFloat(a)
}
case ATOM_UUID:
{
frame.Body = append(frame.Body, ATOM_UUID_SEP)
frame.appendUUID(a.UUID(), ZERO_UUID) // TODO defaults
}
}
}
}
func (frame *Frame) Append(other Frame) {
flags := frame.Serializer.Format
start := len(frame.Body)
if len(frame.Body) > 0 && (0 != flags&FORMAT_OP_LINES || (0 != flags&FORMAT_FRAME_LINES && !other.IsFramed())) {
frame.Body = append(frame.Body, '\n')
if 0 != flags&FORMAT_INDENT && !other.IsHeader() {
frame.Body = append(frame.Body, " "...)
}
} else if 0 != flags&FORMAT_HEADER_SPACE && frame.IsHeader() {
frame.Body = append(frame.Body, ' ')
}
if len(frame.atoms) == 0 {
frame.atoms = frame._atoms[:4]
}
frame.appendSpec(other)
if 0 != flags&FORMAT_GRID {
rest := 4*22 - (len(frame.Body) - start)
frame.Body = append(frame.Body, SPACES88[:rest]...)
}
frame.appendAtoms(other)
defaultTerm := TERM_REDUCED
if frame.term == TERM_RAW {
defaultTerm = TERM_RAW
}
if other.term != defaultTerm || other.Count() == 0 {
frame.Body = append(frame.Body, TERM_PUNCT[other.term])
}
if len(other.atoms) > len(frame.atoms) {
copy(frame.atoms, other.atoms[:len(frame.atoms)])
frame.atoms = append(frame.atoms, other.atoms[len(frame.atoms)])
} else {
copy(frame.atoms, other.atoms)
frame.atoms = frame.atoms[:len(other.atoms)]
}
frame.term = other.term
frame.position++
}
func (frame *Frame) AppendReducedRef(ref UUID, other Frame) {
tmpRef, tmpTerm := other.atoms[SPEC_REF], other.term
other.atoms[SPEC_REF] = Atom(ref)
other.term = TERM_REDUCED
frame.Append(other)
other.atoms[SPEC_REF], other.term = tmpRef, tmpTerm
}
func (frame *Frame) AppendReduced(other Frame) {
tmpTerm := other.term
other.term = TERM_REDUCED
frame.Append(other)
other.term = tmpTerm
}
func (frame *Frame) AppendEmpty(spec Spec, term int) {
atoms := make([]Atom, 0, 6)
atoms = append(atoms, spec[0:4]...)
tmp := Frame{atoms: atoms, term: term}
frame.Append(tmp)
}
func (frame *Frame) AppendEmptyReducedOp(spec Spec) {
frame.AppendEmpty(spec, TERM_REDUCED)
}
func NewOpFrame(t, o, e, r UUID, term int) Frame {
frame := NewFrame()
frame.AppendEmpty(NewSpec(t, o, e, r), term)
return frame.Rewind()
}
func NewRawOp(t, o, e, r UUID) Frame {
return NewOpFrame(t, o, e, r, TERM_RAW)
}
func NewStateHeader(t, o, e, r UUID) Frame {
return NewOpFrame(t, o, e, r, TERM_HEADER)
}
func (atoms Atoms) Append(newAtoms ...Atom) (a Atoms) {
a = atoms
for _, n := range newAtoms {
a = append(a, n)
}
return
}
func (u UUID) Atom() Atom {
return Atom(u)
}
func (atoms Atoms) AppendUUID(uuids ...UUID) (a Atoms) {
a = atoms
for _, u := range uuids {
a = append(a, Atom(u))
}
return
}
func (frame *Frame) AppendOp(term int, atoms Atoms) {
frame.AppendSpecValuesTerm(Spec(atoms[:4]), atoms[4:], term)
}
func (batch Batch) AppendOpFrame(term int, atoms []Atom) Batch {
f := NewFrame()
f.AppendOp(term, atoms)
return append(batch, f)
}
func NewOp(term int, rdt, obj, event, ref UUID, values Atoms) Frame {
f := NewFrame()
f.AppendSpecValuesTerm(NewSpec(rdt, obj, event, ref), values, term)
return f
}
func (frame *Frame) AppendAmended(spec Spec, values Frame, term int) {
tmp := values.Clone()
tmp.term = term
copy(tmp.atoms, spec)
frame.Append(tmp)
}
func (frame *Frame) AppendSpecValT(spec Spec, value Atom, term int) {
var atoms [5]Atom
copy(atoms[:], spec)
atoms[4] = value
tmp := Frame{atoms: atoms[:], term: term}
frame.Append(tmp)
}
func (frame *Frame) AppendSpecValuesTerm(spec Spec, values Atoms, term int) {
atoms := make([]Atom, 0, len(values)+4+1)
atoms = append(atoms, spec...)
atoms = append(atoms, values...)
tmp := Frame{atoms: atoms[:], term: term}
frame.Append(tmp)
}
func (frame *Frame) AppendReducedOpInt(spec Spec, value int64) {
frame.AppendSpecValT(spec, NewIntegerAtom(value), TERM_REDUCED)
}
func (frame *Frame) AppendReducedOpUUID(spec Spec, value UUID) {
frame.AppendSpecValT(spec, Atom(value), TERM_REDUCED)
}
func (frame *Frame) AppendStateHeader(spec Spec) {
frame.AppendEmpty(spec, TERM_HEADER)
}
func (frame *Frame) AppendStateHeaderValues(rdt, obj, ev, ref UUID, values Atoms) {
spec := NewSpec(rdt, obj, ev, ref)
frame.AppendSpecValuesTerm(spec, values, TERM_HEADER)
}
func (frame *Frame) AppendQueryHeader(spec Spec) {
frame.AppendEmpty(spec, TERM_QUERY)
}
//func (frame *Frame) AppendRaw (spec Spec, value Atom) {
// frame.AppendSpecValT(spec, value, TERM_RAW)
//}
func (frame Frame) Atoms() []Atom {
return frame.atoms[:]
}
func (frame *Frame) AppendAll(i Frame) {
if i.IsEmpty() {
return
}
for !i.EOF() {
frame.Append(i)
i.Next()
}
}
func (frame *Frame) AppendFrame(second Frame) {
frame.AppendAll(second)
}
func (frame *Frame) Close() Frame {
return ParseFrame(frame.Body)
}
func (frame *Frame) AddReducedOp(event, ref UUID, atoms ...Atom) {
tmp := Frame{term: TERM_REDUCED}
a := tmp._atoms[:0]
a = append(a, frame.atoms[:2]...)
a = append(a, Atom(event), Atom(ref))
a = append(a, atoms...)
tmp.atoms = a
frame.Append(tmp)
}
func MakeQueryFrame(headerSpec Spec) Frame {
cur := MakeFrame(128)
cur.AppendQueryHeader(headerSpec)
return cur.Close()
}
// overall, serialized batches are used in rare cases
// (delivery fails, cross-key transactions)
// hence, we don't care about performance that much
// still, may consider explicit-length formats at some point
func (frame Frame) Split() Batch {
ret := Batch{}
for !frame.EOF() {
next := NewFrame()
next.Append(frame)
frame.Next()
for !frame.EOF() && frame.Term() == TERM_REDUCED {
next.Append(frame)
frame.Next()
}
ret = append(ret, next.Rewind())
}
return ret
}
func (batch Batch) Join() Frame {
size := 0
for _, f := range batch {
size += len(f.Body)
}
ret := MakeFrame(size)
for _, f := range batch {
ret.AppendFrame(f)
}
return ret.Rewind()
}