Skip to content

Commit 500105f

Browse files
committed
Better separate strategies from converter.
1 parent c8d6cb0 commit 500105f

File tree

3 files changed

+10
-12
lines changed

3 files changed

+10
-12
lines changed

lib/Compressor.js

+1-2
Original file line numberDiff line numberDiff line change
@@ -52,11 +52,10 @@ export class Compressor {
5252
return activeCtx;
5353
}
5454

55-
convertValue({termType, value, termInfo}) {
55+
convertValue({termType, value, termInfo, converter}) {
5656
if(typeof value === 'object') {
5757
return;
5858
}
59-
const {converter} = this;
6059
return ValueEncoder.createEncoder({value, converter, termInfo, termType});
6160
}
6261

lib/Converter.js

+7-6
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,9 @@ export class Converter {
3131
this.contextLoader = contextLoader;
3232
this.initialActiveCtx = new ActiveContext({contextLoader});
3333

34-
// FIXME: expose differently
34+
// FIXME: consider moving to strategies for better separation of concerns
3535
this.typeTableEncodedAsBytesSet = legacy ?
3636
LEGACY_TYPE_TABLE_ENCODED_AS_BYTES : TYPE_TABLE_ENCODED_AS_BYTES;
37-
38-
// FIXME: eliminate cyclical reference
39-
strategy.converter = this;
4037
}
4138

4239
/**
@@ -137,7 +134,9 @@ export class Converter {
137134
activeCtx = await strategy.convertContexts({activeCtx, input, output});
138135

139136
// get unique `@type` (and alias) values for the input
140-
const objectTypes = strategy.getObjectTypes({activeCtx, input, output});
137+
const objectTypes = strategy.getObjectTypes({
138+
activeCtx, input, output, converter: this
139+
});
141140

142141
// apply type-scoped contexts
143142
activeCtx = await activeCtx.applyTypeScopedContexts({objectTypes});
@@ -173,7 +172,9 @@ export class Converter {
173172
return null;
174173
}
175174
// convert value via strategy if possible
176-
let output = this.strategy.convertValue({termType, value, termInfo});
175+
let output = this.strategy.convertValue({
176+
termType, value, termInfo, converter: this
177+
});
177178
if(output !== undefined) {
178179
return output;
179180
}

lib/Decompressor.js

+2-4
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,10 @@ export class Decompressor {
7373
return activeCtx.applyEmbeddedContexts({obj: output});
7474
}
7575

76-
convertValue({termType, value, termInfo}) {
76+
convertValue({termType, value, termInfo, converter}) {
7777
if(value instanceof Map) {
7878
return;
7979
}
80-
const {converter} = this;
8180
const decoder = ValueDecoder.createDecoder({
8281
value, converter, termInfo, termType
8382
});
@@ -103,10 +102,9 @@ export class Decompressor {
103102
return entries.sort(_sortEntriesByTerm);
104103
}
105104

106-
getObjectTypes({activeCtx, input}) {
105+
getObjectTypes({activeCtx, input, converter}) {
107106
const objectTypes = new Set();
108107
// must decode object types to get their original values
109-
const {converter} = this;
110108
const typeTerms = activeCtx.getTypeTerms();
111109
for(const typeTerm of typeTerms) {
112110
// check for encoded singular and plural term IDs

0 commit comments

Comments
 (0)