diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-30 10:12:22 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2007-07-30 10:12:22 +0000 |
commit | 6808a7e2f187760187edbd6aefe3513e2e5bb862 (patch) | |
tree | 36bf98d51bad76ea7056fdfe136f8202a6c653f4 /cfsysline.h | |
parent | d2061ff6cb52925162254455f85eeb9ae92bb78b (diff) | |
download | rsyslog-6808a7e2f187760187edbd6aefe3513e2e5bb862.tar.gz rsyslog-6808a7e2f187760187edbd6aefe3513e2e5bb862.tar.xz rsyslog-6808a7e2f187760187edbd6aefe3513e2e5bb862.zip |
- added cfsysline objects - initial set of functions
- fixed bug in OMSRcreate() - always returned SR_RET_OK
Diffstat (limited to 'cfsysline.h')
-rw-r--r-- | cfsysline.h | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/cfsysline.h b/cfsysline.h new file mode 100644 index 00000000..39083667 --- /dev/null +++ b/cfsysline.h @@ -0,0 +1,68 @@ +/* Definition of the cfsysline (config file system line) object. + * + * Copyright 2007 Rainer Gerhards and Adiscon GmbH. + * + * This program 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 2 + * of the License, or (at your option) any later version. + * + * This program 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 this program; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + * + * A copy of the GPL can be found in the file "COPYING" in this distribution. + */ + +#ifndef CFSYSLINE_H_INCLUDED +#define CFSYSLINE_H_INCLUDED + +/* types of configuration handlers + */ +typedef enum cslCmdHdlrType { + eCmdHdlrInvalid = 0, /* invalid handler type - indicates a coding error */ + eCmdHdlrCustomHandler, /* custom handler, just call handler function */ + eCmdHdlrUID, + eCmdHdlrGUID, + eCmdHdlrBinary, + eCmdHdlrFileCreateMode, + eCmdHdlrFileGetChar +} ecslCmdHdrlType; + +/* this is a single entry for a parse routine. It describes exactly + * one entry point/handler. + * The short name is cslch (Configfile SysLine CommandHandler) + */ +struct cslCmdHdlr_s { /* config file sysline parse entry */ + struct cslCmdHdlr_s *pNext; + ecslCmdHdrlType eType; /* which type of handler is this? */ + rsRetVal (*cslCmdHdlr)(); /* function pointer to use with handler (params depending on eType) */ + void *pData; /* user-supplied data pointer */ +}; +typedef struct cslCmdHdlr_s cslCmdHdlr_t; + + +/* this is the list of known configuration commands with pointers to + * their handlers. + * The short name is cslc (Configfile SysLine Command) + */ +struct cslCmd_s { /* config file sysline parse entry */ + struct cslCmd_s *pNext; + uchar *pszCmdString; + struct cslCmdHdlr_s *pHdlrRoot; /* linked list of to-be-called command handlers */ + struct cslCmdHdlr_s *pHdlrLast; +}; +typedef struct cslCmd_s cslCmd_t; + +/* prototypes */ +rsRetVal cslchDestruct(cslCmdHdlr_t *pThis); +rsRetVal cslchConstruct(cslCmdHdlr_t **ppThis); +rsRetVal cslchSetEntry(cslCmdHdlr_t *pThis, ecslCmdHdrlType eType, rsRetVal (*pHdlr)(), void *pData); +rsRetVal cslchCallHdlr(cslCmdHdlr_t *pThis, uchar **ppConfLine); + +#endif /* #ifndef CFSYSLINE_H_INCLUDED */ |