Package org.springframework.web.socket.sockjs.transport.handler

Source Code of org.springframework.web.socket.sockjs.transport.handler.WebSocketTransportHandler

/*
* Copyright 2002-2013 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.sockjs.transport.handler;

import java.util.Collections;
import java.util.Map;

import org.springframework.http.server.ServerHttpRequest;
import org.springframework.http.server.ServerHttpResponse;
import org.springframework.util.Assert;
import org.springframework.web.socket.CloseStatus;
import org.springframework.web.socket.WebSocketHandler;
import org.springframework.web.socket.server.HandshakeFailureException;
import org.springframework.web.socket.server.HandshakeHandler;
import org.springframework.web.socket.sockjs.SockJsException;
import org.springframework.web.socket.sockjs.SockJsTransportFailureException;
import org.springframework.web.socket.sockjs.transport.SockJsSession;
import org.springframework.web.socket.sockjs.transport.SockJsSessionFactory;
import org.springframework.web.socket.sockjs.transport.TransportHandler;
import org.springframework.web.socket.sockjs.transport.TransportType;
import org.springframework.web.socket.sockjs.transport.session.AbstractSockJsSession;
import org.springframework.web.socket.sockjs.transport.session.WebSocketServerSockJsSession;

/**
* WebSocket-based {@link TransportHandler}. Uses {@link SockJsWebSocketHandler} and
* {@link WebSocketServerSockJsSession} to add SockJS processing.
*
* <p>Also implements {@link HandshakeHandler} to support raw WebSocket communication at
* SockJS URL "/websocket".
*
* @author Rossen Stoyanchev
* @since 4.0
*/
public class WebSocketTransportHandler extends AbstractTransportHandler
    implements SockJsSessionFactory, HandshakeHandler {

  private final HandshakeHandler handshakeHandler;


  public WebSocketTransportHandler(HandshakeHandler handshakeHandler) {
    Assert.notNull(handshakeHandler, "handshakeHandler must not be null");
    this.handshakeHandler = handshakeHandler;
  }


  @Override
  public TransportType getTransportType() {
    return TransportType.WEBSOCKET;
  }

  public HandshakeHandler getHandshakeHandler() {
    return this.handshakeHandler;
  }

  @Override
  public AbstractSockJsSession createSession(String sessionId, WebSocketHandler handler,
      Map<String, Object> attributes) {

    return new WebSocketServerSockJsSession(sessionId, getServiceConfig(), handler, attributes);
  }

  @Override
  public void handleRequest(ServerHttpRequest request, ServerHttpResponse response,
      WebSocketHandler wsHandler, SockJsSession wsSession) throws SockJsException {

    WebSocketServerSockJsSession sockJsSession = (WebSocketServerSockJsSession) wsSession;
    try {
      wsHandler = new SockJsWebSocketHandler(getServiceConfig(), wsHandler, sockJsSession);
      this.handshakeHandler.doHandshake(request, response, wsHandler, Collections.<String, Object>emptyMap());
    }
    catch (Throwable ex) {
      sockJsSession.tryCloseWithSockJsTransportError(ex, CloseStatus.SERVER_ERROR);
      throw new SockJsTransportFailureException("WebSocket handshake failure", wsSession.getId(), ex);
    }
  }

  // HandshakeHandler methods

  @Override
  public boolean doHandshake(ServerHttpRequest request, ServerHttpResponse response,
      WebSocketHandler handler, Map<String, Object> attributes) throws HandshakeFailureException {

    return this.handshakeHandler.doHandshake(request, response, handler, attributes);
  }

}
TOP

Related Classes of org.springframework.web.socket.sockjs.transport.handler.WebSocketTransportHandler

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.