mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 06:12:05 +01:00
Record request stanza in XMPPErrorException
This commit is contained in:
parent
2065a7ed01
commit
98109e7b86
3 changed files with 51 additions and 2 deletions
|
@ -763,8 +763,11 @@ public abstract class AbstractXMPPConnection implements XMPPConnection {
|
||||||
@Override
|
@Override
|
||||||
public StanzaCollector createStanzaCollectorAndSend(StanzaFilter packetFilter, Stanza packet)
|
public StanzaCollector createStanzaCollectorAndSend(StanzaFilter packetFilter, Stanza packet)
|
||||||
throws NotConnectedException, InterruptedException {
|
throws NotConnectedException, InterruptedException {
|
||||||
|
StanzaCollector.Configuration configuration = StanzaCollector.newConfiguration()
|
||||||
|
.setStanzaFilter(packetFilter)
|
||||||
|
.setRequest(packet);
|
||||||
// Create the packet collector before sending the packet
|
// Create the packet collector before sending the packet
|
||||||
StanzaCollector packetCollector = createStanzaCollector(packetFilter);
|
StanzaCollector packetCollector = createStanzaCollector(configuration);
|
||||||
try {
|
try {
|
||||||
// Now we can send the packet as the collector has been created
|
// Now we can send the packet as the collector has been created
|
||||||
sendStanza(packet);
|
sendStanza(packet);
|
||||||
|
|
|
@ -53,6 +53,8 @@ public class StanzaCollector {
|
||||||
|
|
||||||
private final XMPPConnection connection;
|
private final XMPPConnection connection;
|
||||||
|
|
||||||
|
private final Stanza request;
|
||||||
|
|
||||||
private boolean cancelled = false;
|
private boolean cancelled = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -67,6 +69,7 @@ public class StanzaCollector {
|
||||||
this.packetFilter = configuration.packetFilter;
|
this.packetFilter = configuration.packetFilter;
|
||||||
this.resultQueue = new ArrayBlockingQueue<>(configuration.size);
|
this.resultQueue = new ArrayBlockingQueue<>(configuration.size);
|
||||||
this.collectorToReset = configuration.collectorToReset;
|
this.collectorToReset = configuration.collectorToReset;
|
||||||
|
this.request = configuration.request;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -314,6 +317,7 @@ public class StanzaCollector {
|
||||||
private StanzaFilter packetFilter;
|
private StanzaFilter packetFilter;
|
||||||
private int size = SmackConfiguration.getStanzaCollectorSize();
|
private int size = SmackConfiguration.getStanzaCollectorSize();
|
||||||
private StanzaCollector collectorToReset;
|
private StanzaCollector collectorToReset;
|
||||||
|
private Stanza request;
|
||||||
|
|
||||||
private Configuration() {
|
private Configuration() {
|
||||||
}
|
}
|
||||||
|
@ -366,5 +370,10 @@ public class StanzaCollector {
|
||||||
this.collectorToReset = collector;
|
this.collectorToReset = collector;
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public Configuration setRequest(Stanza request) {
|
||||||
|
this.request = request;
|
||||||
|
return this;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -77,6 +77,11 @@ public abstract class XMPPException extends Exception {
|
||||||
private final StanzaError error;
|
private final StanzaError error;
|
||||||
private final Stanza stanza;
|
private final Stanza stanza;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The request which resulted in the XMPP protocol error response. May be {@code null}.
|
||||||
|
*/
|
||||||
|
private final Stanza request;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a new XMPPErrorException with the given builder.
|
* Creates a new XMPPErrorException with the given builder.
|
||||||
*
|
*
|
||||||
|
@ -95,9 +100,22 @@ public abstract class XMPPException extends Exception {
|
||||||
* @param error the root cause of the exception.
|
* @param error the root cause of the exception.
|
||||||
*/
|
*/
|
||||||
public XMPPErrorException(Stanza stanza, StanzaError error) {
|
public XMPPErrorException(Stanza stanza, StanzaError error) {
|
||||||
|
this(stanza, error, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a new XMPPErrorException with the XMPPError that was the root case of the exception.
|
||||||
|
*
|
||||||
|
* @param request the request which triggered the error.
|
||||||
|
* @param stanza stanza that contained the exception.
|
||||||
|
* @param error the root cause of the exception.
|
||||||
|
* @since 4.3.0
|
||||||
|
*/
|
||||||
|
public XMPPErrorException(Stanza stanza, StanzaError error, Stanza request) {
|
||||||
super();
|
super();
|
||||||
this.error = error;
|
this.error = error;
|
||||||
this.stanza = stanza;
|
this.stanza = stanza;
|
||||||
|
this.request = request;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -110,6 +128,16 @@ public abstract class XMPPException extends Exception {
|
||||||
return error;
|
return error;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the request which triggered the error response causing this exception.
|
||||||
|
*
|
||||||
|
* @return the request or {@code null}.
|
||||||
|
* @since 4.3.0
|
||||||
|
*/
|
||||||
|
public Stanza getRequest() {
|
||||||
|
return request;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String getMessage() {
|
public String getMessage() {
|
||||||
StringBuilder sb = new StringBuilder();
|
StringBuilder sb = new StringBuilder();
|
||||||
|
@ -123,13 +151,22 @@ public abstract class XMPPException extends Exception {
|
||||||
|
|
||||||
sb.append(error);
|
sb.append(error);
|
||||||
|
|
||||||
|
if (request != null) {
|
||||||
|
sb.append(" as result of the following request: ");
|
||||||
|
sb.append(request);
|
||||||
|
}
|
||||||
|
|
||||||
return sb.toString();
|
return sb.toString();
|
||||||
}
|
}
|
||||||
|
|
||||||
public static void ifHasErrorThenThrow(Stanza packet) throws XMPPErrorException {
|
public static void ifHasErrorThenThrow(Stanza packet) throws XMPPErrorException {
|
||||||
|
ifHasErrorThenThrow(packet, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void ifHasErrorThenThrow(Stanza packet, Stanza request) throws XMPPErrorException {
|
||||||
StanzaError xmppError = packet.getError();
|
StanzaError xmppError = packet.getError();
|
||||||
if (xmppError != null) {
|
if (xmppError != null) {
|
||||||
throw new XMPPErrorException(packet, xmppError);
|
throw new XMPPErrorException(packet, xmppError, request);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue