jsonbinpack
Version:
A space-efficient schema-driven binary JSON serialization format based on JSON Schema
58 lines (48 loc) • 1.55 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 {
JSONValue
} from '../json'
import {
BaseEncodingDefinition
} from './base-encoding-definition'
import {
EncodingType
} from '../encoder'
import {
AnyEncodingSchema
} from '../schema'
import {
NoOptions
} from '../encoder/any/options'
export interface ANY_PACKED_TYPE_TAG_BYTE_PREFIX_ENCODING extends BaseEncodingDefinition {
readonly type: EncodingType.Any;
readonly encoding: 'ANY_PACKED_TYPE_TAG_BYTE_PREFIX';
readonly options: NoOptions;
}
export type AnyEncodingNames = 'ANY_PACKED_TYPE_TAG_BYTE_PREFIX'
export type AnyEncoding = ANY_PACKED_TYPE_TAG_BYTE_PREFIX_ENCODING
// It could literally be anything
export const getAnyStates = (_schema: AnyEncodingSchema): number | JSONValue[] => {
return Infinity
}
export const getAnyEncoding = (_schema: AnyEncodingSchema, _level: number): AnyEncoding => {
return {
type: EncodingType.Any,
encoding: 'ANY_PACKED_TYPE_TAG_BYTE_PREFIX',
options: {}
}
}