-
-
Notifications
You must be signed in to change notification settings - Fork 748
Expand file tree
/
Copy pathRuntimeControllerAspNetBase.cs
More file actions
132 lines (111 loc) · 4.04 KB
/
RuntimeControllerAspNetBase.cs
File metadata and controls
132 lines (111 loc) · 4.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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
namespace ElectronNET.AspNet.Runtime
{
using System;
using System.Threading.Tasks;
using ElectronNET.API;
using ElectronNET.Common;
using ElectronNET.Runtime.Controllers;
using ElectronNET.Runtime.Data;
using ElectronNET.Runtime.Services.SocketBridge;
internal abstract class RuntimeControllerAspNetBase : RuntimeControllerBase
{
private readonly AspNetLifetimeAdapter aspNetLifetimeAdapter;
private SocketBridgeService socketBridge;
protected RuntimeControllerAspNetBase(AspNetLifetimeAdapter aspNetLifetimeAdapter)
{
this.aspNetLifetimeAdapter = aspNetLifetimeAdapter;
this.aspNetLifetimeAdapter.Ready += this.AspNetLifetimeAdapter_Ready;
this.aspNetLifetimeAdapter.Stopping += this.AspNetLifetimeAdapter_Stopping;
this.aspNetLifetimeAdapter.Stopped += this.AspNetLifetimeAdapter_Stopped;
ElectronNetRuntime.RuntimeControllerCore = this;
}
internal override SocketBridgeService SocketBridge => this.socketBridge;
internal override ISocketConnection Socket
{
get
{
if (this.State == LifetimeState.Ready)
{
return this.socketBridge.Socket;
}
throw new Exception("Cannot access socket bridge. Runtime is not in 'Ready' state");
}
}
protected void CreateSocketBridge(int port)
{
this.socketBridge = new SocketBridgeService(port);
this.socketBridge.Ready += this.SocketBridge_Ready;
this.socketBridge.Stopped += this.SocketBridge_Stopped;
this.socketBridge.Start();
}
protected void HandleReady()
{
if (this.SocketBridge.IsReady() &&
this.ElectronProcess.IsReady() &&
this.aspNetLifetimeAdapter.IsReady())
{
this.TransitionState(LifetimeState.Ready);
Task.Run(this.RunReadyCallback);
}
}
protected void HandleStopped()
{
this.TransitionState(LifetimeState.Stopping);
if (this.SocketBridge.IsNotStopped())
{
this.SocketBridge.Stop();
}
if (this.ElectronProcess.IsNotStopped())
{
this.ElectronProcess.Stop();
}
if (this.aspNetLifetimeAdapter.IsNotStopped())
{
this.aspNetLifetimeAdapter.Stop();
}
if ((this.SocketBridge.IsNullOrStopped()) &&
(this.ElectronProcess.IsNullOrStopped()) &&
(this.aspNetLifetimeAdapter.IsNullOrStopped()))
{
this.TransitionState(LifetimeState.Stopped);
}
}
protected abstract override Task StopCore();
private void SocketBridge_Ready(object sender, EventArgs e)
{
this.HandleReady();
}
private void AspNetLifetimeAdapter_Ready(object sender, EventArgs e)
{
this.HandleReady();
}
private void SocketBridge_Stopped(object sender, EventArgs e)
{
this.HandleStopped();
}
private void AspNetLifetimeAdapter_Stopped(object sender, EventArgs e)
{
this.HandleStopped();
}
private void AspNetLifetimeAdapter_Stopping(object sender, EventArgs e)
{
}
private async Task RunReadyCallback()
{
if (ElectronNetRuntime.OnAppReadyCallback == null)
{
Console.WriteLine("Warning: Non OnReadyCallback provided in UseElectron() setup.");
return;
}
try
{
await ElectronNetRuntime.OnAppReadyCallback().ConfigureAwait(false);
}
catch (Exception ex)
{
Console.WriteLine("Exception while executing OnAppReadyCallback. Stopping...\n" + ex);
this.Stop();
}
}
}
}