| // Copyright (c) 2018 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_CORE_QPACK_QPACK_ENCODER_STREAM_SENDER_H_ |
| #define QUICHE_QUIC_CORE_QPACK_QPACK_ENCODER_STREAM_SENDER_H_ |
| |
| #include <cstdint> |
| |
| #include "net/third_party/quiche/src/quic/core/qpack/qpack_instruction_encoder.h" |
| #include "net/third_party/quiche/src/quic/core/qpack/qpack_stream_sender_delegate.h" |
| #include "net/third_party/quiche/src/quic/core/quic_types.h" |
| #include "net/third_party/quiche/src/quic/platform/api/quic_export.h" |
| #include "net/third_party/quiche/src/quic/platform/api/quic_string_piece.h" |
| |
| namespace quic { |
| |
| // This class serializes instructions for transmission on the encoder stream. |
| class QUIC_EXPORT_PRIVATE QpackEncoderStreamSender { |
| public: |
| QpackEncoderStreamSender(); |
| QpackEncoderStreamSender(const QpackEncoderStreamSender&) = delete; |
| QpackEncoderStreamSender& operator=(const QpackEncoderStreamSender&) = delete; |
| |
| // Methods for sending instructions, see |
| // https://quicwg.org/base-drafts/draft-ietf-quic-qpack.html#rfc.section.5.2 |
| |
| // 5.2.1. Insert With Name Reference |
| QuicByteCount SendInsertWithNameReference(bool is_static, |
| uint64_t name_index, |
| QuicStringPiece value); |
| // 5.2.2. Insert Without Name Reference |
| QuicByteCount SendInsertWithoutNameReference(QuicStringPiece name, |
| QuicStringPiece value); |
| // 5.2.3. Duplicate |
| QuicByteCount SendDuplicate(uint64_t index); |
| // 5.2.4. Set Dynamic Table Capacity |
| QuicByteCount SendSetDynamicTableCapacity(uint64_t capacity); |
| |
| // delegate must be set if dynamic table capacity is not zero. |
| void set_qpack_stream_sender_delegate(QpackStreamSenderDelegate* delegate) { |
| delegate_ = delegate; |
| } |
| |
| private: |
| QpackStreamSenderDelegate* delegate_; |
| QpackInstructionEncoder instruction_encoder_; |
| QpackInstructionEncoder::Values values_; |
| }; |
| |
| } // namespace quic |
| |
| #endif // QUICHE_QUIC_CORE_QPACK_QPACK_ENCODER_STREAM_SENDER_H_ |