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
|
#ifndef _GROK_PROGRAM_H_
#define _GROK_PROGRAM_H_
#include <sys/types.h>
#include <sys/stat.h>
#include <event.h>
//include "grok_input.h"
//include "grok_matchconf.h"
typedef struct grok_program grok_program_t;
typedef struct grok_collection grok_collection_t;
struct grok_input;
struct grok_matchconfig;
struct grok_program {
char *name; /* optional program name */
struct grok_input *inputs;
int ninputs;
int input_size;
struct grok_matchconf *matchconfigs;
int nmatchconfigs;
int matchconfig_size;
char **patternfiles;
int npatternfiles;
int patternfile_size;
int logmask;
int logdepth;
grok_collection_t *gcol; /* if we are using this program in a collection */
int reactions;
};
struct grok_collection {
grok_program_t **programs; /* array of pointers to grok_program_t */
int nprograms;
int program_size;
struct event_base *ebase;
struct event *ev_sigchld;
int logmask;
int logdepth;
int exit_code;
};
grok_collection_t *grok_collection_init();
void grok_collection_add(grok_collection_t *gcol, grok_program_t *gprog);
void grok_collection_loop(grok_collection_t *gcol);
void grok_collection_check_end_state(grok_collection_t *gcol);
#endif /* _GROK_PROGRAM_H_ */
|