blob: 224bfeb137002680b5b3fba98e100f23b6c07512 [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef NET_WEBSOCKETS_WEBSOCKET_DEFLATE_STREAM_H_
#define NET_WEBSOCKETS_WEBSOCKET_DEFLATE_STREAM_H_
#include <string>
#include "base/basictypes.h"
#include "base/memory/scoped_ptr.h"
#include "base/memory/scoped_vector.h"
#include "net/base/completion_callback.h"
#include "net/base/net_export.h"
#include "net/websockets/websocket_deflater.h"
#include "net/websockets/websocket_frame.h"
#include "net/websockets/websocket_inflater.h"
#include "net/websockets/websocket_stream.h"
class GURL;
namespace net {
class HttpRequestHeaders;
class HttpResponseInfo;
// WebSocketDeflateStream is a WebSocketStream subclass.
// WebSocketDeflateStream is for permessage-deflate WebSocket extension[1].
//
// [1]: http://tools.ietf.org/html/draft-ietf-hybi-permessage-compression-12
class NET_EXPORT_PRIVATE WebSocketDeflateStream : public WebSocketStream {
public:
explicit WebSocketDeflateStream(scoped_ptr<WebSocketStream> stream);
virtual ~WebSocketDeflateStream();
// WebSocketStream functions.
virtual int ReadFrames(ScopedVector<WebSocketFrame>* frames,
const CompletionCallback& callback) OVERRIDE;
virtual int WriteFrames(ScopedVector<WebSocketFrame>* frames,
const CompletionCallback& callback) OVERRIDE;
virtual void Close() OVERRIDE;
virtual std::string GetSubProtocol() const OVERRIDE;
virtual std::string GetExtensions() const OVERRIDE;
virtual int SendHandshakeRequest(const GURL& url,
const HttpRequestHeaders& headers,
HttpResponseInfo* response_info,
const CompletionCallback& callback) OVERRIDE;
virtual int ReadHandshakeResponse(const CompletionCallback& callback)
OVERRIDE;
private:
enum ReadingState {
READING_COMPRESSED_MESSAGE,
READING_UNCOMPRESSED_MESSAGE,
NOT_READING,
};
enum WritingState {
WRITING_COMPRESSED_MESSAGE,
WRITING_UNCOMPRESSED_MESSAGE,
NOT_WRITING,
};
void OnReadComplete(ScopedVector<WebSocketFrame>* frames,
const CompletionCallback& callback,
int result);
// This function deflates |frames| and stores the result to |frames| itself.
int Deflate(ScopedVector<WebSocketFrame>* frames);
// This function inflates |frames| and stores the result to |frames| itself.
int Inflate(ScopedVector<WebSocketFrame>* frames);
int InflateAndReadIfNecessary(ScopedVector<WebSocketFrame>* frames,
const CompletionCallback& callback);
const scoped_ptr<WebSocketStream> stream_;
WebSocketDeflater deflater_;
WebSocketInflater inflater_;
ReadingState reading_state_;
WritingState writing_state_;
WebSocketFrameHeader::OpCode current_reading_opcode_;
WebSocketFrameHeader::OpCode current_writing_opcode_;
DISALLOW_COPY_AND_ASSIGN(WebSocketDeflateStream);
};
} // namespace net
#endif // NET_WEBSOCKETS_WEBSOCKET_DEFLATE_STREAM_H_