blob: 64f1f9536af523cce58515a2c934d8b9e86d9406 [file] [log] [blame]
/** @file
*
* A brief file description
*
* @section license License
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#pragma once
#include <deque>
#include "QUICFrame.h"
class QUICFrameGenerator;
struct QUICFrameInformation {
QUICFrameType type;
QUICEncryptionLevel level;
uint8_t data[128] = {};
};
struct QUICFrameInformationDeleter {
void operator()(QUICFrameInformation *p) const;
};
using QUICFrameInformationUPtr = std::unique_ptr<QUICFrameInformation, QUICFrameInformationDeleter>;
constexpr QUICFrameType RETRANSMITTED_FRAME_TYPE[] = {QUICFrameType::STREAM, QUICFrameType::CRYPTO};
struct StreamFrameInfo {
QUICStreamId stream_id;
QUICOffset offset;
bool has_fin;
Ptr<IOBufferBlock> block;
};
struct CryptoFrameInfo {
QUICOffset offset;
Ptr<IOBufferBlock> block;
};
struct RstStreamFrameInfo {
QUICAppErrorCode error_code;
QUICOffset final_offset;
};
struct StopSendingFrameInfo {
QUICAppErrorCode error_code;
};
struct AckFrameInfo {
QUICPacketNumber largest_acknowledged;
};
class QUICFrameRetransmitter
{
public:
virtual QUICFrame *create_retransmitted_frame(uint8_t *buf, QUICEncryptionLevel level, uint16_t maximum_frame_size,
QUICFrameId id = 0, QUICFrameGenerator *owner = nullptr);
virtual void save_frame_info(QUICFrameInformationUPtr info);
bool is_retransmited_frame_queue_empty() const;
private:
QUICFrame *_create_stream_frame(uint8_t *buf, QUICFrameInformationUPtr &info, uint16_t maximum_frame_size,
std::deque<QUICFrameInformationUPtr> &tmp_queue, QUICFrameId id, QUICFrameGenerator *owner);
QUICFrame *_create_crypto_frame(uint8_t *buf, QUICFrameInformationUPtr &info, uint16_t maximum_frame_size,
std::deque<QUICFrameInformationUPtr> &tmp_queue, QUICFrameId id, QUICFrameGenerator *owner);
void _append_info_queue(std::deque<QUICFrameInformationUPtr> &tmp_queue);
std::deque<QUICFrameInformationUPtr> _lost_frame_info_queue;
};
extern ClassAllocator<QUICFrameInformation> quicFrameInformationAllocator;
inline void
QUICFrameInformationDeleter::operator()(QUICFrameInformation *p) const
{
quicFrameInformationAllocator.free(p);
}