-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjs_marshal.c
480 lines (385 loc) · 10.5 KB
/
js_marshal.c
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
#include "js.h"
#include "js_db.h"
void *marshalAddr(value_t name) {
if (name.marshaled)
if (name.rawDoc)
return js_dbaddr(name, NULL);
else
return (uint8_t *)(name.rawDoc) + name.offset;
else
return name.addr;
}
uint32_t marshalString (uint8_t *base, uint32_t offset, value_t *where, value_t what) {
string_t *wherestr = (string_t *)(base + offset);
string_t *whatstr = marshalAddr(what);
wherestr->len = whatstr->len;
where->type = what.type;
where->offset = offset;
where->marshaled = 1;
where->rawDoc = NULL;
memcpy(wherestr->val, whatstr->val, whatstr->len);
return whatstr->len + sizeof(string_t) + 1;
}
// marshal a document into the given document storage
void marshalDoc(value_t doc, uint8_t *base, uint32_t offset, uint32_t docSize, value_t *val, bool fullClone) {
uint32_t start = offset, docMin;
value_t obj[64], *loc;
uint32_t idx[64];
void *item[64];
int depth;
bool go;
if (doc.marshaled)
if (doc.rawDoc->docType == VerMvcc)
docMin = sizeof(Doc) + sizeof(JsDoc);
else
docMin = sizeof(struct Document) + sizeof(JsDoc);
obj[0] = doc;
idx[0] = 0;
depth = 1;
idx[depth] = 0;
if (!doc.marshaled || fullClone)
while (depth > 0) {
value_t *top = &obj[depth - 1];
if (offset - start > docSize) {
fprintf(stderr, "marshal_doc overflow\n");
exit(1);
}
// find next value in parent object or array
if (top->type == vt_array)
if (top->marshaled) {
dbarray_t *dbaval = js_dbaddr(*top, NULL);
value_t *values = dbaval->valueArray;
uint32_t cnt = dbaval->cnt;
// prepare to store array_t item itself
if (!idx[depth]) {
item[depth] = base + offset;
val->bits = vt_array;
val->marshaled = 1;
val->offset = offset;
val->rawDoc = NULL;
offset += sizeof(dbarray_t) + sizeof(value_t) * cnt;
}
// advance to next array index,
// or pop array
if (idx[depth] < cnt) {
dbarray_t *array = item[depth];
val = &array->valueArray[idx[depth]];
obj[depth] = values[idx[depth]++];
} else {
depth -= 1;
continue;
}
} else {
value_t *values = top->aval->valuePtr;
uint32_t cnt = vec_cnt(values);
// prepare to store array_t item itself
if (!idx[depth]) {
item[depth] = base + offset;
val->bits = vt_array;
val->marshaled = 1;
val->offset = offset;
val->rawDoc = NULL;
offset += sizeof(dbarray_t) + sizeof(value_t) * cnt;
}
// advance to next array index,
// or pop array
if (idx[depth] < cnt) {
dbarray_t *array = item[depth];
val = &array->valueArray[idx[depth]];
obj[depth] = values[idx[depth]++];
} else {
depth -= 1;
continue;
}
}
else if (top->type == vt_object)
if (top->marshaled) {
dbobject_t *dbodest = js_dbaddr(*top, NULL);
pair_t *pairs = dbodest->pairs;
uint32_t cnt = dbodest->cnt;
uint32_t hashEnt, hashMod = 3 * cnt / 2;
string_t *namestr;
uint32_t hash;
value_t name;
if (cnt < 255)
hashEnt = sizeof(uint8_t);
else if (cnt < 65535)
hashEnt = sizeof(uint16_t);
else
hashEnt = sizeof(uint32_t);
// store marshaled_t structure
if (!idx[depth]) {
item[depth] = base + offset;
val->bits = vt_object;
val->offset = offset;
val->marshaled = 1;
val->rawDoc = NULL;
offset += sizeof(dbobject_t) + cnt * sizeof(pair_t) + hashMod * hashEnt;
}
// advance to next object item
// or pop object
if (idx[depth] < cnt) {
dbobject_t *object = item[depth];
void *hashTbl = object->pairs + cnt;
object->cnt++;
name = pairs[idx[depth]].name;
namestr = marshalAddr(name);
hash = hashStr(namestr->val, namestr->len) % hashMod;
while (hashEntry(hashTbl, hashEnt, hash))
if (++hash == hashMod)
hash = 0;
hashStore(hashTbl, hashEnt, hash, idx[depth] + 1);
val = &object->pairs[idx[depth]].value;
loc = &object->pairs[idx[depth]].name;
obj[depth] = pairs[idx[depth]++].value;
// marshal the name string
if ((name.marshaled && (docMin < name.offset)) || !name.marshaled || fullClone)
offset += marshalString (base, offset, loc, name);
else {
*loc = name;
loc->rawDoc = NULL;
}
} else {
depth -= 1;
continue;
}
} else {
pair_t *pairs = top->oval->pairsPtr;
uint32_t cnt = vec_cnt(pairs);
uint32_t hashEnt, hashMod = 3 * cnt / 2;
string_t *namestr;
uint32_t hash;
value_t name;
if (cnt < 255)
hashEnt = sizeof(uint8_t);
else if (cnt < 65535)
hashEnt = sizeof(uint16_t);
else
hashEnt = sizeof(uint32_t);
// store marshaled_t structure
if (!idx[depth]) {
item[depth] = base + offset;
val->bits = vt_object;
val->offset = offset;
val->marshaled = 1;
val->rawDoc = NULL;
offset += sizeof(dbobject_t) + cnt * sizeof(pair_t) + hashMod * hashEnt;
}
// advance to next object item
// or pop object
if (idx[depth] < cnt) {
dbobject_t *object = item[depth];
void *hashTbl = object->pairs + cnt;
object->cnt = cnt;
name = pairs[idx[depth]].name;
namestr = marshalAddr(name);
hash = hashStr(namestr->val, namestr->len) % hashMod;
while (hashEntry(hashTbl, hashEnt, hash))
if (++hash == hashMod)
hash = 0;
hashStore(hashTbl, hashEnt, hash, idx[depth] + 1);
val = &object->pairs[idx[depth]].value;
loc = &object->pairs[idx[depth]].name;
obj[depth] = pairs[idx[depth]++].value;
// marshal the name string
if (name.marshaled && docMin < name.offset ||
!name.marshaled || fullClone)
offset += marshalString (base, offset, loc, name);
else {
*loc = name;
loc->rawDoc = NULL;
}
} else {
depth -= 1;
continue;
}
}
else
depth -= 1;
do switch ((go = false, obj[depth].type)) {
case vt_key:
case vt_md5:
case vt_uuid:
case vt_string: { // string types
if (obj[depth].marshaled && docMin < obj[depth].offset ||
!obj[depth].marshaled || fullClone)
offset += marshalString(base, offset, val, obj[depth]);
else {
*val = obj[depth];
val->rawDoc = NULL;
}
break;
}
case vt_hndl:
case vt_txnId:
case vt_docId:
case vt_bool:
case vt_date:
case vt_dbl:
case vt_int: // immediate types
default:
*val = obj[depth];
break;
case vt_document:
obj[depth] = getDocObject(obj[depth]);
go = true;
continue;
case vt_array:
case vt_object:
if (depth > 63) {
fprintf(stderr, "marshal_doc depth overflow\n");
exit(1);
}
if ((obj[depth].marshaled && docMin < obj[depth].offset) ||
!obj[depth].marshaled || fullClone)
idx[++depth] = 0;
else {
*val = obj[depth];
val->rawDoc = NULL;
}
break;
}
while (go);
}
}
// calculate marshaled size
uint32_t calcSize (value_t doc, bool fullClone) {
uint32_t docSize = 0, docMin;
uint32_t idx[1024];
value_t obj[1024];
int depth;
bool go;
if (doc.marshaled)
if (doc.rawDoc->docType == VerMvcc)
docMin = sizeof(Ver) + sizeof(JsDoc);
else
docMin = sizeof(struct Document) + sizeof(JsDoc);
obj[0] = doc;
idx[0] = 0;
depth = 1;
idx[depth] = 0;
if (!doc.marshaled || fullClone)
while (depth > 0) {
value_t *top = &obj[depth - 1];
// find next value in parent object or array
if (top->type == vt_array)
if (top->marshaled) {
dbarray_t *dbaval = js_dbaddr(*top, NULL);
value_t *values = dbaval->valueArray;
uint32_t cnt = dbaval->cnt;
// structure size
if (!idx[depth])
docSize += sizeof(dbarray_t) + cnt * sizeof(value_t);
// next element size
if (idx[depth] < cnt) {
obj[depth] = values[idx[depth]++];
} else {
depth -= 1;
continue;
}
} else {
value_t *values = top->aval->valuePtr;
uint32_t cnt = vec_cnt(values);
// structure size
if (!idx[depth])
docSize += sizeof(dbarray_t) + cnt * sizeof(value_t);
// next element size
if (idx[depth] < cnt) {
obj[depth] = values[idx[depth]++];
} else {
depth -= 1;
continue;
}
} else if (top->type == vt_object)
if (top->marshaled) {
dbobject_t *dboval = js_dbaddr(*top, NULL);
pair_t *pairs = dboval->pairs;
uint32_t cnt = dboval->cnt;
uint32_t hashEnt, hashMod = 3 * cnt / 2;
if (cnt < 255)
hashEnt = sizeof(uint8_t);
else if (cnt < 65535)
hashEnt = sizeof(uint16_t);
else
hashEnt = sizeof(uint32_t);
// structure size
if (!idx[depth])
docSize += sizeof(dbobject_t) + cnt * sizeof(pair_t) + hashMod * hashEnt;
// add next pair
if (idx[depth] < cnt) {
pair_t *pair = &pairs[idx[depth]++];
value_t name = pair->name;
if ((name.marshaled && docMin < name.offset) ||
!name.marshaled || fullClone) {
string_t *str = marshalAddr(name);
docSize += str->len + sizeof(string_t) + 1;
}
obj[depth] = pair->value;
} else {
depth -= 1;
continue;
}
} else {
pair_t *pairs = top->oval->pairsPtr;
uint32_t cnt = vec_cnt(pairs);
uint32_t hashEnt, hashMod = 3 * cnt / 2;
if (cnt < 255)
hashEnt = sizeof(uint8_t);
else if (cnt < 65535)
hashEnt = sizeof(uint16_t);
else
hashEnt = sizeof(uint32_t);
// structure size
if (!idx[depth])
docSize += sizeof(dbobject_t) + cnt * sizeof(pair_t) + hashMod * hashEnt;
// add next pair
if (idx[depth] < cnt) {
pair_t *pair = &pairs[idx[depth]++];
value_t name = pair->name;
if ((name.marshaled && docMin < name.offset) ||
!name.marshaled || fullClone) {
string_t *str = js_dbaddr(name, NULL);
docSize += str->len + sizeof(string_t) + 1;
}
obj[depth] = pair->value;
} else {
depth -= 1;
continue;
}
}
else
depth -= 1;
do switch ((go = false, obj[depth].type)) {
case vt_md5:
case vt_uuid:
case vt_string: { // string types
if ((obj[depth].marshaled && docMin < obj[depth].offset) ||
!obj[depth].marshaled || fullClone) {
string_t *str = marshalAddr(obj[depth]);
docSize += str->len + sizeof(string_t) + 1;
}
break;
}
case vt_document:
obj[depth] = getDocObject(obj[depth]);
go = true;
continue;
case vt_array:
case vt_object:
if ((obj[depth].marshaled && docMin < obj[depth].offset) || !obj[depth].marshaled || fullClone)
idx[++depth] = 0;
break;
case vt_hndl:
case vt_txnId:
case vt_docId:
case vt_bool:
case vt_date:
case vt_dbl:
case vt_int: // immediate values
default:
break;
}
while (go);
}
return docSize;
}