wub | f975eac | 2019-08-19 19:41:01 -0700 | [diff] [blame] | 1 | // Copyright (c) 2019 The Chromium Authors. All rights reserved. |
| 2 | // Use of this source code is governed by a BSD-style license that can be |
| 3 | // found in the LICENSE file. |
| 4 | |
| 5 | #ifndef QUICHE_QUIC_QBONE_QBONE_SESSION_BASE_H_ |
| 6 | #define QUICHE_QUIC_QBONE_QBONE_SESSION_BASE_H_ |
| 7 | |
| 8 | #include "net/third_party/quiche/src/quic/core/quic_crypto_server_stream.h" |
| 9 | #include "net/third_party/quiche/src/quic/core/quic_crypto_stream.h" |
| 10 | #include "net/third_party/quiche/src/quic/core/quic_error_codes.h" |
| 11 | #include "net/third_party/quiche/src/quic/core/quic_session.h" |
| 12 | #include "net/third_party/quiche/src/quic/platform/api/quic_containers.h" |
| 13 | #include "net/third_party/quiche/src/quic/platform/api/quic_export.h" |
| 14 | #include "net/third_party/quiche/src/quic/qbone/qbone_packet_writer.h" |
| 15 | #include "net/third_party/quiche/src/quic/qbone/qbone_stream.h" |
| 16 | |
| 17 | namespace quic { |
| 18 | |
| 19 | class QUIC_EXPORT_PRIVATE QboneSessionBase : public QuicSession { |
| 20 | public: |
| 21 | QboneSessionBase(QuicConnection* connection, |
| 22 | Visitor* owner, |
| 23 | const QuicConfig& config, |
| 24 | const ParsedQuicVersionVector& supported_versions, |
| 25 | QbonePacketWriter* writer); |
| 26 | QboneSessionBase(const QboneSessionBase&) = delete; |
| 27 | QboneSessionBase& operator=(const QboneSessionBase&) = delete; |
| 28 | ~QboneSessionBase() override; |
| 29 | |
| 30 | // Overrides from QuicSession. |
| 31 | // This will ensure that the crypto session is created. |
| 32 | void Initialize() override; |
| 33 | // This will ensure that we keep track of stream ids that can be |
| 34 | // write blocked. |
| 35 | void CloseStream(QuicStreamId stream_id) override; |
| 36 | // This will check if the packet is wholly contained. |
| 37 | void OnStreamFrame(const QuicStreamFrame& frame) override; |
| 38 | |
| 39 | virtual void ProcessPacketFromNetwork(QuicStringPiece packet) = 0; |
| 40 | virtual void ProcessPacketFromPeer(QuicStringPiece packet) = 0; |
| 41 | |
| 42 | // Returns the number of qbone network packets that were received |
| 43 | // that fit into a single QuicStreamFrame and elided the creation of |
| 44 | // a QboneReadOnlyStream. |
| 45 | uint64_t GetNumEphemeralPackets() const; |
| 46 | |
| 47 | // Returns the number of qbone network packets that were via |
| 48 | // multiple packets, requiring the creation of a QboneReadOnlyStream. |
| 49 | uint64_t GetNumStreamedPackets() const; |
| 50 | |
| 51 | void set_writer(QbonePacketWriter* writer); |
| 52 | |
| 53 | protected: |
| 54 | virtual std::unique_ptr<QuicCryptoStream> CreateCryptoStream() = 0; |
| 55 | |
| 56 | // QuicSession interface implementation. |
| 57 | QuicCryptoStream* GetMutableCryptoStream() override; |
| 58 | const QuicCryptoStream* GetCryptoStream() const override; |
| 59 | QuicStream* CreateIncomingStream(QuicStreamId id) override; |
| 60 | QuicStream* CreateIncomingStream(PendingStream* pending) override; |
| 61 | bool ShouldKeepConnectionAlive() const override; |
| 62 | |
| 63 | bool MaybeIncreaseLargestPeerStreamId(const QuicStreamId stream_id) override { |
| 64 | return true; |
| 65 | } |
| 66 | |
| 67 | QuicStream* CreateOutgoingStream(); |
| 68 | std::unique_ptr<QuicStream> CreateDataStream(QuicStreamId id); |
| 69 | // Activates a QuicStream. The session takes ownership of the stream, but |
| 70 | // returns an unowned pointer to the stream for convenience. |
| 71 | QuicStream* ActivateDataStream(std::unique_ptr<QuicStream> stream); |
| 72 | |
| 73 | // Accepts a given packet from the network and writes it out |
| 74 | // to the QUIC stream. This will create an ephemeral stream per |
| 75 | // packet. This function will return true if a stream was created |
| 76 | // and the packet sent. It will return false if the stream could not |
| 77 | // be created. |
| 78 | void SendPacketToPeer(QuicStringPiece packet); |
| 79 | |
| 80 | QbonePacketWriter* writer_; |
| 81 | |
| 82 | private: |
| 83 | // Used for the crypto handshake. |
| 84 | std::unique_ptr<QuicCryptoStream> crypto_stream_; |
| 85 | |
| 86 | uint64_t num_ephemeral_packets_ = 0; |
| 87 | uint64_t num_streamed_packets_ = 0; |
| 88 | QuicUnorderedSet<QuicStreamId> reliable_streams_; |
| 89 | }; |
| 90 | |
| 91 | } // namespace quic |
| 92 | |
| 93 | #endif // QUICHE_QUIC_QBONE_QBONE_SESSION_BASE_H_ |