blob: a16a67cc4eff3dfe8d68e43b130ae19d4ae30a74 (
plain)
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
|
/*
* Jitsi, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package net.java.sip.communicator.impl.notification;
import net.java.sip.communicator.service.gui.*;
import net.java.sip.communicator.service.notification.*;
import net.java.sip.communicator.service.systray.*;
import net.java.sip.communicator.util.*;
import org.jitsi.service.audionotifier.*;
import org.jitsi.service.configuration.*;
import org.osgi.framework.*;
/**
* The <tt>NotificationActivator</tt> is the activator of the notification
* bundle.
*
* @author Yana Stamcheva
*/
public class NotificationActivator
implements BundleActivator
{
private final Logger logger =
Logger.getLogger(NotificationActivator.class);
protected static BundleContext bundleContext;
private static AudioNotifierService audioNotifierService;
private static SystrayService systrayService;
private static NotificationService notificationService;
/**
* A reference to the <tt>UIService</tt> currently in use in Jitsi.
*/
private static UIService uiService = null;
private CommandNotificationHandler commandHandler;
private LogMessageNotificationHandler logMessageHandler;
private PopupMessageNotificationHandler popupMessageHandler;
private SoundNotificationHandler soundHandler;
/**
* The <tt>ConfigurationService</tt> registered in {@link #bundleContext}
* and used by the <tt>NotificationActivator</tt> instance to read and write
* configuration properties.
*/
private static ConfigurationService configurationService;
public void start(BundleContext bc) throws Exception
{
bundleContext = bc;
try
{
logger.logEntry();
logger.info("Notification handler Service...[ STARTED ]");
// Get the notification service implementation
ServiceReference notifReference = bundleContext
.getServiceReference(NotificationService.class.getName());
notificationService = (NotificationService) bundleContext
.getService(notifReference);
commandHandler = new CommandNotificationHandlerImpl();
logMessageHandler = new LogMessageNotificationHandlerImpl();
popupMessageHandler = new PopupMessageNotificationHandlerImpl();
soundHandler = new SoundNotificationHandlerImpl();
notificationService.addActionHandler(commandHandler);
notificationService.addActionHandler(logMessageHandler);
notificationService.addActionHandler(popupMessageHandler);
notificationService.addActionHandler(soundHandler);
logger.info("Notification handler Service ...[REGISTERED]");
}
finally
{
logger.logExit();
}
}
public void stop(BundleContext bc) throws Exception
{
notificationService.removeActionHandler(
commandHandler.getActionType());
notificationService.removeActionHandler(
logMessageHandler.getActionType());
notificationService.removeActionHandler(
popupMessageHandler.getActionType());
notificationService.removeActionHandler(
soundHandler.getActionType());
logger.info("Notification handler Service ...[STOPPED]");
}
/**
* Returns the <tt>AudioNotifierService</tt> obtained from the bundle
* context.
* @return the <tt>AudioNotifierService</tt> obtained from the bundle
* context
*/
public static AudioNotifierService getAudioNotifier()
{
if (audioNotifierService == null)
{
ServiceReference serviceReference
= bundleContext
.getServiceReference(AudioNotifierService.class.getName());
if (serviceReference != null)
audioNotifierService
= (AudioNotifierService)
bundleContext.getService(serviceReference);
}
return audioNotifierService;
}
/**
* Returns the <tt>SystrayService</tt> obtained from the bundle context.
*
* @return the <tt>SystrayService</tt> obtained from the bundle context
*/
public static SystrayService getSystray()
{
if (systrayService == null)
{
systrayService = ServiceUtils.getService( bundleContext,
SystrayService.class );
}
return systrayService;
}
/**
* Returns a reference to an UIService implementation currently registered
* in the bundle context or null if no such implementation was found.
*
* @return a reference to an UIService implementation currently registered
* in the bundle context or null if no such implementation was found.
*/
public static UIService getUIService()
{
if(uiService == null)
uiService = ServiceUtils.getService(bundleContext, UIService.class);
return uiService;
}
/**
* Returns a reference to a ConfigurationService implementation currently
* registered in the bundle context or null if no such implementation was
* found.
*
* @return a currently valid implementation of the ConfigurationService.
*/
public static ConfigurationService getConfigurationService()
{
if (configurationService == null)
{
configurationService
= ServiceUtils.getService(
bundleContext,
ConfigurationService.class);
}
return configurationService;
}
}
|