2018-12-31 20:04:05 +01:00
|
|
|
//
|
2022-01-01 01:35:39 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2022
|
2018-12-31 20:04:05 +01:00
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
//
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "td/utils/ByteFlow.h"
|
|
|
|
|
2020-07-26 13:24:30 +02:00
|
|
|
#include <limits>
|
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
namespace td {
|
|
|
|
|
|
|
|
class HttpChunkedByteFlow final : public ByteFlowBase {
|
|
|
|
public:
|
2021-07-03 22:51:36 +02:00
|
|
|
bool loop() final;
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
private:
|
2020-07-23 00:59:28 +02:00
|
|
|
static constexpr int MAX_CHUNK_SIZE = 15 << 20; // some reasonable limit
|
|
|
|
static constexpr int MAX_SIZE = std::numeric_limits<int32>::max(); // some reasonable limit
|
2018-12-31 20:04:05 +01:00
|
|
|
static constexpr size_t MIN_UPDATE_SIZE = 1 << 14;
|
2020-01-19 01:02:56 +01:00
|
|
|
enum class State { ReadChunkLength, ReadChunkContent, OK };
|
|
|
|
State state_ = State::ReadChunkLength;
|
2018-12-31 20:04:05 +01:00
|
|
|
size_t len_ = 0;
|
2018-10-26 16:11:20 +02:00
|
|
|
size_t save_len_ = 0;
|
2018-12-31 20:04:05 +01:00
|
|
|
size_t total_size_ = 0;
|
|
|
|
size_t uncommited_size_ = 0;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace td
|