ConfigEntry.java
5.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
package com.sitech.ismp.ice.syslogd;
import java.util.*;
import com.sitech.ismp.ice.syslog.SyslogDefs;
public class
ConfigEntry
{
public static final String RCS_ID = "$Id: ConfigEntry.java,v 1.1.1.1 1998/02/22 05:47:54 time Exp $";
public static final String RCS_REV = "$Revision: 1.1.1.1 $";
public static final String RCS_NAME = "$Name: $";
private static final int[] repeatBackoff =
{ 15, 30, 60, 180, 600, 3600 };
private boolean hasMatch;
private boolean notMatch;
private SyslogMatch matcher;
private SyslogAction action;
private int[] facilities;
private String[] parameters;
private int backOffIdx;
private int repeatCount;
private Date repeatTimeout;
private Date prevTime;
private SyslogMessage prevMsg;
public
ConfigEntry()
{
this.matcher = null;
this.hasMatch = false;
this.notMatch = false;
this.facilities =
new int[ SyslogDefs.LOG_NFACILITIES ];
this.action = null;
this.parameters = null;
this.backOffIdx = 0;
this.repeatCount = 0;
this.prevTime = null;
this.prevMsg = null;
}
public void
setAction( SyslogAction action )
{
this.action = action;
}
public boolean
afterRepeatTimeout( Date now )
{
return now.after( this.repeatTimeout );
}
public Date
getRepeatTimeout( Date now )
{
return this.repeatTimeout;
}
public void
setFacilityLevel( int facility, int level )
{
this.facilities[ facility ] = level;
}
public void
setMatchExpr( String expr )
{
this.hasMatch = true;
this.notMatch = false;
if ( expr.startsWith( "!" ) )
{
this.notMatch = true;
expr = expr.substring(1);
}
this.matcher = new SyslogMatch();
try { this.matcher.compile( expr ); }
catch ( MatchCompileException ex )
{
this.matcher = null;
this.hasMatch = false;
this.notMatch = false;
}
}
private boolean
matchMessage( String message )
{
boolean result = false;
if ( this.hasMatch && this.matcher != null )
{
result = this.matcher.matchMessage( message );
if ( this.notMatch )
{
result = ! result;
}
}
return result;
}
public void
openAction()
{
if ( this.action != null )
{
this.action.openAction();
}
}
public void
closeAction()
{
if ( this.action != null )
{
this.action.closeAction();
}
}
public void
registerActionDisplay( String name, SyslogDisplayInterface display )
{
if ( this.action != null )
{
this.action.registerActionDisplay( name, display );
}
}
private SyslogMessage
createRepeatMsg( SyslogMessage logMsg, Date now )
{
SyslogMessage repeatMsg =
(SyslogMessage)logMsg.clone();
long repSecs =
( now.getTime()
- this.prevTime.getTime() )
/ 1000;
repeatMsg.isRepeat = true;
repeatMsg.matchVars = null;
repeatMsg.message =
"msg repeated " + this.repeatCount
+ " times in " + repSecs + " seconds.";
return repeatMsg;
}
public void
incrementBackOff()
{
if ( ConfigEntry.repeatBackoff.length
> ( this.backOffIdx + 1 ) )
{
this.backOffIdx++;
}
}
public void
computeRepeatTimer( Date now )
{
Calendar cal = Calendar.getInstance();
cal.setTime( now );
cal.add
( Calendar.SECOND,
this.repeatBackoff[ this.backOffIdx ] );
this.repeatTimeout = cal.getTime();
}
public synchronized void
checkRepeatTimeout( Date now )
{
if ( this.prevMsg != null
&& this.repeatCount > 0 )
{
if ( now.after( this.repeatTimeout ) )
{
SyslogMessage repeatMsg;
if ( this.repeatCount == 1 )
repeatMsg = this.prevMsg;
else
repeatMsg =
this.createRepeatMsg( this.prevMsg, now );
this.invokeMessageAction( repeatMsg );
this.prevMsg = null;
this.repeatCount = 0;
this.backOffIdx = 0;
}
}
}
/*
*
* @return True, if the message should be processed.
* otherwise, False, indicating a repeat.
*/
public synchronized boolean
checkForRepeats( SyslogMessage logMsg )
{
boolean result = true;
boolean newMsg = true;
Date now = new Date();
SyslogMessage repeatMsg = null;
if ( this.prevMsg != null
&& this.prevMsg.message.length()
== logMsg.message.length()
&& this.prevMsg.hostName.equals( logMsg.hostName )
&& this.prevMsg.message.equals( logMsg.message ) )
{
result = false;
newMsg = false;
if ( this.repeatCount > 0 )
{
this.repeatCount++;
if ( now.after( this.repeatTimeout ) )
{
result = true;
repeatMsg = this.createRepeatMsg( logMsg, now );
this.invokeMessageAction( repeatMsg );
this.computeRepeatTimer( now );
this.incrementBackOff();
this.prevTime = now;
this.repeatCount = 0;
}
}
else
{
this.repeatCount++;
this.computeRepeatTimer( now );
}
}
if ( newMsg )
{
if ( this.repeatCount > 0 )
{
repeatMsg = this.createRepeatMsg( logMsg, now );
this.invokeMessageAction( repeatMsg );
}
this.backOffIdx = 0;
this.prevTime = now;
this.repeatCount = 0;
}
this.prevMsg = logMsg;
return result;
}
public void
invokeMessageAction( SyslogMessage logMsg )
{
if ( this.action.isThreaded() )
{
ActionThread thread =
new ActionThread( this.action, logMsg );
thread.start();
}
else
{
this.action.processMessage( logMsg );
}
}
public void
processMessage( SyslogMessage logMsg )
{
boolean processIt = true;
if ( facilities[ logMsg.facility ] >= logMsg.priority
&& this.action != null && this.action.isOpen() )
{
if ( this.hasMatch )
{
processIt = this.matchMessage( logMsg.message );
}
if ( processIt )
{
if ( this.checkForRepeats( logMsg ) )
{
logMsg.matchVars = null;
if ( this.hasMatch && ! this.notMatch )
{
logMsg.matchVars =
this.matcher.getMatchVariables();
}
this.invokeMessageAction( logMsg );
}
}
}
}
}