| // 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 epoll-specific helper for QuicConnection which uses |
| // EpollAlarm for alarms, and used an int fd_ for writing data. |
| |
| #ifndef QUICHE_QUIC_CORE_QUIC_EPOLL_CONNECTION_HELPER_H_ |
| #define QUICHE_QUIC_CORE_QUIC_EPOLL_CONNECTION_HELPER_H_ |
| |
| #include <sys/types.h> |
| #include <set> |
| |
| #include "net/third_party/quiche/src/quic/core/quic_buffer_pool_google3.h" |
| #include "net/third_party/quiche/src/quic/core/quic_connection.h" |
| #include "net/third_party/quiche/src/quic/core/quic_default_packet_writer.h" |
| #include "net/third_party/quiche/src/quic/core/quic_packet_writer.h" |
| #include "net/third_party/quiche/src/quic/core/quic_packets.h" |
| #include "net/third_party/quiche/src/quic/core/quic_simple_buffer_allocator.h" |
| #include "net/third_party/quiche/src/quic/core/quic_time.h" |
| #include "net/third_party/quiche/src/quic/platform/api/quic_epoll.h" |
| #include "net/third_party/quiche/src/quic/platform/api/quic_socket_address.h" |
| #include "net/quic/platform/impl/quic_epoll_clock.h" |
| |
| namespace gfe2 { |
| class EpollServer; |
| } // namespace gfe2 |
| |
| namespace quic { |
| |
| class QuicRandom; |
| class AckAlarm; |
| class RetransmissionAlarm; |
| class SendAlarm; |
| class TimeoutAlarm; |
| |
| // Create a buffer free list using no more than 8 * 8MB memory. |
| // Google3-specific; Chromium should just use SimpleBufferAllocator. |
| using QuicStreamFrameBufferAllocator = QuicBufferPool<kMaxPacketSize, 8>; |
| using QuicStreamBufferAllocator = |
| QuicBufferPool<kQuicStreamSendBufferSliceSize, 8>; |
| |
| enum class QuicAllocator { SIMPLE, BUFFER_POOL }; |
| |
| class QuicEpollConnectionHelper : public QuicConnectionHelperInterface { |
| public: |
| QuicEpollConnectionHelper(QuicEpollServer* eps, QuicAllocator allocator); |
| QuicEpollConnectionHelper(const QuicEpollConnectionHelper&) = delete; |
| QuicEpollConnectionHelper& operator=(const QuicEpollConnectionHelper&) = |
| delete; |
| ~QuicEpollConnectionHelper() override; |
| |
| // QuicConnectionHelperInterface |
| const QuicClock* GetClock() const override; |
| QuicRandom* GetRandomGenerator() override; |
| QuicBufferAllocator* GetStreamSendBufferAllocator() override; |
| |
| private: |
| friend class QuicEpollConnectionHelperPeer; |
| |
| const QuicEpollClock clock_; |
| QuicRandom* random_generator_; |
| // Set up allocators. They take up minimal memory before use. |
| // Allocator for stream send buffers. |
| QuicStreamBufferAllocator stream_buffer_allocator_; |
| SimpleBufferAllocator simple_buffer_allocator_; |
| QuicAllocator allocator_type_; |
| }; |
| |
| } // namespace quic |
| |
| #endif // QUICHE_QUIC_CORE_QUIC_EPOLL_CONNECTION_HELPER_H_ |