-
Notifications
You must be signed in to change notification settings - Fork 186
Expand file tree
/
Copy pathLog4jXmlColumnizer.cs
More file actions
314 lines (254 loc) · 8.85 KB
/
Log4jXmlColumnizer.cs
File metadata and controls
314 lines (254 loc) · 8.85 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
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;
using LogExpert;
using Newtonsoft.Json;
[assembly: SupportedOSPlatform("windows")]
namespace Log4jXmlColumnizer;
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 const char separatorChar = '\xFFFD';
private readonly char[] trimChars = ['\xFFFD'];
private Log4jXmlColumnizerConfig _config;
private readonly CultureInfo _cultureInfo = new("de-DE");
private int _timeOffset;
#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;
var 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
{
var dateTime = GetTimestamp(callback, line);
if (dateTime == DateTime.MinValue)
{
columns[8].FullValue = line.FullLine;
}
var newDate = dateTime.ToString(DATETIME_FORMAT);
columns[0].FullValue = newDate;
}
catch (Exception)
{
columns[0].FullValue = "n/a";
}
var 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 (var i = 1; i < cols.Length; i++)
{
columns[i].FullValue = cols[i];
}
}
}
var 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;
}
var endIndex = line.FullLine.IndexOf(separatorChar, 1);
if (endIndex > 20 || endIndex < 0)
{
return DateTime.MinValue;
}
var value = line.FullLine.Substring(0, endIndex);
try
{
// convert log4j timestamp into a readable format:
if (long.TryParse(value, out var 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
{
var newDateTime = DateTime.ParseExact(value, DATETIME_FORMAT, _cultureInfo);
var oldDateTime = DateTime.ParseExact(oldValue, DATETIME_FORMAT, _cultureInfo);
var mSecsOld = oldDateTime.Ticks / TimeSpan.TicksPerMillisecond;
var 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)
{
var 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)
{
var result = Priority.NotSupport;
if (fileName.EndsWith("xml", StringComparison.OrdinalIgnoreCase))
{
result = Priority.CanSupport;
}
return result;
}
#endregion
#region Private Methods
private string[] GetAllColumnNames () => ["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 = [];
var index = 0;
foreach (var entry in _config.ColumnList)
{
if (entry.Visible)
{
var column = cols[index];
output.Add(column);
if (entry.MaxLen > 0 && column.FullValue.Length > entry.MaxLen)
{
column.FullValue = column.FullValue[^entry.MaxLen..];
}
}
index++;
}
return [.. output];
}
#endregion
}