blob: 4c6ed2fcf5241ec9b969655966e12d1729f310ce [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 Walkin8d35c462005-02-25 13:32:12 +00007#include "asn1p_ref.h"
Lev Walkinf15320b2004-06-03 03:38:44 +00008
Lev Walkind370e9f2006-03-16 10:03:35 +00009struct asn1p_expr_s; /* Forward declaration */
10
11typedef struct asn1p_ioc_row_s {
12 struct asn1p_ioc_cell_s {
13 struct asn1p_expr_s *field; /* may never be NULL */
14 struct asn1p_expr_s *value; /* may be left uninitialized */
Bi-Ruei, Chiu80fd3062017-05-07 21:00:51 +080015 int new_ref;
Lev Walkind370e9f2006-03-16 10:03:35 +000016 } *column;
Lev Walkin62d95d22017-08-06 23:41:11 -070017 size_t columns;
Lev Walkind370e9f2006-03-16 10:03:35 +000018} asn1p_ioc_row_t;
19
20asn1p_ioc_row_t *asn1p_ioc_row_new(struct asn1p_expr_s *oclass);
Lev Walkin4dcf8362017-08-07 20:10:05 -070021size_t asn1p_ioc_row_max_identifier_length(asn1p_ioc_row_t *);
Lev Walkind370e9f2006-03-16 10:03:35 +000022void asn1p_ioc_row_delete(asn1p_ioc_row_t *);
Lev Walkinea6635b2017-08-06 23:23:04 -070023
Lev Walkin4dcf8362017-08-07 20:10:05 -070024typedef struct asn1p_ioc_table_s {
25 asn1p_ioc_row_t **row;
26 size_t rows;
27} asn1p_ioc_table_t;
28
29asn1p_ioc_table_t *asn1p_ioc_table_new(void);
30void asn1p_ioc_table_add(asn1p_ioc_table_t *, asn1p_ioc_row_t *row);
31size_t asn1p_ioc_table_max_identifier_length(asn1p_ioc_table_t *);
32void asn1p_ioc_table_free(asn1p_ioc_table_t *);
33
Lev Walkinea6635b2017-08-06 23:23:04 -070034/*
35 * Match is similar to a comparison,
36 * but -1 means error and 1 means not equal. 0 is OK
37 */
38int asn1p_ioc_row_match(const asn1p_ioc_row_t *, const asn1p_ioc_row_t *);
39
Lev Walkind370e9f2006-03-16 10:03:35 +000040struct asn1p_ioc_cell_s *asn1p_ioc_row_cell_fetch(asn1p_ioc_row_t *,
41 const char *fieldname);
42
Lev Walkinf15320b2004-06-03 03:38:44 +000043/*
44 * WITH SYNTAX free-form chunks.
45 */
46typedef struct asn1p_wsyntx_chunk_s {
Lev Walkin9d542d22006-03-14 16:31:37 +000047 enum {
48 WC_LITERAL,
Lev Walkin57074f12006-03-16 05:11:14 +000049 WC_WHITESPACE,
Lev Walkind370e9f2006-03-16 10:03:35 +000050 WC_FIELD,
Lev Walkin9d542d22006-03-14 16:31:37 +000051 WC_OPTIONALGROUP
52 } type;
Lev Walkinf15320b2004-06-03 03:38:44 +000053 /*
Lev Walkin57074f12006-03-16 05:11:14 +000054 * WC_LITERAL -> {token}
55 * WC_WHITESPACE -> {token}
Lev Walkind370e9f2006-03-16 10:03:35 +000056 * WC_FIELD -> {token}
Lev Walkin9d542d22006-03-14 16:31:37 +000057 * WC_OPTIONALGROUP -> {syntax}
Lev Walkinf15320b2004-06-03 03:38:44 +000058 */
Lev Walkin9d542d22006-03-14 16:31:37 +000059 union {
Lev Walkind370e9f2006-03-16 10:03:35 +000060 char *token;
Lev Walkin9d542d22006-03-14 16:31:37 +000061 struct asn1p_wsyntx_s *syntax;
62 } content;
Lev Walkinf15320b2004-06-03 03:38:44 +000063
64 TQ_ENTRY(struct asn1p_wsyntx_chunk_s) next;
65} asn1p_wsyntx_chunk_t;
66
67typedef struct asn1p_wsyntx_s {
68
Bi-Ruei, Chiu80fd3062017-05-07 21:00:51 +080069 struct asn1p_wsyntx_chunk_s *parent;
70
Lev Walkinf15320b2004-06-03 03:38:44 +000071 TQ_HEAD(struct asn1p_wsyntx_chunk_s) chunks;
72
73} asn1p_wsyntx_t;
74
75
76/*
77 * Constructor, destructor and cloning function.
78 */
79asn1p_wsyntx_chunk_t *asn1p_wsyntx_chunk_new(void);
80void asn1p_wsyntx_chunk_free(asn1p_wsyntx_chunk_t *);
81asn1p_wsyntx_chunk_t *asn1p_wsyntx_chunk_clone(asn1p_wsyntx_chunk_t *);
82
83asn1p_wsyntx_t *asn1p_wsyntx_new(void);
84void asn1p_wsyntx_free(asn1p_wsyntx_t *);
85asn1p_wsyntx_t *asn1p_wsyntx_clone(asn1p_wsyntx_t *);
86
87/*
88 * RETURN VALUES:
89 * 0: Component has been added
90 * -1: Failure to add component (refer to errno)
91 */
Lev Walkinc46b7cb2006-08-18 02:27:55 +000092asn1p_wsyntx_chunk_t *asn1p_wsyntx_chunk_fromstring(char *token, int _copy);
Lev Walkin9d542d22006-03-14 16:31:37 +000093asn1p_wsyntx_chunk_t *asn1p_wsyntx_chunk_fromsyntax(asn1p_wsyntx_t *syntax);
Lev Walkinf15320b2004-06-03 03:38:44 +000094
95
96#endif /* ASN1_PARSER_CLASS_H */