aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Utilities/Tango.DispenserAnalyzer.UI/Analysis/AnalysisService.cs
blob: a27307af654a9745c760d3ea83f4eafd3b834e14 (plain)
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Text;
using System.Threading.Tasks;
using Tango.CSV;
using Tango.DispenserAnalyzer.UI.Models;
using System.Windows.Controls;
using System.Windows.Media;
using System.IO;
using System.Text.RegularExpressions;

namespace Tango.DispenserAnalyzer.UI.Analysis
{
    public class AnalysisService
    {
        public static dynamic GetAnalyzer(String fileName)
        {
            string filename = Path.GetFileNameWithoutExtension(fileName);
            
            var analyzerTypes = typeof(AnalysisService).Assembly.GetTypes().Where(x => typeof(IBaseAnalyzer).IsAssignableFrom(x)).ToList();
            var analyzerType = analyzerTypes.FirstOrDefault(x => filename.StartsWith(x.GetCustomAttribute<AnalyzerAttribute>().Name, StringComparison.OrdinalIgnoreCase) );
            if(analyzerType == null)
            {//in case name of test is not first word
                analyzerType = analyzerTypes.FirstOrDefault(x => filename.IndexOf(x.GetCustomAttribute<AnalyzerAttribute>().Name, StringComparison.OrdinalIgnoreCase) >= 0);
            }
            
            return (analyzerType != null) ? Activator.CreateInstance(analyzerType)  : null;
            
        }
        public static string GetTestName(String fileName)
        {
            var analyzerTypes = typeof(AnalysisService).Assembly.GetTypes().Where(x => typeof(IBaseAnalyzer).IsAssignableFrom(x)).ToList();
            var analyzerType = analyzerTypes.FirstOrDefault(x => fileName.IndexOf(x.GetCustomAttribute<AnalyzerAttribute>().Name, StringComparison.OrdinalIgnoreCase) >= 0);
            
            return analyzerType.GetCustomAttribute<AnalyzerAttribute>().Name;
        }
        public static string GetDispenserNumber(String fileName)
        {
            string filename = Path.GetFileNameWithoutExtension(fileName);
            return GetUntilOrEmpty(filename," ");
        }

        public static string GetUntilOrEmpty( string text, string stopAt = "-")
        {
            if (!String.IsNullOrWhiteSpace(text))
            {
                int charLocation = text.IndexOf(stopAt, StringComparison.Ordinal);

                if (charLocation > 0)
                {
                    return text.Substring(0, charLocation);
                }
            }

            return String.Empty;
        }

        public static string GetDateTimeString(string text)
        {
            Regex regex = new Regex(@"\d{2}-\d{2}-\d{2}\s\d{2}-\d{2}");
           
            Match m = regex.Match(text);
            if (m.Success)
                return m.Value;
            return "";
            //if (m.Success)
            //{
            //    DateTime dt = DateTime.ParseExact(m.Value, "yyyy-MM-dd-hh-mm-ss", CultureInfo.InvariantCulture);
            //}
        }
    }
}