Skip to content

Commit ea0f470

Browse files
committed
Only access type tables from strategies.
1 parent c0656a5 commit ea0f470

9 files changed

+23
-40
lines changed

lib/Compressor.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ export class Compressor {
3838
}
3939

4040
// encode `@context`...
41-
const {converter} = this;
41+
const {typeTable} = this;
4242
const encodedContexts = [];
4343
const isArray = Array.isArray(context);
4444
const contexts = isArray ? context : [context];
4545
for(const value of contexts) {
46-
const encoder = ContextEncoder.createEncoder({value, converter});
46+
const encoder = ContextEncoder.createEncoder({value, typeTable});
4747
encodedContexts.push(encoder || value);
4848
}
4949
const id = isArray ? CONTEXT_TERM_ID_PLURAL : CONTEXT_TERM_ID;

lib/Converter.js

+7-18
Original file line numberDiff line numberDiff line change
@@ -15,37 +15,28 @@ export class Converter {
1515
* @param {object} options - The options to use.
1616
* @param {object} options.strategy - The conversion strategy to use,
1717
* e.g., a compressor or decompressor.
18-
* @param {Map} options.typeTable - A map of possible value types, including
19-
* `context`, `url`, `none`, and any JSON-LD type, each of which maps to
20-
* another map of values of that type to their associated CBOR-LD integer
21-
* values.
2218
* @param {documentLoaderFunction} options.documentLoader -The document
2319
* loader to use when resolving JSON-LD Context URLs.
2420
* @param {boolean} [options.legacy=false] - True if legacy mode is in
2521
* effect, false if not.
2622
*/
2723
constructor({
28-
strategy, typeTable, documentLoader, legacy = false
24+
strategy, documentLoader, legacy = false
2925
} = {}) {
3026
this.strategy = strategy;
31-
// FIXME: use strategy.typeTable
32-
this.typeTable = typeTable;
3327
this.legacy = legacy;
28+
const contextLoader = new ContextLoader({
29+
documentLoader, buildReverseMap: !!strategy.reverseTypeTable
30+
});
31+
this.contextLoader = contextLoader;
32+
this.initialActiveCtx = new ActiveContext({contextLoader});
3433

3534
// FIXME: expose differently
36-
this.typeTableEncodedAsBytes = legacy ?
35+
this.typeTableEncodedAsBytesSet = legacy ?
3736
LEGACY_TYPE_TABLE_ENCODED_AS_BYTES : TYPE_TABLE_ENCODED_AS_BYTES;
3837

3938
// FIXME: eliminate cyclical reference
4039
strategy.converter = this;
41-
// FIXME: expose differently
42-
this.reverseTypeTable = strategy.reverseTypeTable;
43-
44-
const contextLoader = new ContextLoader({
45-
documentLoader, buildReverseMap: !!this.reverseTypeTable
46-
});
47-
this.contextLoader = contextLoader;
48-
this.initialActiveCtx = new ActiveContext({contextLoader});
4940
}
5041

5142
/**
@@ -204,8 +195,6 @@ export class Converter {
204195
}
205196
}
206197

207-
// FIXME: determine if necessary
208-
209198
/**
210199
* Fetches a resource given a URL and returns it as a string.
211200
*

lib/Decompressor.js

+4-8
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,13 @@ export class Decompressor {
4040
}
4141

4242
async convertContexts({activeCtx, input, output}) {
43-
const {converter} = this;
43+
const {reverseTypeTable} = this;
44+
const decoder = ContextDecoder.createDecoder({reverseTypeTable});
4445

4546
// decode `@context` in `input`, if any
4647
const encodedContext = input.get(CONTEXT_TERM_ID);
4748
if(encodedContext) {
48-
const decoder = ContextDecoder.createDecoder({
49-
value: encodedContext, converter
50-
});
51-
output['@context'] = decoder?.decode({value: encodedContext}) ??
52-
encodedContext;
49+
output['@context'] = decoder.decode({value: encodedContext});
5350
}
5451
const encodedContexts = input.get(CONTEXT_TERM_ID_PLURAL);
5552
if(encodedContexts) {
@@ -68,8 +65,7 @@ export class Decompressor {
6865
}
6966
const contexts = [];
7067
for(const value of encodedContexts) {
71-
const decoder = ContextDecoder.createDecoder({value, converter});
72-
contexts.push(decoder ? decoder.decode({value}) : value);
68+
contexts.push(decoder.decode({value}));
7369
}
7470
output['@context'] = contexts;
7571
}

lib/codecs/ContextDecoder.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ export class ContextDecoder extends CborldDecoder {
2626
return url;
2727
}
2828

29-
static createDecoder({converter} = {}) {
30-
const reverseContextTable = converter.reverseTypeTable.get('context');
29+
static createDecoder({reverseTypeTable} = {}) {
30+
const reverseContextTable = reverseTypeTable.get('context');
3131
return new ContextDecoder({reverseContextTable});
3232
}
3333
}

lib/codecs/ContextEncoder.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ export class ContextEncoder extends CborldEncoder {
2020
return new Token(Type.uint, id);
2121
}
2222

23-
static createEncoder({value, converter} = {}) {
23+
static createEncoder({value, typeTable} = {}) {
2424
if(typeof value !== 'string') {
2525
return;
2626
}
27-
const contextTable = converter.typeTable.get('context');
27+
const contextTable = typeTable.get('context');
2828
return new ContextEncoder({context: value, contextTable});
2929
}
3030
}

lib/codecs/ValueDecoder.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ export class ValueDecoder extends CborldDecoder {
3333

3434
static createDecoder({value, converter, termType, termInfo} = {}) {
3535
const tableType = getTableType({termInfo, termType});
36-
const subTable = converter.reverseTypeTable.get(tableType);
36+
const subTable = converter.strategy.reverseTypeTable.get(tableType);
3737

3838
// handle decoding value for term with a subtable
3939
if(subTable) {
4040
let intValue;
4141
let useTable = false;
4242
const isBytes = value instanceof Uint8Array;
43-
const {typeTableEncodedAsBytes} = converter;
44-
const tableEncodingUsesBytes = typeTableEncodedAsBytes.has(tableType);
43+
const {typeTableEncodedAsBytesSet} = converter;
44+
const tableEncodingUsesBytes = typeTableEncodedAsBytesSet.has(tableType);
4545
if(isBytes && tableEncodingUsesBytes) {
4646
useTable = true;
4747
intValue = uintFromBytes({bytes: value});

lib/codecs/ValueEncoder.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,15 @@ export class ValueEncoder extends CborldEncoder {
4949
}
5050

5151
// if a subtable exists for `tableType`...
52-
const subTable = converter.typeTable.get(tableType);
52+
const subTable = converter.strategy.typeTable.get(tableType);
5353
if(subTable) {
5454
let intValue = subTable.get(value);
5555
let convertToBytes;
5656
let includeSign;
5757
if(intValue !== undefined) {
5858
// determine if ID from table must be expressed as bytes for `tableType`
59-
const {typeTableEncodedAsBytes} = converter;
60-
convertToBytes = typeTableEncodedAsBytes.has(tableType);
59+
const {typeTableEncodedAsBytesSet} = converter;
60+
convertToBytes = typeTableEncodedAsBytesSet.has(tableType);
6161
includeSign = false;
6262
} else if(tableType !== 'none' && Number.isInteger(value)) {
6363
/* Note: Here is an unusual case that a type subtable has been defined

lib/decode.js

-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,6 @@ function _createConverter({
9595
return new Converter({
9696
// decompress CBOR-LD => JSON-LD
9797
strategy: new Decompressor({typeTable}),
98-
typeTable,
9998
documentLoader,
10099
// FIXME: try to eliminate need for legacy flag
101100
legacy: isLegacy

lib/encode.js

-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,6 @@ function _createConverter({
167167
return new Converter({
168168
// compress JSON-LD => CBOR-LD
169169
strategy: new Compressor({typeTable}),
170-
typeTable,
171170
documentLoader,
172171
// FIXME: try to eliminate need for legacy flag
173172
legacy: isLegacy

0 commit comments

Comments
 (0)