2 * Copyright (c) 2005, 2006 Lev Walkin <vlm@lionet.info>. All rights reserved.
3 * Redistribution and modifications are permitted subject to BSD license.
5 #ifndef _PER_SUPPORT_H_
6 #define _PER_SUPPORT_H_
8 #include <asn_system.h> /* Platform-specific types */
15 * Pre-computed PER constraints.
17 typedef struct asn_per_constraint_s {
18 enum asn_per_constraint_flags {
19 APC_UNCONSTRAINED = 0x0, /* No PER visible constraints */
20 APC_SEMI_CONSTRAINED = 0x1, /* Constrained at "lb" */
21 APC_CONSTRAINED = 0x2, /* Fully constrained */
22 APC_EXTENSIBLE = 0x4 /* May have extension */
24 int range_bits; /* Full number of bits in the range */
25 int effective_bits; /* Effective bits */
26 long lower_bound; /* "lb" value */
27 long upper_bound; /* "ub" value */
28 } asn_per_constraint_t;
29 typedef struct asn_per_constraints_s {
30 asn_per_constraint_t value;
31 asn_per_constraint_t size;
32 } asn_per_constraints_t;
35 * This structure describes a position inside an incoming PER bit stream.
37 typedef struct asn_per_data_s {
38 const uint8_t *buffer; /* Pointer to the octet stream */
39 size_t nboff; /* Bit offset to the meaningful bit */
40 size_t nbits; /* Number of bits in the stream */
44 * Extract a small number of bits (<= 31) from the specified PER data pointer.
45 * This function returns -1 if the specified number of bits could not be
46 * extracted due to EOD or other conditions.
48 int32_t per_get_few_bits(asn_per_data_t *per_data, int get_nbits);
51 * Extract a large number of bits from the specified PER data pointer.
52 * This function returns -1 if the specified number of bits could not be
53 * extracted due to EOD or other conditions.
55 int per_get_many_bits(asn_per_data_t *pd, uint8_t *dst, int right_align,
59 * Get the length "n" from the Unaligned PER stream.
61 ssize_t uper_get_length(asn_per_data_t *pd,
62 int effective_bound_bits,
66 * Get the normally small non-negative whole number.
68 ssize_t uper_get_nsnnwn(asn_per_data_t *pd);
71 * This structure supports forming PER output.
73 typedef struct asn_per_outp_s {
74 uint8_t *buffer; /* Pointer into the (tmpspace) */
75 size_t nboff; /* Bit offset to the meaningful bit */
76 size_t nbits; /* Number of bits left in (tmpspace) */
77 uint8_t tmpspace[32]; /* Preliminary storage to hold data */
78 int (*outper)(const void *data, size_t size, void *op_key);
79 void *op_key; /* Key for (outper) data callback */
80 size_t flushed_bytes; /* Bytes already flushed through (outper) */
83 /* Output a small number of bits (<= 31) */
84 int per_put_few_bits(asn_per_outp_t *per_data, uint32_t bits, int obits);
86 /* Output a large number of bits */
87 int per_put_many_bits(asn_per_outp_t *po, const uint8_t *src, int put_nbits);
90 * Put the length "n" to the Unaligned PER stream.
91 * This function returns the number of units which may be flushed
92 * in the next units saving iteration.
94 ssize_t uper_put_length(asn_per_outp_t *po, size_t whole_length);
97 * Put the normally small non-negative whole number.
99 int uper_put_nsnnwn(asn_per_outp_t *po, int n);
105 #endif /* _PER_SUPPORT_H_ */