blob: 18852719e80ca7a49fa73301b1419623f4bd9566 [file] [log] [blame]
// Copyright 2014 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_TOOLS_QUIC_QUIC_SIMPLE_PER_CONNECTION_PACKET_WRITER_H_
#define NET_TOOLS_QUIC_QUIC_SIMPLE_PER_CONNECTION_PACKET_WRITER_H_
#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "net/third_party/quic/core/quic_connection.h"
#include "net/third_party/quic/core/quic_packet_writer.h"
#include "starboard/types.h"
namespace net {
class QuicSimpleServerPacketWriter;
// A connection-specific packet writer that notifies its connection when its
// writes to the shared QuicServerPacketWriter complete.
// This class is necessary because multiple connections can share the same
// QuicServerPacketWriter, so it has no way to know which connection to notify.
class QuicSimplePerConnectionPacketWriter : public quic::QuicPacketWriter {
public:
// Does not take ownership of |shared_writer| or |connection|.
QuicSimplePerConnectionPacketWriter(
QuicSimpleServerPacketWriter* shared_writer);
~QuicSimplePerConnectionPacketWriter() override;
quic::QuicPacketWriter* shared_writer() const;
void set_connection(quic::QuicConnection* connection) {
connection_ = connection;
}
quic::QuicConnection* connection() const { return connection_; }
// Default implementation of the quic::QuicPacketWriter interface: Passes
// everything to |shared_writer_|.
quic::WriteResult WritePacket(const char* buffer,
size_t buf_len,
const quic::QuicIpAddress& self_address,
const quic::QuicSocketAddress& peer_address,
quic::PerPacketOptions* options) override;
#if !defined(COBALT_QUIC46)
bool IsWriteBlockedDataBuffered() const override;
#endif
bool IsWriteBlocked() const override;
void SetWritable() override;
quic::QuicByteCount GetMaxPacketSize(
const quic::QuicSocketAddress& peer_address) const override;
private:
void OnWriteComplete(quic::WriteResult result);
QuicSimpleServerPacketWriter* shared_writer_; // Not owned.
quic::QuicConnection* connection_; // Not owned.
base::WeakPtrFactory<QuicSimplePerConnectionPacketWriter> weak_factory_;
DISALLOW_COPY_AND_ASSIGN(QuicSimplePerConnectionPacketWriter);
};
} // namespace net
#endif // NET_TOOLS_QUIC_QUIC_SIMPLE_PER_CONNECTION_PACKET_WRITER_H_