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

Source Code of org.springframework.web.socket.sockjs.transport.session.StreamingSockJsSession

/*
* 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.sockjs.transport.session;

import java.util.Map;

import org.springframework.web.socket.WebSocketHandler;
import org.springframework.web.socket.sockjs.SockJsTransportFailureException;
import org.springframework.web.socket.sockjs.frame.SockJsFrame;
import org.springframework.web.socket.sockjs.frame.SockJsMessageCodec;
import org.springframework.web.socket.sockjs.transport.SockJsServiceConfig;

/**
* A SockJS session for use with streaming HTTP transports.
*
* @author Rossen Stoyanchev
* @since 4.0
*/
public class StreamingSockJsSession extends AbstractHttpSockJsSession {

  private int byteCount;


  public StreamingSockJsSession(String sessionId, SockJsServiceConfig config,
      WebSocketHandler wsHandler, Map<String, Object> attributes) {

    super(sessionId, config, wsHandler, attributes);
  }


  @Override
  protected boolean isStreaming() {
    return true;
  }

  @Override
  protected void flushCache() throws SockJsTransportFailureException {
    do {
      String message = getMessageCache().poll();
      SockJsMessageCodec messageCodec = getSockJsServiceConfig().getMessageCodec();
      SockJsFrame frame = SockJsFrame.messageFrame(messageCodec, message);
      writeFrame(frame);

      this.byteCount += frame.getContentBytes().length + 1;
      if (logger.isTraceEnabled()) {
        logger.trace(this.byteCount + " bytes written so far, "
            + getMessageCache().size() + " more messages not flushed");
      }
      if (this.byteCount >= getSockJsServiceConfig().getStreamBytesLimit()) {
        if (logger.isTraceEnabled()) {
          logger.trace("Streamed bytes limit reached. Recycling current request");
        }
        resetRequest();
        this.byteCount = 0;
        break;
      }
    }
    while (!getMessageCache().isEmpty());
    scheduleHeartbeat();
  }

}
TOP

Related Classes of org.springframework.web.socket.sockjs.transport.session.StreamingSockJsSession

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.