forked from LogExperts/LogExpert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLog4jXmlColumnizer.cs
463 lines (379 loc) · 14.7 KB
/
Log4jXmlColumnizer.cs
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
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Runtime.Serialization;
using System.Runtime.Versioning;
using System.Windows.Forms;
[assembly: SupportedOSPlatform("windows")]
namespace LogExpert
{
/// <summary>
/// XMl configuration for parsing log4j XML files. The XSL will transform every block of log entries
/// into text lines. The fields in the text lines are separated by a special character (0xFFFD).
/// The special character will be used in the Split() function of the columnizer to split the line
/// into columns.
/// </summary>
internal class XmlConfig : IXmlLogConfiguration
{
#region Properties
public string XmlStartTag { get; } = "<log4j:event";
public string XmlEndTag { get; } = "</log4j:event>";
public string Stylesheet { get; } = "" +
"<?xml version=\"1.0\" encoding=\"ISO-8859-1\" standalone=\"no\"?>" +
"<xsl:stylesheet version=\"2.0\"" +
" xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\"" +
" xmlns:log4j=\"http://jakarta.apache.org/log4j\">" +
"<xsl:output method=\"text\" />" +
"<xsl:template match=\"/log4j:event\"><xsl:value-of select=\"//@timestamp\"/>�<xsl:value-of select=\"//@level\"/>�<xsl:value-of select=\"//@logger\"/>�<xsl:value-of select=\"//@thread\"/>�<xsl:value-of select=\"//log4j:locationInfo/@class\"/>�<xsl:value-of select=\"//log4j:locationInfo/@method\"/>�<xsl:value-of select=\"//log4j:locationInfo/@file\"/>�<xsl:value-of select=\"//log4j:locationInfo/@line\"/>�<xsl:value-of select=\"//log4j:message\"/><xsl:value-of select=\"//log4j:throwable\"/>" +
"</xsl:template>" +
"</xsl:stylesheet>";
public string[] Namespace
{
get { return ["log4j", "http://jakarta.apache.org/log4j"]; }
}
#endregion
}
/// <summary>
/// Helper class for configuration of the colums.
/// </summary>
[Serializable]
public class Log4jColumnEntry
{
#region Fields
public int columnIndex;
public string columnName;
public int maxLen;
public bool visible;
#endregion
#region cTor
public Log4jColumnEntry(string name, int index, int maxLen)
{
columnName = name;
columnIndex = index;
visible = true;
this.maxLen = maxLen;
}
#endregion
}
[Serializable]
public class Log4jXmlColumnizerConfig
{
#region Fields
public List<Log4jColumnEntry> columnList = new();
public bool localTimestamps = true;
#endregion
#region cTor
public Log4jXmlColumnizerConfig(string[] columnNames)
{
FillDefaults(columnNames);
}
#endregion
#region Properties
/// <summary>
/// Returns the column count. Because the user can deactivate columns in the config
/// the actual column count may be smaller than the number of available columns.
/// </summary>
public int ActiveColumnCount
{
get
{
int count = 0;
foreach (Log4jColumnEntry entry in columnList)
{
if (entry.visible)
{
count++;
}
}
return count;
}
}
/// <summary>
/// Returns the names of all active columns.
/// </summary>
public string[] ActiveColumnNames
{
get
{
string[] names = new string[ActiveColumnCount];
int index = 0;
foreach (Log4jColumnEntry entry in columnList)
{
if (entry.visible)
{
names[index++] = entry.columnName;
}
}
return names;
}
}
#endregion
#region Public methods
public void FillDefaults(string[] columnNames)
{
columnList.Clear();
for (int i = 0; i < columnNames.Length; ++i)
{
columnList.Add(new Log4jColumnEntry(columnNames[i], i, 0));
}
}
#endregion
}
public class Log4jXmlColumnizer : ILogLineXmlColumnizer, IColumnizerConfigurator, IColumnizerPriority
{
#region Fields
public const int COLUMN_COUNT = 9;
protected const string DATETIME_FORMAT = "dd.MM.yyyy HH:mm:ss.fff";
private static readonly XmlConfig xmlConfig = new();
private readonly char separatorChar = '\xFFFD';
private readonly char[] trimChars = ['\xFFFD'];
private Log4jXmlColumnizerConfig _config;
protected CultureInfo cultureInfo = new("de-DE");
protected int timeOffset = 0;
#endregion
#region cTor
public Log4jXmlColumnizer()
{
_config = new Log4jXmlColumnizerConfig(GetAllColumnNames());
}
#endregion
#region Public methods
public IXmlLogConfiguration GetXmlLogConfiguration()
{
return xmlConfig;
}
public ILogLine GetLineTextForClipboard(ILogLine logLine, ILogLineColumnizerCallback callback)
{
Log4JLogLine line = new()
{
FullLine = logLine.FullLine.Replace(separatorChar, '|'),
LineNumber = logLine.LineNumber
};
return line;
}
public string GetName()
{
return "Log4j XML";
}
public string GetDescription()
{
return "Reads and formats XML log files written with log4j.";
}
public int GetColumnCount()
{
return _config.ActiveColumnCount;
}
public string[] GetColumnNames()
{
return _config.ActiveColumnNames;
}
public IColumnizedLogLine SplitLine(ILogLineColumnizerCallback callback, ILogLine line)
{
ColumnizedLogLine clogLine = new();
clogLine.LogLine = line;
Column[] columns = Column.CreateColumns(COLUMN_COUNT, clogLine);
// If the line is too short (i.e. does not follow the format for this columnizer) return the whole line content
// in colum 8 (the log message column). Date and time column will be left blank.
if (line.FullLine.Length < 15)
{
columns[8].FullValue = line.FullLine;
}
else
{
try
{
DateTime dateTime = GetTimestamp(callback, line);
if (dateTime == DateTime.MinValue)
{
columns[8].FullValue = line.FullLine;
}
string newDate = dateTime.ToString(DATETIME_FORMAT);
columns[0].FullValue = newDate;
}
catch (Exception)
{
columns[0].FullValue = "n/a";
}
Column timestmp = columns[0];
string[] cols;
cols = line.FullLine.Split(trimChars, COLUMN_COUNT, StringSplitOptions.None);
if (cols.Length != COLUMN_COUNT)
{
columns[0].FullValue = "";
columns[1].FullValue = "";
columns[2].FullValue = "";
columns[3].FullValue = "";
columns[4].FullValue = "";
columns[5].FullValue = "";
columns[6].FullValue = "";
columns[7].FullValue = "";
columns[8].FullValue = line.FullLine;
}
else
{
columns[0] = timestmp;
for (int i = 1; i < cols.Length; i++)
{
columns[i].FullValue = cols[i];
}
}
}
Column[] filteredColumns = MapColumns(columns);
clogLine.ColumnValues = filteredColumns.Select(a => a as IColumn).ToArray();
return clogLine;
}
public bool IsTimeshiftImplemented()
{
return true;
}
public void SetTimeOffset(int msecOffset)
{
timeOffset = msecOffset;
}
public int GetTimeOffset()
{
return timeOffset;
}
public DateTime GetTimestamp(ILogLineColumnizerCallback callback, ILogLine line)
{
if (line.FullLine.Length < 15)
{
return DateTime.MinValue;
}
int endIndex = line.FullLine.IndexOf(separatorChar, 1);
if (endIndex > 20 || endIndex < 0)
{
return DateTime.MinValue;
}
string value = line.FullLine.Substring(0, endIndex);
try
{
// convert log4j timestamp into a readable format:
long timestamp;
if (long.TryParse(value, out timestamp))
{
// Add the time offset before returning
DateTime dateTime = new(1970, 1, 1, 0, 0, 0, DateTimeKind.Utc);
dateTime = dateTime.AddMilliseconds(timestamp);
if (_config.localTimestamps)
{
dateTime = dateTime.ToLocalTime();
}
return dateTime.AddMilliseconds(timeOffset);
}
else
{
return DateTime.MinValue;
}
}
catch (Exception)
{
return DateTime.MinValue;
}
}
public void PushValue(ILogLineColumnizerCallback callback, int column, string value, string oldValue)
{
if (column == 0)
{
try
{
DateTime newDateTime = DateTime.ParseExact(value, DATETIME_FORMAT, cultureInfo);
DateTime oldDateTime = DateTime.ParseExact(oldValue, DATETIME_FORMAT, cultureInfo);
long mSecsOld = oldDateTime.Ticks / TimeSpan.TicksPerMillisecond;
long mSecsNew = newDateTime.Ticks / TimeSpan.TicksPerMillisecond;
timeOffset = (int) (mSecsNew - mSecsOld);
}
catch (FormatException)
{
}
}
}
public void Configure(ILogLineColumnizerCallback callback, string configDir)
{
FileInfo fileInfo = new(configDir + Path.DirectorySeparatorChar + "log4jxmlcolumnizer.json");
Log4jXmlColumnizerConfigDlg dlg = new(_config);
if (dlg.ShowDialog() == DialogResult.OK)
{
using StreamWriter sw = new(fileInfo.Create());
JsonSerializer serializer = new();
serializer.Serialize(sw, _config);
}
}
public void LoadConfig(string configDir)
{
string configPath = configDir + Path.DirectorySeparatorChar + "log4jxmlcolumnizer.json";
FileInfo fileInfo = new(configDir + Path.DirectorySeparatorChar + "log4jxmlcolumnizer.json");
if (!File.Exists(configPath))
{
_config = new Log4jXmlColumnizerConfig(GetAllColumnNames());
}
else
{
try
{
_config = JsonConvert.DeserializeObject<Log4jXmlColumnizerConfig>(File.ReadAllText($"{fileInfo.FullName}"));
if (_config.columnList.Count < COLUMN_COUNT)
{
_config = new Log4jXmlColumnizerConfig(GetAllColumnNames());
}
}
catch (SerializationException e)
{
MessageBox.Show(e.Message, "Deserialize");
_config = new Log4jXmlColumnizerConfig(GetAllColumnNames());
}
}
}
public Priority GetPriority(string fileName, IEnumerable<ILogLine> samples)
{
Priority result = Priority.NotSupport;
if (fileName.EndsWith("xml", StringComparison.OrdinalIgnoreCase))
{
result = Priority.CanSupport;
}
return result;
}
#endregion
#region Private Methods
private string[] GetAllColumnNames()
{
return ["Timestamp", "Level", "Logger", "Thread", "Class", "Method", "File", "Line", "Message"];
}
/// <summary>
/// Returns only the columns which are "active". The order of the columns depends on the column order in the config
/// </summary>
/// <param name="cols"></param>
/// <returns></returns>
private Column[] MapColumns(Column[] cols)
{
List<Column> output = [];
int index = 0;
foreach (Log4jColumnEntry entry in _config.columnList)
{
if (entry.visible)
{
Column column = cols[index];
output.Add(column);
if (entry.maxLen > 0 && column.FullValue.Length > entry.maxLen)
{
column.FullValue = column.FullValue.Substring(column.FullValue.Length - entry.maxLen);
}
}
index++;
}
return output.ToArray();
}
#endregion
private class Log4JLogLine : ILogLine
{
#region Properties
public string FullLine { get; set; }
public int LineNumber { get; set; }
string ITextValue.Text => FullLine;
#endregion
}
}
}