Projekt

Obecné

Profil

Stáhnout (3.62 KB) Statistiky
| Větev: | Tag: | Revize:
1
using ServerApp.Connection;
2
using ServerApp.DataDownload;
3
using ServerApp.Parser.Parsers;
4
using ServerApp.Predictor;
5
using ServerApp.User;
6
using System;
7
using System.Collections.Generic;
8
using System.IO;
9
using System.Threading;
10

    
11
namespace ServerApp
12
{
13

    
14
	class Config // TBD where this should go
15
	{
16
		public string DataWebsite { get; set; }
17
		public string DownloadedFilesNaming { get; set; }
18
		public string DataRootDir { get; set; }
19
		public string Port { get; set; }
20
	}
21

    
22
    public class Program
23
    {
24

    
25
		public static void NotifyUserMessage(string message)
26
		{
27
			Console.WriteLine("Received user message: " + message);
28
		}
29

    
30
        static void Main(string[] args)
31
        {
32

    
33
			Config config = FillConfigInfo(args);
34
			if (config == null)
35
			{
36
				Console.ReadLine();
37
				return;
38
			}
39

    
40
			//create a thread for commands accepting:
41
			Thread inputThread = new Thread(CommandsAcceptor.AcceptCommand);
42
			inputThread.Start();
43

    
44

    
45

    
46
			//DataParser p = new DataParser("data/");
47
			//p.Parse();
48

    
49

    
50
			//test scenario -data download:
51
			DataDownloader dd = new DataDownloader(config.DataRootDir, config.DataWebsite, config.DownloadedFilesNaming);
52
			dd.OverwriteExisting = false;
53
			List<string> savedFiles = new List<string>();
54
			savedFiles.AddRange(dd.DownloadData(DataType.JIS, DataFormat.CSV, new Date(1, 2019), new Date(12, 2020)));
55
			savedFiles.AddRange(dd.DownloadData(DataType.STROJE, DataFormat.CSV, new Date(1, 2017), new Date(12, 2020)));
56
			savedFiles.AddRange(dd.DownloadData(DataType.POCASI, DataFormat.CSV, new Date(1, 2017), new Date(12, 2020)));
57

    
58

    
59

    
60
			Console.WriteLine("Saved files: ");
61
			foreach (string s in savedFiles)
62
			{
63
				Console.WriteLine(s);
64
			}
65

    
66
			Console.WriteLine("subdirectories: ");
67
			foreach (KeyValuePair<DataType, string> kvp in dd.DataSubDirectories)
68
			{
69
				Console.WriteLine("Key = {0}, Value = {1}", kvp.Key, kvp.Value);
70
			}
71

    
72
			List<string> retrievedData = dd.GetData(dd.DataSubDirectories[DataType.JIS], new Date(10, 2019), new Date(12, 2020));
73
			Console.WriteLine("Retrieved data: ");
74
			foreach (string s in retrievedData)
75
			{
76
				Console.WriteLine(s);
77
			}
78

    
79
			// test - connection:
80
			//ConnectionListener cl = new ConnectionListener(int.Parse(args[0])/*8000*//*int.Parse(config.Port)*/);
81
			//cl.StartListening();
82

    
83
			Console.ReadLine();
84
        }
85

    
86

    
87
        private static Config FillConfigInfo(string[] args)
88
		{
89

    
90
			Config extractedConfigInfo = new Config();
91

    
92
			Console.WriteLine(Directory.GetCurrentDirectory());
93
			
94
			if (args.Length != 1)
95
				Console.WriteLine("Wrong usage of parameters, pass the path to a config file."); // todo better explanation?
96

    
97
			string fullPathConfig = Path.GetFullPath(args[0]);
98
			string[] lines = null;
99
			try {
100
				lines = File.ReadAllLines(fullPathConfig);
101
			}
102
			catch(Exception ex)
103
			{
104
				Console.WriteLine("Could not open " + fullPathConfig);
105
				return null;
106
			}
107
			
108
			for (var i = 0; i < lines.Length; i += 1)
109
			{
110
				string line = lines[i];
111
				Console.WriteLine(line);
112
				if (line.Length == 0 || line == null || line.StartsWith("#"))
113
					continue;
114

    
115
				switch (line)
116
				{
117
					case "!site!":
118
						extractedConfigInfo.DataWebsite = lines[++i].Trim();
119
						break;
120
					case "!naming_convention!":
121
						extractedConfigInfo.DownloadedFilesNaming = lines[++i].Trim();
122
						break;
123
					case "!data_root_dir!":
124
						string dirWithConfig = Path.GetDirectoryName(fullPathConfig);
125
						string rootPath = dirWithConfig + Path.DirectorySeparatorChar + lines[++i].Trim();
126
						extractedConfigInfo.DataRootDir = rootPath;
127
						
128
						break;
129
					case "!port!":
130
						extractedConfigInfo.Port = lines[++i].Trim();
131
						break;
132
					default: break;
133
				}
134
			}
135

    
136
			return extractedConfigInfo;
137
		}
138
    }
139
}
(2-2/5)