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
|
/*
* 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 java.util.List;
import javax.media.*;
import javax.swing.*;
import javax.swing.event.*;
import org.jitsi.impl.neomedia.device.*;
import org.jitsi.service.neomedia.*;
/**
* @author Lubomir Marinov
* @author Damian Minkov
*/
public class DeviceConfigurationComboBoxModel
implements ComboBoxModel,
PropertyChangeListener,
HierarchyListener
{
/**
* Encapsulates CaptureDeviceInfo
*/
public static class CaptureDevice
{
/**
* Compares two CaptureDeviceInfo
* @param device The <tt>CaptureDeviceInfo</tt> to compare with.
* @return whether this CaptureDevice is equal to device.
*/
public boolean equals(CaptureDeviceInfo device)
{
if(info == null && device == null)
{
return true;
}
else if(info != null)
{
if(info instanceof ExtendedCaptureDeviceInfo)
{
return ((ExtendedCaptureDeviceInfo) info).equals(device);
}
return info.equals(device);
}
return false;
}
/**
* The encapsulated info.
*/
public final CaptureDeviceInfo info;
/**
* Creates the wrapper.
* @param info the info object we wrap.
*/
public CaptureDevice(CaptureDeviceInfo info)
{
this.info = info;
}
/**
* Gets a human-readable <tt>String</tt> representation of this
* instance.
*
* @return a <tt>String</tt> value which is a human-readable
* representation of this instance
*/
@Override
public String toString()
{
if(info == null)
{
return NeomediaActivator.getResources().getI18NString(
"impl.media.configform.NO_DEVICE");
}
else
{
String deviceString = info.getName();
if(info instanceof ExtendedCaptureDeviceInfo)
{
String transportType
= ((ExtendedCaptureDeviceInfo) info).getTransportType();
if(transportType != null)
{
deviceString += " (" + transportType + ")";
}
}
return deviceString;
}
}
}
/**
* Type of the model - audio.
*/
public static final int AUDIO = 1;
/**
* Type of the model - video.
*/
public static final int VIDEO = 2;
/**
* Audio Capture Device.
*/
public static final int AUDIO_CAPTURE = 3;
/**
* Audio playback device.
*/
public static final int AUDIO_PLAYBACK = 4;
/**
* Audio device for notification sounds.
*/
public static final int AUDIO_NOTIFY = 5;
private AudioSystem[] audioSystems;
/**
* The current device configuration.
*/
private final DeviceConfiguration deviceConfiguration;
/**
* All the devices.
*/
private CaptureDevice[] devices;
/**
* The <tt>ListDataListener</tt>s registered with this instance.
*/
private final List<ListDataListener> listeners
= new ArrayList<ListDataListener>();
/**
* The type of the media for this combo.
*/
private final int type;
/**
* The parent component.
*/
private Component parent;
/**
* Creates device combobox model
* @param parent the parent component
* @param deviceConfiguration the current device configuration
* @param type the device - audio/video
*/
public DeviceConfigurationComboBoxModel(
Component parent,
DeviceConfiguration deviceConfiguration,
int type)
{
if (deviceConfiguration == null)
throw new IllegalArgumentException("deviceConfiguration");
if ((type != AUDIO)
&& (type != AUDIO_CAPTURE)
&& (type != AUDIO_NOTIFY)
&& (type != AUDIO_PLAYBACK)
&& (type != VIDEO))
throw new IllegalArgumentException("type");
this.parent = parent;
this.deviceConfiguration = deviceConfiguration;
this.type = type;
if (type == AUDIO
|| type == AUDIO_CAPTURE
|| type == AUDIO_NOTIFY
|| type == AUDIO_PLAYBACK)
{
deviceConfiguration.addPropertyChangeListener(this);
parent.addHierarchyListener(this);
}
}
public void addListDataListener(ListDataListener listener)
{
if (listener == null)
throw new IllegalArgumentException("listener");
if (!listeners.contains(listener))
listeners.add(listener);
}
/**
* Change of the content.
* @param index0 from index.
* @param index1 to index.
*/
protected void fireContentsChanged(int index0, int index1)
{
ListDataListener[] listeners
= this.listeners.toArray(
new ListDataListener[this.listeners.size()]);
ListDataEvent event
= new ListDataEvent(
this,
ListDataEvent.CONTENTS_CHANGED,
index0,
index1);
for (ListDataListener listener : listeners)
listener.contentsChanged(event);
}
private AudioSystem[] getAudioSystems()
{
if (type != AUDIO)
throw new IllegalStateException("type");
if (audioSystems == null)
audioSystems = deviceConfiguration.getAvailableAudioSystems();
return audioSystems;
}
/**
* Extracts the devices for the current type.
* @return the devices.
*/
private CaptureDevice[] getDevices()
{
if (type == AUDIO)
throw new IllegalStateException("type");
if (devices != null)
return devices;
AudioSystem audioSystem;
List<? extends CaptureDeviceInfo> infos = null;
switch (type)
{
case AUDIO_CAPTURE:
audioSystem = deviceConfiguration.getAudioSystem();
infos = (audioSystem == null)
? null
: audioSystem.getDevices(AudioSystem.CAPTURE_INDEX);
break;
case AUDIO_NOTIFY:
audioSystem = deviceConfiguration.getAudioSystem();
infos = (audioSystem == null)
? null
: audioSystem.getDevices(AudioSystem.NOTIFY_INDEX);
break;
case AUDIO_PLAYBACK:
audioSystem = deviceConfiguration.getAudioSystem();
infos = (audioSystem == null)
? null
: audioSystem.getDevices(AudioSystem.PLAYBACK_INDEX);
break;
case VIDEO:
infos = deviceConfiguration.getAvailableVideoCaptureDevices(
MediaUseCase.CALL);
break;
default:
throw new IllegalStateException("type");
}
final int deviceCount = (infos == null) ? 0 : infos.size();
devices = new CaptureDevice[deviceCount + 1];
if (deviceCount > 0)
for (int i = 0; i < deviceCount; i++)
devices[i] = new CaptureDevice(infos.get(i));
devices[deviceCount] = new CaptureDevice(null);
return devices;
}
/**
* Extracts the devices selected by the configuration.
* @return <tt>CaptureDevice</tt> selected
*/
private CaptureDevice getSelectedDevice()
{
AudioSystem audioSystem;
CaptureDeviceInfo info;
switch (type)
{
case AUDIO_CAPTURE:
audioSystem = deviceConfiguration.getAudioSystem();
info = (audioSystem == null)
? null
: audioSystem.getDevice(AudioSystem.CAPTURE_INDEX);
break;
case AUDIO_NOTIFY:
audioSystem = deviceConfiguration.getAudioSystem();
info = (audioSystem == null)
? null
: audioSystem.getDevice(AudioSystem.NOTIFY_INDEX);
break;
case AUDIO_PLAYBACK:
audioSystem = deviceConfiguration.getAudioSystem();
info = (audioSystem == null)
? null
: audioSystem.getDevice(AudioSystem.PLAYBACK_INDEX);
break;
case VIDEO:
info = deviceConfiguration.getVideoCaptureDevice(MediaUseCase.ANY);
break;
default:
throw new IllegalStateException("type");
}
if(info != null)
{
for (CaptureDevice device : getDevices())
{
if (device.info.equals(info))
return device;
}
}
return null;
}
public Object getElementAt(int index)
{
if (type == AUDIO)
return getAudioSystems()[index];
else
return getDevices()[index];
}
public Object getSelectedItem()
{
if (type == AUDIO)
return deviceConfiguration.getAudioSystem();
else
return getSelectedDevice();
}
public int getSize()
{
if (type == AUDIO)
return getAudioSystems().length;
else
return getDevices().length;
}
public void removeListDataListener(ListDataListener listener)
{
if (listener == null)
throw new IllegalArgumentException("listener");
listeners.remove(listener);
}
/**
* Selects and saves the new choice.
* @param device the device we choose.
*/
private void setSelectedDevice(CaptureDevice device)
{
// We cannot clear the selection of DeviceConfiguration.
if (device == null)
return;
CaptureDevice selectedDevice = getSelectedDevice();
if (selectedDevice != device)
{
AudioSystem audioSystem;
switch (type)
{
case AUDIO_CAPTURE:
audioSystem = deviceConfiguration.getAudioSystem();
if (audioSystem != null)
audioSystem.setDevice(
AudioSystem.CAPTURE_INDEX,
((ExtendedCaptureDeviceInfo) device.info),
true);
break;
case AUDIO_NOTIFY:
audioSystem = deviceConfiguration.getAudioSystem();
if (audioSystem != null)
audioSystem.setDevice(
AudioSystem.NOTIFY_INDEX,
((ExtendedCaptureDeviceInfo) device.info),
true);
break;
case AUDIO_PLAYBACK:
audioSystem = deviceConfiguration.getAudioSystem();
if (audioSystem != null)
audioSystem.setDevice(
AudioSystem.PLAYBACK_INDEX,
((ExtendedCaptureDeviceInfo) device.info),
true);
break;
case VIDEO:
deviceConfiguration.setVideoCaptureDevice(device.info, true);
break;
}
fireContentsChanged(-1, -1);
}
}
public void setSelectedItem(Object item)
{
if (type == AUDIO)
{
AudioSystem audioSystem = (AudioSystem) item;
if(!audioSystem.equals(deviceConfiguration.getAudioSystem()))
{
deviceConfiguration.setAudioSystem(audioSystem, true);
fireContentsChanged(-1, -1);
}
}
else
setSelectedDevice((CaptureDevice) item);
}
/**
* We listen for changes in the devices in order to update the list
* of devices we show.
* @param event the event.
*/
public void propertyChange(final PropertyChangeEvent event)
{
if(DeviceConfiguration.PROP_AUDIO_SYSTEM_DEVICES
.equals(event.getPropertyName()))
{
if(!SwingUtilities.isEventDispatchThread())
{
SwingUtilities.invokeLater(
new Runnable()
{
public void run()
{
propertyChange(event);
}
});
return;
}
devices = null;
fireContentsChanged(0, getSize() - 1);
}
}
/**
* We listen when the component was hidden in order to release resources,
* remove listener to clean this instance.
* @param e the event.
*/
public void hierarchyChanged(HierarchyEvent e)
{
if ((e.getChangeFlags() & HierarchyEvent.SHOWING_CHANGED) != 0
&& !parent.isShowing())
{
deviceConfiguration.removePropertyChangeListener(this);
}
}
}
|