-
Notifications
You must be signed in to change notification settings - Fork 13
/
ServiceTracker.cs
84 lines (74 loc) · 3.09 KB
/
ServiceTracker.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
namespace UIShell.OSGi
{
using System;
using System.Collections.Generic;
using Utility;
public class ServiceTracker<TServiceInterface> : IDisposable
{
private TServiceInterface _defaultOrFirstService;
private List<TServiceInterface> _serviceInstances;
private bool _throwsExceptionIfServiceNotFound;
public ServiceTracker(IBundleContext context)
: this(context, true)
{
}
public ServiceTracker(IBundleContext context, bool throwsExceptionIfServiceNotFound)
{
AssertUtility.ArgumentNotNull(context, "BundleContext");
BundleContext = context;
_defaultOrFirstService = context.GetFirstOrDefaultService<TServiceInterface>();
_serviceInstances = context.GetService<TServiceInterface>();
context.ServiceChanged += new EventHandler<ServiceEventArgs>(ServiceChanged);
}
public void Dispose()
{
BundleContext.ServiceChanged -= new EventHandler<ServiceEventArgs>(ServiceChanged);
BundleContext = null;
_defaultOrFirstService = default(TServiceInterface);
_serviceInstances = null;
}
private void ServiceChanged(object sender, ServiceEventArgs e)
{
if (e.ServiceType.Equals(typeof(TServiceInterface).FullName))
{
try
{
_defaultOrFirstService = BundleContext.GetFirstOrDefaultService<TServiceInterface>();
_serviceInstances = BundleContext.GetService<TServiceInterface>();
}
catch (Exception exception)
{
FileLogUtility.Error(string.Format(Messages.GetServiceFailed, typeof(TServiceInterface).FullName));
FileLogUtility.Error(exception);
_defaultOrFirstService = default(TServiceInterface);
_serviceInstances = null;
}
}
}
public IBundleContext BundleContext { get; private set; }
public TServiceInterface DefaultOrFirstService
{
get
{
if ((_defaultOrFirstService == null) && _throwsExceptionIfServiceNotFound)
{
throw new ServiceNotAvailableException(typeof(TServiceInterface).FullName, BundleContext.Bundle);
}
return _defaultOrFirstService;
}
}
public bool IsServiceAvailable =>
((_serviceInstances != null) && (_serviceInstances.Count > 0));
public List<TServiceInterface> ServiceInstances
{
get
{
if (_throwsExceptionIfServiceNotFound && ((_serviceInstances == null) || (_serviceInstances.Count == 0)))
{
throw new ServiceNotAvailableException(typeof(TServiceInterface).FullName, BundleContext.Bundle);
}
return _serviceInstances;
}
}
}
}