blob: 529e95313ba178c3628d1d816810c3da90d0c63f [file] [log] [blame]
Lev Walkinf15320b2004-06-03 03:38:44 +00001/*
2 * CLASS-related stuff.
3 */
4#ifndef ASN1_PARSER_CLASS_H
5#define ASN1_PARSER_CLASS_H
6
Lev Walkind370e9f2006-03-16 10:03:35 +00007struct asn1p_expr_s; /* Forward declaration */
8
9typedef struct asn1p_ioc_row_s {
10 struct asn1p_ioc_cell_s {
11 struct asn1p_expr_s *field; /* may never be NULL */
12 struct asn1p_expr_s *value; /* may be left uninitialized */
Bi-Ruei, Chiu80fd3062017-05-07 21:00:51 +080013 int new_ref;
Lev Walkind370e9f2006-03-16 10:03:35 +000014 } *column;
Lev Walkin62d95d22017-08-06 23:41:11 -070015 size_t columns;
Lev Walkind370e9f2006-03-16 10:03:35 +000016} asn1p_ioc_row_t;
17
18asn1p_ioc_row_t *asn1p_ioc_row_new(struct asn1p_expr_s *oclass);
Lev Walkin4dcf8362017-08-07 20:10:05 -070019size_t asn1p_ioc_row_max_identifier_length(asn1p_ioc_row_t *);
Lev Walkind370e9f2006-03-16 10:03:35 +000020void asn1p_ioc_row_delete(asn1p_ioc_row_t *);
Lev Walkinea6635b2017-08-06 23:23:04 -070021
Lev Walkin4dcf8362017-08-07 20:10:05 -070022typedef struct asn1p_ioc_table_s {
23 asn1p_ioc_row_t **row;
24 size_t rows;
25} asn1p_ioc_table_t;
26
27asn1p_ioc_table_t *asn1p_ioc_table_new(void);
28void asn1p_ioc_table_add(asn1p_ioc_table_t *, asn1p_ioc_row_t *row);
29size_t asn1p_ioc_table_max_identifier_length(asn1p_ioc_table_t *);
30void asn1p_ioc_table_free(asn1p_ioc_table_t *);
31
Lev Walkinea6635b2017-08-06 23:23:04 -070032/*
33 * Match is similar to a comparison,
34 * but -1 means error and 1 means not equal. 0 is OK
35 */
36int asn1p_ioc_row_match(const asn1p_ioc_row_t *, const asn1p_ioc_row_t *);
37
Lev Walkind370e9f2006-03-16 10:03:35 +000038struct asn1p_ioc_cell_s *asn1p_ioc_row_cell_fetch(asn1p_ioc_row_t *,
39 const char *fieldname);
40
Lev Walkinf15320b2004-06-03 03:38:44 +000041/*
42 * WITH SYNTAX free-form chunks.
43 */
44typedef struct asn1p_wsyntx_chunk_s {
Lev Walkin9d542d22006-03-14 16:31:37 +000045 enum {
46 WC_LITERAL,
Lev Walkin57074f12006-03-16 05:11:14 +000047 WC_WHITESPACE,
Lev Walkind370e9f2006-03-16 10:03:35 +000048 WC_FIELD,
Lev Walkin9d542d22006-03-14 16:31:37 +000049 WC_OPTIONALGROUP
50 } type;
Lev Walkinf15320b2004-06-03 03:38:44 +000051 /*
Lev Walkin57074f12006-03-16 05:11:14 +000052 * WC_LITERAL -> {token}
53 * WC_WHITESPACE -> {token}
Lev Walkind370e9f2006-03-16 10:03:35 +000054 * WC_FIELD -> {token}
Lev Walkin9d542d22006-03-14 16:31:37 +000055 * WC_OPTIONALGROUP -> {syntax}
Lev Walkinf15320b2004-06-03 03:38:44 +000056 */
Lev Walkin9d542d22006-03-14 16:31:37 +000057 union {
Lev Walkind370e9f2006-03-16 10:03:35 +000058 char *token;
Lev Walkin9d542d22006-03-14 16:31:37 +000059 struct asn1p_wsyntx_s *syntax;
60 } content;
Lev Walkinf15320b2004-06-03 03:38:44 +000061
62 TQ_ENTRY(struct asn1p_wsyntx_chunk_s) next;
63} asn1p_wsyntx_chunk_t;
64
65typedef struct asn1p_wsyntx_s {
66
Bi-Ruei, Chiu80fd3062017-05-07 21:00:51 +080067 struct asn1p_wsyntx_chunk_s *parent;
68
Lev Walkinf15320b2004-06-03 03:38:44 +000069 TQ_HEAD(struct asn1p_wsyntx_chunk_s) chunks;
70
71} asn1p_wsyntx_t;
72
73
74/*
75 * Constructor, destructor and cloning function.
76 */
77asn1p_wsyntx_chunk_t *asn1p_wsyntx_chunk_new(void);
78void asn1p_wsyntx_chunk_free(asn1p_wsyntx_chunk_t *);
79asn1p_wsyntx_chunk_t *asn1p_wsyntx_chunk_clone(asn1p_wsyntx_chunk_t *);
80
81asn1p_wsyntx_t *asn1p_wsyntx_new(void);
82void asn1p_wsyntx_free(asn1p_wsyntx_t *);
83asn1p_wsyntx_t *asn1p_wsyntx_clone(asn1p_wsyntx_t *);
84
85/*
86 * RETURN VALUES:
87 * 0: Component has been added
88 * -1: Failure to add component (refer to errno)
89 */
Lev Walkinc46b7cb2006-08-18 02:27:55 +000090asn1p_wsyntx_chunk_t *asn1p_wsyntx_chunk_fromstring(char *token, int _copy);
Lev Walkin9d542d22006-03-14 16:31:37 +000091asn1p_wsyntx_chunk_t *asn1p_wsyntx_chunk_fromsyntax(asn1p_wsyntx_t *syntax);
Lev Walkinf15320b2004-06-03 03:38:44 +000092
93
94#endif /* ASN1_PARSER_CLASS_H */