-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCommands.cs
541 lines (537 loc) · 14.4 KB
/
Commands.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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
using System;
using System.IO;
using System.Collections.Generic;
using ErrorCode = interspace.Errors.ErrorCode;
namespace interspace{
public static class Commands{
// all the commands are specified here
public delegate Errors.ErrorCode CommandDelegate(String[] args);
public static Dictionary<string, CommandDelegate> commands = new Dictionary<string, CommandDelegate>(){
{"create", CreateMatrixFromStdin},
{"distance", PrintDistance},
{"draw", DrawNeighbourMatrix},
{"edit", EditMatrixEdge},
{"editcol", EditMatrixCol},
{"editrow", EditMatrixRow},
{"export", ExportMatrices},
{"help", Help},
{"history", DisplayHistory},
{"load", LoadMatrixFromFile},
{"shortest", DrawShortestPathsMatrix},
{"exit", CloseProgram},
};
public static int commandsCount = commands.Count;
public static List<string> commandsNamesList = new List<string>(commands.Keys);
public static ErrorCode CloseProgram(String[] args){
ApplicationData.running = false;
return ErrorCode.NO_ERROR;
}
public static ErrorCode DisplayHistory(String[] args){
try{
int i=0;
foreach(string command in ApplicationData.history){
Console.WriteLine($"{i}\t{command}");
i++;
}
}
catch (Exception ex){
ApplicationData.LogError(ex);
return ErrorCode.UNSPECIFIED_ERROR;
}
return ErrorCode.NO_ERROR;
}
public static ErrorCode LoadMatrixFromFile(String[] args){
bool filenameSet = false;
string filename = "";
int len = args.Length;
if(len > 0){
int i = 0;
while(i < len){
switch(args[i]){
case "-f":
case "--file":{
i++;
filename = args[i];
filenameSet = true;
}
break;
default:{
return ErrorCode.ARGUMENT_ERROR;
}
}
i++;
}
}
if(!filenameSet){
Console.Write("Type the name of matrix file: ");
filename = Console.ReadLine();
}
try{
ApplicationData.inputFile = new StreamReader(filename);
//process file
uint n = Convert.ToUInt32(ApplicationData.inputFile.ReadLine()); //get vertices' count
var matrix = new double[n,n];
for(int i=0; i<n; i++){
string[] line = ApplicationData.inputFile.ReadLine().Split(' ');
if(line.Length > n) throw new FormatException();
// if the user had provided less than n numbers we assume the rest are zeros
for(int j=0; j<line.Length; j++){
matrix[i,j] = Convert.ToDouble(line[j]);
}
}
GraphCalculations.NeighbourMatrix = matrix;
//close the file after processing
ApplicationData.inputFile.Close();
// update shortest paths
GraphCalculations.CalculateShortestPaths();
}
catch (Exception ex){
ApplicationData.LogError(ex);
switch(ex){
case FileNotFoundException:
return ErrorCode.FILE_LOADING_ERROR;
case IOException:
return ErrorCode.FILE_GENERAL_ERROR;
case FormatException:
return ErrorCode.MATRIX_FORMAT_ERROR;
default:
return ErrorCode.UNSPECIFIED_ERROR;
}
}
return ErrorCode.NO_ERROR;
}
public static ErrorCode CreateMatrixFromStdin(String[] args){
bool sizeSet = false;
uint n = 0; // vertices
//process arguments
int len = args.Length;
if(len > 0){
int i = 0; // set index to the beginning
while(i < len){
Console.WriteLine(args[i]);
switch(args[i]){ // process i-th argument
case "-h":{ // help dialog
// print help for this command
}
break;
case "-v":
case "--value": // size of vertices
try{
i++;
n = Convert.ToUInt32(args[i]);
sizeSet = true;
}
catch(Exception ex){
ApplicationData.LogError(ex);
return ErrorCode.ARGUMENT_ERROR;
}
break;
default:{
return ErrorCode.ARGUMENT_ERROR;
}
}
i++;
}
}
try{
if(!sizeSet){
Console.Write("Enter the number of vertices: ");
n = Convert.ToUInt32(Console.ReadLine());
}
var matrix = new double[n,n]; // make temporary matrix to save elements from input
for(int i=0; i<n; i++){
Console.Write($"Enter elements of row {i} separated by spaces: ");
string[] line = Console.ReadLine().Split(' ');
if (line.Length > n) throw new FormatException();
// if the user had provided less than n numbers we assume that the rest in the row is zero
for(int j=0; j<line.Length; j++){
matrix[i,j] = Convert.ToDouble(line[j]);
}
}
// if there is still no error we can safely save all the data to our main matrix
GraphCalculations.NeighbourMatrix = matrix;
// update shortest paths
GraphCalculations.CalculateShortestPaths();
}
catch(Exception ex){
ApplicationData.LogError(ex);
switch(ex){
case FormatException:
return ErrorCode.MATRIX_FORMAT_ERROR;
default:
return ErrorCode.NO_ERROR;
}
}
return ErrorCode.NO_ERROR;
}
// WARNING this will be deprecated for command edit -c
public static ErrorCode EditMatrixCol(String[] args){
int len = args.Length;
uint col = 0;
bool columnSet = false;
if(len > 0){
int i = 0;
while(i < len){
switch(args[i]){
case "-c":
case "--col":{
i++;
col = Convert.ToUInt32(args[i]);
columnSet = true;
}
break;
default:{
return ErrorCode.ARGUMENT_ERROR;
}
}
i++;
}
}
try{
if(GraphCalculations.NeighbourMatrix == null) throw new NullReferenceException();
if(!columnSet){
Console.WriteLine("Enter edited column: ");
col = Convert.ToUInt32(Console.ReadLine());
}
if(col>=GraphCalculations.Vertices) throw new IndexOutOfRangeException();
var temp = new double[GraphCalculations.Vertices];
Console.WriteLine("Enter new values: ");
string[] line = Console.ReadLine().Split(' ');
int n = line.Length;
if(n > GraphCalculations.Vertices) throw new FormatException();
//attention - this changes only n first elements
for(int i=0; i<n; i++){
temp[i] = Convert.ToDouble(line[i]);
}
for(int i=0; i<n; i++){
GraphCalculations.NeighbourMatrix[i, col] = temp[i];
}
// update shortest paths
GraphCalculations.CalculateShortestPaths();
}
catch(Exception ex){
ApplicationData.LogError(ex);
switch(ex){
case NullReferenceException:
return ErrorCode.MATRIX_NULL_ERROR;
case IndexOutOfRangeException:
return ErrorCode.MATRIX_INDEX_ERROR;
case FormatException:
return ErrorCode.MATRIX_FORMAT_ERROR;
default:
return ErrorCode.UNSPECIFIED_ERROR;
}
}
return ErrorCode.NO_ERROR;
}
public static ErrorCode EditMatrixEdge(String[] args){
int len = args.Length;
bool columnSet = false;
bool rowSet = false;
bool valueSet = false;
uint row = 0;
uint col = 0;
double value = 0;
if(len > 0){
int i = 0;
while(i < len){
switch(args[i]){
case "-c":
case "--col":{ //column
i++;
col = Convert.ToUInt32(args[i]);
columnSet = true;
}
break;
case "-r":
case "--row":{ //row
i++;
row = Convert.ToUInt32(args[i]);
rowSet = true;
}
break;
case "-v":
case "--value":{ //value
i++;
value = Convert.ToDouble(args[i]);
valueSet = true;
}
break;
default:{
return ErrorCode.ARGUMENT_ERROR;
}
}
i++;
}
}
try{
if(GraphCalculations.NeighbourMatrix == null) throw new NullReferenceException();
if(!rowSet){
Console.WriteLine("Enter edited row: ");
row = Convert.ToUInt32(Console.ReadLine());
}
if(row>=GraphCalculations.Vertices) throw new IndexOutOfRangeException();
if(!columnSet){
Console.WriteLine("Enter edited column: ");
col = Convert.ToUInt32(Console.ReadLine());
}
if(row>=GraphCalculations.Vertices) throw new IndexOutOfRangeException();
if(!valueSet){
Console.WriteLine("Enter new value: ");
value = Convert.ToDouble(Console.ReadLine());
}
GraphCalculations.NeighbourMatrix[row, col] = value;
// update shortest paths
GraphCalculations.CalculateShortestPaths();
}
catch(Exception ex){
ApplicationData.LogError(ex);
switch(ex){
case NullReferenceException:
return ErrorCode.MATRIX_NULL_ERROR;
case IndexOutOfRangeException:
return ErrorCode.MATRIX_INDEX_ERROR;
case FormatException:
return ErrorCode.MATRIX_FORMAT_ERROR;
default:
return ErrorCode.UNSPECIFIED_ERROR;
}
}
return ErrorCode.NO_ERROR;
}
public static ErrorCode EditMatrixRow(String[] args){
int len = args.Length;
uint row = 0;
bool rowSet = false;
if(len > 0){
int i = 0;
while(i < len){
switch(args[i]){
case "-r":
case "--row":{
i++;
row = Convert.ToUInt32(args[i]);
rowSet = true;
}
break;
default:{
return ErrorCode.ARGUMENT_ERROR;
}
}
i++;
}
}
try{
if(GraphCalculations.NeighbourMatrix == null) throw new NullReferenceException();
if(!rowSet){
Console.WriteLine("Enter edited row: ");
row = Convert.ToUInt32(Console.ReadLine());
}
if(row>=GraphCalculations.Vertices) throw new IndexOutOfRangeException();
var temp = new double[GraphCalculations.Vertices];
Console.WriteLine("Enter new values: ");
string[] line = Console.ReadLine().Split(' ');
int n = line.Length;
if(n > GraphCalculations.Vertices) throw new FormatException();
//attention - this changes only n first elements
for(int j=0; j<n; j++){
temp[j] = Convert.ToDouble(line[j]);
}
for(int j=0; j<n; j++){
GraphCalculations.NeighbourMatrix[row, j] = temp[j];
}
// update shortest paths
GraphCalculations.CalculateShortestPaths();
}
catch(Exception ex){
ApplicationData.LogError(ex);
switch(ex){
case NullReferenceException:
return ErrorCode.MATRIX_NULL_ERROR;
case IndexOutOfRangeException:
return ErrorCode.MATRIX_INDEX_ERROR;
case FormatException:
return ErrorCode.MATRIX_FORMAT_ERROR;
default:
return ErrorCode.UNSPECIFIED_ERROR;
}
}
return ErrorCode.NO_ERROR;
}
public static ErrorCode DrawNeighbourMatrix(String[] args){
int len = args.Length;
if(len > 0){
return ErrorCode.ARGUMENT_ERROR;
}
try{
UserInterface.DrawMatrix(GraphCalculations.NeighbourMatrix);
}
catch(Exception ex){
ApplicationData.LogError(ex);
switch(ex){
case NullReferenceException:
return ErrorCode.MATRIX_NULL_ERROR;
case IndexOutOfRangeException:
return ErrorCode.MATRIX_INDEX_ERROR;
default:
return ErrorCode.UNSPECIFIED_ERROR;
}
}
return ErrorCode.NO_ERROR;
}
public static ErrorCode PrintDistance(String[] args){
int len = args.Length;
bool startSet = false;
bool endSet = false;
uint start = 0;
uint end = 0;
if(len > 0){
int i = 0;
while(i < len){
try{
switch(args[i]){
case "-f":
case "--from":{
i++;
start = Convert.ToUInt32(args[i]);
startSet = true;
}
break;
case "-t":
case "--to":{
i++;
end = Convert.ToUInt32(args[i]);
endSet = true;
}
break;
}
}
catch{
return ErrorCode.ARGUMENT_ERROR;
}
i++;
}
}
try{
if(!startSet){
Console.WriteLine("Enter start vertex: ");
start = Convert.ToUInt32(Console.ReadLine());
}
if(!endSet){
Console.WriteLine("Enter end vertex: ");
end = Convert.ToUInt32(Console.ReadLine());
}
double value = GraphCalculations.Edge(GraphCalculations.ShortestPathsMatrix, start, end);
Console.WriteLine($"Distance between vertex {start} and {end} is {value}");
}
catch(Exception ex){
ApplicationData.LogError(ex);
switch(ex){
case NullReferenceException:
return ErrorCode.MATRIX_NULL_ERROR;
case IndexOutOfRangeException:
return ErrorCode.MATRIX_INDEX_ERROR;
default:
return ErrorCode.UNSPECIFIED_ERROR;
}
}
return ErrorCode.NO_ERROR;
}
// REMOVE DEPRECATED
public static ErrorCode DrawShortestPathsMatrix(String[] args){
int len = args.Length;
if(len > 0){
return ErrorCode.ARGUMENT_ERROR;
}
try{
UserInterface.DrawMatrix(GraphCalculations.ShortestPathsMatrix);
}
catch(Exception ex){
ApplicationData.LogError(ex);
switch(ex){
case NullReferenceException:
return ErrorCode.MATRIX_NULL_ERROR;
case IndexOutOfRangeException:
return ErrorCode.MATRIX_INDEX_ERROR;
default:
return ErrorCode.UNSPECIFIED_ERROR;
}
}
return ErrorCode.NO_ERROR;
}
public static ErrorCode ExportMatrices(String[] args){
bool fileSet = false;
string name = "";
int len = args.Length;
if(len > 0){
int i = 0;
while(i < len){
switch(args[i]){
case "-o":
case "--out":{
try{
i++;
name = args[i];
fileSet = true;
}
catch(Exception ex){
ApplicationData.LogError(ex);
return ErrorCode.ARGUMENT_ERROR;
}
}
break;
default:{
return ErrorCode.ARGUMENT_ERROR;
}
}
i++;
}
}
try{
if(!fileSet){
Console.WriteLine("Enter the name of export file: ");
name = Console.ReadLine();
}
var exportFile = new StreamWriter(name);
uint n = GraphCalculations.Vertices;
exportFile.WriteLine("Neighbour Matrix:");
for(uint i=0; i<n; i++){
for(uint j=0; j<n; j++){
exportFile.Write($"{GraphCalculations.NeighbourMatrix[i,j]},");
}
exportFile.Write("\n");
}
GraphCalculations.CalculateShortestPaths();
exportFile.WriteLine("Shortest Paths Matrix:");
for(uint i=0; i<n; i++){
for(uint j=0; j<n; j++){
exportFile.Write($"{GraphCalculations.ShortestPathsMatrix[i,j]},");
}
exportFile.Write("\n");
}
exportFile.Close();
}
catch(Exception ex){
ApplicationData.LogError(ex);
return ErrorCode.UNSPECIFIED_ERROR;
}
return ErrorCode.NO_ERROR;
}
public static ErrorCode Help(String[] args){
int len = args.Length;
if(len > 0){
//TODO display help for specified command
return ErrorCode.ARGUMENT_ERROR;
}
try{
Console.WriteLine(UserInterface.HelpDialog);
}
catch(Exception ex){
//TODO secure for case when help.txt file is not present
ApplicationData.LogError(ex);
return ErrorCode.UNSPECIFIED_ERROR;
}
return ErrorCode.NO_ERROR;
}
}
}