aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/pixart/messenger/services/XmppConnectionService.java
diff options
context:
space:
mode:
authorChristian Schneppe <christian@pix-art.de>2018-07-09 22:28:02 +0200
committerChristian Schneppe <christian@pix-art.de>2018-07-09 22:28:02 +0200
commit367de489981c77ba000b212174acc9a07f21f0ec (patch)
tree4ba2249512253d1c66cf68edb5a03c99b480062e /src/main/java/de/pixart/messenger/services/XmppConnectionService.java
parent5d47f14cccdc402ea5292e51436d3f98eb7143df (diff)
change listener lock strategie
Diffstat (limited to '')
-rw-r--r--src/main/java/de/pixart/messenger/services/XmppConnectionService.java66
1 files changed, 28 insertions, 38 deletions
diff --git a/src/main/java/de/pixart/messenger/services/XmppConnectionService.java b/src/main/java/de/pixart/messenger/services/XmppConnectionService.java
index 8f16dcdb3..6730c00b1 100644
--- a/src/main/java/de/pixart/messenger/services/XmppConnectionService.java
+++ b/src/main/java/de/pixart/messenger/services/XmppConnectionService.java
@@ -3571,74 +3571,64 @@ public class XmppConnectionService extends Service {
vibrator.vibrate(100);
}
- public void showErrorToastInUi(int resId) {
+ private <T> List<T> threadSafeList(Set<T> set) {
synchronized (LISTENER_LOCK) {
- for (OnShowErrorToast listener : this.mOnShowErrorToasts) {
- listener.onShowErrorToast(resId);
- }
+ return set.size() == 0 ? Collections.emptyList() : new ArrayList<>(set);
+ }
+ }
+
+ public void showErrorToastInUi(int resId) {
+ for (OnShowErrorToast listener : threadSafeList(this.mOnShowErrorToasts)) {
+ listener.onShowErrorToast(resId);
}
}
public void updateConversationUi() {
- synchronized (LISTENER_LOCK) {
- for (OnConversationUpdate listener : this.mOnConversationUpdates) {
- listener.onConversationUpdate();
- }
+ for (OnConversationUpdate listener : threadSafeList(this.mOnConversationUpdates)) {
+ listener.onConversationUpdate();
}
}
public void updateAccountUi() {
- synchronized (LISTENER_LOCK) {
- for (OnAccountUpdate listener : this.mOnAccountUpdates) {
- listener.onAccountUpdate();
- }
+ for (OnAccountUpdate listener : threadSafeList(this.mOnAccountUpdates)) {
+ listener.onAccountUpdate();
}
}
public void updateRosterUi() {
- synchronized (LISTENER_LOCK) {
- for (OnRosterUpdate listener : this.mOnRosterUpdates) {
- listener.onRosterUpdate();
- }
+ for (OnRosterUpdate listener : threadSafeList(this.mOnRosterUpdates)) {
+ listener.onRosterUpdate();
}
}
public boolean displayCaptchaRequest(Account account, String id, Data data, Bitmap captcha) {
- synchronized (LISTENER_LOCK) {
- if (mOnCaptchaRequested.size() > 0) {
- DisplayMetrics metrics = getApplicationContext().getResources().getDisplayMetrics();
- Bitmap scaled = Bitmap.createScaledBitmap(captcha, (int) (captcha.getWidth() * metrics.scaledDensity),
- (int) (captcha.getHeight() * metrics.scaledDensity), false);
- for (OnCaptchaRequested listener : this.mOnCaptchaRequested) {
- listener.onCaptchaRequested(account, id, data, scaled);
- }
- return true;
+ if (mOnCaptchaRequested.size() > 0) {
+ DisplayMetrics metrics = getApplicationContext().getResources().getDisplayMetrics();
+ Bitmap scaled = Bitmap.createScaledBitmap(captcha, (int) (captcha.getWidth() * metrics.scaledDensity),
+ (int) (captcha.getHeight() * metrics.scaledDensity), false);
+ for (OnCaptchaRequested listener : threadSafeList(this.mOnCaptchaRequested)) {
+ listener.onCaptchaRequested(account, id, data, scaled);
}
- return false;
+ return true;
}
+ return false;
}
public void updateBlocklistUi(final OnUpdateBlocklist.Status status) {
- synchronized (LISTENER_LOCK) {
- for (OnUpdateBlocklist listener : this.mOnUpdateBlocklist) {
- listener.OnUpdateBlocklist(status);
- }
+ for (OnUpdateBlocklist listener : threadSafeList(this.mOnUpdateBlocklist)) {
+ listener.OnUpdateBlocklist(status);
}
}
public void updateMucRosterUi() {
- synchronized (LISTENER_LOCK) {
- for (OnMucRosterUpdate listener : this.mOnMucRosterUpdate) {
- listener.onMucRosterUpdate();
- }
+ for (OnMucRosterUpdate listener : threadSafeList(this.mOnMucRosterUpdate)) {
+ listener.onMucRosterUpdate();
}
}
public void keyStatusUpdated(AxolotlService.FetchStatus report) {
- synchronized (LISTENER_LOCK) {
- for (OnKeyStatusUpdated listener : this.mOnKeyStatusUpdated) {
- listener.onKeyStatusUpdated(report);
- }
+ for (OnKeyStatusUpdated listener : threadSafeList(this.mOnKeyStatusUpdated)) {
+ listener.onKeyStatusUpdated(report);
}
}