forked from jugglingcats/tachograph-reader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
86 lines (75 loc) · 2.16 KB
/
Copy pathProgram.cs
File metadata and controls
86 lines (75 loc) · 2.16 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
using System;
using System.IO;
using System.Text;
using System.Xml;
using DataFileReader;
namespace tachograph_reader
{
class Program
{
static void Main(string[] args)
{
if (args.Length == 0)
{
ProcessDataDirs();
return;
}
if (args.Length < 2)
{
Console.Error.WriteLine("Expected --driver <file> or --vehicle <file> [output file]");
return;
}
DataFile proc = null;
if (args[0] == "--driver")
{
proc = DriverCardDataFile.Create();
}
if (args[0] == "--vehicle")
{
proc = VehicleUnitDataFile.Create();
}
if (proc == null)
{
Console.Error.WriteLine("Expected --driver <file> or --vehicle <file> [output file]");
return;
}
proc.LogLevel=LogLevel.DEBUG;
var xtw = args.Length > 2 ? new XmlTextWriter(args[2], Encoding.UTF8) : new XmlTextWriter(Stream.Null, Encoding.UTF8);
try
{
xtw.Formatting = Formatting.Indented;
proc.Process(args[1], xtw);
}
finally
{
xtw.Close();
}
}
private static void ProcessDataDirs()
{
ProcessDataDir("driver", () => DriverCardDataFile.Create());
ProcessDataDir("vehicle", () => VehicleUnitDataFile.Create());
}
private static void ProcessDataDir(string type, Func<DataFile> factory)
{
var files = Directory.GetFiles("data/"+type);
foreach (var f in files)
{
var proc=factory();
ProcessFile(proc, f);
}
}
private static void ProcessFile(DataFile proc, string f)
{
var xtw = new XmlTextWriter(Stream.Null, Encoding.UTF8);
try
{
proc.Process(f, xtw);
}
finally
{
xtw.Close();
}
}
}
}