blob: 2708724d9585ffffe10c69a947ce98a9c053fabf [file] [log] [blame]
vlm337167e2005-11-26 11:25:14 +00001/*
vlm1fcf7592006-08-18 02:27:55 +00002 * Copyright (c) 2005, 2006 Lev Walkin <vlm@lionet.info>. All rights reserved.
vlm337167e2005-11-26 11:25:14 +00003 * Redistribution and modifications are permitted subject to BSD license.
4 */
5#ifndef _PER_SUPPORT_H_
6#define _PER_SUPPORT_H_
7
8#include <asn_system.h> /* Platform-specific types */
9
10#ifdef __cplusplus
11extern "C" {
12#endif
13
14/*
vlm1fcf7592006-08-18 02:27:55 +000015 * Pre-computed PER constraints.
16 */
17typedef 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 */
23 } flags;
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;
29typedef struct asn_per_constraints_s {
30 asn_per_constraint_t value;
31 asn_per_constraint_t size;
vlm86380d32006-10-09 12:07:58 +000032 int (*value2code)(unsigned int value);
33 int (*code2value)(unsigned int code);
vlm1fcf7592006-08-18 02:27:55 +000034} asn_per_constraints_t;
35
36/*
vlm18dd82c2006-08-18 01:34:18 +000037 * This structure describes a position inside an incoming PER bit stream.
vlm337167e2005-11-26 11:25:14 +000038 */
39typedef struct asn_per_data_s {
vlm4d2ca122005-12-07 05:46:03 +000040 const uint8_t *buffer; /* Pointer to the octet stream */
41 size_t nboff; /* Bit offset to the meaningful bit */
42 size_t nbits; /* Number of bits in the stream */
vlm337167e2005-11-26 11:25:14 +000043} asn_per_data_t;
44
45/*
vlm1fcf7592006-08-18 02:27:55 +000046 * Extract a small number of bits (<= 31) from the specified PER data pointer.
47 * This function returns -1 if the specified number of bits could not be
48 * extracted due to EOD or other conditions.
49 */
50int32_t per_get_few_bits(asn_per_data_t *per_data, int get_nbits);
51
52/*
53 * Extract a large number of bits from the specified PER data pointer.
54 * This function returns -1 if the specified number of bits could not be
55 * extracted due to EOD or other conditions.
56 */
57int per_get_many_bits(asn_per_data_t *pd, uint8_t *dst, int right_align,
58 int get_nbits);
59
60/*
61 * Get the length "n" from the Unaligned PER stream.
62 */
63ssize_t uper_get_length(asn_per_data_t *pd,
64 int effective_bound_bits,
65 int *repeat);
66
67/*
68 * Get the normally small non-negative whole number.
69 */
70ssize_t uper_get_nsnnwn(asn_per_data_t *pd);
71
72/*
vlm18dd82c2006-08-18 01:34:18 +000073 * This structure supports forming PER output.
74 */
75typedef struct asn_per_outp_s {
76 uint8_t *buffer; /* Pointer into the (tmpspace) */
77 size_t nboff; /* Bit offset to the meaningful bit */
78 size_t nbits; /* Number of bits left in (tmpspace) */
79 uint8_t tmpspace[32]; /* Preliminary storage to hold data */
80 int (*outper)(const void *data, size_t size, void *op_key);
vlme7e9bd92006-09-17 11:02:53 +000081 void *op_key; /* Key for (outper) data callback */
82 size_t flushed_bytes; /* Bytes already flushed through (outper) */
vlm18dd82c2006-08-18 01:34:18 +000083} asn_per_outp_t;
84
vlm18dd82c2006-08-18 01:34:18 +000085/* Output a small number of bits (<= 31) */
86int per_put_few_bits(asn_per_outp_t *per_data, uint32_t bits, int obits);
87
vlm18dd82c2006-08-18 01:34:18 +000088/* Output a large number of bits */
89int per_put_many_bits(asn_per_outp_t *po, const uint8_t *src, int put_nbits);
90
vlm337167e2005-11-26 11:25:14 +000091/*
vlm18dd82c2006-08-18 01:34:18 +000092 * Put the length "n" to the Unaligned PER stream.
93 * This function returns the number of units which may be flushed
94 * in the next units saving iteration.
95 */
96ssize_t uper_put_length(asn_per_outp_t *po, size_t whole_length);
97
98/*
vlm18dd82c2006-08-18 01:34:18 +000099 * Put the normally small non-negative whole number.
100 */
101int uper_put_nsnnwn(asn_per_outp_t *po, int n);
102
vlm337167e2005-11-26 11:25:14 +0000103#ifdef __cplusplus
104}
105#endif
106
107#endif /* _PER_SUPPORT_H_ */