Skip to content

Commit

Permalink
Add ANY_decode_aper() and ANY_encode_aper()
Browse files Browse the repository at this point in the history
By copying ANY_decode_uper() and ANY_encode_uper() to
ANY_decode_aper() and ANY_encode_aper().
  • Loading branch information
brchiu committed Nov 18, 2017
1 parent e4610c3 commit 2ecc970
Showing 1 changed file with 91 additions and 2 deletions.
93 changes: 91 additions & 2 deletions skeletons/ANY.c
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,7 @@ ANY_decode_uper(const asn_codec_ctx_t *opt_codec_ctx,
if(!st) RETURN(RC_FAIL);
}

ASN_DEBUG("PER Decoding ANY type");

ASN_DEBUG("UPER Decoding ANY type");

st->size = 0;
do {
Expand Down Expand Up @@ -275,5 +274,95 @@ ANY_encode_uper(const asn_TYPE_descriptor_t *td,
ASN__ENCODED_OK(er);
}

asn_dec_rval_t
ANY_decode_aper(const asn_codec_ctx_t *opt_codec_ctx,
const asn_TYPE_descriptor_t *td,
const asn_per_constraints_t *constraints, void **sptr,
asn_per_data_t *pd) {
const asn_OCTET_STRING_specifics_t *specs =
td->specifics ? (const asn_OCTET_STRING_specifics_t *)td->specifics
: &asn_SPC_ANY_specs;
size_t consumed_myself = 0;
int repeat;
ANY_t *st = (ANY_t *)*sptr;

(void)opt_codec_ctx;
(void)constraints;

/*
* Allocate the structure.
*/
if(!st) {
st = (ANY_t *)(*sptr = CALLOC(1, specs->struct_size));
if(!st) RETURN(RC_FAIL);
}

ASN_DEBUG("APER Decoding ANY type");

st->size = 0;
do {
ssize_t raw_len;
ssize_t len_bytes;
ssize_t len_bits;
void *p;
int ret;

/* Get the PER length */
raw_len = uper_get_length(pd, -1, 0, &repeat);
if(raw_len < 0) RETURN(RC_WMORE);
if(raw_len == 0 && st->buf) break;

ASN_DEBUG("Got PER length len %" ASN_PRI_SIZE ", %s (%s)", raw_len,
repeat ? "repeat" : "once", td->name);
len_bytes = raw_len;
len_bits = len_bytes * 8;

p = REALLOC(st->buf, st->size + len_bytes + 1);
if(!p) RETURN(RC_FAIL);
st->buf = (uint8_t *)p;

ret = per_get_many_bits(pd, &st->buf[st->size], 0, len_bits);
if(ret < 0) RETURN(RC_WMORE);
consumed_myself += len_bits;
st->size += len_bytes;
} while(repeat);
st->buf[st->size] = 0; /* nul-terminate */

RETURN(RC_OK);
}

asn_enc_rval_t
ANY_encode_aper(const asn_TYPE_descriptor_t *td,
const asn_per_constraints_t *constraints, const void *sptr,
asn_per_outp_t *po) {
const ANY_t *st = (const ANY_t *)sptr;
asn_enc_rval_t er = {0, 0, 0};
const uint8_t *buf;
size_t size;
int ret;

(void)constraints;

if(!st || (!st->buf && st->size)) ASN__ENCODE_FAILED;

buf = st->buf;
size = st->size;
do {
int need_eom = 0;
ssize_t may_save = uper_put_length(po, size, &need_eom);
if(may_save < 0) ASN__ENCODE_FAILED;

ret = per_put_many_bits(po, buf, may_save * 8);
if(ret) ASN__ENCODE_FAILED;

buf += may_save;
size -= may_save;
assert(!(may_save & 0x07) || !size);
if(need_eom && uper_put_length(po, 0, 0))
ASN__ENCODE_FAILED; /* End of Message length */
} while(size);

ASN__ENCODED_OK(er);
}
#endif /* ASN_DISABLE_PER_SUPPORT */

0 comments on commit 2ecc970

Please sign in to comment.