-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExecutor.cs
93 lines (85 loc) · 2.94 KB
/
Executor.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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Serilog;
namespace projecteuler
{
public class Executor
{
private readonly ILogger _logger;
private List<ICommand> Exercises { get; init; }
private Dictionary<Type, string> Responses { get; init; }
public Executor(ILogger logger)
{
_logger = logger;
Exercises = new List<ICommand>();
Responses = new Dictionary<Type, string>();
IEnumerable<Type> exercises = FindExerciseClasses();
foreach (var exercise in exercises)
{
var exerciseObject = Activator.CreateInstance(exercise, logger);
ICommand comando = exerciseObject as ICommand;
Exercises.Add(comando);
}
}
private static IEnumerable<Type> FindExerciseClasses()
{
var tipoComando = typeof(ICommand);
return Assembly.GetExecutingAssembly()
.GetTypes()
.Where(t => t.GetInterfaces().Contains(typeof(ICommand)) && !t.IsInterface);
}
public void MainLoop(string[] args)
{
if (args.Length == 0)
{
System.Console.Clear();
_logger.Information("Welcome to project Euler");
_logger.Information("Please choose wich test you want to execute");
_logger.Information("");
var exercises = FindExerciseClasses();
foreach (var exercise in exercises)
{
_logger.Information(exercise.Name);
}
return;
}
if (args[0].ToLower() == "all")
{
RunAll();
return;
}
foreach (var arg in args)
{
RunExercise(arg);
}
}
public void RunExercise(string exerciseName)
{
_logger.Information("Running: " + exerciseName);
var projectNamespace = typeof(Executor).Namespace;
var className = projectNamespace + '.' + exerciseName;
var exercise = Exercises.Where(e => e.ToString() == className).FirstOrDefault();
var result = exercise.Resolve();
_logger.Information(exerciseName + ": " + result);
}
public void RunAll()
{
Responses.Clear();
if (!Exercises.Any())
{
_logger.Information("There exercises found.");
}
foreach (var exercise in Exercises)
{
_logger.Information("Running: " + exercise.GetType().Name);
var response = exercise.Resolve();
Responses.Add(exercise.GetType(), response);
_logger.Information("....");
}
}
}
}