QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1 | // Copyright (c) 2018 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_CORE_QPACK_QPACK_ENCODER_STREAM_RECEIVER_H_ |
| 6 | #define QUICHE_QUIC_CORE_QPACK_QPACK_ENCODER_STREAM_RECEIVER_H_ |
| 7 | |
| 8 | #include <cstdint> |
vasilvv | 872e7a3 | 2019-03-12 16:42:44 -0700 | [diff] [blame] | 9 | #include <string> |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 10 | |
| 11 | #include "net/third_party/quiche/src/quic/core/qpack/qpack_instruction_decoder.h" |
renjietang | b932f95 | 2019-06-28 11:33:11 -0700 | [diff] [blame] | 12 | #include "net/third_party/quiche/src/quic/core/qpack/qpack_stream_receiver.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 13 | #include "net/third_party/quiche/src/quic/platform/api/quic_export.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 14 | #include "net/third_party/quiche/src/quic/platform/api/quic_string_piece.h" |
| 15 | |
| 16 | namespace quic { |
| 17 | |
| 18 | // This class decodes data received on the encoder stream. |
| 19 | class QUIC_EXPORT_PRIVATE QpackEncoderStreamReceiver |
renjietang | b932f95 | 2019-06-28 11:33:11 -0700 | [diff] [blame] | 20 | : public QpackInstructionDecoder::Delegate, |
| 21 | public QpackStreamReceiver { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 22 | public: |
| 23 | // An interface for handling instructions decoded from the encoder stream, see |
| 24 | // https://quicwg.org/base-drafts/draft-ietf-quic-qpack.html#rfc.section.5.2 |
| 25 | class Delegate { |
| 26 | public: |
| 27 | virtual ~Delegate() = default; |
| 28 | |
| 29 | // 5.2.1. Insert With Name Reference |
| 30 | virtual void OnInsertWithNameReference(bool is_static, |
| 31 | uint64_t name_index, |
| 32 | QuicStringPiece value) = 0; |
| 33 | // 5.2.2. Insert Without Name Reference |
| 34 | virtual void OnInsertWithoutNameReference(QuicStringPiece name, |
| 35 | QuicStringPiece value) = 0; |
| 36 | // 5.2.3. Duplicate |
| 37 | virtual void OnDuplicate(uint64_t index) = 0; |
| 38 | // 5.2.4. Set Dynamic Table Capacity |
| 39 | virtual void OnSetDynamicTableCapacity(uint64_t capacity) = 0; |
| 40 | // Decoding error |
| 41 | virtual void OnErrorDetected(QuicStringPiece error_message) = 0; |
| 42 | }; |
| 43 | |
| 44 | explicit QpackEncoderStreamReceiver(Delegate* delegate); |
| 45 | QpackEncoderStreamReceiver() = delete; |
| 46 | QpackEncoderStreamReceiver(const QpackEncoderStreamReceiver&) = delete; |
| 47 | QpackEncoderStreamReceiver& operator=(const QpackEncoderStreamReceiver&) = |
| 48 | delete; |
| 49 | ~QpackEncoderStreamReceiver() override = default; |
| 50 | |
renjietang | b932f95 | 2019-06-28 11:33:11 -0700 | [diff] [blame] | 51 | // Implements QpackStreamReceiver::Decode(). |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 52 | // Decode data and call appropriate Delegate method after each decoded |
| 53 | // instruction. Once an error occurs, Delegate::OnErrorDetected() is called, |
| 54 | // and all further data is ignored. |
renjietang | b932f95 | 2019-06-28 11:33:11 -0700 | [diff] [blame] | 55 | void Decode(QuicStringPiece data) override; |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 56 | |
| 57 | // QpackInstructionDecoder::Delegate implementation. |
| 58 | bool OnInstructionDecoded(const QpackInstruction* instruction) override; |
| 59 | void OnError(QuicStringPiece error_message) override; |
| 60 | |
| 61 | private: |
| 62 | QpackInstructionDecoder instruction_decoder_; |
| 63 | Delegate* const delegate_; |
| 64 | |
| 65 | // True if a decoding error has been detected. |
| 66 | bool error_detected_; |
| 67 | }; |
| 68 | |
| 69 | } // namespace quic |
| 70 | |
| 71 | #endif // QUICHE_QUIC_CORE_QPACK_QPACK_ENCODER_STREAM_RECEIVER_H_ |