-
Notifications
You must be signed in to change notification settings - Fork 184
Expand file tree
/
Copy pathCsvColumnizer.cs
More file actions
376 lines (306 loc) · 11.5 KB
/
Copy pathCsvColumnizer.cs
File metadata and controls
376 lines (306 loc) · 11.5 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
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
using System.Globalization;
using System.Reflection;
using System.Runtime.Versioning;
using System.Security;
using ColumnizerLib;
using CsvHelper;
using Newtonsoft.Json;
[assembly: SupportedOSPlatform("windows")]
namespace CsvColumnizer;
/// <summary>
/// This Columnizer can parse CSV files. It uses the IInitColumnizer interface for support of dynamic field count.
/// The IPreProcessColumnizer is implemented to read field names from the very first line of the file. Then
/// the line is dropped. So it's not seen by LogExpert. The field names will be used as column names.
/// </summary>
public class CsvColumnizer : ILogLineMemoryColumnizer, IInitColumnizerMemory, IColumnizerConfiguratorMemory, IPreProcessColumnizerMemory, IColumnizerPriorityMemory
{
#region Fields
private const string CONFIGFILENAME = "csvcolumnizer.json";
private readonly IList<CsvColumn> _columnList = [];
private CsvColumnizerConfig _config = CreateDefaultConfig();
private ILogLineMemory _firstLine;
// if CSV is detected to be 'invalid' the columnizer will behave like a default columnizer
private bool _isValidCsv;
#endregion
#region Public methods
public string PreProcessLine (string logLine, int lineNum, int realLineNum)
{
ArgumentNullException.ThrowIfNull(logLine, nameof(logLine));
return PreProcessLine(logLine.AsMemory(), lineNum, realLineNum).ToString();
}
private static CsvColumnizerConfig CreateDefaultConfig ()
{
var config = new CsvColumnizerConfig();
config.InitDefaults();
return config;
}
public ReadOnlyMemory<char> PreProcessLine (ReadOnlyMemory<char> logLine, int lineNum, int realLineNum)
{
if (realLineNum == 0)
{
// Auto-detect delimiter from the first line
AutoDetectDelimiter(logLine);
// store for later field names and field count retrieval
_firstLine = new CsvLogLine(logLine, 0);
if (_config != null && _config.MinColumns > 0)
{
using CsvReader csv = new(new StringReader(logLine.ToString()), _config.ReaderConfiguration);
if (csv.Parser.Count < _config.MinColumns)
{
// on invalid CSV don't hide the first line from LogExpert, since the file will be displayed in plain mode
_isValidCsv = false;
return logLine;
}
}
_isValidCsv = true;
}
if (_config.HasFieldNames && realLineNum == 0)
{
return null; // hide from LogExpert
}
return _config.CommentChar != ' ' &&
logLine.Span.StartsWith("" + _config.CommentChar, StringComparison.OrdinalIgnoreCase)
? null
: logLine;
}
public string GetName ()
{
return "CSV Columnizer";
}
public string GetCustomName ()
{
return GetName();
}
public string GetDescription ()
{
return Resources.CsvColumnizer_Description;
}
public int GetColumnCount ()
{
return _isValidCsv ? _columnList.Count : 1;
}
public string[] GetColumnNames ()
{
var names = new string[GetColumnCount()];
if (_isValidCsv)
{
var i = 0;
foreach (var column in _columnList)
{
names[i++] = column.Name;
}
}
else
{
names[0] = "Text";
}
return names;
}
public IColumnizedLogLineMemory SplitLine (ILogLineMemoryColumnizerCallback callback, ILogLineMemory logLine)
{
ArgumentNullException.ThrowIfNull(logLine, nameof(logLine));
return _isValidCsv
? SplitCsvLine(logLine)
: CreateColumnizedLogLine(logLine);
}
private static ColumnizedLogLine CreateColumnizedLogLine (ILogLineMemory line)
{
ColumnizedLogLine cLogLine = new()
{
LogLine = line
};
cLogLine.ColumnValues = [new Column { FullValue = line.FullLine, Parent = cLogLine }];
return cLogLine;
}
public bool IsTimeshiftImplemented ()
{
return false;
}
public void SetTimeOffset (int msecOffset)
{
throw new NotImplementedException();
}
public int GetTimeOffset ()
{
throw new NotImplementedException();
}
public DateTime GetTimestamp (ILogLineMemoryColumnizerCallback callback, ILogLineMemory logLine)
{
throw new NotImplementedException();
}
public void PushValue (ILogLineMemoryColumnizerCallback callback, int column, string value, string oldValue)
{
throw new NotImplementedException();
}
public void PushValue (ILogLineMemoryColumnizerCallback callback, int column, string value, ReadOnlyMemory<char> oldValue)
{
throw new NotImplementedException();
}
public void Selected (ILogLineMemoryColumnizerCallback callback)
{
ArgumentNullException.ThrowIfNull(callback, nameof(callback));
if (_isValidCsv) // see PreProcessLine()
{
_columnList.Clear();
var line = _config.HasFieldNames
? _firstLine ?? callback.GetLogLineMemory(0)
: callback.GetLogLineMemory(0);
if (line != null)
{
using CsvReader csv = new(new StringReader(line.FullLine.ToString()), _config.ReaderConfiguration);
_ = csv.Read();
_ = csv.ReadHeader();
var fieldCount = csv.Parser.Count;
var headerRecord = csv.HeaderRecord;
if (_config.HasFieldNames && headerRecord != null)
{
foreach (var headerColumn in headerRecord)
{
_columnList.Add(new CsvColumn(headerColumn));
}
}
else
{
for (var i = 0; i < fieldCount; ++i)
{
_columnList.Add(new CsvColumn("Column " + i + 1));
}
}
}
else
{
_columnList.Add(new CsvColumn("Text"));
}
}
}
public void DeSelected (ILogLineMemoryColumnizerCallback callback)
{
// nothing to do
}
public void Configure (ILogLineMemoryColumnizerCallback callback, string configDir)
{
var configPath = configDir + "\\" + CONFIGFILENAME;
FileInfo fileInfo = new(configPath);
CsvColumnizerConfigDlg dlg = new(_config);
if (dlg.ShowDialog() == DialogResult.OK)
{
_config.VersionBuild = Assembly.GetExecutingAssembly().GetName().Version.Build;
using (StreamWriter sw = new(fileInfo.Create()))
{
JsonSerializer serializer = new();
serializer.Serialize(sw, _config);
}
_config.ConfigureReaderConfiguration();
Selected(callback);
}
}
public void LoadConfig (string configDir)
{
var configPath = Path.Join(configDir, CONFIGFILENAME);
if (!File.Exists(configPath))
{
_config = new CsvColumnizerConfig();
_config.InitDefaults();
}
else
{
try
{
_config = JsonConvert.DeserializeObject<CsvColumnizerConfig>(File.ReadAllText(configPath));
_config.ConfigureReaderConfiguration();
}
catch (Exception ex) when (ex is JsonException or
ArgumentException or
ArgumentNullException or
PathTooLongException or
DirectoryNotFoundException or
IOException or
UnauthorizedAccessException or
FileNotFoundException or
NotSupportedException or
SecurityException)
{
_ = MessageBox.Show(string.Format(CultureInfo.InvariantCulture, Resources.CsvColumnizer_UI_Message_ErrorWhileDeserializing, ex.Message), Resources.CsvColumnizer_UI_Title_Error, MessageBoxButtons.OK, MessageBoxIcon.Error);
_config = new CsvColumnizerConfig();
_config.InitDefaults();
}
}
}
public Priority GetPriority (string fileName, IEnumerable<ILogLineMemory> samples)
{
ArgumentException.ThrowIfNullOrWhiteSpace(fileName, nameof(fileName));
var result = Priority.NotSupport;
if (fileName.EndsWith("csv", StringComparison.OrdinalIgnoreCase))
{
result = Priority.CanSupport;
}
return result;
}
#endregion
#region Private Methods
/// <summary>
/// Auto-detects the delimiter using CsvHelper's built-in detection.
/// After parsing, the detected delimiter is extracted from csv.Parser.Delimiter.
/// </summary>
private void AutoDetectDelimiter (ReadOnlyMemory<char> lineContent)
{
if (lineContent.IsEmpty)
{
return;
}
try
{
var autoDetectedConfig = new CsvHelper.Configuration.CsvConfiguration(CultureInfo.InvariantCulture)
{
DetectDelimiter = true,
DetectDelimiterValues = [",", ";", "\t", "|"]
};
using CsvReader csv = new(new StringReader(lineContent.ToString()), autoDetectedConfig);
_ = csv.Read();
var detectedDelimiter = csv.Parser.Delimiter;
if (detectedDelimiter != _config.DelimiterChar)
{
_config.DelimiterChar = detectedDelimiter;
_config.ConfigureReaderConfiguration();
}
}
catch (CsvHelperException)
{
// If detection fails, keep the current config delimiter
}
}
private ColumnizedLogLine SplitCsvLine (ILogLineMemory line)
{
if (line.FullLine.IsEmpty)
{
return CreateColumnizedLogLine(line);
}
ColumnizedLogLine cLogLine = new()
{
LogLine = line
};
try
{
using CsvReader csv = new(new StringReader(line.FullLine.ToString()), _config.ReaderConfiguration);
_ = csv.Read();
_ = csv.ReadHeader();
//we only read line by line and not the whole file so it is always the header
var records = csv.HeaderRecord;
if (records != null)
{
List<Column> columns = [];
foreach (var record in records)
{
columns.Add(new Column { FullValue = record.AsMemory(), Parent = cLogLine });
}
cLogLine.ColumnValues = [.. columns.Select(a => a as IColumnMemory)];
}
}
catch (CsvHelperException)
{
return CreateColumnizedLogLine(line);
}
return cLogLine;
}
#endregion
}