-
Notifications
You must be signed in to change notification settings - Fork 34
/
Program.cs
465 lines (402 loc) · 15.6 KB
/
Program.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
464
465
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Reflection;
using LTTngDataExtensions.DataOutputTypes;
using LTTngDataExtensions.SourceDataCookers;
using Microsoft.Performance.SDK.Extensibility;
using Microsoft.Performance.SDK.Processing;
using Microsoft.Performance.Toolkit.Engine;
namespace LTTngDriver
{
public sealed partial class Program
{
private readonly string[] args;
public Program(string[] args)
{
this.args = args ?? Array.Empty<string>();
}
public bool Run()
{
var parsed = Arguments.Parse(this.args);
if (parsed is null ||
parsed.ShowHelp)
{
Arguments.PrintUsage();
return false;
}
// Debug
//Console.ReadLine();
//
// Create our runtime environment, enabling cookers and
// adding inputs.
//
Console.WriteLine($"ExtensionDirectory:{parsed.ExtensionDirectory}");
var dataSources = DataSourceSet.Create();
Debug.Assert(parsed.CtfInput != null);
Debug.Assert(parsed.CtfInput.Count > 0);
foreach (var ctf in parsed.CtfInput.Distinct())
{
Console.WriteLine($"CTF Path:{ctf}");
dataSources.AddDataSource(new FileDataSource(ctf));
}
var runtime = Engine.Create(
new EngineCreateInfo(dataSources.AsReadOnly())
{
});
var lttngGenericEventDataCooker = new LTTngGenericEventDataCooker();
var cookerName = lttngGenericEventDataCooker.Path;
runtime.EnableCooker(cookerName);
//
// Process our data.
//
var results = runtime.Process();
//
// Access our cooked data.
//
var eventData = results.QueryOutput<ProcessedEventData<LTTngGenericEvent>>(
new DataOutputPath(
cookerName,
nameof(LTTngGenericEventDataCooker.Events)));
TextWriter output = null;
FileStream file = null;
try
{
if (!string.IsNullOrWhiteSpace(parsed.Outfile))
{
if (parsed.Force)
{
file = File.Create(parsed.Outfile);
}
else
{
file = File.OpenWrite(parsed.Outfile);
}
Debug.Assert(file != null);
output = new StreamWriter(file);
}
else
{
output = Console.Out;
}
Debug.Assert(output != null);
EmitEvents(eventData, output);
}
finally
{
if (output != null)
{
if (output != Console.Out)
{
//
// This will also dispose out file stream
// as the writer takes ownership.
//
output.Flush();
output.Dispose();
}
}
else if (file != null)
{
//
// We opened for write, but never created our output
// writer, so just close and delete.
//
file.Flush();
file.Dispose();
File.Delete(parsed.Outfile);
}
else
{
//
// both are null, so there is nothing to clean up
//
}
}
return true;
}
private static void EmitEvents(
ProcessedEventData<LTTngGenericEvent> events,
TextWriter output)
{
Debug.Assert(events != null);
Debug.Assert(output != null);
var genericEventProperties = typeof(LTTngGenericEvent).GetProperties();
Debug.Assert(genericEventProperties != null);
var maxNumFields = events.Select(x => x.FieldNames.Count).Max();
var first = true;
var indexProperties = new HashSet<PropertyInfo>();
foreach (var p in genericEventProperties)
{
Debug.Assert(p != null);
if (IsIndexProperty(p))
{
//
// we have hit the indexer on LTTngGeneric Event. We will enumerate
// that separately after this property loop (they are the field N
// values, so it makes sense to do them separatly.)
//
indexProperties.Add(p);
continue;
}
if (!first)
{
output.Write(',');
}
else
{
first = false;
}
output.Write(p.Name);
}
for (var i = 0; i < maxNumFields; ++i)
{
output.Write(",Field {0}", i + 1);
}
output.WriteLine();
foreach (var e in events)
{
first = true;
foreach (var p in genericEventProperties.Where(x => !indexProperties.Contains(x)))
{
if (!first)
{
output.Write(',');
}
else
{
first = false;
}
var v = p.GetValue(e);
if (p.Name == "FieldNames" && v is IEnumerable)
{
var list = v as IList;
var firstli = true;
foreach (var li in list)
{
if (!firstli)
{
output.Write(';');
}
else
{
firstli = false;
}
output.Write(li);
}
}
else
{
output.Write(v);
}
}
Debug.Assert(e.FieldNames.Count <= maxNumFields);
for (var i = 0; i < e.FieldNames.Count; ++i)
{
output.Write(",{0}", e.FieldValues[i]);
}
for (var i = e.FieldNames.Count; i < maxNumFields; ++i)
{
output.Write(',');
}
output.WriteLine();
}
}
private static bool IsIndexProperty(PropertyInfo p)
{
return (p?.GetIndexParameters()?.Length ?? 0) > 0;
}
private sealed class Arguments
{
private static readonly string ProgramName = Path.GetFileName(Process.GetCurrentProcess().MainModule.FileName);
public Arguments()
{
this.CtfInput = new List<string>();
}
public List<string> CtfInput { get; }
public string ExtensionDirectory { get; set; }
public bool Force { get; set; }
public string Outfile { get; set; }
public bool ShowHelp { get; set; }
public static Arguments Parse(string[] args)
{
if (args is null)
{
return null;
}
var parsed = new Arguments();
var index = 0;
var inFileMode = false;
var bad = false;
while (index < args.Length)
{
var curr = args[index];
if (inFileMode)
{
if (curr != null)
{
parsed.CtfInput.Add(curr);
}
}
else
{
if (curr is null)
{
//
// just go around and ignore it.
// do nothing in this block.
//
}
else if (curr == "-?" ||
curr == "/?" ||
curr == "-h" ||
curr == "-help")
{
parsed.ShowHelp = true;
//
// The user asked for help, so immediately
// stop parsing.
//
break;
}
else if (curr == "-e")
{
if (!string.IsNullOrWhiteSpace(parsed.ExtensionDirectory))
{
EmitError("'-e' has been set multiple times.");
bad = true;
}
else if (index + 1 >= args.Length)
{
EmitError("'-e' is missing an argument");
bad = true;
}
else
{
Debug.Assert(index + 1 < args.Length);
var e = args[index + 1];
if (e == "--")
{
EmitError("'-o' is missing an argument");
bad = true;
}
else
{
parsed.ExtensionDirectory = e;
}
++index;
}
}
else if (curr == "-f")
{
parsed.Force = true;
}
else if (curr == "-o")
{
if (!string.IsNullOrWhiteSpace(parsed.Outfile))
{
EmitError("'-o' has been set multiple times.");
bad = true;
}
else if (index + 1 >= args.Length)
{
EmitError("'-o' is missing an argument");
bad = true;
}
else
{
Debug.Assert(index + 1 < args.Length);
var f = args[index + 1];
if (f != "-")
{
//
// '-' is often used to denote stdout, so
// just ignore it if it is specified.
//
if (f == "--")
{
EmitError("'-o' is missing an argument");
bad = true;
}
else
{
parsed.Outfile = f;
}
}
++index;
}
}
else if (curr == "--")
{
inFileMode = true;
}
else if (curr.StartsWith("-"))
{
Debug.Assert(!inFileMode);
EmitError("Invalid option '{0}'", curr);
bad = true;
}
else
{
Debug.Assert(curr != null);
parsed.CtfInput.Add(curr);
inFileMode = true;
}
}
++index;
}
if (parsed.ShowHelp)
{
return parsed;
}
if (parsed.CtfInput.Count == 0)
{
EmitError("At least one CTF input must be specified.");
bad = true;
}
return !bad
? parsed
: null;
}
public static void PrintUsage()
{
Console.Out.WriteLine("CTF Generic Dumper");
Console.Out.WriteLine();
Console.Out.WriteLine("usage: [{0}] [-e extension_dir] [-o out_file] [-f] [--] <CTF PATH>...", ProgramName);
Console.Out.WriteLine(" [{0}] -h|-help|-?", ProgramName);
Console.Out.WriteLine();
Console.Out.WriteLine("Dumps all generic events in the CTF data found in the files specified");
Console.Out.WriteLine("by the given <CTF PATH>(s). Optionally outputs the data to the");
Console.Out.WriteLine("specified file.");
Console.Out.WriteLine();
Console.Out.WriteLine(" -e extension_dir The directory from which to load extensions.");
Console.Out.WriteLine(" Defaults to the working directory.");
Console.Out.WriteLine();
Console.Out.WriteLine(" -o out_file File into which to dump the data. Defaults to stdout.");
Console.Out.WriteLine(" If out_file exists, then specify -f to overwrite. By");
Console.Out.WriteLine(" default, out_file will be appended if it exists.");
Console.Out.WriteLine();
Console.Out.WriteLine(" -f If specified with -o, and out_file exists, then");
Console.Out.WriteLine(" out_file will be overwritten.");
Console.Out.WriteLine();
Console.Out.WriteLine(" -h,-help,-? Displays this help message and exits.");
Console.Out.WriteLine();
}
private static void EmitError(string message)
{
Console.Error.WriteLine("[{0}]: {1}", ProgramName, message);
}
private static void EmitError(string fmt, params object[] args)
{
var message = string.Format(CultureInfo.CurrentCulture, fmt, args);
EmitError(message);
}
}
}
}