-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtest.c
73 lines (64 loc) · 1.35 KB
/
test.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
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "eval.h"
extern int parse_ruleset(const char *, struct ruleset **, char *, size_t);
void
die(const char *reason)
{
fprintf(stderr, "die() reason '%s'\n", reason);
}
int main(void)
{
char err[8192];
struct ruleset *rs = NULL;
int *res;
struct action *a;
int i;
for (i = 0; i < 10; ++i) {
rs = NULL;
if (parse_ruleset("rules", &rs, err, sizeof(err)) || rs == NULL) {
fprintf(stderr, "parse_ruleset: %s\n", err);
if (rs) {
free_ruleset(rs);
rs = NULL;
}
continue;
}
rs->refcnt++;
printf("rules parsed ok! maxidx %u\n", rs->maxidx);
res = calloc(1, rs->maxidx * sizeof(int));
if (res == NULL) {
fprintf(stderr, "calloc: %s\n", strerror(errno));
return (1);
}
printf("body foo\n");
a = eval_cond(rs, res, COND_BODY, "foo", NULL);
if (a == NULL)
printf("no action\n");
else {
printf("action found! msg '%s'\n", a->msg);
goto done;
}
printf("body bar\n");
a = eval_cond(rs, res, COND_BODY, "bar", NULL);
if (a == NULL)
printf("no action\n");
else {
printf("action found! msg '%s'\n", a->msg);
goto done;
}
printf("end of body\n");
a = eval_end(rs, res, COND_BODY, COND_MAX);
if (a == NULL)
printf("no action\n");
else
printf("action found! msg '%s'\n", a->msg);
rs->refcnt--;
free(res);
free_ruleset(rs);
}
done:
return (0);
}