-
Notifications
You must be signed in to change notification settings - Fork 3
/
FuzzyLogicCore.cs
420 lines (394 loc) · 16.5 KB
/
FuzzyLogicCore.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
using System;
using System.Linq;
using System.Reflection;
using System.Threading.Tasks;
using System.Linq.Expressions;
using System.Collections.Generic;
using System.Collections.Concurrent;
using System.Collections.ObjectModel;
using DynamicLinq = System.Linq.Dynamic;
namespace FuzzyLogicApi
{
/// <summary>
///
/// </summary>
/// <typeparam name="TEntity"></typeparam>
public sealed class FuzzyLogic<TEntity> where TEntity : class, new()
{
/// <summary>
///
/// </summary>
private Type TypeOf { get { return typeof(TEntity); } }
/// <summary>
///
/// </summary>
private readonly string[] _propertiesNames;
/// <summary>
///
/// </summary>
private readonly Expression<Func<TEntity, bool>> _expression;
/// <summary>
///
/// </summary>
public string[] BrokedBooleanExpressionsByOrOperator { get; private set; }
/// <summary>
///
/// </summary>
public string[] ExpressionParameters { get; private set; }
/// <summary>
///
/// </summary>
public BinaryExpression[] BrokedExpressions { get; private set; }
/// <summary>
///
/// </summary>
public ReadOnlyCollection<ParameterExpression> ParametersCollection { get; private set; }
/// <summary>
///
/// </summary>
/// <param name="expression"></param>
/// <param name="type"></param>
/// <param name="entityItem"></param>
/// <returns></returns>
public static string GetInference(Expression<Func<TEntity, bool>> expression, ResponseType type, IEnumerable<TEntity> entities)
{
string result = null;
InferenceResult<TEntity> inferences = new InferenceResult<TEntity>()
{
Inferences = (new FuzzyLogic<TEntity>(expression)).InferenceEntities(entities).ToArray()
};
switch (type)
{
case ResponseType.Xml:
result = inferences.XmlSerialize();
break;
case ResponseType.Json:
result = inferences.JsonSerialize();
break;
}
return result;
}
/// <summary>
///
/// </summary>
/// <param name="entities"></param>
/// <returns></returns>
private IEnumerable<Inference<TEntity>> InferenceEntities(IEnumerable<TEntity> entities)
{
foreach (TEntity entity in entities)
{
InferenceInternal<TEntity> inferenceResultInternal = this.GetBruteInferenceCollection(entity);
yield return inferenceResultInternal.InternalToPublicConversion();
}
}
/// <summary>
///
/// </summary>
/// <param name="expression"></param>
/// <param name="type"></param>
/// <param name="entityItem"></param>
/// <returns></returns>
public static InferenceResult<TEntity> GetInference(Expression<Func<TEntity, bool>> expression, IEnumerable<TEntity> entities)
{
return new InferenceResult<TEntity>()
{
Inferences = (new FuzzyLogic<TEntity>(expression)).InferenceEntities(entities).ToArray()
};
}
/// <summary>
///
/// </summary>
/// <param name="expression"></param>
/// <param name="type"></param>
/// <param name="entityItem"></param>
/// <returns></returns>
public static string GetInference(Expression<Func<TEntity, bool>> expression, ResponseType type, TEntity entityItem)
{
string result = null;
InferenceInternal<TEntity> InferenceResultInternal = (new FuzzyLogic<TEntity>(expression)).GetBruteInferenceCollection(entityItem);
Inference<TEntity> inferenceResult = InferenceResultInternal.InternalToPublicConversion();
switch (type)
{
case ResponseType.Xml:
result = inferenceResult.XmlSerialize();
break;
case ResponseType.Json:
result = inferenceResult.JsonSerialize();
break;
}
return result;
}
/// <summary>
///
/// </summary>
/// <param name="expression"></param>
/// <param name="entityItem"></param>
/// <returns></returns>
public static Inference<TEntity> GetInference(Expression<Func<TEntity, bool>> expression, TEntity entityItem)
{
return (new FuzzyLogic<TEntity>(expression)).GetBruteInferenceCollection(entityItem).InternalToPublicConversion();
}
/// <summary>
///
/// </summary>
/// <param name="expression"></param>
private FuzzyLogic(Expression<Func<TEntity, bool>> expression)
{
this._expression = expression;
this.GetBrokedBooleanExpressionsByOrOperator();
this.ExpressionParameters = this.GetExpressionParameters().ToArray();
this.ParametersCollection = this._expression.Parameters;
this._propertiesNames = this.GetPropertiesNames().ToArray();
}
/// <summary>
///
/// </summary>
/// <returns></returns>
private IEnumerable<string> GetPropertiesNames()
{
PropertyInfo[] props = this.TypeOf.GetProperties();
for (int i = 0; i < props.Length; i++)
{
yield return props[i].Name;
}
}
/// <summary>
///
/// </summary>
private void GetBrokedBooleanExpressionsByOrOperator()
{
ExpressionModel OrTree = new ExpressionModel();
this.GetExpressionTree(this._expression.Body as BinaryExpression, OrTree);
List<string> finalResult = new List<string>();
List<BinaryExpression> finalExpressions = new List<BinaryExpression>();
this.GetAllValidConditionalsByRightExpression(OrTree, ref finalResult, ExpressionType.OrElse);
this.BrokedBooleanExpressionsByOrOperator = finalResult.ToArray();
this.GetAllValidExpressions(OrTree, ref finalExpressions, ExpressionType.OrElse);
this.BrokedExpressions = finalExpressions.ToArray();
}
/// <summary>
///
/// </summary>
/// <returns></returns>
private IEnumerable<string> GetExpressionParameters()
{
ReadOnlyCollection<ParameterExpression> externalParam = this._expression.Parameters;
foreach (ParameterExpression item in externalParam)
{
yield return item.Name;
}
}
/// <summary>
///
/// </summary>
/// <param name="entity"></param>
/// <returns></returns>
private IEnumerable<IntermediateInferenceItemInternal> GetBruteInferenceCollectionIntermediate(TEntity entity)
{
for (int i = 0; i < this.BrokedBooleanExpressionsByOrOperator.Length; i++)
{
IntermediateInferenceItemInternal item = new IntermediateInferenceItemInternal()
{
PropertiesNeedToChange = new List<string>(),
RatingsReport = new List<bool>()
};
string[] breakApartExpressionByAndAlso = this.BrokedBooleanExpressionsByOrOperator[i].Split(new string[] { " AndAlso " }, StringSplitOptions.None);
for (int j = 0; j < breakApartExpressionByAndAlso.Length; j++)
{
for (int x = 0; x < this._propertiesNames.Length; x++)
{
if (breakApartExpressionByAndAlso[j].Contains(this._propertiesNames[x]))
{
bool rating = this.ProcessFilter(breakApartExpressionByAndAlso[j], entity, this._propertiesNames[x]);
item.RatingsReport.Add(rating);
if (!rating)
{
item.PropertiesNeedToChange.Add(this._propertiesNames[x]);
}
}
}
}
yield return item;
}
}
/// <summary>
///
/// </summary>
/// <param name="entity"></param>
/// <returns></returns>
private InferenceInternal<TEntity> GetBruteInferenceCollection(TEntity entity)
{
InferenceInternal<TEntity> result = new InferenceInternal<TEntity>()
{
RatingsReport = new List<bool>(),
PropertiesNeedToChange = new List<string>(),
Data = entity
};
IntermediateInferenceItemInternal minErrors = GetBruteInferenceCollectionIntermediate(entity).OrderBy(x => x.ErrorsQuantity).FirstOrDefault();
result.RatingsReport = minErrors.RatingsReport;
result.PropertiesNeedToChange = minErrors.PropertiesNeedToChange;
return result;
}
/// <summary>
///
/// </summary>
/// <param name="filter"></param>
/// <param name="invalidData"></param>
/// <returns></returns>
private bool ProcessFilter(string filter, TEntity invalidData, string propertyName)
{
if (typeof(TEntity).GetProperty(propertyName).PropertyType == typeof(Double) && filter.Contains(","))
{
filter = filter.Replace(",", ".");
}
bool ratingResult = false;
const char FIRST_BRACKET = '(',
LAST_BRACKET = ')';
string newFilter = filter;
ConcurrentBag<int> charsIdWithStartParentesesParallel = new ConcurrentBag<int>();
ConcurrentBag<int> charsIdWithEndParentesesParallel = new ConcurrentBag<int>();
char[] filterChars = filter.ToCharArray();
Parallel.For(0, filterChars.Length, i =>
{
if (filterChars[i] == FIRST_BRACKET)
{
charsIdWithStartParentesesParallel.Add(i);
}
else if (filterChars[i] == LAST_BRACKET)
{
charsIdWithEndParentesesParallel.Add(i);
}
});
List<int> charsIdWithStartParenteses = charsIdWithStartParentesesParallel.ToList();
List<int> charsIdWithEndParenteses = charsIdWithEndParentesesParallel.ToList();
bool isMatch = false;
while (!isMatch)
{
try
{
this.SubstituteChars(ref newFilter);
ratingResult = DynamicLinq.DynamicExpression.ParseLambda<TEntity, bool>(newFilter).Compile().Invoke(invalidData);
isMatch = true;
}
catch
{
if (charsIdWithStartParenteses.Count > charsIdWithEndParenteses.Count)
{
filter = filter.Remove(filter.IndexOf(FIRST_BRACKET), 1);
newFilter = filter;
charsIdWithStartParenteses.Remove(charsIdWithStartParenteses.FirstOrDefault());
}
else if (charsIdWithStartParenteses.Count < charsIdWithEndParenteses.Count)
{
filter = filter.Remove(filter.LastIndexOf(LAST_BRACKET) - 1, 1);
newFilter = filter;
charsIdWithEndParenteses.Remove(charsIdWithEndParenteses.LastOrDefault());
}
else
{
if (charsIdWithStartParenteses.SequenceEqual(Enumerable.Range(1, charsIdWithStartParenteses.Count)))
{
filter = filter.Remove(filter.LastIndexOf(LAST_BRACKET) - 1, 1);
newFilter = filter;
charsIdWithEndParenteses.Remove(charsIdWithEndParenteses.LastOrDefault());
}
else if (charsIdWithEndParenteses.SequenceEqual(Enumerable.Range(1, charsIdWithEndParenteses.Count)))
{
filter = filter.Remove(filter.IndexOf(FIRST_BRACKET), 1);
newFilter = filter;
charsIdWithStartParenteses.Remove(charsIdWithStartParenteses.FirstOrDefault());
}
}
}
}
return ratingResult;
}
/// <summary>
///
/// </summary>
/// <param name="filter"></param>
private void SubstituteChars(ref string filter)
{
filter = filter.Replace("IsNullOrWhiteSpace", "string.IsNullOrWhiteSpace")
.Replace("AndAlso", "&&")
.Replace("OrElse", "||")
.Replace("Not", "!");
foreach (string item in this.ExpressionParameters)
{
filter = filter.Replace(item + ".", "");
if (!(item.Length == 1 && (filter.Split(item.FirstOrDefault()).Length - 1) > 1))
{
filter.Replace(item, "");
}
}
}
/// <summary>
///
/// </summary>
/// <param name="expression"></param>
/// <param name="tree"></param>
private void GetExpressionTree(BinaryExpression expression, ExpressionModel tree)
{
tree.BinaryExpressionItem = expression;
tree.Data = expression.ToString();
BinaryExpression left = expression.Left as BinaryExpression;
BinaryExpression right = expression.Right as BinaryExpression;
if (null != left)
{
tree.LeftExpression = new ExpressionModel();
this.GetExpressionTree(expression.Left as BinaryExpression, tree.LeftExpression);
}
if (null != right)
{
tree.RightExpression = new ExpressionModel();
this.GetExpressionTree(expression.Right as BinaryExpression, tree.RightExpression);
}
}
/// <summary>
///
/// </summary>
/// <param name="tree"></param>
/// <param name="finalResult"></param>
private void GetAllValidConditionalsByRightExpression(ExpressionModel tree, ref List<string> finalResult, ExpressionType selectedType)
{
if (null != tree.RightExpression)
{
if (tree.Data.Replace(tree.RightExpression.Data + ")", "").EndsWith(selectedType.ToString() + " "))
{
finalResult.Add(tree.RightExpression.Data);
if (null != tree.LeftExpression)
{
this.GetAllValidConditionalsByRightExpression(tree.LeftExpression, ref finalResult, selectedType);
}
}
else
{
finalResult.Add(tree.Data);
}
}
}
/// <summary>
///
/// </summary>
/// <param name="tree"></param>
/// <param name="finalExpressions"></param>
private void GetAllValidExpressions(ExpressionModel tree, ref List<BinaryExpression> finalExpressions, ExpressionType selectedType)
{
if (null != tree.RightExpression)
{
if (tree.Data.Replace(tree.RightExpression.Data + ")", "").EndsWith(selectedType.ToString() + " "))
{
finalExpressions.Add(tree.RightExpression.BinaryExpressionItem);
if (null != tree.LeftExpression)
{
this.GetAllValidExpressions(tree.LeftExpression, ref finalExpressions, selectedType);
}
}
else
{
finalExpressions.Add(tree.BinaryExpressionItem);
}
}
}
}
}