Add WebSocket scope

This change adds support for a custom "websocket" scope.

WebSocket-scoped beans may be injected into controllers with message
handling methods as well as channel interceptor registered on the
"inboundClientChannel".

Issue: SPR-11305
This commit is contained in:
Rossen Stoyanchev
2014-05-09 16:51:14 -04:00
parent 66c63c374b
commit 2c4cbb617e
18 changed files with 1090 additions and 26 deletions

View File

@@ -0,0 +1,209 @@
/*
* Copyright 2002-2014 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.messaging.simp;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.springframework.messaging.Message;
import org.springframework.messaging.MessageHeaders;
import org.springframework.util.Assert;
import org.springframework.util.StringUtils;
import java.util.Map;
/**
* A wrapper class for access to attributes associated with a SiMP session
* (e.g. WebSocket session).
*
* @author Rossen Stoyanchev
* @since 4.1
*/
public class SimpAttributes {
private static Log logger = LogFactory.getLog(SimpAttributes.class);
private static final String className = SimpAttributes.class.getName();
/** Key for the mutex session attribute */
public static final String SESSION_MUTEX_NAME = className + ".MUTEX";
/** Key set after the session is completed */
public static final String SESSION_COMPLETED_NAME = className + ".COMPLETED";
/** Prefix for the name of session attributes used to store destruction callbacks. */
public static final String DESTRUCTION_CALLBACK_NAME_PREFIX = className + ".DESTRUCTION_CALLBACK.";
private final String sessionId;
private final Map<String, Object> attributes;
/**
* Constructor wrapping the given session attributes map.
*
* @param sessionId the id of the associated session
* @param attributes the attributes
*/
public SimpAttributes(String sessionId, Map<String, Object> attributes) {
Assert.notNull(sessionId, "'sessionId' is required");
Assert.notNull(attributes, "'attributes' is required");
this.sessionId = sessionId;
this.attributes = attributes;
}
/**
* Extract the SiMP session attributes from the given message, wrap them in
* a {@link SimpAttributes} instance.
*
* @param message the message to extract session attributes from
*/
public static SimpAttributes fromMessage(Message<?> message) {
Assert.notNull(message);
MessageHeaders headers = message.getHeaders();
String sessionId = SimpMessageHeaderAccessor.getSessionId(headers);
Map<String, Object> sessionAttributes = SimpMessageHeaderAccessor.getSessionAttributes(headers);
if (sessionId == null || sessionAttributes == null) {
throw new IllegalStateException(
"Message does not contain SiMP session id or attributes: " + message);
}
return new SimpAttributes(sessionId, sessionAttributes);
}
/**
* Return the value for the attribute of the given name, if any.
*
* @param name the name of the attribute
* @return the current attribute value, or {@code null} if not found
*/
public Object getAttribute(String name) {
return this.attributes.get(name);
}
/**
* Set the value with the given name replacing an existing value (if any).
*
* @param name the name of the attribute
* @param value the value for the attribute
*/
public void setAttribute(String name, Object value) {
this.attributes.put(name, value);
}
/**
* Remove the attribute of the given name, if it exists.
*
* <p>Also removes the registered destruction callback for the specified
* attribute, if any. However it <i>does not</i> execute</i> the callback.
* It is assumed the removed object will continue to be used and destroyed
* independently at the appropriate time.
*
* @param name the name of the attribute
*/
public void removeAttribute(String name) {
this.attributes.remove(name);
removeDestructionCallback(name);
}
/**
* Retrieve the names of all attributes.
*
* @return the attribute names as String array, never {@code null}
*/
public String[] getAttributeNames() {
return StringUtils.toStringArray(this.attributes.keySet());
}
/**
* Register a callback to execute on destruction of the specified attribute.
* The callback is executed when the session is closed.
*
* @param name the name of the attribute to register the callback for
* @param callback the destruction callback to be executed
*/
public void registerDestructionCallback(String name, Runnable callback) {
synchronized (getSessionMutex()) {
if (isSessionCompleted()) {
throw new IllegalStateException("Session id=" + getSessionId() + " already completed");
}
this.attributes.put(DESTRUCTION_CALLBACK_NAME_PREFIX + name, callback);
}
}
private void removeDestructionCallback(String name) {
synchronized (getSessionMutex()) {
this.attributes.remove(DESTRUCTION_CALLBACK_NAME_PREFIX + name);
}
}
/**
* Return an id for the associated session.
*
* @return the session id as String (never {@code null})
*/
public String getSessionId() {
return this.sessionId;
}
/**
* Expose the object to synchronize on for the underlying session.
*
* @return the session mutex to use (never {@code null})
*/
public Object getSessionMutex() {
Object mutex = this.attributes.get(SESSION_MUTEX_NAME);
if (mutex == null) {
mutex = this.attributes;
}
return mutex;
}
/**
* Whether the {@link #sessionCompleted()} was already invoked.
*/
public boolean isSessionCompleted() {
return (this.attributes.get(SESSION_COMPLETED_NAME) != null);
}
/**
* Invoked when the session is completed. Executed completion callbacks.
*/
public void sessionCompleted() {
synchronized (getSessionMutex()) {
if (!isSessionCompleted()) {
executeDestructionCallbacks();
this.attributes.put(SESSION_COMPLETED_NAME, Boolean.TRUE);
}
}
}
private void executeDestructionCallbacks() {
for (Map.Entry<String, Object> entry : this.attributes.entrySet()) {
if (entry.getKey().startsWith(DESTRUCTION_CALLBACK_NAME_PREFIX)) {
try {
((Runnable) entry.getValue()).run();
}
catch (Throwable t) {
if (logger.isErrorEnabled()) {
logger.error("Uncaught error in session attribute destruction callback", t);
}
}
}
}
}
}

