-
Notifications
You must be signed in to change notification settings - Fork 186
Expand file tree
/
Copy pathGlassfishColumnizer.cs
More file actions
215 lines (173 loc) · 5.43 KB
/
GlassfishColumnizer.cs
File metadata and controls
215 lines (173 loc) · 5.43 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
using System;
using System.Globalization;
using System.Linq;
using LogExpert;
namespace GlassfishColumnizer;
internal class GlassfishColumnizer : ILogLineXmlColumnizer
{
#region Fields
public const int COLUMN_COUNT = 2;
private const string DATETIME_FORMAT = "yyyy-MM-ddTHH:mm:ss.fffzzzz";
private const string DATETIME_FORMAT_OUT = "yyyy-MM-dd HH:mm:ss.fff";
private const char separatorChar = '|';
private static readonly XmlConfig xmlConfig = new();
private readonly char[] trimChars = ['|'];
private readonly CultureInfo cultureInfo = new("en-US");
private int timeOffset;
#endregion
#region cTor
public GlassfishColumnizer ()
{
}
#endregion
#region Public methods
public IXmlLogConfiguration GetXmlLogConfiguration ()
{
return xmlConfig;
}
public ILogLine GetLineTextForClipboard (ILogLine logLine, ILogLineColumnizerCallback callback)
{
GlassFishLogLine line = new()
{
FullLine = logLine.FullLine.Replace(separatorChar, '|'),
LineNumber = logLine.LineNumber
};
return line;
}
public string GetName ()
{
return "Classfish";
}
public string GetDescription ()
{
return "Parse the timestamps in Glassfish logfiles.";
}
public int GetColumnCount ()
{
return COLUMN_COUNT;
}
public string[] GetColumnNames ()
{
return ["Date/Time", "Message"];
}
public IColumnizedLogLine SplitLine (ILogLineColumnizerCallback callback, ILogLine line)
{
ColumnizedLogLine cLogLine = new();
cLogLine.LogLine = line;
var temp = line.FullLine;
var columns = Column.CreateColumns(COLUMN_COUNT, cLogLine);
cLogLine.ColumnValues = columns.Select(a => a as IColumn).ToArray();
// delete '[#|' and '|#]'
if (temp.StartsWith("[#|"))
{
temp = temp[3..];
}
if (temp.EndsWith("|#]"))
{
temp = temp[..^3];
}
// 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 (temp.Length < 28)
{
columns[1].FullValue = temp;
}
else
{
try
{
var dateTime = GetTimestamp(callback, line);
if (dateTime == DateTime.MinValue)
{
columns[1].FullValue = temp;
}
var newDate = dateTime.ToString(DATETIME_FORMAT_OUT);
columns[0].FullValue = newDate;
}
catch (Exception)
{
columns[0].FullValue = "n/a";
}
var timestmp = columns[0];
string[] cols;
cols = temp.Split(trimChars, COLUMN_COUNT, StringSplitOptions.None);
if (cols.Length != COLUMN_COUNT)
{
columns[0].FullValue = string.Empty;
columns[1].FullValue = temp;
}
else
{
columns[0] = timestmp;
columns[1].FullValue = cols[1];
}
}
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 logLine)
{
var temp = logLine.FullLine;
// delete '[#|' and '|#]'
if (temp.StartsWith("[#|"))
{
temp = temp[3..];
}
if (temp.EndsWith("|#]"))
{
temp = temp[..^3];
}
if (temp.Length < 28)
{
return DateTime.MinValue;
}
var endIndex = temp.IndexOf(separatorChar, 1);
if (endIndex > 28 || endIndex < 0)
{
return DateTime.MinValue;
}
var value = temp[..endIndex];
try
{
// convert glassfish timestamp into a readable format:
if (DateTime.TryParseExact(value, DATETIME_FORMAT, cultureInfo, DateTimeStyles.None, out var timestamp))
{
return timestamp.AddMilliseconds(timeOffset);
}
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_OUT, cultureInfo);
var oldDateTime = DateTime.ParseExact(oldValue, DATETIME_FORMAT_OUT, cultureInfo);
var mSecsOld = oldDateTime.Ticks / TimeSpan.TicksPerMillisecond;
var mSecsNew = newDateTime.Ticks / TimeSpan.TicksPerMillisecond;
timeOffset = (int)(mSecsNew - mSecsOld);
}
catch (FormatException)
{
}
}
}
#endregion
}