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 | #include "net/third_party/quiche/src/quic/core/qpack/qpack_decoder_stream_receiver.h" |
| 6 | |
vasilvv | 7cac7b0 | 2020-10-08 12:32:10 -0700 | [diff] [blame^] | 7 | #include "absl/strings/string_view.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 8 | #include "net/third_party/quiche/src/http2/decoder/decode_buffer.h" |
| 9 | #include "net/third_party/quiche/src/http2/decoder/decode_status.h" |
bnc | 3b58cfc | 2019-11-27 12:52:39 -0800 | [diff] [blame] | 10 | #include "net/third_party/quiche/src/quic/core/qpack/qpack_instructions.h" |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 11 | |
| 12 | namespace quic { |
| 13 | |
| 14 | QpackDecoderStreamReceiver::QpackDecoderStreamReceiver(Delegate* delegate) |
| 15 | : instruction_decoder_(QpackDecoderStreamLanguage(), this), |
| 16 | delegate_(delegate), |
| 17 | error_detected_(false) { |
| 18 | DCHECK(delegate_); |
| 19 | } |
| 20 | |
vasilvv | 7cac7b0 | 2020-10-08 12:32:10 -0700 | [diff] [blame^] | 21 | void QpackDecoderStreamReceiver::Decode(absl::string_view data) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 22 | if (data.empty() || error_detected_) { |
| 23 | return; |
| 24 | } |
| 25 | |
| 26 | instruction_decoder_.Decode(data); |
| 27 | } |
| 28 | |
| 29 | bool QpackDecoderStreamReceiver::OnInstructionDecoded( |
| 30 | const QpackInstruction* instruction) { |
| 31 | if (instruction == InsertCountIncrementInstruction()) { |
| 32 | delegate_->OnInsertCountIncrement(instruction_decoder_.varint()); |
| 33 | return true; |
| 34 | } |
| 35 | |
| 36 | if (instruction == HeaderAcknowledgementInstruction()) { |
| 37 | delegate_->OnHeaderAcknowledgement(instruction_decoder_.varint()); |
| 38 | return true; |
| 39 | } |
| 40 | |
| 41 | DCHECK_EQ(instruction, StreamCancellationInstruction()); |
| 42 | delegate_->OnStreamCancellation(instruction_decoder_.varint()); |
| 43 | return true; |
| 44 | } |
| 45 | |
vasilvv | 7cac7b0 | 2020-10-08 12:32:10 -0700 | [diff] [blame^] | 46 | void QpackDecoderStreamReceiver::OnError(absl::string_view error_message) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 47 | DCHECK(!error_detected_); |
| 48 | |
| 49 | error_detected_ = true; |
| 50 | delegate_->OnErrorDetected(error_message); |
| 51 | } |
| 52 | |
| 53 | } // namespace quic |