introduce special iq type for internal timeouts. always use != result to check for error in callbacks
This commit is contained in:
parent
bbfd98b726
commit
0dfb9bd1a0
|
@ -236,7 +236,7 @@ public class IqParser extends AbstractParser implements OnIqPacketReceived {
|
|||
|
||||
@Override
|
||||
public void onIqPacketReceived(final Account account, final IqPacket packet) {
|
||||
if (packet.getType() == IqPacket.TYPE.ERROR) {
|
||||
if (packet.getType() == IqPacket.TYPE.ERROR || packet.getType() == IqPacket.TYPE.TIMEOUT) {
|
||||
return;
|
||||
} else if (packet.hasChild("query", Xmlns.ROSTER) && packet.fromServer(account)) {
|
||||
final Element query = packet.findChild("query");
|
||||
|
|
|
@ -111,7 +111,7 @@ public class MessageArchiveService implements OnAdvancedStreamFeaturesLoaded {
|
|||
this.mXmppConnectionService.sendIqPacket(account, packet, new OnIqPacketReceived() {
|
||||
@Override
|
||||
public void onIqPacketReceived(Account account, IqPacket packet) {
|
||||
if (packet.getType() == IqPacket.TYPE.ERROR) {
|
||||
if (packet.getType() != IqPacket.TYPE.RESULT) {
|
||||
Log.d(Config.LOGTAG, account.getJid().toBareJid().toString() + ": error executing mam: " + packet.toString());
|
||||
finalizeQuery(query);
|
||||
}
|
||||
|
|
|
@ -214,7 +214,7 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
|
|||
private OnIqPacketReceived mDefaultIqHandler = new OnIqPacketReceived() {
|
||||
@Override
|
||||
public void onIqPacketReceived(Account account, IqPacket packet) {
|
||||
if (packet.getType() == IqPacket.TYPE.ERROR) {
|
||||
if (packet.getType() != IqPacket.TYPE.RESULT) {
|
||||
Element error = packet.findChild("error");
|
||||
String text = error != null ? error.findChildContent("text") : null;
|
||||
if (text != null) {
|
||||
|
@ -1678,7 +1678,7 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
|
|||
sendIqPacket(conversation.getAccount(), request, new OnIqPacketReceived() {
|
||||
@Override
|
||||
public void onIqPacketReceived(Account account, IqPacket packet) {
|
||||
if (packet.getType() != IqPacket.TYPE.ERROR) {
|
||||
if (packet.getType() == IqPacket.TYPE.RESULT) {
|
||||
ArrayList<String> features = new ArrayList<>();
|
||||
for (Element child : packet.query().getChildren()) {
|
||||
if (child != null && child.getName().equals("feature")) {
|
||||
|
@ -1702,7 +1702,7 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
|
|||
sendIqPacket(conversation.getAccount(), request, new OnIqPacketReceived() {
|
||||
@Override
|
||||
public void onIqPacketReceived(Account account, IqPacket packet) {
|
||||
if (packet.getType() != IqPacket.TYPE.ERROR) {
|
||||
if (packet.getType() == IqPacket.TYPE.RESULT) {
|
||||
Data data = Data.parse(packet.query().findChild("x", "jabber:x:data"));
|
||||
for (Field field : data.getFields()) {
|
||||
if (options.containsKey(field.getName())) {
|
||||
|
@ -1716,12 +1716,10 @@ public class XmppConnectionService extends Service implements OnPhoneContactsLoa
|
|||
sendIqPacket(account, set, new OnIqPacketReceived() {
|
||||
@Override
|
||||
public void onIqPacketReceived(Account account, IqPacket packet) {
|
||||
if (packet.getType() == IqPacket.TYPE.RESULT) {
|
||||
if (callback != null) {
|
||||
if (callback != null) {
|
||||
if (packet.getType() == IqPacket.TYPE.RESULT) {
|
||||
callback.onPushSucceeded();
|
||||
}
|
||||
} else {
|
||||
if (callback != null) {
|
||||
} else {
|
||||
callback.onPushFailed();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -414,7 +414,7 @@ public class XmppConnection implements Runnable {
|
|||
this.sendIqPacket(iq, new OnIqPacketReceived() {
|
||||
@Override
|
||||
public void onIqPacketReceived(final Account account, final IqPacket packet) {
|
||||
if (packet.getType() == IqPacket.TYPE.RESULT) {
|
||||
if (packet.getType() != IqPacket.TYPE.TIMEOUT) {
|
||||
Log.d(Config.LOGTAG, account.getJid().toBareJid() + ": online with resource " + account.getResource());
|
||||
changeStatus(Account.State.ONLINE);
|
||||
} else {
|
||||
|
@ -739,7 +739,7 @@ public class XmppConnection implements Runnable {
|
|||
}
|
||||
|
||||
private void clearIqCallbacks() {
|
||||
final IqPacket failurePacket = new IqPacket(IqPacket.TYPE.ERROR);
|
||||
final IqPacket failurePacket = new IqPacket(IqPacket.TYPE.TIMEOUT);
|
||||
final ArrayList<OnIqPacketReceived> callbacks = new ArrayList<>();
|
||||
synchronized (this.packetCallbacks) {
|
||||
if (this.packetCallbacks.size() == 0) {
|
||||
|
|
|
@ -85,7 +85,7 @@ public class JingleConnection implements Transferable {
|
|||
|
||||
@Override
|
||||
public void onIqPacketReceived(Account account, IqPacket packet) {
|
||||
if (packet.getType() == IqPacket.TYPE.ERROR) {
|
||||
if (packet.getType() != IqPacket.TYPE.RESULT) {
|
||||
fail();
|
||||
}
|
||||
}
|
||||
|
@ -449,7 +449,7 @@ public class JingleConnection implements Transferable {
|
|||
|
||||
@Override
|
||||
public void onIqPacketReceived(Account account, IqPacket packet) {
|
||||
if (packet.getType() != IqPacket.TYPE.ERROR) {
|
||||
if (packet.getType() == IqPacket.TYPE.RESULT) {
|
||||
Log.d(Config.LOGTAG,account.getJid().toBareJid()+": other party received offer");
|
||||
mJingleStatus = JINGLE_STATUS_INITIATED;
|
||||
mXmppConnectionService.markMessage(message, Message.STATUS_OFFERED);
|
||||
|
@ -634,12 +634,11 @@ public class JingleConnection implements Transferable {
|
|||
@Override
|
||||
public void onIqPacketReceived(Account account,
|
||||
IqPacket packet) {
|
||||
if (packet.getType() == IqPacket.TYPE.ERROR) {
|
||||
if (packet.getType() != IqPacket.TYPE.RESULT) {
|
||||
onProxyActivated.failed();
|
||||
} else {
|
||||
onProxyActivated.success();
|
||||
sendProxyActivated(connection
|
||||
.getCandidate().getCid());
|
||||
sendProxyActivated(connection.getCandidate().getCid());
|
||||
}
|
||||
}
|
||||
});
|
||||
|
|
|
@ -74,7 +74,7 @@ public class JingleInbandTransport extends JingleTransport {
|
|||
@Override
|
||||
public void onIqPacketReceived(Account account,
|
||||
IqPacket packet) {
|
||||
if (packet.getType() == IqPacket.TYPE.ERROR) {
|
||||
if (packet.getType() != IqPacket.TYPE.RESULT) {
|
||||
callback.failed();
|
||||
} else {
|
||||
callback.established();
|
||||
|
|
|
@ -4,12 +4,13 @@ import eu.siacs.conversations.xml.Element;
|
|||
|
||||
public class IqPacket extends AbstractStanza {
|
||||
|
||||
public static enum TYPE {
|
||||
public enum TYPE {
|
||||
ERROR,
|
||||
SET,
|
||||
RESULT,
|
||||
GET,
|
||||
INVALID
|
||||
INVALID,
|
||||
TIMEOUT
|
||||
}
|
||||
|
||||
public IqPacket(final TYPE type) {
|
||||
|
|
Loading…
Reference in a new issue