-
Notifications
You must be signed in to change notification settings - Fork 2
/
Program.cs
154 lines (125 loc) · 4.03 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
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Security.Principal;
using System.Threading;
using System.Diagnostics;
using System.IO;
namespace boot
{
class Program
{
static string appExePath;
static string appWorkDir;
static int stricmp(string s1,string s2)
{
return String.Compare(s1, s2, StringComparison.OrdinalIgnoreCase);
}
static bool Run(string process, string args)
{
if (!File.Exists(process))
{
Console.WriteLine("{0} not found. Process creation failed.", process);
return false;
}
ProcessStartInfo psi = new ProcessStartInfo(process, args)
{
UseShellExecute = true
};
return Process.Start(psi) != null;
}
static void CheckAdminRights()
{
WindowsPrincipal wp = new WindowsPrincipal(WindowsIdentity.GetCurrent());
if (!wp.IsInRole(WindowsBuiltInRole.Administrator))
{
ProcessStartInfo psi = new ProcessStartInfo
{
Verb = "runas",
FileName = appExePath,
WorkingDirectory = appWorkDir
};
Process.Start(psi);
Environment.Exit(0);
}
}
static string BackendExePath
{
get
{
return appWorkDir + "\\backend\\sozluk_backend.exe";
}
}
static string HttpdExePath
{
get
{
return appWorkDir + "\\httpd\\bin\\httpd.exe";
}
}
static void Log(string format, params object[] args)
{
Console.WriteLine(string.Format(format, args));
}
static void Main(string[] args)
{
Process apache=null, backend=null, sbmon=null;
List<Process> memcachedInsts = null;
appExePath = System.Reflection.Assembly.GetExecutingAssembly().Location;
appWorkDir = Path.GetDirectoryName(appExePath);
CheckAdminRights();
var procList = Process.GetProcesses();
foreach (var proc in procList)
{
if (stricmp(proc.ProcessName, "httpd") == 0)
{
Log("Httpd still running");
apache = proc;
}
else if (stricmp(proc.ProcessName, "sozluk_backend") == 0)
{
Log("Backend process still running");
backend = proc;
}
else if (stricmp(proc.ProcessName, "sbmon") == 0)
{
Log("Sbmon still running");
sbmon = proc;
}
else if (stricmp(proc.ProcessName, "memcached") == 0)
{
Log("A memcached instance found");
if (memcachedInsts == null)
memcachedInsts = new List<Process>();
memcachedInsts.Add(proc);
}
}
if (apache == null)
{
Log("starting httpd");
Run(HttpdExePath,string.Empty);
}
if (backend==null)
{
if (sbmon != null)
{
Log("there is no backend but sbmon. Sbmon killing");
sbmon.Kill();
}
if (memcachedInsts!=null)
{
Log("There some memcached instances. Killing em");
foreach (var mcp in memcachedInsts)
{
mcp.Kill();
}
}
Log("Starting up backend");
Run(BackendExePath, string.Empty);
}
Console.ReadKey();
}
}
}