forked from CESNET/ipfixcol2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.c
156 lines (139 loc) · 4.71 KB
/
config.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/**
* \file src/plugins/output/dummy/config.c
* \author Lukas Hutak <[email protected]>
* \brief Example parser of an XML configuration (source file)
* \date 2018
*/
/* Copyright (C) 2018 CESNET, z.s.p.o.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
* 3. Neither the name of the Company nor the names of its contributors
* may be used to endorse or promote products derived from this
* software without specific prior written permission.
*
* ALTERNATIVELY, provided that this notice is retained in full, this
* product may be distributed under the terms of the GNU General Public
* License (GPL) version 2 or later, in which case the provisions
* of the GPL apply INSTEAD OF those given above.
*
* This software is provided ``as is'', and any express or implied
* warranties, including, but not limited to, the implied warranties of
* merchantability and fitness for a particular purpose are disclaimed.
* In no event shall the company or contributors be liable for any
* direct, indirect, incidental, special, exemplary, or consequential
* damages (including, but not limited to, procurement of substitute
* goods or services; loss of use, data, or profits; or business
* interruption) however caused and on any theory of liability, whether
* in contract, strict liability, or tort (including negligence or
* otherwise) arising in any way out of the use of this software, even
* if advised of the possibility of such damage.
*
*/
#include <stdlib.h>
#include <limits.h>
#include "config.h"
/*
* <params>
* <delay>...</delay> <!-- in microseconds -->
* </params>
*/
/** XML nodes */
enum params_xml_nodes {
NODE_DELAY = 1
};
/** Definition of the \<params\> node */
static const struct fds_xml_args args_params[] = {
FDS_OPTS_ROOT("params"),
FDS_OPTS_ELEM(NODE_DELAY, "delay", FDS_OPTS_T_UINT, 0),
FDS_OPTS_END
};
/**
* \brief Process \<params\> node
* \param[in] ctx Plugin context
* \param[in] root XML context to process
* \param[in] cfg Parsed configuration
* \return #IPX_OK on success
* \return #IPX_ERR_FORMAT in case of failure
*/
static int
config_parser_root(ipx_ctx_t *ctx, fds_xml_ctx_t *root, struct instance_config *cfg)
{
(void) ctx;
const struct fds_xml_cont *content;
while(fds_xml_next(root, &content) != FDS_EOC) {
switch (content->id) {
case NODE_DELAY:
// Delay between messages [microseconds]
assert(content->type == FDS_OPTS_T_UINT);
cfg->sleep_time.tv_nsec = (content->val_uint % 1000000LL) * 1000LL;
cfg->sleep_time.tv_sec = content->val_uint / 1000000LL;
break;
default:
// Internal error
assert(false);
}
}
return IPX_OK;
}
/**
* \brief Set default parameters of the configuration
* \param[in] cfg Configuration
*/
static void
config_default_set(struct instance_config *cfg)
{
cfg->sleep_time.tv_sec = 0;
cfg->sleep_time.tv_nsec = 100000000LL; // 100ms between messages
}
struct instance_config *
config_parse(ipx_ctx_t *ctx, const char *params)
{
struct instance_config *cfg = calloc(1, sizeof(*cfg));
if (!cfg) {
IPX_CTX_ERROR(ctx, "Memory allocation error (%s:%d)", __FILE__, __LINE__);
return NULL;
}
// Set default parameters
config_default_set(cfg);
// Create an XML parser
fds_xml_t *parser = fds_xml_create();
if (!parser) {
IPX_CTX_ERROR(ctx, "Memory allocation error (%s:%d)", __FILE__, __LINE__);
free(cfg);
return NULL;
}
if (fds_xml_set_args(parser, args_params) != FDS_OK) {
IPX_CTX_ERROR(ctx, "Failed to parse the description of an XML document!", '\0');
fds_xml_destroy(parser);
free(cfg);
return NULL;
}
fds_xml_ctx_t *params_ctx = fds_xml_parse_mem(parser, params, true);
if (params_ctx == NULL) {
IPX_CTX_ERROR(ctx, "Failed to parse the configuration: %s", fds_xml_last_err(parser));
fds_xml_destroy(parser);
free(cfg);
return NULL;
}
// Parse parameters
int rc = config_parser_root(ctx, params_ctx, cfg);
fds_xml_destroy(parser);
if (rc != IPX_OK) {
free(cfg);
return NULL;
}
return cfg;
}
void
config_destroy(struct instance_config *cfg)
{
free(cfg);
}