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
|
/*
* 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.globaldisplaydetails;
import java.util.*;
import net.java.sip.communicator.service.globaldisplaydetails.*;
import net.java.sip.communicator.service.globaldisplaydetails.event.*;
import net.java.sip.communicator.service.protocol.*;
import net.java.sip.communicator.service.protocol.event.*;
import net.java.sip.communicator.util.*;
import net.java.sip.communicator.util.account.*;
import org.jitsi.util.*;
/**
* The <tt>GlobalDisplayNameImpl</tt> offers generic access to a global
* display name for the local user.
* <p>
*
* @author Yana Stamcheva
*/
public class GlobalDisplayDetailsImpl
implements GlobalDisplayDetailsService,
RegistrationStateChangeListener,
ServerStoredDetailsChangeListener,
AvatarListener
{
/**
* Property to disable auto answer menu.
*/
private static final String GLOBAL_DISPLAY_NAME_PROP =
"net.java.sip.communicator.impl.gui.main.presence.GLOBAL_DISPLAY_NAME";
/**
* The display details listeners list.
*/
private List<GlobalDisplayDetailsListener> displayDetailsListeners
= new ArrayList<GlobalDisplayDetailsListener>();
/**
* The current first name.
*/
private String currentFirstName;
/**
* The current last name.
*/
private String currentLastName;
/**
* The current display name.
*/
private String currentDisplayName;
/**
* The provisioned display name.
*/
private String provisionedDisplayName;
/**
* The global avatar.
*/
private static byte[] globalAvatar;
/**
* The global display name.
*/
private String globalDisplayName;
/**
* Creates an instance of <tt>GlobalDisplayDetailsImpl</tt>.
*/
public GlobalDisplayDetailsImpl()
{
provisionedDisplayName
= GlobalDisplayDetailsActivator.getConfigurationService()
.getString(GLOBAL_DISPLAY_NAME_PROP, null);
Iterator<ProtocolProviderService> providersIter
= AccountUtils.getRegisteredProviders().iterator();
while (providersIter.hasNext())
providersIter.next().addRegistrationStateChangeListener(this);
}
/**
* Returns the global display name to be used to identify the local user.
*
* @return a string representing the global local user display name
*/
public String getGlobalDisplayName()
{
if (!StringUtils.isNullOrEmpty(provisionedDisplayName))
return provisionedDisplayName;
return globalDisplayName;
}
/**
* Sets the global local user display name.
*
* @param displayName the string representing the display name to set as
* a global display name
*/
public void setGlobalDisplayName(String displayName)
{
globalDisplayName = displayName;
}
/**
* Returns the global avatar for the local user.
*
* @return a byte array containing the global avatar for the local user
*/
public byte[] getGlobalDisplayAvatar()
{
return globalAvatar;
}
/**
* Sets the global display avatar for the local user.
*
* @param avatar the byte array representing the avatar to set
*/
public void setGlobalDisplayAvatar(byte[] avatar)
{
globalAvatar = avatar;
}
/**
* Adds the given <tt>GlobalDisplayDetailsListener</tt> to listen for change
* events concerning the global display details.
*
* @param l the <tt>GlobalDisplayDetailsListener</tt> to add
*/
public void addGlobalDisplayDetailsListener(GlobalDisplayDetailsListener l)
{
synchronized (displayDetailsListeners)
{
if (!displayDetailsListeners.contains(l))
displayDetailsListeners.add(l);
}
}
/**
* Removes the given <tt>GlobalDisplayDetailsListener</tt> listening for
* change events concerning the global display details.
*
* @param l the <tt>GlobalDisplayDetailsListener</tt> to remove
*/
public void removeGlobalDisplayDetailsListener(
GlobalDisplayDetailsListener l)
{
synchronized (displayDetailsListeners)
{
if (displayDetailsListeners.contains(l))
displayDetailsListeners.remove(l);
}
}
/**
* Updates account information when a protocol provider is registered.
* @param evt the <tt>RegistrationStateChangeEvent</tt> that notified us
* of the change
*/
public void registrationStateChanged(RegistrationStateChangeEvent evt)
{
ProtocolProviderService protocolProvider = evt.getProvider();
if (evt.getNewState().equals(RegistrationState.REGISTERED))
{
/*
* Check the support for OperationSetServerStoredAccountInfo prior
* to starting the Thread because only a couple of the protocols
* currently support it and thus starting a Thread that is not going
* to do anything useful can be prevented.
*/
OperationSetServerStoredAccountInfo accountInfoOpSet
= protocolProvider.getOperationSet(
OperationSetServerStoredAccountInfo.class);
if (accountInfoOpSet != null)
{
/*
* FIXME Starting a separate Thread for each
* ProtocolProviderService is uncontrollable because the
* application is multi-protocol and having multiple accounts is
* expected so one is likely to end up with a multitude of
* Threads. Besides, it not very clear when retrieving the first
* and last name is to stop so one ProtocolProviderService being
* able to supply both the first and the last name may be
* overwritten by a ProtocolProviderService which is able to
* provide just one of them.
*/
new UpdateAccountInfo(protocolProvider, accountInfoOpSet, false)
.start();
}
OperationSetAvatar avatarOpSet
= protocolProvider.getOperationSet(OperationSetAvatar.class);
if (avatarOpSet != null)
avatarOpSet.addAvatarListener(this);
OperationSetServerStoredAccountInfo serverStoredAccountInfo
= protocolProvider.getOperationSet(
OperationSetServerStoredAccountInfo.class);
if (serverStoredAccountInfo != null)
serverStoredAccountInfo.addServerStoredDetailsChangeListener(
this);
}
else if (evt.getNewState().equals(RegistrationState.UNREGISTERING)
|| evt.getNewState().equals(RegistrationState.CONNECTION_FAILED))
{
OperationSetAvatar avatarOpSet
= protocolProvider.getOperationSet(OperationSetAvatar.class);
if (avatarOpSet != null)
avatarOpSet.removeAvatarListener(this);
OperationSetServerStoredAccountInfo serverStoredAccountInfo
= protocolProvider.getOperationSet(
OperationSetServerStoredAccountInfo.class);
if (serverStoredAccountInfo != null)
serverStoredAccountInfo.removeServerStoredDetailsChangeListener(
this);
}
}
/**
* Called whenever a new avatar is defined for one of the protocols that we
* have subscribed for.
*
* @param event the event containing the new image
*/
public void avatarChanged(AvatarEvent event)
{
globalAvatar = event.getNewAvatar();
// If there is no avatar image set, then displays the default one.
if(globalAvatar == null)
{
globalAvatar = GlobalDisplayDetailsActivator.getResources()
.getImageInBytes("service.gui.DEFAULT_USER_PHOTO");
}
AvatarCacheUtils.cacheAvatar(
event.getSourceProvider(), globalAvatar);
fireGlobalAvatarEvent(globalAvatar);
}
/**
* Registers a ServerStoredDetailsChangeListener with the operation sets
* of the providers, if a provider change its name we use it in the UI.
*
* @param evt the <tt>ServerStoredDetailsChangeEvent</tt>
* the event for name change.
*/
public void serverStoredDetailsChanged(ServerStoredDetailsChangeEvent evt)
{
if(!StringUtils.isNullOrEmpty(provisionedDisplayName))
return;
if(evt.getNewValue() instanceof
ServerStoredDetails.DisplayNameDetail
&& (evt.getEventID() == ServerStoredDetailsChangeEvent.DETAIL_ADDED
|| evt.getEventID()
== ServerStoredDetailsChangeEvent.DETAIL_REPLACED))
{
ProtocolProviderService protocolProvider = evt.getProvider();
OperationSetServerStoredAccountInfo accountInfoOpSet
= protocolProvider.getOperationSet(
OperationSetServerStoredAccountInfo.class);
new UpdateAccountInfo( evt.getProvider(),
accountInfoOpSet,
true).start();
}
}
/**
* Queries the operations sets to obtain names and display info.
* Queries are done in separate thread.
*/
private class UpdateAccountInfo
extends Thread
{
/**
* The protocol provider.
*/
private ProtocolProviderService protocolProvider;
/**
* The account info operation set to query.
*/
private OperationSetServerStoredAccountInfo accountInfoOpSet;
/**
* Indicates if the display name and avatar should be updated from this
* provider even if they already have values.
*/
private boolean isUpdate;
/**
* Constructs with provider and opset to use.
* @param protocolProvider the provider.
* @param accountInfoOpSet the opset.
* @param isUpdate indicates if the display name and avatar should be
* updated from this provider even if they already have values.
*/
UpdateAccountInfo(
ProtocolProviderService protocolProvider,
OperationSetServerStoredAccountInfo accountInfoOpSet,
boolean isUpdate)
{
this.protocolProvider = protocolProvider;
this.accountInfoOpSet = accountInfoOpSet;
}
@Override
public void run()
{
if (globalAvatar == null)
{
globalAvatar
= AvatarCacheUtils
.getCachedAvatar(protocolProvider);
if (globalAvatar == null)
{
byte[] accountImage
= AccountInfoUtils
.getImage(accountInfoOpSet);
// do not set empty images
if ((accountImage != null)
&& (accountImage.length > 0))
{
globalAvatar = accountImage;
AvatarCacheUtils.cacheAvatar(
protocolProvider, accountImage);
}
}
if (globalAvatar != null && globalAvatar.length > 0)
{
fireGlobalAvatarEvent(globalAvatar);
}
}
if(!StringUtils.isNullOrEmpty(provisionedDisplayName)
|| (!StringUtils.isNullOrEmpty(globalDisplayName) && !isUpdate))
return;
if (currentFirstName == null)
{
String firstName = AccountInfoUtils
.getFirstName(accountInfoOpSet);
if (!StringUtils.isNullOrEmpty(firstName))
{
currentFirstName = firstName;
}
}
if (currentLastName == null)
{
String lastName = AccountInfoUtils
.getLastName(accountInfoOpSet);
if (!StringUtils.isNullOrEmpty(lastName))
{
currentLastName = lastName;
}
}
if (currentFirstName == null && currentLastName == null)
{
String displayName = AccountInfoUtils
.getDisplayName(accountInfoOpSet);
if (displayName != null)
currentDisplayName = displayName;
}
setGlobalDisplayName();
}
/**
* Called on the event dispatching thread (not on the worker thread)
* after the <code>construct</code> method has returned.
*/
protected void setGlobalDisplayName()
{
String accountName = null;
if (!StringUtils.isNullOrEmpty(currentFirstName))
{
accountName = currentFirstName;
}
if (!StringUtils.isNullOrEmpty(currentLastName))
{
/*
* If accountName is null, don't use += because
* it will make the accountName start with the
* string "null".
*/
if (StringUtils.isNullOrEmpty(accountName))
accountName = currentLastName;
else
accountName += " " + currentLastName;
}
if (currentFirstName == null && currentLastName == null)
{
if (currentDisplayName != null)
accountName = currentDisplayName;
}
globalDisplayName = accountName;
if (!StringUtils.isNullOrEmpty(globalDisplayName))
{
fireGlobalDisplayNameEvent(globalDisplayName);
}
}
}
/**
* Notifies all interested listeners of a global display details change.
*
* @param displayName the new display name
*/
private void fireGlobalDisplayNameEvent(String displayName)
{
List<GlobalDisplayDetailsListener> listeners;
synchronized (displayDetailsListeners)
{
listeners = Collections.unmodifiableList(displayDetailsListeners);
}
Iterator<GlobalDisplayDetailsListener> listIter
= listeners.iterator();
while (listIter.hasNext())
{
listIter.next().globalDisplayNameChanged(
new GlobalDisplayNameChangeEvent(this, displayName));
}
}
/**
* Notifies all interested listeners of a global display details change.
*
* @param avatar the new avatar
*/
private void fireGlobalAvatarEvent(byte[] avatar)
{
List<GlobalDisplayDetailsListener> listeners;
synchronized (displayDetailsListeners)
{
listeners = Collections.unmodifiableList(displayDetailsListeners);
}
Iterator<GlobalDisplayDetailsListener> listIter
= listeners.iterator();
while (listIter.hasNext())
{
listIter.next().globalDisplayAvatarChanged(
new GlobalAvatarChangeEvent(this, avatar));
}
}
}
|