asn1c/skeletons/BOOLEAN.c

283 lines
6.1 KiB
C
Raw Normal View History

2004-06-03 03:38:44 +00:00
/*-
2005-11-26 11:25:14 +00:00
* Copyright (c) 2003, 2005 Lev Walkin <vlm@lionet.info>. All rights reserved.
2004-06-03 03:38:44 +00:00
* Redistribution and modifications are permitted subject to BSD license.
*/
2004-09-22 16:06:28 +00:00
#include <asn_internal.h>
2004-10-22 08:11:25 +00:00
#include <asn_codecs_prim.h>
2004-06-03 03:38:44 +00:00
#include <BOOLEAN.h>
/*
* BOOLEAN basic type description.
*/
2004-09-29 13:26:15 +00:00
static ber_tlv_tag_t asn_DEF_BOOLEAN_tags[] = {
2004-06-03 03:38:44 +00:00
(ASN_TAG_CLASS_UNIVERSAL | (1 << 2))
};
2004-09-29 13:26:15 +00:00
asn_TYPE_descriptor_t asn_DEF_BOOLEAN = {
2004-10-20 15:50:55 +00:00
"BOOLEAN",
2004-06-03 03:38:44 +00:00
"BOOLEAN",
2004-09-22 16:06:28 +00:00
BOOLEAN_free,
BOOLEAN_print,
2004-06-03 03:38:44 +00:00
asn_generic_no_constraint,
BOOLEAN_decode_ber,
BOOLEAN_encode_der,
2004-10-22 08:11:25 +00:00
BOOLEAN_decode_xer,
2004-09-22 16:06:28 +00:00
BOOLEAN_encode_xer,
2005-11-26 11:25:14 +00:00
BOOLEAN_decode_uper, /* Unaligned PER decoder */
2006-08-18 01:34:18 +00:00
BOOLEAN_encode_uper, /* Unaligned PER encoder */
2004-06-03 03:38:44 +00:00
0, /* Use generic outmost tag fetcher */
2004-09-29 13:26:15 +00:00
asn_DEF_BOOLEAN_tags,
sizeof(asn_DEF_BOOLEAN_tags) / sizeof(asn_DEF_BOOLEAN_tags[0]),
asn_DEF_BOOLEAN_tags, /* Same as above */
sizeof(asn_DEF_BOOLEAN_tags) / sizeof(asn_DEF_BOOLEAN_tags[0]),
2005-11-26 11:25:14 +00:00
0, /* No PER visible constraints */
2004-08-20 13:23:42 +00:00
0, 0, /* No members */
2004-06-05 08:17:50 +00:00
0 /* No specifics */
2004-06-03 03:38:44 +00:00
};
/*
* Decode BOOLEAN type.
*/
2004-10-20 15:50:55 +00:00
asn_dec_rval_t
2004-09-29 13:26:15 +00:00
BOOLEAN_decode_ber(asn_codec_ctx_t *opt_codec_ctx,
asn_TYPE_descriptor_t *td,
2005-03-10 18:52:02 +00:00
void **bool_value, const void *buf_ptr, size_t size,
2004-06-03 03:38:44 +00:00
int tag_mode) {
BOOLEAN_t *st = (BOOLEAN_t *)*bool_value;
2004-10-20 15:50:55 +00:00
asn_dec_rval_t rval;
2004-06-03 03:38:44 +00:00
ber_tlv_len_t length;
ber_tlv_len_t lidx;
if(st == NULL) {
st = (BOOLEAN_t *)(*bool_value = CALLOC(1, sizeof(*st)));
2004-06-03 03:38:44 +00:00
if(st == NULL) {
rval.code = RC_FAIL;
rval.consumed = 0;
return rval;
}
}
ASN_DEBUG("Decoding %s as BOOLEAN (tm=%d)",
td->name, tag_mode);
/*
* Check tags.
*/
2004-09-29 13:26:15 +00:00
rval = ber_check_tags(opt_codec_ctx, td, 0, buf_ptr, size,
tag_mode, 0, &length, 0);
2004-06-03 03:38:44 +00:00
if(rval.code != RC_OK)
return rval;
ASN_DEBUG("Boolean length is %d bytes", (int)length);
2005-03-10 18:52:02 +00:00
buf_ptr = ((const char *)buf_ptr) + rval.consumed;
2004-06-03 03:38:44 +00:00
size -= rval.consumed;
2004-06-05 08:17:50 +00:00
if(length > (ber_tlv_len_t)size) {
2004-06-03 03:38:44 +00:00
rval.code = RC_WMORE;
rval.consumed = 0;
return rval;
}
/*
* Compute boolean value.
*/
for(*st = 0, lidx = 0;
(lidx < length) && *st == 0; lidx++) {
2004-06-03 03:38:44 +00:00
/*
* Very simple approach: read bytes until the end or
* value is already TRUE.
* BOOLEAN is not supposed to contain meaningful data anyway.
*/
2005-03-10 18:52:02 +00:00
*st |= ((const uint8_t *)buf_ptr)[lidx];
2004-06-03 03:38:44 +00:00
}
rval.code = RC_OK;
rval.consumed += length;
ASN_DEBUG("Took %ld/%ld bytes to encode %s, value=%d",
2004-06-03 03:38:44 +00:00
(long)rval.consumed, (long)length,
td->name, *st);
2004-06-03 03:38:44 +00:00
return rval;
}
2004-09-22 16:06:28 +00:00
asn_enc_rval_t
2004-09-29 13:26:15 +00:00
BOOLEAN_encode_der(asn_TYPE_descriptor_t *td, void *sptr,
2004-06-03 03:38:44 +00:00
int tag_mode, ber_tlv_tag_t tag,
asn_app_consume_bytes_f *cb, void *app_key) {
2004-09-22 16:06:28 +00:00
asn_enc_rval_t erval;
2004-08-11 09:07:36 +00:00
BOOLEAN_t *st = (BOOLEAN_t *)sptr;
2004-06-03 03:38:44 +00:00
erval.encoded = der_write_tags(td, 1, tag_mode, 0, tag, cb, app_key);
2004-06-03 03:38:44 +00:00
if(erval.encoded == -1) {
erval.failed_type = td;
erval.structure_ptr = sptr;
return erval;
}
if(cb) {
uint8_t bool_value;
bool_value = *st ? 0xff : 0; /* 0xff mandated by DER */
if(cb(&bool_value, 1, app_key) < 0) {
2004-06-03 03:38:44 +00:00
erval.encoded = -1;
erval.failed_type = td;
erval.structure_ptr = sptr;
return erval;
}
}
erval.encoded += 1;
2005-11-26 11:25:14 +00:00
_ASN_ENCODED_OK(erval);
2004-06-03 03:38:44 +00:00
}
2004-10-22 08:11:25 +00:00
/*
* Decode the chunk of XML text encoding INTEGER.
*/
static enum xer_pbd_rval
BOOLEAN__xer_body_decode(asn_TYPE_descriptor_t *td, void *sptr, const void *chunk_buf, size_t chunk_size) {
2004-10-22 08:11:25 +00:00
BOOLEAN_t *st = (BOOLEAN_t *)sptr;
const char *p = (const char *)chunk_buf;
2004-10-22 08:11:25 +00:00
2005-02-25 12:10:27 +00:00
(void)td;
if(chunk_size && p[0] == 0x3c /* '<' */) {
2004-10-22 08:11:25 +00:00
switch(xer_check_tag(chunk_buf, chunk_size, "false")) {
case XCT_BOTH:
/* "<false/>" */
*st = 0;
break;
2005-02-18 18:06:36 +00:00
case XCT_UNKNOWN_BO:
2004-10-22 08:11:25 +00:00
if(xer_check_tag(chunk_buf, chunk_size, "true")
!= XCT_BOTH)
return XPBD_BROKEN_ENCODING;
2004-10-22 08:11:25 +00:00
/* "<true/>" */
*st = 1; /* Or 0xff as in DER?.. */
break;
default:
return XPBD_BROKEN_ENCODING;
2004-10-22 08:11:25 +00:00
}
return XPBD_BODY_CONSUMED;
2004-10-22 08:11:25 +00:00
} else {
return XPBD_BROKEN_ENCODING;
2004-10-22 08:11:25 +00:00
}
}
asn_dec_rval_t
BOOLEAN_decode_xer(asn_codec_ctx_t *opt_codec_ctx,
asn_TYPE_descriptor_t *td, void **sptr, const char *opt_mname,
2005-03-10 18:52:02 +00:00
const void *buf_ptr, size_t size) {
2004-10-22 08:11:25 +00:00
return xer_decode_primitive(opt_codec_ctx, td,
sptr, sizeof(BOOLEAN_t), opt_mname, buf_ptr, size,
BOOLEAN__xer_body_decode);
}
2004-09-22 16:06:28 +00:00
asn_enc_rval_t
2004-09-29 13:26:15 +00:00
BOOLEAN_encode_xer(asn_TYPE_descriptor_t *td, void *sptr,
2004-09-22 16:06:28 +00:00
int ilevel, enum xer_encoder_flags_e flags,
asn_app_consume_bytes_f *cb, void *app_key) {
const BOOLEAN_t *st = (const BOOLEAN_t *)sptr;
asn_enc_rval_t er;
(void)ilevel;
(void)flags;
if(!st) _ASN_ENCODE_FAILED;
if(*st) {
_ASN_CALLBACK("<true/>", 7);
er.encoded = 7;
} else {
_ASN_CALLBACK("<false/>", 8);
er.encoded = 8;
}
2005-11-26 11:25:14 +00:00
_ASN_ENCODED_OK(er);
2004-10-03 09:13:02 +00:00
cb_failed:
_ASN_ENCODE_FAILED;
2004-09-22 16:06:28 +00:00
}
2004-06-03 03:38:44 +00:00
int
2004-09-29 13:26:15 +00:00
BOOLEAN_print(asn_TYPE_descriptor_t *td, const void *sptr, int ilevel,
2004-06-03 03:38:44 +00:00
asn_app_consume_bytes_f *cb, void *app_key) {
2004-08-11 09:07:36 +00:00
const BOOLEAN_t *st = (const BOOLEAN_t *)sptr;
const char *buf;
size_t buflen;
2004-06-03 03:38:44 +00:00
2004-06-05 08:17:50 +00:00
(void)td; /* Unused argument */
(void)ilevel; /* Unused argument */
2004-06-03 03:38:44 +00:00
if(st) {
if(*st) {
buf = "TRUE";
buflen = 4;
} else {
buf = "FALSE";
buflen = 5;
}
2004-06-03 03:38:44 +00:00
} else {
buf = "<absent>";
buflen = 8;
2004-06-03 03:38:44 +00:00
}
return (cb(buf, buflen, app_key) < 0) ? -1 : 0;
2004-06-03 03:38:44 +00:00
}
void
2004-09-29 13:26:15 +00:00
BOOLEAN_free(asn_TYPE_descriptor_t *td, void *ptr, int contents_only) {
2004-06-03 03:38:44 +00:00
if(td && ptr && !contents_only) {
FREEMEM(ptr);
}
}
2005-11-26 11:25:14 +00:00
asn_dec_rval_t
BOOLEAN_decode_uper(asn_codec_ctx_t *opt_codec_ctx, asn_TYPE_descriptor_t *td,
asn_per_constraints_t *constraints, void **sptr, asn_per_data_t *pd) {
asn_dec_rval_t rv;
BOOLEAN_t *st = (BOOLEAN_t *)*sptr;
(void)opt_codec_ctx;
(void)constraints;
if(!st) {
st = (BOOLEAN_t *)(*sptr = MALLOC(sizeof(*st)));
if(!st) _ASN_DECODE_FAILED;
}
/*
* Extract a single bit
*/
switch(per_get_few_bits(pd, 1)) {
case 1: *st = 1; break;
case 0: *st = 0; break;
case -1: default: _ASN_DECODE_STARVED;
2005-11-26 11:25:14 +00:00
}
ASN_DEBUG("%s decoded as %s", td->name, *st ? "TRUE" : "FALSE");
rv.code = RC_OK;
rv.consumed = 1;
return rv;
}
2006-08-18 01:34:18 +00:00
asn_enc_rval_t
BOOLEAN_encode_uper(asn_TYPE_descriptor_t *td,
asn_per_constraints_t *constraints, void *sptr, asn_per_outp_t *po) {
const BOOLEAN_t *st = (const BOOLEAN_t *)sptr;
2012-01-09 17:07:29 +00:00
asn_enc_rval_t er = { 0, 0, 0 };
2006-08-18 01:34:18 +00:00
(void)constraints;
if(!st) _ASN_ENCODE_FAILED;
2012-01-10 02:13:05 +00:00
if(per_put_few_bits(po, *st ? 1 : 0, 1))
_ASN_ENCODE_FAILED;
2006-08-18 01:34:18 +00:00
_ASN_ENCODED_OK(er);
}