forked from Jay-Jay-D/LeanOptimization
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGeneConverter.cs
113 lines (91 loc) · 3.33 KB
/
GeneConverter.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
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
using System;
using System.Globalization;
namespace Optimization
{
public class GeneConverter : JsonConverter
{
public override bool CanConvert(Type objectType)
{
return objectType == typeof(GeneConfiguration);
}
public override object ReadJson(JsonReader reader, Type objectType, object existingValue, JsonSerializer serializer)
{
if (reader.TokenType == JsonToken.Null)
{
return null;
}
var json = JObject.Load(reader);
var precision = json["precision"]?.Value<int?>();
GeneConfiguration gene = new GeneConfiguration
{
Key = json["key"].Value<string>(),
MinDecimal = precision > 0 ? json["min"].Value<decimal?>() : null,
MaxDecimal = precision > 0 ? json["max"].Value<decimal?>() : null,
MinInt = precision > 0 ? null : json["min"].Value<int?>(),
MaxInt = precision > 0 ? null : json["max"].Value<int?>(),
Precision = precision
};
if (json["actual"] != null)
{
int parsed;
string raw = json["actual"].Value<string>();
if (int.TryParse(raw, out parsed))
{
gene.ActualInt = parsed;
}
if (!gene.ActualInt.HasValue)
{
decimal decimalParsed;
if (decimal.TryParse(raw, out decimalParsed))
{
gene.ActualDecimal = decimalParsed;
}
if (decimal.TryParse(raw, NumberStyles.Float, CultureInfo.InvariantCulture, out decimalParsed))
{
gene.ActualDecimal = decimalParsed;
}
}
}
return gene;
}
public override void WriteJson(JsonWriter writer, object value, JsonSerializer serializer)
{
var gene = (GeneConfiguration)value;
writer.WriteStartObject();
writer.WritePropertyName("key");
writer.WriteValue(gene.Key);
if (gene.MinDecimal.HasValue)
{
writer.WritePropertyName("min");
writer.WriteValue(gene.MinDecimal);
writer.WritePropertyName("max");
writer.WriteValue(gene.MaxDecimal);
}
if (gene.MinInt.HasValue)
{
writer.WritePropertyName("min");
writer.WriteValue(gene.MinInt);
writer.WritePropertyName("max");
writer.WriteValue(gene.MaxInt);
}
if (gene.Precision.HasValue)
{
writer.WritePropertyName("precision");
writer.WriteValue(gene.Precision);
}
if (gene.ActualInt.HasValue)
{
writer.WritePropertyName("actual");
writer.WriteValue(gene.ActualInt);
}
if (gene.ActualDecimal.HasValue)
{
writer.WritePropertyName("actual");
writer.WriteValue(gene.ActualDecimal);
}
writer.WriteEndObject();
}
}
}