jsonbinpack
Version:
A space-efficient schema-driven binary JSON serialization format based on JSON Schema
88 lines (74 loc) • 2.29 kB
text/typescript
/*
* Copyright 2021 Juan Cruz Viotti
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import {
uniqWith,
isEqual
} from 'lodash'
import {
JSONValue
} from '../json'
import {
SchemasOptions
} from '../encoder/oneof/options'
import {
EncodingSchema,
OneOfEncodingSchema
} from '../schema'
import {
EncodingType
} from '../encoder'
import {
BaseEncodingDefinition
} from './base-encoding-definition'
import {
getStates,
getEncoding
} from './index'
export interface ONEOF_CHOICE_INDEX_PREFIX_ENCODING extends BaseEncodingDefinition {
readonly type: EncodingType.OneOf;
readonly encoding: 'ONEOF_CHOICE_INDEX_PREFIX';
readonly options: SchemasOptions;
}
export type OneOfEncodingNames = 'ONEOF_CHOICE_INDEX_PREFIX'
export type OneOfEncoding = ONEOF_CHOICE_INDEX_PREFIX_ENCODING
export const getOneOfStates = (schema: OneOfEncodingSchema): number | JSONValue[] => {
return schema.oneOf.reduce((accumulator: number | JSONValue[], choice: EncodingSchema) => {
const states: number | JSONValue[] = getStates(choice)
if (Array.isArray(states)) {
if (Array.isArray(accumulator)) {
return uniqWith(accumulator.concat(states), isEqual)
}
return accumulator + states.length
}
const accumulatorLength: number =
Array.isArray(accumulator) ? accumulator.length : accumulator
return accumulatorLength + states
}, [])
}
export const getOneOfEncoding = (schema: OneOfEncodingSchema, level: number): OneOfEncoding => {
return {
type: EncodingType.OneOf,
encoding: 'ONEOF_CHOICE_INDEX_PREFIX',
options: {
choices: schema.oneOf.map((item: EncodingSchema) => {
return {
schema: item,
encoding: getEncoding(item, level + 1)
}
})
}
}
}