summaryrefslogtreecommitdiffstats
path: root/template.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2005-09-09 12:52:23 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2005-09-09 12:52:23 +0000
commit9a39532d953ac2a486635316ffd1970c993753de (patch)
tree63e02509d3d211d6be13e94c6ea34e51473b7a09 /template.c
parent602fb17d3307d3dbe619ec559688c5b0c2ebc47c (diff)
downloadrsyslog-9a39532d953ac2a486635316ffd1970c993753de.tar.gz
rsyslog-9a39532d953ac2a486635316ffd1970c993753de.tar.xz
rsyslog-9a39532d953ac2a486635316ffd1970c993753de.zip
initial implementation of the counted string class completed (but so far
only a very feature-less class). code compiles again.
Diffstat (limited to 'template.c')
-rw-r--r--template.c42
1 files changed, 23 insertions, 19 deletions
diff --git a/template.c b/template.c
index 7e4febc5..8c798600 100644
--- a/template.c
+++ b/template.c
@@ -84,7 +84,7 @@ struct template* tplConstruct(void)
static int do_Constant(char **pp, struct template *pTpl)
{
register char *p;
- sbStrBObj *pStrB;
+ rsCStrObj *pStrB;
struct templateEntry *pTpe;
int i;
@@ -94,9 +94,9 @@ static int do_Constant(char **pp, struct template *pTpl)
p = *pp;
- if((pStrB = sbStrBConstruct()) == NULL)
+ if((pStrB = rsCStrConstruct()) == NULL)
return 1;
- sbStrBSetAllocIncrement(pStrB, 32);
+ rsCStrSetAllocIncrement(pStrB, 32);
/* process the message and expand escapes
* (additional escapes can be added here if needed)
*/
@@ -105,22 +105,22 @@ static int do_Constant(char **pp, struct template *pTpl)
switch(*++p) {
case '\0':
/* the best we can do - it's invalid anyhow... */
- sbStrBAppendChar(pStrB, *p);
+ rsCStrAppendChar(pStrB, *p);
break;
case 'n':
- sbStrBAppendChar(pStrB, '\n');
+ rsCStrAppendChar(pStrB, '\n');
++p;
break;
case 'r':
- sbStrBAppendChar(pStrB, '\r');
+ rsCStrAppendChar(pStrB, '\r');
++p;
break;
case '\\':
- sbStrBAppendChar(pStrB, '\\');
+ rsCStrAppendChar(pStrB, '\\');
++p;
break;
case '%':
- sbStrBAppendChar(pStrB, '%');
+ rsCStrAppendChar(pStrB, '%');
++p;
break;
case '0': /* numerical escape sequence */
@@ -137,15 +137,15 @@ static int do_Constant(char **pp, struct template *pTpl)
while(*p && isdigit(*p)) {
i = i * 10 + *p++ - '0';
}
- sbStrBAppendChar(pStrB, i);
+ rsCStrAppendChar(pStrB, i);
break;
default:
- sbStrBAppendChar(pStrB, *p++);
+ rsCStrAppendChar(pStrB, *p++);
break;
}
}
else
- sbStrBAppendChar(pStrB, *p++);
+ rsCStrAppendChar(pStrB, *p++);
}
if((pTpe = tpeConstruct(pTpl)) == NULL) {
@@ -157,11 +157,14 @@ static int do_Constant(char **pp, struct template *pTpl)
return 1;
}
pTpe->eEntryType = CONSTANT;
- pTpe->data.constant.pConstant = sbStrBFinish(pStrB);
- /* we need to call strlen() below because of the escape sequneces.
- * due to them p -*pp is NOT the right size!
+ rsCStrFinish(pStrB);
+ /* We obtain the length from the counted string object
+ * (before we delete it). Later we might take additional
+ * benefit from the counted string object.
+ * 2005-09-09 rgerhards
*/
- pTpe->data.constant.iLenConstant = strlen(pTpe->data.constant.pConstant);
+ pTpe->data.constant.iLenConstant = rsCStrLen(pStrB);
+ pTpe->data.constant.pConstant = rsCStrConvSzStrAndDestruct(pStrB);
*pp = p;
@@ -231,7 +234,7 @@ static void doOptions(char **pp, struct templateEntry *pTpe)
static int do_Parameter(char **pp, struct template *pTpl)
{
char *p;
- sbStrBObj *pStrB;
+ rsCStrObj *pStrB;
struct templateEntry *pTpe;
int iNum; /* to compute numbers */
@@ -241,7 +244,7 @@ static int do_Parameter(char **pp, struct template *pTpl)
p = *pp;
- if((pStrB = sbStrBConstruct()) == NULL)
+ if((pStrB = rsCStrConstruct()) == NULL)
return 1;
if((pTpe = tpeConstruct(pTpl)) == NULL) {
@@ -252,11 +255,12 @@ static int do_Parameter(char **pp, struct template *pTpl)
pTpe->eEntryType = FIELD;
while(*p && *p != '%' && *p != ':') {
- sbStrBAppendChar(pStrB, *p++);
+ rsCStrAppendChar(pStrB, *p++);
}
/* got the name*/
- pTpe->data.field.pPropRepl = sbStrBFinish(pStrB);
+ rsCStrFinish(pStrB);
+ pTpe->data.field.pPropRepl = rsCStrConvSzStrAndDestruct(pStrB);
/* check frompos */
if(*p == ':') {