Time32.c 2.85 KB
Newer Older
filatov's avatar
filatov committed
/*
 * Generated by asn1c-0.9.29 (http://lionet.info/asn1c)
 * From ASN.1 module "IEEE1609dot2BaseTypes"
 * 	found in "../asn1/1609Dot2-ASN1/asn1c/IEEE1609dot2BaseTypes.asn"
 * 	`asn1c -S ../../asn1c/skeletons -fcompound-names -no-gen-PER -gen-autotools -pdu=EtsiTs103097Data -pdu=EnrolmentRequestMessage -pdu=EnrolmentResponseMessage -pdu=AuthorizationRequestMessage -pdu=AuthorizationRequestMessageWithPop -pdu=AuthorizationResponseMessage -pdu=CertificateRevocationListMessage -pdu=TlmCertificateTrustListMessage -pdu=RcaCertificateTrustListMessage -pdu=AuthorizationValidationRequestMessage -pdu=AuthorizationValidationResponseMessage -pdu=CaCertificateRequestMessage`
 */

#include "Time32.h"
#include "../mkgmtime.h"
filatov's avatar
filatov committed

int
Time32_constraint(const asn_TYPE_descriptor_t *td, const void *sptr,
			asn_app_constraint_failed_f *ctfailcb, void *app_key) {
	
	if(!sptr) {
		ASN__CTFAIL(app_key, td, sptr,
			"%s: value not given (%s:%d)",
			td->name, __FILE__, __LINE__);
		return -1;
	}
	
	
	/* Constraint check succeeded */
	return 0;
}

/*
 * This type is implemented using Uint32,
 * so here we adjust the DEF accordingly.
 */
static asn_oer_constraints_t asn_OER_type_Time32_constr_1 CC_NOTUSED = {
	{ 4, 1 }	/* (0..4294967295) */,
	-1};
static const ber_tlv_tag_t asn_DEF_Time32_tags_1[] = {
	(ASN_TAG_CLASS_UNIVERSAL | (2 << 2))
};

asn_TYPE_operation_t asn_OP_Time32 = {
	NativeInteger_free,
	Time32_print,
	NativeInteger_compare,
	NativeInteger_decode_ber,
	NativeInteger_encode_der,
	NativeInteger_decode_xer,
	NativeInteger_encode_xer,
#ifdef	ASN_DISABLE_OER_SUPPORT
	0,
	0,
#else
	NativeInteger_decode_oer,	/* OER decoder */
	NativeInteger_encode_oer,	/* Canonical OER encoder */
#endif  /* ASN_DISABLE_OER_SUPPORT */
#ifdef	ASN_DISABLE_PER_SUPPORT
	0,
	0,
#else
	NativeInteger_decode_uper,	/* Unaligned PER decoder */
	NativeInteger_encode_uper,	/* Unaligned PER encoder */
#endif	/* ASN_DISABLE_PER_SUPPORT */
	NativeInteger_random_fill,
	0	/* Use generic outmost tag fetcher */
};

filatov's avatar
filatov committed
asn_TYPE_descriptor_t asn_DEF_Time32 = {
	"Time32",
	"Time32",
	&asn_OP_Time32,
filatov's avatar
filatov committed
	asn_DEF_Time32_tags_1,
	sizeof(asn_DEF_Time32_tags_1)
		/sizeof(asn_DEF_Time32_tags_1[0]), /* 1 */
	asn_DEF_Time32_tags_1,	/* Same as above */
	sizeof(asn_DEF_Time32_tags_1)
		/sizeof(asn_DEF_Time32_tags_1[0]), /* 1 */
	{ &asn_OER_type_Time32_constr_1, 0, Time32_constraint },
	0, 0,	/* No members */
	&asn_SPC_Uint32_specs_1	/* Additional specs */
};

int Time32_print(const asn_TYPE_descriptor_t *td, const void *sptr, int ilevel,
	asn_app_consume_bytes_f *cb, void *app_key) {

	const asn_INTEGER_specifics_t *specs =
		(const asn_INTEGER_specifics_t *)td->specifics;
	int ret = NativeInteger_print(td, sptr, ilevel, cb, app_key);
	if (ret == 0){
		const long *native = (const long *)sptr;
		const char * s = stritsdate32(*native);
		if (cb(" -- ", 4, app_key) < 0) return -1;
		if (cb(s, strlen(s), app_key) < 0) return -1;
	}
	return ret;
}