summaryrefslogtreecommitdiffstats
path: root/action.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2012-10-11 09:12:20 +0200
committerRainer Gerhards <rgerhards@adiscon.com>2012-10-11 09:12:20 +0200
commitf85690620b74c076de8f26059e5914f72a8bd912 (patch)
tree2b03f3b2d8ce22b90e2239d87459074819dcfd2b /action.c
parentdc724fcd2e1a8fcd8c2b3c309fa1c1a3f7bc73ea (diff)
downloadrsyslog-f85690620b74c076de8f26059e5914f72a8bd912.tar.gz
rsyslog-f85690620b74c076de8f26059e5914f72a8bd912.tar.xz
rsyslog-f85690620b74c076de8f26059e5914f72a8bd912.zip
do "template date call" only when actually needed
Diffstat (limited to 'action.c')
-rw-r--r--action.c23
1 files changed, 22 insertions, 1 deletions
diff --git a/action.c b/action.c
index 02c82465..cf010d01 100644
--- a/action.c
+++ b/action.c
@@ -1230,7 +1230,10 @@ prepareBatch(action_t *pAction, batch_t *pBatch, sbool **activeSave, int *bMustR
struct syslogTime ttNow;
DEFiRet;
- datetime.getCurrTime(&ttNow, NULL); // TODO: query time only if required 2012-10-10 rger
+ if(pAction->requiresDateCall) {
+ datetime.getCurrTime(&ttNow, NULL);
+ }
+
pBatch->iDoneUpTo = 0;
for(i = 0 ; i < batchNumMsgs(pBatch) && !*(pBatch->pbShutdownImmediate) ; ++i) {
pElem = &(pBatch->pElem[i]);
@@ -1878,6 +1881,23 @@ actionApplyCnfParam(action_t *pAction, struct cnfparamvals *pvals)
return RS_RET_OK;
}
+/* check if the templates used in this action require a date call
+ * ($NOW family of properties).
+ */
+static inline int
+actionRequiresDateCall(action_t *pAction)
+{
+ int i;
+ int r = 0;
+
+ for(i = 0 ; i < pAction->iNumTpls ; ++i) {
+ if(tplRequiresDateCall(pAction->ppTpl[i])) {
+ r = 1;
+ break;
+ }
+ }
+ return r;
+}
/* add an Action to the current selector
@@ -1983,6 +2003,7 @@ addAction(action_t **ppAction, modInfo_t *pMod, void *pModData,
pAction->f_ReduceRepeated = 0;
}
pAction->eState = ACT_STATE_RDY; /* action is enabled */
+ pAction->requiresDateCall = actionRequiresDateCall(pAction);
if(bSuspended)
actionSuspend(pAction, datetime.GetTime(NULL)); /* "good" time call, only during init and unavoidable */