@wildboar/acse
Version:
Association Control Service Element PDUs in TypeScript
170 lines (169 loc) • 6.08 kB
JavaScript
/* eslint-disable */
import { ASN1TagClass as _TagClass, } from '@wildboar/asn1';
import * as $ from '@wildboar/asn1/functional';
import { _decode_ASO_qualifier, _encode_ASO_qualifier, } from '../ACSE-1/ASO-qualifier.ta.mjs';
import { _decode_ASOI_identifier, _encode_ASOI_identifier, } from '../ACSE-1/ASOI-identifier.ta.mjs';
import { _decode_User_Data, _encode_User_Data, } from '../ACSE-1/User-Data.ta.mjs';
/**
* @summary A_DT_apdu
* @description
*
* ### ASN.1 Definition:
*
* ```asn1
* A-DT-apdu ::= [APPLICATION 5] IMPLICIT SEQUENCE {
* aso-qualifier [0] ASO-qualifier OPTIONAL,
* asoi-identifier [1] IMPLICIT ASOI-identifier OPTIONAL,
* ...,
* ...,
* a-user-data [30] IMPLICIT User-Data
* }
* ```
*
*/
export class A_DT_apdu {
aso_qualifier;
asoi_identifier;
_unrecognizedExtensionsList;
a_user_data;
constructor(
/**
* @summary `aso_qualifier`.
* @public
* @readonly
*/
aso_qualifier,
/**
* @summary `asoi_identifier`.
* @public
* @readonly
*/
asoi_identifier,
/**
* @summary Extensions that are not recognized.
* @public
* @readonly
*/
_unrecognizedExtensionsList = [],
/**
* @summary `a_user_data`.
* @public
* @readonly
*/
a_user_data) {
this.aso_qualifier = aso_qualifier;
this.asoi_identifier = asoi_identifier;
this._unrecognizedExtensionsList = _unrecognizedExtensionsList;
this.a_user_data = a_user_data;
}
/**
* @summary Restructures an object into a A_DT_apdu
* @description
*
* This takes an `object` and converts it to a `A_DT_apdu`.
*
* @public
* @static
* @method
* @param {Object} _o An object having all of the keys and values of a `A_DT_apdu`.
* @returns {A_DT_apdu}
*/
static _from_object(_o) {
return new A_DT_apdu(_o.aso_qualifier, _o.asoi_identifier, _o._unrecognizedExtensionsList, _o.a_user_data);
}
}
/**
* @summary The Leading Root Component Types of A_DT_apdu
* @description
*
* This is an array of `ComponentSpec`s that define how to decode the leading root component type list of a SET or SEQUENCE.
*
* @constant
*/
export const _root_component_type_list_1_spec_for_A_DT_apdu = [
new $.ComponentSpec('aso-qualifier', true, $.hasTag(_TagClass.context, 0)),
new $.ComponentSpec('asoi-identifier', true, $.hasTag(_TagClass.context, 1)),
];
/**
* @summary The Trailing Root Component Types of A_DT_apdu
* @description
*
* This is an array of `ComponentSpec`s that define how to decode the trailing root component type list of a SET or SEQUENCE.
*
* @constant
*/
export const _root_component_type_list_2_spec_for_A_DT_apdu = [
new $.ComponentSpec('a-user-data', false, $.hasTag(_TagClass.context, 30)),
];
/**
* @summary The Extension Addition Component Types of A_DT_apdu
* @description
*
* This is an array of `ComponentSpec`s that define how to decode the extension addition component type list of a SET or SEQUENCE.
*
* @constant
*/
export const _extension_additions_list_spec_for_A_DT_apdu = [];
let _cached_decoder_for_A_DT_apdu = null;
/**
* @summary Decodes an ASN.1 element into a(n) A_DT_apdu
* @function
* @param {_Element} el The element being decoded.
* @returns {A_DT_apdu} The decoded data structure.
*/
export function _decode_A_DT_apdu(el) {
if (!_cached_decoder_for_A_DT_apdu) {
_cached_decoder_for_A_DT_apdu = $._decode_implicit(() => function (el) {
let aso_qualifier;
let asoi_identifier;
let _unrecognizedExtensionsList = [];
let a_user_data;
const callbacks = {
'aso-qualifier': (_el) => {
aso_qualifier = $._decode_explicit(() => _decode_ASO_qualifier)(_el);
},
'asoi-identifier': (_el) => {
asoi_identifier = $._decode_implicit(() => _decode_ASOI_identifier)(_el);
},
'a-user-data': (_el) => {
a_user_data = $._decode_explicit(() => _decode_User_Data)(_el);
},
};
$._parse_sequence(el, callbacks, _root_component_type_list_1_spec_for_A_DT_apdu, _extension_additions_list_spec_for_A_DT_apdu, _root_component_type_list_2_spec_for_A_DT_apdu, (ext) => {
_unrecognizedExtensionsList.push(ext);
});
return new A_DT_apdu(aso_qualifier, asoi_identifier, _unrecognizedExtensionsList, a_user_data);
});
}
return _cached_decoder_for_A_DT_apdu(el);
}
let _cached_encoder_for_A_DT_apdu = null;
/**
* @summary Encodes a(n) A_DT_apdu into an ASN.1 Element.
* @function
* @param value The element being encoded.
* @param elGetter A function that can be used to get new ASN.1 elements.
* @returns {_Element} The A_DT_apdu, encoded as an ASN.1 Element.
*/
export function _encode_A_DT_apdu(value, elGetter) {
if (!_cached_encoder_for_A_DT_apdu) {
_cached_encoder_for_A_DT_apdu = $._encode_implicit(_TagClass.application, 5, () => function (value) {
return $._encodeSequence([]
.concat([
/* IF_ABSENT */ value.aso_qualifier === undefined
? undefined
: $._encode_explicit(_TagClass.context, 0, () => _encode_ASO_qualifier, $.BER)(value.aso_qualifier, $.BER),
/* IF_ABSENT */ value.asoi_identifier === undefined
? undefined
: $._encode_implicit(_TagClass.context, 1, () => _encode_ASOI_identifier, $.BER)(value.asoi_identifier, $.BER),
], value._unrecognizedExtensionsList
? value._unrecognizedExtensionsList
: [], [
/* REQUIRED */ $._encode_explicit(_TagClass.context, 30, () => _encode_User_Data, $.BER)(value.a_user_data, $.BER),
])
.filter((c) => !!c), $.BER);
}, $.BER);
}
return _cached_encoder_for_A_DT_apdu(value, elGetter);
}
/* eslint-enable */