2 * Copyright (c) 2003, 2004 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
5 #include <asn_internal.h>
6 #include <BIT_STRING.h>
7 #include <asn_internal.h>
10 * BIT STRING basic type description.
12 static const ber_tlv_tag_t asn_DEF_BIT_STRING_tags[] = {
13 (ASN_TAG_CLASS_UNIVERSAL | (3 << 2))
15 static asn_OCTET_STRING_specifics_t asn_DEF_BIT_STRING_specs = {
17 offsetof(BIT_STRING_t, _asn_ctx),
20 asn_TYPE_descriptor_t asn_DEF_BIT_STRING = {
23 OCTET_STRING_free, /* Implemented in terms of OCTET STRING */
25 BIT_STRING_constraint,
26 OCTET_STRING_decode_ber, /* Implemented in terms of OCTET STRING */
27 OCTET_STRING_encode_der, /* Implemented in terms of OCTET STRING */
28 OCTET_STRING_decode_xer_binary,
29 BIT_STRING_encode_xer,
30 OCTET_STRING_decode_uper, /* Unaligned PER decoder */
31 OCTET_STRING_encode_uper, /* Unaligned PER encoder */
32 0, /* Use generic outmost tag fetcher */
33 asn_DEF_BIT_STRING_tags,
34 sizeof(asn_DEF_BIT_STRING_tags)
35 / sizeof(asn_DEF_BIT_STRING_tags[0]),
36 asn_DEF_BIT_STRING_tags, /* Same as above */
37 sizeof(asn_DEF_BIT_STRING_tags)
38 / sizeof(asn_DEF_BIT_STRING_tags[0]),
39 0, /* No PER visible constraints */
40 0, 0, /* No members */
41 &asn_DEF_BIT_STRING_specs
45 * BIT STRING generic constraint.
48 BIT_STRING_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
49 asn_app_constraint_failed_f *ctfailcb, void *app_key) {
50 const BIT_STRING_t *st = (const BIT_STRING_t *)sptr;
53 if((st->size == 0 && st->bits_unused)
54 || st->bits_unused < 0 || st->bits_unused > 7) {
55 ASN__CTFAIL(app_key, td, sptr,
56 "%s: invalid padding byte (%s:%d)",
57 td->name, __FILE__, __LINE__);
61 ASN__CTFAIL(app_key, td, sptr,
62 "%s: value not given (%s:%d)",
63 td->name, __FILE__, __LINE__);
70 static char *_bit_pattern[16] = {
71 "0000", "0001", "0010", "0011", "0100", "0101", "0110", "0111",
72 "1000", "1001", "1010", "1011", "1100", "1101", "1110", "1111"
76 BIT_STRING_encode_xer(asn_TYPE_descriptor_t *td, void *sptr,
77 int ilevel, enum xer_encoder_flags_e flags,
78 asn_app_consume_bytes_f *cb, void *app_key) {
82 char *scend = scratch + (sizeof(scratch) - 10);
83 const BIT_STRING_t *st = (const BIT_STRING_t *)sptr;
84 int xcan = (flags & XER_F_CANONICAL);
94 end = buf + st->size - 1; /* Last byte is special */
99 for(; buf < end; buf++) {
101 int nline = xcan?0:(((buf - st->buf) % 8) == 0);
102 if(p >= scend || nline) {
103 er.encoded += p - scratch;
104 ASN__CALLBACK(scratch, p - scratch);
106 if(nline) ASN__TEXT_INDENT(1, ilevel);
108 memcpy(p + 0, _bit_pattern[v >> 4], 4);
109 memcpy(p + 4, _bit_pattern[v & 0x0f], 4);
113 if(!xcan && ((buf - st->buf) % 8) == 0)
114 ASN__TEXT_INDENT(1, ilevel);
115 er.encoded += p - scratch;
116 ASN__CALLBACK(scratch, p - scratch);
121 int ubits = st->bits_unused;
123 for(i = 7; i >= ubits; i--)
124 *p++ = (v & (1 << i)) ? 0x31 : 0x30;
125 er.encoded += p - scratch;
126 ASN__CALLBACK(scratch, p - scratch);
129 if(!xcan) ASN__TEXT_INDENT(1, ilevel - 1);
138 * BIT STRING specific contents printer.
141 BIT_STRING_print(asn_TYPE_descriptor_t *td, const void *sptr, int ilevel,
142 asn_app_consume_bytes_f *cb, void *app_key) {
143 const char * const h2c = "0123456789ABCDEF";
145 const BIT_STRING_t *st = (const BIT_STRING_t *)sptr;
150 (void)td; /* Unused argument */
153 return (cb("<absent>", 8, app_key) < 0) ? -1 : 0;
157 end = buf + st->size;
162 for(; buf < end; buf++) {
163 if((buf - st->buf) % 16 == 0 && (st->size > 16)
166 /* Dump the string */
167 if(cb(scratch, p - scratch, app_key) < 0) return -1;
170 *p++ = h2c[*buf >> 4];
171 *p++ = h2c[*buf & 0x0F];
176 p--; /* Eat the tailing space */
178 if((st->size > 16)) {
182 /* Dump the incomplete 16-bytes row */
183 if(cb(scratch, p - scratch, app_key) < 0)