-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
108 lines (83 loc) · 3.04 KB
/
Copy pathProgram.cs
File metadata and controls
108 lines (83 loc) · 3.04 KB
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
namespace WebApplication1
{
public class Program
{
public static void Main(string[] args)
{
var builder = WebApplication.CreateBuilder(args);
// Add services to the container.
builder.Services.AddRazorPages();
var app = builder.Build();
// Configure the HTTP request pipeline.
if (!app.Environment.IsDevelopment())
{
app.UseExceptionHandler("/Error");
}
GlobalData.Instance.environment = app.Environment;
app.UseStaticFiles();
app.UseRouting();
app.UseAuthorization();
app.MapRazorPages();
app.Run();
}
}
public class GlobalData
{
#region Singleton
private static object syncRoot = new Object();
private static volatile GlobalData instance;
public static int programNum = 0;
public static string mutexString;
public static Mutex m = null;
public static GlobalData Instance
{
get
{
if (instance == null)
{
bool doesNotExist = false;
bool otherException = false;
bool createdMutex = false;
while (!createdMutex)
{
mutexString = "GeoLog" + programNum.ToString();
try
{
// Open the mutex with (MutexRights.Synchronize |
// MutexRights.Modify), to enter and release the
// named mutex.
//
m = Mutex.OpenExisting(mutexString);
}
catch (WaitHandleCannotBeOpenedException)
{
Console.WriteLine("Mutex does not exist.");
doesNotExist = true;
m = new Mutex(false, mutexString, out createdMutex);
continue;
}
catch (Exception ex)
{
Console.WriteLine("Exception in mutex: {0}", ex.Message);
otherException = true;
}
if ((m != null) && (!doesNotExist) && (!otherException))
{
// m.ReleaseMutex();
m = null;
programNum++;
}
}
lock (syncRoot)
{
if (instance == null)
instance = new GlobalData();
}
}
return instance;
}
}
#endregion
public IWebHostEnvironment environment;
}
}