summaryrefslogtreecommitdiffstats
path: root/ctok.h
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-02-19 14:07:10 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-02-19 14:07:10 +0000
commit47aab374d40c05cbb7a4ceb2a4236cb65a399c3a (patch)
treeccd3d7cff29b9033c274fcf72771aa50cf3aec74 /ctok.h
parent296a9b0f0d1a1f6fb45d9741c5bcd32941250b3c (diff)
downloadrsyslog-47aab374d40c05cbb7a4ceb2a4236cb65a399c3a.tar.gz
rsyslog-47aab374d40c05cbb7a4ceb2a4236cb65a399c3a.tar.xz
rsyslog-47aab374d40c05cbb7a4ceb2a4236cb65a399c3a.zip
- added ctok class (the config tokenizer)
- done stage work to begin implement tokenizer
Diffstat (limited to 'ctok.h')
-rw-r--r--ctok.h44
1 files changed, 44 insertions, 0 deletions
diff --git a/ctok.h b/ctok.h
new file mode 100644
index 00000000..ea8fa164
--- /dev/null
+++ b/ctok.h
@@ -0,0 +1,44 @@
+/* The ctok object (implements a config file tokenizer).
+ *
+ * Copyright 2008 Rainer Gerhards and Adiscon GmbH.
+ *
+ * This file is part of rsyslog.
+ *
+ * Rsyslog is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * Rsyslog is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with Rsyslog. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * A copy of the GPL can be found in the file "COPYING" in this distribution.
+ */
+#ifndef INCLUDED_CTOK_H
+#define INCLUDED_CTOK_H
+
+#include "obj.h"
+#include "stringbuf.h"
+
+/* the ctokession object */
+typedef struct ctok_s {
+ BEGINobjInstance; /* Data to implement generic object - MUST be the first data element! */
+ uchar *pp; /* this points to the next unread character, it is a reminescent of pp in
+ the config parser code ;) */
+} ctok_t;
+
+
+/* prototypes */
+rsRetVal ctokConstruct(ctok_t **ppThis);
+rsRetVal ctokConstructFinalize(ctok_t __attribute__((unused)) *pThis);
+rsRetVal ctokDestruct(ctok_t **ppThis);
+rsRetVal ctokGetpp(ctok_t *pThis, uchar **pp);
+PROTOTYPEObjClassInit(ctok);
+PROTOTYPEpropSetMeth(ctok, pp, uchar*);
+
+#endif /* #ifndef INCLUDED_CTOK_H */