tdlight/tdnet/td/net/HttpChunkedByteFlow.cpp

76 lines
2.0 KiB
C++

//
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2024
//
// 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)
//
#include "td/net/HttpChunkedByteFlow.h"
#include "td/utils/find_boundary.h"
#include "td/utils/format.h"
#include "td/utils/misc.h"
#include "td/utils/SliceBuilder.h"
#include "td/utils/Status.h"
namespace td {
bool HttpChunkedByteFlow::loop() {
bool result = false;
do {
if (state_ == State::ReadChunkLength) {
bool ok = find_boundary(input_->clone(), "\r\n", len_);
if (len_ > 8) {
finish(Status::Error(PSLICE() << "Too long length in chunked "
<< input_->cut_head(len_).move_as_buffer_slice().as_slice()));
return false;
}
if (!ok) {
set_need_size(input_->size() + 1);
break;
}
auto s_len = input_->cut_head(len_).move_as_buffer_slice();
input_->advance(2);
len_ = hex_to_integer<size_t>(s_len.as_slice());
save_len_ = len_;
state_ = State::ReadChunkContent;
}
auto size = input_->size();
auto ready = min(len_, size);
auto need_size = min(MIN_UPDATE_SIZE, len_) + 2;
if (size < need_size) {
set_need_size(need_size);
break;
}
if (total_size_ > MAX_SIZE - ready) {
finish(Status::Error(PSLICE() << "Too big query " << tag("size", input_->size())));
return false;
}
total_size_ += ready;
output_.append(input_->cut_head(ready));
result = true;
len_ -= ready;
if (len_ == 0) {
if (input_->size() < 2) {
set_need_size(2);
break;
}
input_->advance(2);
total_size_ += 2;
if (save_len_ == 0) {
finish(Status::OK());
return false;
}
state_ = State::ReadChunkLength;
}
} while (false);
if (!is_input_active_ && !result) {
finish(Status::Error("Unexpected end of stream"));
}
return result;
}
} // namespace td