-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlgorithmInfo.cs
More file actions
66 lines (55 loc) · 1.56 KB
/
Copy pathAlgorithmInfo.cs
File metadata and controls
66 lines (55 loc) · 1.56 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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
namespace ProcessingEngine.Algorithm
{
public class AlgorithmInfo
{
private object _algorithm;
public AlgorithmInfo(object algorithm)
{
if (algorithm is IAlgorithm)
{
_algorithm = algorithm;
}
else
throw new FormatException("Algorithm Info cannot be initiated, because the Interface IAlgorithm is not implemented.");
}
/// <summary>
/// Return List of all parameters in the implemented algorithm
/// </summary>
public IEnumerable<PropertyInfo> GetParameterProperties()
{
var props = from p in _algorithm.GetType().GetProperties()
let attr = p.GetCustomAttributes(typeof(ParameterAttribute), true)
where attr.Length == 1
select p;
return props;
}
/// <summary>
/// Return List of all input properties in the implemented algorithm
/// </summary>
public IEnumerable<PropertyInfo> GetInputProperties()
{
var props = from p in _algorithm.GetType().GetProperties()
let attr = p.GetCustomAttributes(typeof(InputAttribute), true)
where attr.Length == 1
select p;
return props;
}
/// <summary>
/// Return List of all output properties in the implemented algorithm
/// </summary>
public IEnumerable<PropertyInfo> GetOutputProperties()
{
var props = from p in _algorithm.GetType().GetProperties()
let attr = p.GetCustomAttributes(typeof(OutputAttribute), true)
where attr.Length == 1
select p;
return props;
}
}
}