View File

@@ -0,0 +1,92 @@
/*
* Copyright 2002-2014 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.messaging.simp;
import org.springframework.core.NamedThreadLocal;
import org.springframework.messaging.Message;
/**
* Holder class to expose SiMP attributes associated with a session (e.g. WebSocket)
* in the form of a thread-bound {@link SimpAttributes} object.
*
* @author Rossen Stoyanchev
* @since 4.1
*/
public abstract class SimpAttributesContextHolder {
private static final ThreadLocal<SimpAttributes> attributesHolder =
new NamedThreadLocal<SimpAttributes>("SiMP session attributes");
/**
* Reset the SimpAttributes for the current thread.
*/
public static void resetAttributes() {
attributesHolder.remove();
}
/**
* Bind the given SimpAttributes to the current thread,
*
* @param attributes the RequestAttributes to expose
*/
public static void setAttributes(SimpAttributes attributes) {
if (attributes != null) {
attributesHolder.set(attributes);
}
else {
resetAttributes();
}
}
/**
* Extract the SiMP session attributes from the given message, wrap them in
* a {@link SimpAttributes} instance and bind it to the current thread,
*
* @param message the message to extract session attributes from
*/
public static void setAttributesFromMessage(Message<?> message) {
setAttributes(SimpAttributes.fromMessage(message));
}
/**
* Return the SimpAttributes currently bound to the thread.
*
* @return the attributes or {@code null} if not bound
*/
public static SimpAttributes getAttributes() {
return attributesHolder.get();
}
/**
* Return the SimpAttributes currently bound to the thread or raise an
* {@link java.lang.IllegalStateException} if none are bound..
*
* @return the attributes, never {@code null}
* @throws java.lang.IllegalStateException if attributes are not bound
*/
public static SimpAttributes currentAttributes() throws IllegalStateException {
SimpAttributes attributes = getAttributes();
if (attributes == null) {
throw new IllegalStateException("No thread-bound SimpAttributes found. " +
"Your code is probably not processing a client message and executing in " +
"message-handling methods invoked by the SimpAnnotationMethodMessageHandler?");
}
return attributes;
}
}

View File

@@ -0,0 +1,81 @@
/*
* Copyright 2002-2014 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.messaging.simp;
import org.springframework.beans.factory.ObjectFactory;
import org.springframework.beans.factory.config.Scope;
/**
* A {@link Scope} implementation exposing the attributes of a SiMP session
* (e.g. WebSocket session).
*
* <p>Relies on a thread-bound {@link SimpAttributes} instance exported by
* {@link org.springframework.messaging.simp.annotation.support.SimpAnnotationMethodMessageHandler
* SimpAnnotationMethodMessageHandler}.
*
* @author Rossen Stoyanchev
* @since 4.1
*/
public class SimpSessionScope implements Scope {
@Override
public Object get(String name, ObjectFactory<?> objectFactory) {
SimpAttributes simpAttributes = SimpAttributesContextHolder.currentAttributes();
Object value = simpAttributes.getAttribute(name);
if (value != null) {
return value;
}
synchronized (simpAttributes.getSessionMutex()) {
value = simpAttributes.getAttribute(name);
if (value == null) {
value = objectFactory.getObject();
simpAttributes.setAttribute(name, value);
}
return value;
}
}
@Override
public Object remove(String name) {
SimpAttributes simpAttributes = SimpAttributesContextHolder.currentAttributes();
synchronized (simpAttributes.getSessionMutex()) {
Object value = simpAttributes.getAttribute(name);
if (value != null) {
simpAttributes.removeAttribute(name);
return value;
} else {
return null;
}
}
}
@Override
public void registerDestructionCallback(String name, Runnable callback) {
SimpAttributesContextHolder.currentAttributes().registerDestructionCallback(name, callback);
}
@Override
public Object resolveContextualObject(String key) {
return null;
}
@Override
public String getConversationId() {
return SimpAttributesContextHolder.currentAttributes().getSessionId();
}
}

View File

@@ -52,6 +52,8 @@ import org.springframework.messaging.handler.invocation.AbstractExceptionHandler
import org.springframework.messaging.handler.invocation.AbstractMethodMessageHandler;
import org.springframework.messaging.handler.invocation.HandlerMethodArgumentResolver;
import org.springframework.messaging.handler.invocation.HandlerMethodReturnValueHandler;
import org.springframework.messaging.simp.SimpAttributes;
import org.springframework.messaging.simp.SimpAttributesContextHolder;
import org.springframework.messaging.simp.SimpMessageHeaderAccessor;
import org.springframework.messaging.simp.SimpMessageMappingInfo;
import org.springframework.messaging.simp.SimpMessageSendingOperations;
@@ -390,7 +392,13 @@ public class SimpAnnotationMethodMessageHandler extends AbstractMethodMessageHan
accessor.setHeader(DestinationVariableMethodArgumentResolver.DESTINATION_TEMPLATE_VARIABLES_HEADER, vars);
}
super.handleMatch(mapping, handlerMethod, lookupDestination, message);
try {
SimpAttributesContextHolder.setAttributesFromMessage(message);
super.handleMatch(mapping, handlerMethod, lookupDestination, message);
}
finally {
SimpAttributesContextHolder.resetAttributes();
}
}
@Override