5 changed files with 284 additions and 22 deletions
@ -0,0 +1,75 @@
@@ -0,0 +1,75 @@
|
||||
/* |
||||
* Copyright 2002-2015 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
package org.springframework.web.socket.messaging; |
||||
|
||||
import org.springframework.messaging.Message; |
||||
import org.springframework.messaging.simp.stomp.StompCommand; |
||||
import org.springframework.messaging.simp.stomp.StompHeaderAccessor; |
||||
import org.springframework.messaging.support.MessageBuilder; |
||||
import org.springframework.messaging.support.MessageHeaderAccessor; |
||||
import org.springframework.util.Assert; |
||||
|
||||
/** |
||||
* A {@link SubProtocolErrorHandler} for use with STOMP. |
||||
* |
||||
* @author Rossen Stoyanchev |
||||
* @since 4.2 |
||||
*/ |
||||
public class StompSubProtocolErrorHandler implements SubProtocolErrorHandler<byte[]> { |
||||
|
||||
private static byte[] EMPTY_PAYLOAD = new byte[0]; |
||||
|
||||
|
||||
@Override |
||||
public Message<byte[]> handleClientMessageProcessingError(Message<byte[]> clientMessage, Throwable ex) { |
||||
|
||||
StompHeaderAccessor accessor = StompHeaderAccessor.create(StompCommand.ERROR); |
||||
accessor.setMessage(ex.getMessage()); |
||||
accessor.setLeaveMutable(true); |
||||
|
||||
StompHeaderAccessor clientHeaderAccessor = null; |
||||
if (clientMessage != null) { |
||||
clientHeaderAccessor = MessageHeaderAccessor.getAccessor(clientMessage, StompHeaderAccessor.class); |
||||
String receiptId = clientHeaderAccessor.getReceipt(); |
||||
if (receiptId != null) { |
||||
accessor.setReceiptId(receiptId); |
||||
} |
||||
} |
||||
|
||||
return handleInternal(accessor, EMPTY_PAYLOAD, ex, clientHeaderAccessor); |
||||
} |
||||
|
||||
@Override |
||||
public Message<byte[]> handleErrorMessageToClient(Message<byte[]> errorMessage) { |
||||
|
||||
StompHeaderAccessor accessor = MessageHeaderAccessor.getAccessor(errorMessage, StompHeaderAccessor.class); |
||||
Assert.notNull(accessor, "Expected STOMP headers."); |
||||
|
||||
if (!accessor.isMutable()) { |
||||
accessor = StompHeaderAccessor.wrap(errorMessage); |
||||
} |
||||
|
||||
return handleInternal(accessor, errorMessage.getPayload(), null, null); |
||||
} |
||||
|
||||
@SuppressWarnings("unused") |
||||
protected Message<byte[]> handleInternal(StompHeaderAccessor errorHeaderAccessor, |
||||
byte[] errorPayload, Throwable cause, StompHeaderAccessor clientHeaderAccessor) { |
||||
|
||||
return MessageBuilder.createMessage(errorPayload, errorHeaderAccessor.getMessageHeaders()); |
||||
} |
||||
|
||||
} |
@ -0,0 +1,56 @@
@@ -0,0 +1,56 @@
|
||||
/* |
||||
* Copyright 2002-2015 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
package org.springframework.web.socket.messaging; |
||||
|
||||
import org.springframework.messaging.Message; |
||||
|
||||
/** |
||||
* A contract for handling sub-protocol errors sent to clients. |
||||
* |
||||
* @author Rossen Stoyanchev |
||||
* @since 4.2 |
||||
*/ |
||||
public interface SubProtocolErrorHandler<P> { |
||||
|
||||
/** |
||||
* Handle errors thrown while processing client messages providing an |
||||
* opportunity to prepare the error message or to prevent one from being sent. |
||||
* |
||||
* <p>Note that the STOMP protocol requires a server to close the connection |
||||
* after sending an ERROR frame. To prevent that, a handler could return |
||||
* {@code null} and send a message through the broker instead, e.g. via a |
||||
* user destination targeting the user. |
||||
* |
||||
* @param clientMessage the client message related to the error, possibly |
||||
* {@code null} if error occurred while parsing a WebSocket message |
||||
* @param ex the cause for the error, never {@code null} |
||||
* @return the error message to send to the client, or {@code null} in which |
||||
* case no message will be sent. |
||||
*/ |
||||
Message<P> handleClientMessageProcessingError(Message<P> clientMessage, Throwable ex); |
||||
|
||||
/** |
||||
* Handle errors sent from the server side to clients, e.g. errors from the |
||||
* {@link org.springframework.messaging.simp.stomp.StompBrokerRelayMessageHandler |
||||
* "broke relay"} because connectivity failed or the external broker sent an |
||||
* error message, etc. |
||||
* @param errorMessage the error message, never {@code null} |
||||
* @return the error message to send to the client, or {@code null} in which |
||||
* case no message will be sent. |
||||
*/ |
||||
Message<P> handleErrorMessageToClient(Message<P> errorMessage); |
||||
|
||||
} |
@ -0,0 +1,74 @@
@@ -0,0 +1,74 @@
|
||||
/* |
||||
* Copyright 2002-2015 the original author or authors. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); |
||||
* you may not use this file except in compliance with the License. |
||||
* You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software |
||||
* distributed under the License is distributed on an "AS IS" BASIS, |
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
* See the License for the specific language governing permissions and |
||||
* limitations under the License. |
||||
*/ |
||||
package org.springframework.web.socket.messaging; |
||||
|
||||
import static org.junit.Assert.*; |
||||
|
||||
import org.junit.Before; |
||||
import org.junit.Test; |
||||
|
||||
import org.springframework.messaging.Message; |
||||
import org.springframework.messaging.MessageHeaders; |
||||
import org.springframework.messaging.simp.stomp.StompCommand; |
||||
import org.springframework.messaging.simp.stomp.StompHeaderAccessor; |
||||
import org.springframework.messaging.support.MessageBuilder; |
||||
import org.springframework.messaging.support.MessageHeaderAccessor; |
||||
|
||||
/** |
||||
* Unit tests for {@link StompSubProtocolErrorHandler}. |
||||
* @author Rossen Stoyanchev |
||||
*/ |
||||
public class StompSubProtocolErrorHandlerTests { |
||||
|
||||
private StompSubProtocolErrorHandler handler; |
||||
|
||||
|
||||
@Before |
||||
public void setUp() throws Exception { |
||||
this.handler = new StompSubProtocolErrorHandler(); |
||||
} |
||||
|
||||
|
||||
@Test |
||||
public void handleClientMessageProcessingError() throws Exception { |
||||
|
||||
Exception ex = new Exception("fake exception"); |
||||
Message<byte[]> actual = this.handler.handleClientMessageProcessingError(null, ex); |
||||
|
||||
StompHeaderAccessor accessor = MessageHeaderAccessor.getAccessor(actual, StompHeaderAccessor.class); |
||||
assertNotNull(accessor); |
||||
assertEquals(StompCommand.ERROR, accessor.getCommand()); |
||||
assertEquals(ex.getMessage(), accessor.getMessage()); |
||||
assertArrayEquals(new byte[0], actual.getPayload()); |
||||
} |
||||
|
||||
@Test |
||||
public void handleClientMessageProcessingErrorWithReceipt() throws Exception { |
||||
|
||||
String receiptId = "123"; |
||||
StompHeaderAccessor clientHeaderAccessor = StompHeaderAccessor.create(StompCommand.SEND); |
||||
clientHeaderAccessor.setReceipt(receiptId); |
||||
MessageHeaders clientHeaders = clientHeaderAccessor.getMessageHeaders(); |
||||
Message<byte[]> clientMessage = MessageBuilder.createMessage(new byte[0], clientHeaders); |
||||
Message<byte[]> actual = this.handler.handleClientMessageProcessingError(clientMessage, new Exception()); |
||||
|
||||
StompHeaderAccessor accessor = MessageHeaderAccessor.getAccessor(actual, StompHeaderAccessor.class); |
||||
assertNotNull(accessor); |
||||
assertEquals(receiptId, accessor.getReceiptId()); |
||||
} |
||||
|
||||
|
||||
} |
Loading…
Reference in new issue