synchronize access to stanza queue
This commit is contained in:
parent
39ad426ca9
commit
95a51ea2e0
|
@ -506,6 +506,8 @@ public class XmppConnection implements Runnable {
|
||||||
final Element resumed = tagReader.readElement(nextTag);
|
final Element resumed = tagReader.readElement(nextTag);
|
||||||
final String h = resumed.getAttribute("h");
|
final String h = resumed.getAttribute("h");
|
||||||
try {
|
try {
|
||||||
|
ArrayList<AbstractAcknowledgeableStanza> failedStanzas = new ArrayList<>();
|
||||||
|
synchronized (this.mStanzaQueue) {
|
||||||
final int serverCount = Integer.parseInt(h);
|
final int serverCount = Integer.parseInt(h);
|
||||||
if (serverCount != stanzasSent) {
|
if (serverCount != stanzasSent) {
|
||||||
Log.d(Config.LOGTAG, account.getJid().toBareJid().toString()
|
Log.d(Config.LOGTAG, account.getJid().toBareJid().toString()
|
||||||
|
@ -515,11 +517,11 @@ public class XmppConnection implements Runnable {
|
||||||
Log.d(Config.LOGTAG, account.getJid().toBareJid().toString() + ": session resumed");
|
Log.d(Config.LOGTAG, account.getJid().toBareJid().toString() + ": session resumed");
|
||||||
}
|
}
|
||||||
acknowledgeStanzaUpTo(serverCount);
|
acknowledgeStanzaUpTo(serverCount);
|
||||||
ArrayList<AbstractAcknowledgeableStanza> failedStanzas = new ArrayList<>();
|
|
||||||
for (int i = 0; i < this.mStanzaQueue.size(); ++i) {
|
for (int i = 0; i < this.mStanzaQueue.size(); ++i) {
|
||||||
failedStanzas.add(mStanzaQueue.valueAt(i));
|
failedStanzas.add(mStanzaQueue.valueAt(i));
|
||||||
}
|
}
|
||||||
mStanzaQueue.clear();
|
mStanzaQueue.clear();
|
||||||
|
}
|
||||||
Log.d(Config.LOGTAG, "resending " + failedStanzas.size() + " stanzas");
|
Log.d(Config.LOGTAG, "resending " + failedStanzas.size() + " stanzas");
|
||||||
for (AbstractAcknowledgeableStanza packet : failedStanzas) {
|
for (AbstractAcknowledgeableStanza packet : failedStanzas) {
|
||||||
if (packet instanceof MessagePacket) {
|
if (packet instanceof MessagePacket) {
|
||||||
|
@ -546,8 +548,10 @@ public class XmppConnection implements Runnable {
|
||||||
final Element ack = tagReader.readElement(nextTag);
|
final Element ack = tagReader.readElement(nextTag);
|
||||||
lastPacketReceived = SystemClock.elapsedRealtime();
|
lastPacketReceived = SystemClock.elapsedRealtime();
|
||||||
try {
|
try {
|
||||||
|
synchronized (this.mStanzaQueue) {
|
||||||
final int serverSequence = Integer.parseInt(ack.getAttribute("h"));
|
final int serverSequence = Integer.parseInt(ack.getAttribute("h"));
|
||||||
acknowledgeStanzaUpTo(serverSequence);
|
acknowledgeStanzaUpTo(serverSequence);
|
||||||
|
}
|
||||||
} catch (NumberFormatException | NullPointerException e) {
|
} catch (NumberFormatException | NullPointerException e) {
|
||||||
Log.d(Config.LOGTAG,account.getJid().toBareJid()+": server send ack without sequence number");
|
Log.d(Config.LOGTAG,account.getJid().toBareJid()+": server send ack without sequence number");
|
||||||
}
|
}
|
||||||
|
@ -556,7 +560,9 @@ public class XmppConnection implements Runnable {
|
||||||
try {
|
try {
|
||||||
final int serverCount = Integer.parseInt(failed.getAttribute("h"));
|
final int serverCount = Integer.parseInt(failed.getAttribute("h"));
|
||||||
Log.d(Config.LOGTAG, account.getJid().toBareJid() + ": resumption failed but server acknowledged stanza #"+serverCount);
|
Log.d(Config.LOGTAG, account.getJid().toBareJid() + ": resumption failed but server acknowledged stanza #"+serverCount);
|
||||||
|
synchronized (this.mStanzaQueue) {
|
||||||
acknowledgeStanzaUpTo(serverCount);
|
acknowledgeStanzaUpTo(serverCount);
|
||||||
|
}
|
||||||
} catch (NumberFormatException | NullPointerException e) {
|
} catch (NumberFormatException | NullPointerException e) {
|
||||||
Log.d(Config.LOGTAG, account.getJid().toBareJid() + ": resumption failed");
|
Log.d(Config.LOGTAG, account.getJid().toBareJid() + ": resumption failed");
|
||||||
}
|
}
|
||||||
|
@ -1020,9 +1026,11 @@ public class XmppConnection implements Runnable {
|
||||||
if (smVersion != 0) {
|
if (smVersion != 0) {
|
||||||
final EnablePacket enable = new EnablePacket(smVersion);
|
final EnablePacket enable = new EnablePacket(smVersion);
|
||||||
tagWriter.writeStanzaAsync(enable);
|
tagWriter.writeStanzaAsync(enable);
|
||||||
|
synchronized (this.mStanzaQueue) {
|
||||||
stanzasSent = 0;
|
stanzasSent = 0;
|
||||||
mStanzaQueue.clear();
|
mStanzaQueue.clear();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
features.carbonsEnabled = false;
|
features.carbonsEnabled = false;
|
||||||
features.blockListRequested = false;
|
features.blockListRequested = false;
|
||||||
synchronized (this.disco) {
|
synchronized (this.disco) {
|
||||||
|
@ -1256,8 +1264,10 @@ public class XmppConnection implements Runnable {
|
||||||
tagWriter.writeStanzaAsync(packet);
|
tagWriter.writeStanzaAsync(packet);
|
||||||
if (packet instanceof AbstractAcknowledgeableStanza) {
|
if (packet instanceof AbstractAcknowledgeableStanza) {
|
||||||
AbstractAcknowledgeableStanza stanza = (AbstractAcknowledgeableStanza) packet;
|
AbstractAcknowledgeableStanza stanza = (AbstractAcknowledgeableStanza) packet;
|
||||||
|
synchronized (this.mStanzaQueue) {
|
||||||
++stanzasSent;
|
++stanzasSent;
|
||||||
this.mStanzaQueue.put(stanzasSent, stanza);
|
this.mStanzaQueue.append(stanzasSent, stanza);
|
||||||
|
}
|
||||||
if (stanza instanceof MessagePacket && stanza.getId() != null && getFeatures().sm()) {
|
if (stanza instanceof MessagePacket && stanza.getId() != null && getFeatures().sm()) {
|
||||||
if (Config.EXTENDED_SM_LOGGING) {
|
if (Config.EXTENDED_SM_LOGGING) {
|
||||||
Log.d(Config.LOGTAG, account.getJid().toBareJid() + ": requesting ack for message stanza #" + stanzasSent);
|
Log.d(Config.LOGTAG, account.getJid().toBareJid() + ": requesting ack for message stanza #" + stanzasSent);
|
||||||
|
|
Loading…
Reference in a new issue