Commit ef8dd441 authored by Lev Walkin's avatar Lev Walkin

print enumeration values for native integer in debug printouts

parent 3eeafe12
...@@ -58,34 +58,35 @@ asn_TYPE_descriptor_t asn_DEF_NativeEnumerated = { ...@@ -58,34 +58,35 @@ asn_TYPE_descriptor_t asn_DEF_NativeEnumerated = {
}; };
asn_enc_rval_t asn_enc_rval_t
NativeEnumerated_encode_xer(asn_TYPE_descriptor_t *td, void *sptr, NativeEnumerated_encode_xer(asn_TYPE_descriptor_t *td, void *sptr, int ilevel,
int ilevel, enum xer_encoder_flags_e flags, enum xer_encoder_flags_e flags,
asn_app_consume_bytes_f *cb, void *app_key) { asn_app_consume_bytes_f *cb, void *app_key) {
const asn_INTEGER_specifics_t *specs = const asn_INTEGER_specifics_t *specs =
(const asn_INTEGER_specifics_t *)td->specifics; (const asn_INTEGER_specifics_t *)td->specifics;
asn_enc_rval_t er; asn_enc_rval_t er;
const long *native = (const long *)sptr; const long *native = (const long *)sptr;
const asn_INTEGER_enum_map_t *el; const asn_INTEGER_enum_map_t *el;
(void)ilevel; (void)ilevel;
(void)flags; (void)flags;
if(!native) ASN__ENCODE_FAILED; if(!native) ASN__ENCODE_FAILED;
el = INTEGER_map_value2enum(specs, *native); el = INTEGER_map_value2enum(specs, *native);
if(el) { if(el) {
size_t srcsize = el->enum_len + 5; size_t srcsize = el->enum_len + 5;
char *src = (char *)alloca(srcsize); char *src = (char *)alloca(srcsize);
er.encoded = snprintf(src, srcsize, "<%s/>", el->enum_name); er.encoded = snprintf(src, srcsize, "<%s/>", el->enum_name);
assert(er.encoded > 0 && (size_t)er.encoded < srcsize); assert(er.encoded > 0 && (size_t)er.encoded < srcsize);
if(cb(src, er.encoded, app_key) < 0) ASN__ENCODE_FAILED; if(cb(src, er.encoded, app_key) < 0) ASN__ENCODE_FAILED;
ASN__ENCODED_OK(er); ASN__ENCODED_OK(er);
} else { } else {
ASN_DEBUG("ASN.1 forbids dealing with " ASN_DEBUG(
"unknown value of ENUMERATED type"); "ASN.1 forbids dealing with "
ASN__ENCODE_FAILED; "unknown value of ENUMERATED type");
} ASN__ENCODE_FAILED;
}
} }
asn_dec_rval_t asn_dec_rval_t
......
...@@ -323,22 +323,32 @@ NativeInteger_encode_uper(asn_TYPE_descriptor_t *td, ...@@ -323,22 +323,32 @@ NativeInteger_encode_uper(asn_TYPE_descriptor_t *td,
*/ */
int int
NativeInteger_print(asn_TYPE_descriptor_t *td, const void *sptr, int ilevel, NativeInteger_print(asn_TYPE_descriptor_t *td, const void *sptr, int ilevel,
asn_app_consume_bytes_f *cb, void *app_key) { asn_app_consume_bytes_f *cb, void *app_key) {
const asn_INTEGER_specifics_t *specs = const asn_INTEGER_specifics_t *specs =
(const asn_INTEGER_specifics_t *)td->specifics; (const asn_INTEGER_specifics_t *)td->specifics;
const long *native = (const long *)sptr; const long *native = (const long *)sptr;
char scratch[32]; /* Enough for 64-bit int */ char scratch[32]; /* Enough for 64-bit int */
int ret; int ret;
(void)td; /* Unused argument */ (void)td; /* Unused argument */
(void)ilevel; /* Unused argument */ (void)ilevel; /* Unused argument */
if(native) { if(native) {
ret = snprintf(scratch, sizeof(scratch), long value = *native;
(specs && specs->field_unsigned) ret = snprintf(scratch, sizeof(scratch),
? "%lu" : "%ld", *native); (specs && specs->field_unsigned) ? "%lu" : "%ld", value);
assert(ret > 0 && (size_t)ret < sizeof(scratch)); assert(ret > 0 && (size_t)ret < sizeof(scratch));
return (cb(scratch, ret, app_key) < 0) ? -1 : 0; if(cb(scratch, ret, app_key) < 0) return -1;
if(specs && (value >= 0 || !specs->field_unsigned)) {
const asn_INTEGER_enum_map_t *el =
INTEGER_map_value2enum(specs, value);
if(el) {
if(cb(" (", 2, app_key) < 0) return -1;
if(cb(el->enum_name, el->enum_len, app_key) < 0) return -1;
if(cb(")", 1, app_key) < 0) return -1;
}
}
return 0;
} else { } else {
return (cb("<absent>", 8, app_key) < 0) ? -1 : 0; return (cb("<absent>", 8, app_key) < 0) ? -1 : 0;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment