|  | // Copyright (c) 2019 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 QUICHE_QUIC_QBONE_QBONE_SESSION_BASE_H_ | 
|  | #define QUICHE_QUIC_QBONE_QBONE_SESSION_BASE_H_ | 
|  |  | 
|  | #include "absl/strings/string_view.h" | 
|  | #include "quic/core/quic_crypto_server_stream_base.h" | 
|  | #include "quic/core/quic_crypto_stream.h" | 
|  | #include "quic/core/quic_error_codes.h" | 
|  | #include "quic/core/quic_session.h" | 
|  | #include "quic/platform/api/quic_containers.h" | 
|  | #include "quic/platform/api/quic_export.h" | 
|  | #include "quic/qbone/qbone_packet_writer.h" | 
|  | #include "quic/qbone/qbone_stream.h" | 
|  |  | 
|  | namespace quic { | 
|  |  | 
|  | class QUIC_EXPORT_PRIVATE QboneSessionBase : public QuicSession { | 
|  | public: | 
|  | QboneSessionBase(QuicConnection* connection, | 
|  | Visitor* owner, | 
|  | const QuicConfig& config, | 
|  | const ParsedQuicVersionVector& supported_versions, | 
|  | QbonePacketWriter* writer); | 
|  | QboneSessionBase(const QboneSessionBase&) = delete; | 
|  | QboneSessionBase& operator=(const QboneSessionBase&) = delete; | 
|  | ~QboneSessionBase() override; | 
|  |  | 
|  | // Overrides from QuicSession. | 
|  | // This will ensure that the crypto session is created. | 
|  | void Initialize() override; | 
|  | // This will check if the packet is wholly contained. | 
|  | void OnStreamFrame(const QuicStreamFrame& frame) override; | 
|  | // Called whenever a MESSAGE frame is received. | 
|  | void OnMessageReceived(absl::string_view message) override; | 
|  |  | 
|  | virtual void ProcessPacketFromNetwork(absl::string_view packet) = 0; | 
|  | virtual void ProcessPacketFromPeer(absl::string_view packet) = 0; | 
|  |  | 
|  | // Returns the number of QBONE network packets that were received | 
|  | // that fit into a single QuicStreamFrame and elided the creation of | 
|  | // a QboneReadOnlyStream. | 
|  | uint64_t GetNumEphemeralPackets() const; | 
|  |  | 
|  | // Returns the number of QBONE network packets that were via | 
|  | // multiple packets, requiring the creation of a QboneReadOnlyStream. | 
|  | uint64_t GetNumStreamedPackets() const; | 
|  |  | 
|  | // Returns the number of QBONE network packets that were received using QUIC | 
|  | // MESSAGE frame. | 
|  | uint64_t GetNumMessagePackets() const; | 
|  |  | 
|  | // Returns the number of times sending a MESSAGE frame failed, and the session | 
|  | // used an ephemeral stream instead. | 
|  | uint64_t GetNumFallbackToStream() const; | 
|  |  | 
|  | void set_writer(QbonePacketWriter* writer); | 
|  | void set_send_packets_as_messages(bool send_packets_as_messages) { | 
|  | send_packets_as_messages_ = send_packets_as_messages; | 
|  | } | 
|  |  | 
|  | protected: | 
|  | virtual std::unique_ptr<QuicCryptoStream> CreateCryptoStream() = 0; | 
|  |  | 
|  | // QuicSession interface implementation. | 
|  | QuicCryptoStream* GetMutableCryptoStream() override; | 
|  | const QuicCryptoStream* GetCryptoStream() const override; | 
|  | QuicStream* CreateIncomingStream(QuicStreamId id) override; | 
|  | QuicStream* CreateIncomingStream(PendingStream* pending) override; | 
|  | bool ShouldKeepConnectionAlive() const override; | 
|  |  | 
|  | bool MaybeIncreaseLargestPeerStreamId(const QuicStreamId stream_id) override { | 
|  | return true; | 
|  | } | 
|  |  | 
|  | QuicStream* CreateOutgoingStream(); | 
|  | std::unique_ptr<QuicStream> CreateDataStream(QuicStreamId id); | 
|  | // Activates a QuicStream.  The session takes ownership of the stream, but | 
|  | // returns an unowned pointer to the stream for convenience. | 
|  | QuicStream* ActivateDataStream(std::unique_ptr<QuicStream> stream); | 
|  |  | 
|  | // Accepts a given packet from the network and writes it out | 
|  | // to the QUIC stream. This will create an ephemeral stream per | 
|  | // packet. This function will return true if a stream was created | 
|  | // and the packet sent. It will return false if the stream could not | 
|  | // be created. | 
|  | void SendPacketToPeer(absl::string_view packet); | 
|  |  | 
|  | QbonePacketWriter* writer_; | 
|  |  | 
|  | // If true, MESSAGE frames are used for short datagrams.  If false, ephemeral | 
|  | // streams are used instead.  Note that receiving MESSAGE frames is always | 
|  | // supported. | 
|  | bool send_packets_as_messages_ = false; | 
|  |  | 
|  | private: | 
|  | // Used for the crypto handshake. | 
|  | std::unique_ptr<QuicCryptoStream> crypto_stream_; | 
|  |  | 
|  | // Statistics for the packets received by the session. | 
|  | uint64_t num_ephemeral_packets_ = 0; | 
|  | uint64_t num_message_packets_ = 0; | 
|  | uint64_t num_streamed_packets_ = 0; | 
|  |  | 
|  | // Number of times the connection has failed to send packets as MESSAGE frame | 
|  | // and used streams as a fallback. | 
|  | uint64_t num_fallback_to_stream_ = 0; | 
|  | }; | 
|  |  | 
|  | }  // namespace quic | 
|  |  | 
|  | #endif  // QUICHE_QUIC_QBONE_QBONE_SESSION_BASE_H_ |