blob: accee55ff8af09b9b5f44256fe8cf9387b6a3d05 [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001/*
2 * Type constraints.
3 */
4#ifndef ASN1_PARSER_CONSTRAINT_H
5#define ASN1_PARSER_CONSTRAINT_H
6
7typedef struct asn1p_constraint_s {
8
9 enum asn1p_constraint_type_e {
10 ACT_INVALID, /* for assertions */
11 /*
12 * Constraint elements.
13 */
Lev Walkinff7dd142005-03-20 12:58:00 +000014 ACT_EL_TYPE, /* T (contained subtype) */
15 ACT_EL_VALUE, /* 123, "A", (elementary value) */
Lev Walkinf15320b2004-06-03 03:38:44 +000016 ACT_EL_RANGE, /* 1..2 (elementary range) */
17 ACT_EL_LLRANGE, /* 1<..2 (elementary range) */
18 ACT_EL_RLRANGE, /* 1..<2 (elementary range) */
19 ACT_EL_ULRANGE, /* 1<..<2 (elementary range) */
20 ACT_EL_EXT, /* ... (extensibility mark) */
21 /*
22 * Constraint types.
23 */
24 ACT_CT_SIZE, /* SIZE constraint type */
25 ACT_CT_FROM, /* FROM constraint type */
26 ACT_CT_WCOMP, /* WITH COMPONENT */
27 ACT_CT_WCOMPS, /* WITH COMPONENTS */
Lev Walkin1893ddf2005-03-20 14:28:32 +000028 ACT_CT_CTDBY, /* CONSTRAINED BY */
Lev Walkina9532f42006-09-17 04:52:50 +000029 ACT_CT_CTNG, /* CONTAINING Type */
Lev Walkin5c541f12006-10-18 18:40:14 +000030 ACT_CT_PATTERN, /* PATTERN Value */
Lev Walkinf15320b2004-06-03 03:38:44 +000031 /*
32 * Arrays of constraints.
33 */
34 ACT_CA_SET, /* A set of constraints: (c1)(c2) */
Lev Walkina9532f42006-09-17 04:52:50 +000035 ACT_CA_CRC, /* Comp. relation c-t: ({a}{@b}) */
Lev Walkinf15320b2004-06-03 03:38:44 +000036 ACT_CA_CSV, /* Comma-separated constraints array */
37 ACT_CA_UNI, /* UNION (|) */
38 ACT_CA_INT, /* INTERSECTION (^) */
39 ACT_CA_EXC, /* EXCEPT */
Lev Walkin1e448d32005-03-24 14:26:38 +000040 ACT_CA_AEX, /* ALL EXCEPT */
Lev Walkinf15320b2004-06-03 03:38:44 +000041 } type;
42
43 enum asn1p_constr_pres_e {
44 ACPRES_DEFAULT,
45 ACPRES_PRESENT,
46 ACPRES_ABSENT,
47 ACPRES_OPTIONAL,
48 } presence;
49
50 /*
Lev Walkinff7dd142005-03-20 12:58:00 +000051 * Separate types and values.
Lev Walkinf15320b2004-06-03 03:38:44 +000052 */
Lev Walkinff7dd142005-03-20 12:58:00 +000053 asn1p_value_t *containedSubtype;
Lev Walkinf15320b2004-06-03 03:38:44 +000054 asn1p_value_t *value;
55 asn1p_value_t *range_start;
56 asn1p_value_t *range_stop;
57
58 /*
59 * A collection of constraint elements.
60 */
61 struct asn1p_constraint_s **elements;
Lev Walkine972d932004-09-05 10:40:28 +000062 unsigned int el_count; /* Number of meaningful elements */
63 unsigned int el_size; /* Size of the allocated (elements) */
Lev Walkinf15320b2004-06-03 03:38:44 +000064
65 int _lineno; /* Position in a source file */
66} asn1p_constraint_t;
67
Lev Walkinf59d0752004-08-18 04:59:12 +000068/* Human-readable constraint type description */
69char *asn1p_constraint_type2str(enum asn1p_constraint_type_e);
Lev Walkinf15320b2004-06-03 03:38:44 +000070
71/*
72 * Constructors and a recursive destructor.
73 */
74asn1p_constraint_t *asn1p_constraint_new(int _lineno);
75void asn1p_constraint_free(asn1p_constraint_t *);
76
77/*
78 * Clone the constraint and all its children.
79 */
80asn1p_constraint_t *asn1p_constraint_clone(asn1p_constraint_t *source_to_clone);
Lev Walkina00d6b32006-03-21 03:40:38 +000081asn1p_constraint_t *asn1p_constraint_clone_with_resolver(
82 asn1p_constraint_t *source_to_clone,
83 asn1p_value_t *(*resolver)(asn1p_value_t *, void *), void *);
Lev Walkinf15320b2004-06-03 03:38:44 +000084
85/*
86 * Insert additional element into the element array of a (to) constraint.
87 */
88int asn1p_constraint_insert(asn1p_constraint_t *into, asn1p_constraint_t *what);
Lev Walkina00d6b32006-03-21 03:40:38 +000089int asn1p_constraint_prepend(asn1p_constraint_t *before, asn1p_constraint_t *what);
Lev Walkinf15320b2004-06-03 03:38:44 +000090
91#endif /* ASN1_PARSER_CONSTRAINT_H */