blob: 5bd526f846992ea89d4c8d79dfd4cf4447ef7287 [file] [log] [blame]
// Copyright (c) 2012 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.
//
// The Google-specific helper for QuicConnection which uses
// EpollAlarm for alarms, and used an int fd_ for writing data.
#ifndef NET_TOOLS_QUIC_QUIC_EPOLL_CONNECTION_HELPER_H_
#define NET_TOOLS_QUIC_QUIC_EPOLL_CONNECTION_HELPER_H_
#include <sys/types.h>
#include <set>
#include "net/quic/quic_connection.h"
#include "net/quic/quic_protocol.h"
#include "net/quic/quic_time.h"
#include "net/tools/quic/quic_epoll_clock.h"
#include "net/tools/quic/quic_packet_writer.h"
namespace net {
class EpollServer;
class QuicRandom;
namespace tools {
class AckAlarm;
class RetransmissionAlarm;
class SendAlarm;
class TimeoutAlarm;
namespace test {
class QuicEpollConnectionHelperPeer;
} // namespace test
class QuicEpollConnectionHelper : public QuicConnectionHelperInterface {
public:
QuicEpollConnectionHelper(int fd, EpollServer* eps);
QuicEpollConnectionHelper(QuicPacketWriter* writer, EpollServer* eps);
virtual ~QuicEpollConnectionHelper();
// QuicEpollConnectionHelperInterface
virtual void SetConnection(QuicConnection* connection) OVERRIDE;
virtual const QuicClock* GetClock() const OVERRIDE;
virtual QuicRandom* GetRandomGenerator() OVERRIDE;
virtual int WritePacketToWire(const QuicEncryptedPacket& packet,
int* error) OVERRIDE;
virtual bool IsWriteBlockedDataBuffered() OVERRIDE;
virtual bool IsWriteBlocked(int error) OVERRIDE;
virtual QuicAlarm* CreateAlarm(QuicAlarm::Delegate* delegate) OVERRIDE;
EpollServer* epoll_server() { return epoll_server_; }
private:
friend class QuicConnectionPeer;
friend class net::tools::test::QuicEpollConnectionHelperPeer;
QuicPacketWriter* writer_; // Not owned
EpollServer* epoll_server_; // Not owned.
int fd_;
QuicConnection* connection_;
const QuicEpollClock clock_;
QuicRandom* random_generator_;
DISALLOW_COPY_AND_ASSIGN(QuicEpollConnectionHelper);
};
} // namespace tools
} // namespace net
#endif // NET_TOOLS_QUIC_QUIC_EPOLL_CONNECTION_HELPER_H_