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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
|
/*
* 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.neomedia;
import java.awt.*;
import java.awt.event.*;
import java.beans.*;
import java.util.*;
import javax.swing.*;
import net.java.sip.communicator.impl.neomedia.codec.video.h264.*;
import net.java.sip.communicator.service.gui.*;
import net.java.sip.communicator.service.notification.*;
import net.java.sip.communicator.service.resources.*;
import net.java.sip.communicator.service.systray.*;
import net.java.sip.communicator.service.systray.event.*;
import net.java.sip.communicator.util.*;
import net.java.sip.communicator.util.swing.*;
import org.jitsi.impl.neomedia.*;
import org.jitsi.impl.neomedia.codec.*;
import org.jitsi.impl.neomedia.device.*;
import org.jitsi.service.audionotifier.*;
import org.jitsi.service.configuration.*;
import org.jitsi.service.fileaccess.*;
import org.jitsi.service.libjitsi.*;
import org.jitsi.service.neomedia.*;
import org.jitsi.service.neomedia.codec.*;
import org.jitsi.service.packetlogging.*;
import org.jitsi.service.resources.*;
import org.osgi.framework.*;
/**
* Implements <tt>BundleActivator</tt> for the neomedia bundle.
*
* @author Martin Andre
* @author Emil Ivov
* @author Lyubomir Marinov
* @author Boris Grozev
*/
public class NeomediaActivator
implements BundleActivator
{
/**
* The <tt>Logger</tt> used by the <tt>NeomediaActivator</tt> class and its
* instances for logging output.
*/
private final Logger logger = Logger.getLogger(NeomediaActivator.class);
/**
* Indicates if the audio configuration form should be disabled, i.e.
* not visible to the user.
*/
private static final String AUDIO_CONFIG_DISABLED_PROP
= "net.java.sip.communicator.impl.neomedia.AUDIO_CONFIG_DISABLED";
/**
* Indicates if the video configuration form should be disabled, i.e.
* not visible to the user.
*/
private static final String VIDEO_CONFIG_DISABLED_PROP
= "net.java.sip.communicator.impl.neomedia.VIDEO_CONFIG_DISABLED";
/**
* Indicates if the H.264 configuration form should be disabled, i.e.
* not visible to the user.
*/
private static final String H264_CONFIG_DISABLED_PROP
= "net.java.sip.communicator.impl.neomedia.h264config.DISABLED";
/**
* Indicates if the ZRTP configuration form should be disabled, i.e.
* not visible to the user.
*/
private static final String ZRTP_CONFIG_DISABLED_PROP
= "net.java.sip.communicator.impl.neomedia.zrtpconfig.DISABLED";
/**
* Indicates if the call recording config form should be disabled, i.e.
* not visible to the user.
*/
private static final String CALL_RECORDING_CONFIG_DISABLED_PROP
= "net.java.sip.communicator.impl.neomedia.callrecordingconfig.DISABLED";
/**
* The name of the notification pop-up event displayed when the device
* configration has changed.
*/
private static final String DEVICE_CONFIGURATION_HAS_CHANGED
= "DeviceConfigurationChanged";
/**
* The context in which the one and only <tt>NeomediaActivator</tt> instance
* has started executing.
*/
private static BundleContext bundleContext;
/**
* The <tt>ConfigurationService</tt> registered in {@link #bundleContext}
* and used by the <tt>NeomediaActivator</tt> instance to read and write
* configuration properties.
*/
private static ConfigurationService configurationService;
/**
* The <tt>FileAccessService</tt> registered in {@link #bundleContext} and
* used by the <tt>NeomediaActivator</tt> instance to safely access files.
*/
private static FileAccessService fileAccessService;
/**
* The notifcation service to pop-up messages.
*/
private static NotificationService notificationService;
/**
* The one and only <tt>MediaServiceImpl</tt> instance registered in
* {@link #bundleContext} by the <tt>NeomediaActivator</tt> instance.
*/
private static MediaServiceImpl mediaServiceImpl;
/**
* The <tt>ResourceManagementService</tt> registered in
* {@link #bundleContext} and representing the resources such as
* internationalized and localized text and images used by the neomedia
* bundle.
*/
private static ResourceManagementService resources;
/**
* The OSGi <tt>PacketLoggingService</tt> of {@link #mediaServiceImpl} in
* {@link #bundleContext} and used for debugging.
*/
private static PacketLoggingService packetLoggingService = null;
/**
* A listener to the click on the popup message concerning device
* configuration changes.
*/
private AudioDeviceConfigurationListener
deviceConfigurationPropertyChangeListener;
/**
* Audio configuration dialog.
*/
private static SIPCommDialog audioConfigDialog = null;
/**
* A {@link MediaConfigurationService} instance.
*/
private static MediaConfigurationImpl mediaConfiguration;
/**
* The audio configuration form used to define the capture/notify/playback
* audio devices.
*/
private static ConfigurationForm audioConfigurationForm;
/**
* Starts the execution of the neomedia bundle in the specified context.
*
* @param bundleContext the context in which the neomedia bundle is to start
* executing
* @throws Exception if an error occurs while starting the execution of the
* neomedia bundle in the specified context
*/
public void start(BundleContext bundleContext)
throws Exception
{
if (logger.isDebugEnabled())
logger.debug("Started.");
NeomediaActivator.bundleContext = bundleContext;
// MediaService
mediaServiceImpl = (MediaServiceImpl) LibJitsi.getMediaService();
bundleContext.registerService(
MediaService.class.getName(),
mediaServiceImpl,
null);
if (logger.isDebugEnabled())
logger.debug("Media Service ... [REGISTERED]");
mediaConfiguration = new MediaConfigurationImpl();
bundleContext.registerService(
MediaConfigurationService.class.getName(),
getMediaConfiguration(),
null);
if (logger.isDebugEnabled())
logger.debug("Media Configuration ... [REGISTERED]");
ConfigurationService cfg = NeomediaActivator.getConfigurationService();
Dictionary<String, String> mediaProps = new Hashtable<String, String>();
mediaProps.put( ConfigurationForm.FORM_TYPE,
ConfigurationForm.GENERAL_TYPE);
// If the audio configuration form is disabled don't register it.
if ((cfg == null) || !cfg.getBoolean(AUDIO_CONFIG_DISABLED_PROP, false))
{
audioConfigurationForm
= new LazyConfigurationForm(
AudioConfigurationPanel.class.getName(),
getClass().getClassLoader(),
"plugin.mediaconfig.AUDIO_ICON",
"impl.neomedia.configform.AUDIO",
3);
bundleContext.registerService(
ConfigurationForm.class.getName(),
audioConfigurationForm,
mediaProps);
if (deviceConfigurationPropertyChangeListener == null)
{
// Initializes and registers the changed device configuration
// event ot the notification service.
getNotificationService();
deviceConfigurationPropertyChangeListener
= new AudioDeviceConfigurationListener();
mediaServiceImpl
.getDeviceConfiguration()
.addPropertyChangeListener(
deviceConfigurationPropertyChangeListener);
}
}
// If the video configuration form is disabled don't register it.
if ((cfg == null) || !cfg.getBoolean(VIDEO_CONFIG_DISABLED_PROP, false))
{
bundleContext.registerService(
ConfigurationForm.class.getName(),
new LazyConfigurationForm(
VideoConfigurationPanel.class.getName(),
getClass().getClassLoader(),
"plugin.mediaconfig.VIDEO_ICON",
"impl.neomedia.configform.VIDEO",
4),
mediaProps);
}
// H.264
// If the H.264 configuration form is disabled don't register it.
if ((cfg == null) || !cfg.getBoolean(H264_CONFIG_DISABLED_PROP, false))
{
Dictionary<String, String> h264Props
= new Hashtable<String, String>();
h264Props.put(
ConfigurationForm.FORM_TYPE,
ConfigurationForm.ADVANCED_TYPE);
bundleContext.registerService(
ConfigurationForm.class.getName(),
new LazyConfigurationForm(
ConfigurationPanel.class.getName(),
getClass().getClassLoader(),
"plugin.mediaconfig.VIDEO_ICON",
"impl.neomedia.configform.H264",
-1,
true),
h264Props);
}
// ZRTP
// If the ZRTP configuration form is disabled don't register it.
if ((cfg == null) || !cfg.getBoolean(ZRTP_CONFIG_DISABLED_PROP, false))
{
Dictionary<String, String> securityProps
= new Hashtable<String, String>();
securityProps.put( ConfigurationForm.FORM_TYPE,
ConfigurationForm.SECURITY_TYPE);
bundleContext.registerService(
ConfigurationForm.class.getName(),
new LazyConfigurationForm(
SecurityConfigForm.class.getName(),
getClass().getClassLoader(),
"impl.media.security.zrtp.CONF_ICON",
"impl.media.security.zrtp.TITLE",
0),
securityProps);
}
//we use the nist-sdp stack to make parse sdp and we need to set the
//following property to make sure that it would accept java generated
//IPv6 addresses that contain address scope zones.
System.setProperty("gov.nist.core.STRIP_ADDR_SCOPES", "true");
// AudioNotifierService
AudioNotifierService audioNotifierService
= LibJitsi.getAudioNotifierService();
audioNotifierService.setMute(
(cfg == null)
|| !cfg.getBoolean(
"net.java.sip.communicator"
+ ".impl.sound.isSoundEnabled",
true));
bundleContext.registerService(
AudioNotifierService.class.getName(),
audioNotifierService,
null);
if (logger.isInfoEnabled())
logger.info("Audio Notifier Service ...[REGISTERED]");
// Call Recording
// If the call recording configuration form is disabled don't continue.
if ((cfg == null)
|| !cfg.getBoolean(CALL_RECORDING_CONFIG_DISABLED_PROP, false))
{
Dictionary<String, String> callRecordingProps
= new Hashtable<String, String>();
callRecordingProps.put(
ConfigurationForm.FORM_TYPE,
ConfigurationForm.ADVANCED_TYPE);
bundleContext.registerService(
ConfigurationForm.class.getName(),
new LazyConfigurationForm(
CallRecordingConfigForm.class.getName(),
getClass().getClassLoader(),
null,
"plugin.callrecordingconfig.CALL_RECORDING_CONFIG",
1100,
true),
callRecordingProps);
}
}
/**
* Stops the execution of the neomedia bundle in the specified context.
*
* @param bundleContext the context in which the neomedia bundle is to stop
* executing
* @throws Exception if an error occurs while stopping the execution of the
* neomedia bundle in the specified context
*/
public void stop(BundleContext bundleContext)
throws Exception
{
try
{
if (deviceConfigurationPropertyChangeListener != null)
{
mediaServiceImpl
.getDeviceConfiguration()
.removePropertyChangeListener(
deviceConfigurationPropertyChangeListener);
if(deviceConfigurationPropertyChangeListener != null)
{
deviceConfigurationPropertyChangeListener
.managePopupMessageListenerRegistration(false);
deviceConfigurationPropertyChangeListener = null;
}
}
}
finally
{
configurationService = null;
fileAccessService = null;
mediaServiceImpl = null;
resources = null;
}
}
/**
* 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;
}
/**
* Returns a reference to a FileAccessService implementation
* currently registered in the bundle context or null if no such
* implementation was found.
*
* @return a currently valid implementation of the
* FileAccessService .
*/
public static FileAccessService getFileAccessService()
{
if (fileAccessService == null)
{
fileAccessService
= ServiceUtils.getService(
bundleContext,
FileAccessService.class);
}
return fileAccessService;
}
/**
* Gets the <tt>MediaService</tt> implementation instance registered by the
* neomedia bundle.
*
* @return the <tt>MediaService</tt> implementation instance registered by
* the neomedia bundle
*/
public static MediaServiceImpl getMediaServiceImpl()
{
return mediaServiceImpl;
}
public static MediaConfigurationService getMediaConfiguration()
{
return mediaConfiguration;
}
/**
* Gets the <tt>ResourceManagementService</tt> instance which represents the
* resources such as internationalized and localized text and images used by
* the neomedia bundle.
*
* @return the <tt>ResourceManagementService</tt> instance which represents
* the resources such as internationalized and localized text and images
* used by the neomedia bundle
*/
public static ResourceManagementService getResources()
{
if (resources == null)
{
resources
= ResourceManagementServiceUtils.getService(bundleContext);
}
return resources;
}
/**
* Returns a reference to the <tt>PacketLoggingService</tt> implementation
* currently registered in the bundle context or null if no such
* implementation was found.
*
* @return a reference to a <tt>PacketLoggingService</tt> implementation
* currently registered in the bundle context or null if no such
* implementation was found.
*/
public static PacketLoggingService getPacketLogging()
{
if (packetLoggingService == null)
{
packetLoggingService
= ServiceUtils.getService(
bundleContext,
PacketLoggingService.class);
}
return packetLoggingService;
}
/**
* Returns the <tt>NotificationService</tt> obtained from the bundle
* context.
*
* @return The <tt>NotificationService</tt> obtained from the bundle
* context.
*/
public static NotificationService getNotificationService()
{
if(notificationService == null)
{
// Get the notification service implementation
ServiceReference notifReference = bundleContext
.getServiceReference(NotificationService.class.getName());
notificationService = (NotificationService) bundleContext
.getService(notifReference);
if(notificationService != null)
{
// Register a popup message for a device configuration changed
// notification.
notificationService.registerDefaultNotificationForEvent(
DEVICE_CONFIGURATION_HAS_CHANGED,
net.java.sip.communicator.service.notification.NotificationAction.ACTION_POPUP_MESSAGE,
"Device onfiguration has changed",
null);
}
}
return notificationService;
}
/**
* A listener to the click on the popup message concerning device
* configuration changes.
*/
private class AudioDeviceConfigurationListener
implements PropertyChangeListener,
SystrayPopupMessageListener
{
/**
* A boolean used to verify that this listener registers only once to
* the popup message notification handler.
*/
private boolean isRegisteredToPopupMessageListener = false;
/**
* Registers or unregister as a popup message listener to detect when a
* user click on notification saying that the device configuration has
* changed.
*
* @param enable True to register to the popup message notifcation
* handler. False to unregister.
*/
public void managePopupMessageListenerRegistration(boolean enable)
{
Iterator<NotificationHandler> notificationHandlers
= notificationService.getActionHandlers(
net.java.sip.communicator.service.notification.NotificationAction.ACTION_POPUP_MESSAGE)
.iterator();
NotificationHandler notificationHandler;
while(notificationHandlers.hasNext())
{
notificationHandler = notificationHandlers.next();
if(notificationHandler
instanceof PopupMessageNotificationHandler)
{
// Register.
if(enable)
{
((PopupMessageNotificationHandler) notificationHandler)
.addPopupMessageListener(this);
}
// Unregister.
else
{
((PopupMessageNotificationHandler) notificationHandler)
.removePopupMessageListener(this);
}
}
}
}
/**
* Fonction called when an audio device is plugged or unplugged.
*
* @param The property change event which may concern the audio device.
*/
public void propertyChange(PropertyChangeEvent event)
{
if (DeviceConfiguration.PROP_AUDIO_SYSTEM_DEVICES
.equals(event.getPropertyName()))
{
NotificationService notificationService
= getNotificationService();
if(notificationService != null)
{
// Registers only once to the popup message notification
// handler.
if(!isRegisteredToPopupMessageListener)
{
isRegisteredToPopupMessageListener = true;
managePopupMessageListenerRegistration(true);
}
// Fires the popup notification.
ResourceManagementService resources
= NeomediaActivator.getResources();
notificationService.fireNotification(
DEVICE_CONFIGURATION_HAS_CHANGED,
resources.getI18NString(
"impl.media.configform"
+ ".AUDIO_DEVICE_CONFIG_CHANGED"),
resources.getI18NString(
"impl.media.configform"
+ ".AUDIO_DEVICE_CONFIG_MANAGMENT_CLICK"),
null,
this);
}
}
}
/**
* Indicates that user has clicked on the systray popup message.
*
* @param evt the event triggered when user clicks on the systray popup
* message
*/
public void popupMessageClicked(SystrayPopupMessageEvent evt)
{
// Checks if this event is fired from one click on one of our popup
// message.
if(evt.getTag() == deviceConfigurationPropertyChangeListener)
{
// Get the UI service
ServiceReference uiReference = bundleContext
.getServiceReference(UIService.class.getName());
UIService uiService = (UIService) bundleContext
.getService(uiReference);
if(uiService != null)
{
// Shows the audio configuration window.
ConfigurationContainer configurationContainer
= uiService.getConfigurationContainer();
configurationContainer.setSelected(audioConfigurationForm);
configurationContainer.setVisible(true);
}
}
}
}
}
|