-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathProgram.cs
88 lines (74 loc) · 3.83 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
using ExpressionTreeToString;
using ExpressionTreeTestObjects;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq.Expressions;
using ExpressionTreeTestObjects.VB;
using System.Linq;
using static ExpressionTreeToString.BuiltinRenderer;
using ZSpitz.Util;
using ExpressionTreeToString.Tests;
namespace Tests.DataGenerator {
class Program {
static void Main(string[] args) {
Loader.Load();
Objects.LoadType(typeof(DynamicLinqTestObjects));
var lines = new List<string>();
foreach (var (key, filename) in rendererFileMapping.SelectKVP((k,v) => (k,v))) {
var ordering = parseFileOrder(@$"C:\Users\Spitz\source\repos\zspitz\ExpressionTreeToString\Tests\expectedResults\{filename}-testdata.txt");
var language = key == VisualBasic ? Language.VisualBasic : Language.CSharp;
//var language = key == CSharp ? Language.CSharp : Language.VisualBasic;
const string dlinq = nameof(DynamicLinqTestObjects);
var objects = Objects.Get()
//.Where(x => key == DynamicLinq ? x.source == dlinq : x.source != dlinq)
.Where(x => key == DynamicLinq)
.Where(x => !ordering.ContainsKey($"{x.source}.{x.name}"));
DynamicLinqWriterVisitor.CustomAccessibleTypes.Add(typeof(Console));
DynamicLinqWriterVisitor.CustomAccessibleTypes.Add(typeof(Dummy));
//var objects = Objects.Get()
// .Where(x => key == DynamicLinq ? x.source == dlinq : x.source != dlinq)
// .Where(x => key == DynamicLinq)
// .OrderBy(x => ordering.TryGetValue($"{x.source}.{x.name}", out var order) ? order : -1);
foreach (var (category, source, name, o) in objects) {
var toWrite = o switch
{
Expression expr => expr.ToString(key, out var pathSpans, language),
MemberBinding mbind => mbind.ToString(key, out var pathSpans, language),
ElementInit init => init.ToString(key, out var pathSpans, language),
SwitchCase switchCase => switchCase.ToString(key, out var pathSpans, language),
CatchBlock catchBlock => catchBlock.ToString(key, out var pathSpans, language),
LabelTarget labelTarget => labelTarget.ToString(key, out var pathSpans, language),
_ => throw new NotImplementedException(),
};
lines.Add($"---- {source}.{name}");
if (key == FactoryMethods) {
var toReplace =
language == Language.CSharp ?
@"// using static System.Linq.Expressions.Expression
" :
@"' Imports System.Linq.Expressions.Expression
";
toWrite = toWrite.Replace(toReplace, "");
}
lines.Add(toWrite);
}
lines.Add("------");
}
File.WriteAllLines("generated test data.txt", lines);
}
static Dictionary<string, int> parseFileOrder(string filepath) =>
File.ReadLines(filepath)
.Where(line => line.StartsWith("---- "))
.Select((x, index) => (x[5..], index))
.ToDictionary(x => x.Item1, x => x.index);
static readonly Dictionary<BuiltinRenderer, string> rendererFileMapping = new() {
[CSharp] = "csharp",
[VisualBasic] = "visualbasic",
[FactoryMethods] = "factorymethods",
[ObjectNotation] = "objectnotation",
[TextualTree] = "textualtree",
[DynamicLinq] = "dynamiclinq"
};
}
}