summaryrefslogtreecommitdiffstats
path: root/grammar/rainerscript.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2012-09-04 14:51:35 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2012-09-04 14:51:35 +0200
commitc596f1c1b2b6df18a9209d436a8255d96f437b54 (patch)
treec98aea6002cf929ca9a69e63de1954320115d6a2 /grammar/rainerscript.h
parentb473bae2d7bd907b5e9a6ee9fc7cadf92dfe69b8 (diff)
downloadrsyslog-c596f1c1b2b6df18a9209d436a8255d96f437b54.tar.gz
rsyslog-c596f1c1b2b6df18a9209d436a8255d96f437b54.tar.xz
rsyslog-c596f1c1b2b6df18a9209d436a8255d96f437b54.zip
new ruleengine: PROP and PRI legacy filter structures properly created
Diffstat (limited to 'grammar/rainerscript.h')
-rw-r--r--grammar/rainerscript.h25
1 files changed, 24 insertions, 1 deletions
diff --git a/grammar/rainerscript.h b/grammar/rainerscript.h
index 2d4d9271..89d7c050 100644
--- a/grammar/rainerscript.h
+++ b/grammar/rainerscript.h
@@ -3,7 +3,14 @@
#include <stdio.h>
#include <libestr.h>
#include <typedefs.h>
+#include <sys/types.h>
+#include <regex.h>
+//#include "stringbuf.h"
+/* TODO: make this hack cleaner... we have circular definitions, so we need: */
+
+
+#define LOG_NFACILITIES 24 /* current number of syslog facilities */
#define CNFFUNC_MAX_ARGS 32
/**< maximum number of arguments that any function can have (among
* others, this is used to size data structures).
@@ -163,7 +170,20 @@ struct cnfstmt { /* base statement, for simple types */
struct cnfexpr *expr;
struct cnfstmt *t_then;
struct cnfstmt *t_else;
- } cond;
+ } s_if;
+ struct {
+ uchar pmask[LOG_NFACILITIES+1]; /* priority mask */
+ struct cnfstmt *t_then;
+ } s_prifilt;
+ struct {
+ fiop_t operation;
+ regex_t *regex_cache;/* cache for compiled REs, if used */
+ struct cstr_s *pCSCompValue;/* value to "compare" against */
+ sbool isNegated;
+ uintTiny propID;/* ID of the requested property */
+ es_str_t *propName;/* name of property for CEE-based filters */
+ struct cnfstmt *t_then;
+ } s_propfilt;
struct action_s *act;
} d;
};
@@ -297,7 +317,10 @@ void cnfcfsyslinelstDestruct(struct cnfcfsyslinelst *cfslst);
struct cnfstmt * cnfstmtNew(unsigned s_type);
void cnfstmtPrint(struct cnfstmt *stmt, int indent);
struct cnfstmt* scriptAddStmt(struct cnfstmt *root, struct cnfstmt *s);
+struct objlst* objlstAdd(struct objlst *root, struct cnfobj *o);
char *rmLeadingSpace(char *s);
+struct cnfstmt * cnfstmtNewPRIFILT(char *prifilt, struct cnfstmt *t_then);
+struct cnfstmt * cnfstmtNewPROPFILT(char *propfilt, struct cnfstmt *t_then);
rsRetVal initRainerscript(void);
/* debug helper */