Press n or j to go to the next uncovered block, b, p or k for the previous block.
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 | 156x 156x 156x 156x 156x 156x 156x 156x 156x 454x 454x 454x 6410x 6410x 6410x 6410x 6410x 6410x 375x 375x 375x 6035x 6035x 6025x 6025x 6410x 6410x 6410x 6410x 6035x 6035x 6035x 6035x 6035x 6035x 6035x 6035x 6035x 96870x 96870x 96870x 6035x 817647x 817647x 817647x 795079x 795079x 22568x 6410x 6410x 6410x 256020x 256020x 256020x 256020x 256020x 256020x 99609x 8394x 72319x 575x 49512x 12840x 12771x 99609x 99609x 99609x 99609x 99609x 8394x 8394x 8394x 8394x 8394x 72319x 212898x 72319x 72319x 212898x 212898x 575x 575x 575x 575x 2774x 2774x 1x 1x 2773x 575x 575x 49512x 49512x 49512x 49512x 454x 375338x 375338x 375338x 216889x 12840x 12840x 12840x 12840x 454x 165143x 165143x 165143x 165143x 46079x 12771x 12771x 12771x 12771x 454x 20010x 20010x 20010x 16293x 25638x 16293x | import * as nodes from '../../../nodes'; import {ClockDecoder} from '../../../../json-crdt-patch/codec/clock/ClockDecoder'; import {CrdtReader} from '../../../../json-crdt-patch/util/binary/CrdtReader'; import {type ITimestampStruct, Timestamp} from '../../../../json-crdt-patch/clock'; import {Model, UNDEFINED} from '../../../model/Model'; import {CborDecoderBase} from '@jsonjoy.com/json-pack/lib/cbor/CborDecoderBase'; import {SESSION} from '../../../../json-crdt-patch/constants'; import {CRDT_MAJOR} from './constants'; export class Decoder extends CborDecoderBase<CrdtReader> { protected doc!: Model; protected clockDecoder?: ClockDecoder = undefined; protected time: number = -1; constructor() { super(new CrdtReader()); } public decode(data: Uint8Array, model?: Model): Model { this.clockDecoder = undefined; this.time = -1; const reader = this.reader; reader.reset(data); const isServerTime = reader.peak() & 0b10000000; if (isServerTime) { reader.x++; const time = (this.time = reader.vu57()); if (!model) model = Model.withServerClock(time); } else { this.decodeClockTable(); if (!model) { const clock = this.clockDecoder!.clock; model = Model.withLogicalClock(clock); } } this.doc = model; model.root = new nodes.RootNode(this.doc, this.cRoot().id); this.clockDecoder = undefined; return model; } protected decodeClockTable(): void { const reader = this.reader; const clockTableOffset = reader.u32(); const offset = reader.x; reader.x += clockTableOffset; const length = reader.vu57(); const sessionId = reader.vu57(); const time = reader.vu57(); this.clockDecoder = new ClockDecoder(sessionId, time); for (let i = 1; i < length; i++) { const sid = reader.vu57(); const time = reader.vu57(); this.clockDecoder.pushTuple(sid, time); } reader.x = offset; } protected ts(): ITimestampStruct { const decoderTime = this.time!; const isLogical = decoderTime < 0; if (isLogical) { const [sessionIndex, timeDiff] = this.reader.id(); return this.clockDecoder!.decodeId(sessionIndex, timeDiff); } else { return new Timestamp(SESSION.SERVER, this.reader.vu57()); } } protected cRoot(): nodes.JsonNode { const reader = this.reader; const peek = reader.uint8[reader.x]; return !peek ? UNDEFINED : this.cNode(); } protected cNode(): nodes.JsonNode { const reader = this.reader; const id = this.ts(); const octet = reader.u8(); const major = octet >> 5; const minor = octet & 0b11111; switch (major) { case CRDT_MAJOR.CON: return this.cCon(id, minor); case CRDT_MAJOR.VAL: return this.cVal(id); case CRDT_MAJOR.OBJ: return this.cObj(id, minor !== 0b11111 ? minor : reader.vu57()); case CRDT_MAJOR.VEC: return this.cVec(id, minor !== 0b11111 ? minor : reader.vu57()); case CRDT_MAJOR.STR: return this.cStr(id, minor !== 0b11111 ? minor : reader.vu57()); case CRDT_MAJOR.BIN: return this.cBin(id, minor !== 0b11111 ? minor : reader.vu57()); case CRDT_MAJOR.ARR: return this.cArr(id, minor !== 0b11111 ? minor : reader.vu57()); } throw new Error('UNKNOWN_NODE'); } protected cCon(id: ITimestampStruct, length: number): nodes.ConNode { const doc = this.doc; const data = !length ? this.val() : this.ts(); const node = new nodes.ConNode(id, data); doc.index.set(id, node); return node; } protected cVal(id: ITimestampStruct): nodes.ValNode { const child = this.cNode(); const doc = this.doc; const node = new nodes.ValNode(doc, id, child.id); doc.index.set(id, node); return node; } protected cObj(id: ITimestampStruct, length: number): nodes.ObjNode { const obj = new nodes.ObjNode(this.doc, id); for (let i = 0; i < length; i++) this.cObjChunk(obj); this.doc.index.set(id, obj); return obj; } protected cObjChunk(obj: nodes.ObjNode): void { const key: string = this.key(); obj.keys.set(key, this.cNode().id); } protected cVec(id: ITimestampStruct, length: number): nodes.VecNode { const reader = this.reader; const obj = new nodes.VecNode(this.doc, id); const elements = obj.elements; for (let i = 0; i < length; i++) { const octet = reader.peak(); if (!octet) { reader.x++; elements.push(undefined); } else elements.push(this.cNode().id); } this.doc.index.set(id, obj); return obj; } protected cStr(id: ITimestampStruct, length: number): nodes.StrNode { const node = new nodes.StrNode(id); if (length) node.ingest(length, this.cStrChunk); this.doc.index.set(id, node); return node; } private cStrChunk = (): nodes.StrChunk => { const id = this.ts(); const val = this.val(); if (typeof val === 'string') return new nodes.StrChunk(id, val.length, val); return new nodes.StrChunk(id, ~~(<number>val), ''); }; protected cBin(id: ITimestampStruct, length: number): nodes.BinNode { const node = new nodes.BinNode(id); if (length) node.ingest(length, this.cBinChunk); this.doc.index.set(id, node); return node; } private cBinChunk = (): nodes.BinChunk => { const id = this.ts(); const reader = this.reader; const [deleted, length] = reader.b1vu56(); if (deleted) return new nodes.BinChunk(id, length, undefined); return new nodes.BinChunk(id, length, reader.buf(length)); }; protected cArr(id: ITimestampStruct, length: number): nodes.ArrNode { const obj = new nodes.ArrNode(this.doc, id); if (length) obj.ingest(length, this.cArrChunk); this.doc.index.set(id, obj); return obj; } private readonly cArrChunk = (): nodes.ArrChunk => { const id = this.ts(); const [deleted, length] = this.reader.b1vu56(); if (deleted) return new nodes.ArrChunk(id, length, undefined); const ids: ITimestampStruct[] = []; for (let i = 0; i < length; i++) ids.push(this.cNode().id); return new nodes.ArrChunk(id, length, ids); }; } |