forked from UIShell/OSGi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BundleRuntime.cs
213 lines (185 loc) · 6.05 KB
/
BundleRuntime.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
namespace UIShell.OSGi
{
using System;
using System.Collections.Generic;
using System.Threading;
using Core;
using Core.Service;
using Utility;
public class BundleRuntime : IDisposable
{
private bool _isDisposed;
private bool _started;
private volatile BundleRuntimeState _state;
public int BundleClassLoaderCacheSize { get; set; }
public bool EnableBundleClassLoaderCache { get; set; }
public bool EnableGlobalAssemblyFeature { get; set; }
public IFramework Framework { get; private set; }
public static BundleRuntime Instance { get; internal set; }
internal IServiceManager ServiceManager => Framework.ServiceContainer;
public string[] StartArgs { get; private set; }
public BundleRuntimeState State
{
get { return _state; }
private set { _state = value; }
}
public BundleRuntime()
: this(new string[] { "Plugins" })
{
}
public BundleRuntime(string pluginsPath)
: this(new string[] { pluginsPath })
{
}
public BundleRuntime(string[] pluginsPathList)
{
BundleClassLoaderCacheSize = 50;
if (Instance != null)
{
throw new Exception(Messages.SingletonOSGiAllowed);
}
if ((pluginsPathList == null) || (pluginsPathList.Length == 0))
{
throw new Exception(Messages.AtLeastOnePluginsPathMustBeSpecified);
}
var framework = new Framework
{
Options = new FrameworkOptions(pluginsPathList)
};
Framework = framework;
Instance = this;
}
public void AddService<ServiceInterface>(object serviceInstance)
{
Framework.AddSystemService(typeof(ServiceInterface), new object[] { serviceInstance });
}
public void AddService(Type serviceInterface, object serviceInstance)
{
Framework.AddSystemService(serviceInterface, new object[] { serviceInstance });
}
public static void Dispose()
{
if (Instance != null)
{
if (Instance._started)
{
Instance.Stop();
}
Instance = null;
}
}
public T GetFirstOrDefaultService<T>()
{
if (ServiceManager != null)
{
return ServiceManager.GetFirstOrDefaultService<T>();
}
return default(T);
}
public object GetFirstOrDefaultService(string serviceTypeName)
{
if (ServiceManager != null)
{
return ServiceManager.GetFirstOrDefaultService(serviceTypeName);
}
return null;
}
public object GetFirstOrDefaultService(Type serviceType)
{
if (ServiceManager != null)
{
return ServiceManager.GetFirstOrDefaultService(serviceType);
}
return null;
}
public List<T> GetService<T>()
{
if (ServiceManager != null)
{
return ServiceManager.GetService<T>();
}
return null;
}
public List<object> GetService(string serviceTypeName)
{
if (ServiceManager != null)
{
return ServiceManager.GetService(serviceTypeName);
}
return null;
}
public List<object> GetService(Type serviceType)
{
if (ServiceManager != null)
{
return ServiceManager.GetService(serviceType);
}
return null;
}
public void RemoveService<ServiceInterface>(object serviceInstance)
{
Framework.RemoveSystemService(typeof(ServiceInterface), serviceInstance);
}
public void RemoveService(Type serviceInterface, object serviceInstance)
{
Framework.RemoveSystemService(serviceInterface, serviceInstance);
}
public void Start()
{
if (Thread.CurrentThread.Name == null)
{
Thread.CurrentThread.Name = "FrameworkThread";
}
Start(null);
}
public void Start(string[] args)
{
if (!_started)
{
StartArgs = args;
State = BundleRuntimeState.Starting;
try
{
Framework.Start();
State = BundleRuntimeState.Started;
_started = true;
}
catch (Exception exception)
{
State = BundleRuntimeState.Stopped;
_started = false;
FileLogUtility.Error(Messages.StartTheFrameworkFailed);
FileLogUtility.Error(exception);
}
}
}
public void Stop()
{
if (_started)
{
State = BundleRuntimeState.Stopping;
try
{
Framework.Stop();
}
catch (Exception exception)
{
FileLogUtility.Error(Messages.StopTheFrameworkFailed);
FileLogUtility.Error(exception);
}
State = BundleRuntimeState.Stopped;
_started = false;
}
}
void IDisposable.Dispose()
{
if (!_isDisposed)
{
Dispose();
GC.SuppressFinalize(this);
State = BundleRuntimeState.Disposed;
_isDisposed = true;
}
}
}
}