msgpackr 1.11.13 → 1.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index-no-eval.cjs +15 -2
- package/dist/index-no-eval.cjs.map +1 -1
- package/dist/index-no-eval.min.js +1 -1
- package/dist/index-no-eval.min.js.map +1 -1
- package/dist/index.js +15 -2
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist/node.cjs +15 -2
- package/dist/node.cjs.map +1 -1
- package/dist/test.js +109 -2
- package/dist/test.js.map +1 -1
- package/pack.js +15 -2
- package/package.json +1 -1
package/pack.js
CHANGED
|
@@ -123,7 +123,13 @@ export class Packr extends Unpackr {
|
|
|
123
123
|
hasSharedUpdate = false
|
|
124
124
|
let encodingError;
|
|
125
125
|
try {
|
|
126
|
-
|
|
126
|
+
// readOnlyStructures: skip the random-access struct write path so NO new struct is
|
|
127
|
+
// minted. randomAccessStructure stays true (the struct READ path and the struct-safe
|
|
128
|
+
// integer boundary are preserved, so existing struct data still decodes), but objects
|
|
129
|
+
// fall through to the normal pack()->writeObject->writeRecord path and are written as
|
|
130
|
+
// classic shared-structure records (byte range 0x40-0x7f, disjoint from struct headers
|
|
131
|
+
// at 0x20-0x3f) — the bounded, width-agnostic encoding used before struct mode.
|
|
132
|
+
if (packr.randomAccessStructure && !packr.readOnlyStructures && value && typeof value === 'object') {
|
|
127
133
|
if (value.constructor === Object) writeStruct(value); // simple object
|
|
128
134
|
else if (value.constructor !== Map && !Array.isArray(value) && !extensionClasses.some(extClass => value instanceof extClass)) {
|
|
129
135
|
// allow user classes, if they don't need special handling (but do use toJSON if available)
|
|
@@ -189,7 +195,14 @@ export class Packr extends Unpackr {
|
|
|
189
195
|
let newSharedData = prepareStructures(structures, packr);
|
|
190
196
|
if (!encodingError) { // TODO: If there is an encoding error, should make the structures as uninitialized so they get rebuilt next time
|
|
191
197
|
if (packr.saveStructures(newSharedData, newSharedData.isCompatible) === false) {
|
|
192
|
-
//
|
|
198
|
+
// The save was declined (a concurrent writer updated the shared structures,
|
|
199
|
+
// or the store transaction did not durably commit). Our in-memory
|
|
200
|
+
// structures + transition trie may now reference record ids that were
|
|
201
|
+
// never persisted; re-packing as-is would re-emit the same record pointing
|
|
202
|
+
// at an unpersisted structure (-> "Record id is not defined" on decode).
|
|
203
|
+
// Mark structures uninitialized so the re-pack reloads durable structures
|
|
204
|
+
// via getStructures, rebuilds the transition trie, and re-mints + re-saves.
|
|
205
|
+
structures.uninitialized = true
|
|
193
206
|
return packr.pack(value, encodeOptions)
|
|
194
207
|
}
|
|
195
208
|
packr.lastNamedStructuresLength = sharedLength
|
package/package.json
CHANGED