blob: 8da3147d1ea2505c5ba812c587eb17598a8094ce [file] [log] [blame]
QUICHE teama6ef0a62019-03-07 20:34:33 -05001// 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>
vasilvv872e7a32019-03-12 16:42:44 -07009#include <string>
QUICHE teama6ef0a62019-03-07 20:34:33 -050010
11#include "net/third_party/quiche/src/quic/core/qpack/qpack_instruction_decoder.h"
renjietangb932f952019-06-28 11:33:11 -070012#include "net/third_party/quiche/src/quic/core/qpack/qpack_stream_receiver.h"
QUICHE teama6ef0a62019-03-07 20:34:33 -050013#include "net/third_party/quiche/src/quic/platform/api/quic_export.h"
QUICHE teama6ef0a62019-03-07 20:34:33 -050014#include "net/third_party/quiche/src/quic/platform/api/quic_string_piece.h"
15
16namespace quic {
17
18// This class decodes data received on the encoder stream.
19class QUIC_EXPORT_PRIVATE QpackEncoderStreamReceiver
renjietangb932f952019-06-28 11:33:11 -070020 : public QpackInstructionDecoder::Delegate,
21 public QpackStreamReceiver {
QUICHE teama6ef0a62019-03-07 20:34:33 -050022 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
renjietangb932f952019-06-28 11:33:11 -070051 // Implements QpackStreamReceiver::Decode().
QUICHE teama6ef0a62019-03-07 20:34:33 -050052 // 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.
renjietangb932f952019-06-28 11:33:11 -070055 void Decode(QuicStringPiece data) override;
QUICHE teama6ef0a62019-03-07 20:34:33 -050056
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_