Package org.springframework.web.socket.config.annotation

Source Code of org.springframework.web.socket.config.annotation.WebMvcStompEndpointRegistry

/*
* 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.web.socket.config.annotation;

import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;

import org.springframework.context.ApplicationContext;
import org.springframework.messaging.simp.user.UserSessionRegistry;
import org.springframework.scheduling.TaskScheduler;
import org.springframework.util.Assert;
import org.springframework.util.MultiValueMap;
import org.springframework.web.HttpRequestHandler;
import org.springframework.web.servlet.handler.AbstractHandlerMapping;
import org.springframework.web.servlet.handler.SimpleUrlHandlerMapping;
import org.springframework.web.socket.WebSocketHandler;
import org.springframework.web.socket.handler.WebSocketHandlerDecorator;
import org.springframework.web.socket.messaging.StompSubProtocolHandler;
import org.springframework.web.socket.messaging.SubProtocolWebSocketHandler;
import org.springframework.web.util.UrlPathHelper;

/**
* A registry for STOMP over WebSocket endpoints that maps the endpoints with a
* {@link SimpleUrlHandlerMapping} for use in Spring MVC.
*
* @author Rossen Stoyanchev
* @author Artem Bilan
* @since 4.0
*/
public class WebMvcStompEndpointRegistry implements StompEndpointRegistry {

  private final WebSocketHandler webSocketHandler;

  private final SubProtocolWebSocketHandler subProtocolWebSocketHandler;

  private final StompSubProtocolHandler stompHandler;

  private final List<WebMvcStompWebSocketEndpointRegistration> registrations =
      new ArrayList<WebMvcStompWebSocketEndpointRegistration>();

  private final TaskScheduler sockJsScheduler;

  private int order = 1;

  private UrlPathHelper urlPathHelper;


  public WebMvcStompEndpointRegistry(WebSocketHandler webSocketHandler,
      WebSocketTransportRegistration transportRegistration,
      UserSessionRegistry userSessionRegistry, TaskScheduler defaultSockJsTaskScheduler) {

    Assert.notNull(webSocketHandler, "'webSocketHandler' is required ");
    Assert.notNull(transportRegistration, "'transportRegistration' is required");
    Assert.notNull(userSessionRegistry, "'userSessionRegistry' is required");

    this.webSocketHandler = webSocketHandler;
    this.subProtocolWebSocketHandler = unwrapSubProtocolWebSocketHandler(webSocketHandler);

    if (transportRegistration.getSendTimeLimit() != null) {
      this.subProtocolWebSocketHandler.setSendTimeLimit(transportRegistration.getSendTimeLimit());
    }
    if (transportRegistration.getSendBufferSizeLimit() != null) {
      this.subProtocolWebSocketHandler.setSendBufferSizeLimit(transportRegistration.getSendBufferSizeLimit());
    }

    this.stompHandler = new StompSubProtocolHandler();
    this.stompHandler.setUserSessionRegistry(userSessionRegistry);

    if (transportRegistration.getMessageSizeLimit() != null) {
      this.stompHandler.setMessageSizeLimit(transportRegistration.getMessageSizeLimit());
    }

    this.sockJsScheduler = defaultSockJsTaskScheduler;
  }

  private static SubProtocolWebSocketHandler unwrapSubProtocolWebSocketHandler(WebSocketHandler wsHandler) {
    WebSocketHandler actual = WebSocketHandlerDecorator.unwrap(wsHandler);
    Assert.isInstanceOf(SubProtocolWebSocketHandler.class, actual, "No SubProtocolWebSocketHandler in " + wsHandler);
    return (SubProtocolWebSocketHandler) actual;
  }

  protected void setApplicationContext(ApplicationContext applicationContext) {
    this.stompHandler.setApplicationEventPublisher(applicationContext);
  }

  @Override
  public StompWebSocketEndpointRegistration addEndpoint(String... paths) {
    this.subProtocolWebSocketHandler.addProtocolHandler(this.stompHandler);
    WebMvcStompWebSocketEndpointRegistration registration =
        new WebMvcStompWebSocketEndpointRegistration(paths, this.webSocketHandler, this.sockJsScheduler);
    this.registrations.add(registration);
    return registration;
  }

  /**
   * Set the order for the resulting {@link SimpleUrlHandlerMapping} relative to
   * other handler mappings configured in Spring MVC.
   * <p>The default value is 1.
   */
  public void setOrder(int order) {
    this.order = order;
  }

  public int getOrder() {
    return this.order;
  }

  /**
   * Set the UrlPathHelper to configure on the {@code SimpleUrlHandlerMapping}
   * used to map handshake requests.
   */
  public void setUrlPathHelper(UrlPathHelper urlPathHelper) {
    this.urlPathHelper = urlPathHelper;
  }

  public UrlPathHelper getUrlPathHelper() {
    return this.urlPathHelper;
  }

  /**
   * Return a handler mapping with the mapped ViewControllers; or {@code null} in case of no registrations.
   */
  public AbstractHandlerMapping getHandlerMapping() {
    Map<String, Object> urlMap = new LinkedHashMap<String, Object>();
    for (WebMvcStompWebSocketEndpointRegistration registration : this.registrations) {
      MultiValueMap<HttpRequestHandler, String> mappings = registration.getMappings();
      for (HttpRequestHandler httpHandler : mappings.keySet()) {
        for (String pattern : mappings.get(httpHandler)) {
          urlMap.put(pattern, httpHandler);
        }
      }
    }
    SimpleUrlHandlerMapping hm = new SimpleUrlHandlerMapping();
    hm.setUrlMap(urlMap);
    hm.setOrder(this.order);
    if (this.urlPathHelper != null) {
      hm.setUrlPathHelper(this.urlPathHelper);
    }
    return hm;
  }

}
TOP

Related Classes of org.springframework.web.socket.config.annotation.WebMvcStompEndpointRegistry

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.