-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
87 lines (71 loc) · 2.38 KB
/
Program.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
using System;
using System.IO;
using System.Reflection;
using System.Collections.Generic;
namespace AWPM
{
class MainClass
{
#if DEBUG
const string tempDir = "temp";
const string binDir = "bin";
#endif
private static (bool OK, string err) checkFilesystem() {
string exePath = AppDomain.CurrentDomain.BaseDirectory;
if (!Directory.Exists(exePath + tempDir))
{
return (false, "Unable to find temp dir");
}
if(!Directory.Exists(exePath + binDir))
{
return (false, "Unable to find bin dir");
}
return (true, "");
}
public static void Main(string[] args)
{
//ProgramFlags flags;
//try
//{
// flags = new ProgramFlags(args);
//}
//catch (Exception e)
//{
// Console.WriteLine(e.Message);
// return;
//}
(bool, string) filesystem = checkFilesystem();
if (!filesystem.Item1)
{
Console.WriteLine("Fatal error {0}", filesystem.Item2);
return;
}
#if DEBUG
string[] debugArgs = { "-i", "package1" };
ProgramFlags flags = new ProgramFlags(debugArgs);
Console.Write(flags);
#endif
if (flags.Version)
{
Version version = Assembly.GetExecutingAssembly()
.GetName().Version;
Console.WriteLine($"Ado Windows Package Manager v" +
version + "\n\nThis is free software; see the source for " +
"copying conditions. There is NO\nwarranty; not even " +
"for MERCHANTABILITY or FITNESS FOR A PARTICULAR " +
"PURPOSE.\n\nWritten by Vladislav 'ElCapitan' Nazarov");
return;
}
(bool, string) valid = flags.validateArguments();
if (!valid.Item1)
{
Console.WriteLine($"Error: {valid.Item2}\n");
Console.WriteLine("Command failed, exiting...");
return;
}
List<Operations> ops = flags.generateTasklist();
Package package = new Package();
package.pacakgeName;
}
}
}