2018-12-31 20:04:05 +01:00
|
|
|
//
|
2018-12-31 23:02:34 +01:00
|
|
|
// Copyright Aliaksei Levin (levlam@telegram.org), Arseny Smirnov (arseny30@gmail.com) 2014-2019
|
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)
|
|
|
|
//
|
|
|
|
#include "td/telegram/net/NetQueryCreator.h"
|
|
|
|
|
2018-08-06 18:04:21 +02:00
|
|
|
#include "td/utils/format.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
#include "td/utils/Gzip.h"
|
2018-07-17 13:27:24 +02:00
|
|
|
#include "td/utils/logging.h"
|
2018-08-10 20:54:17 +02:00
|
|
|
#include "td/utils/Slice.h"
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
namespace td {
|
2018-04-24 18:21:47 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
NetQueryCreator::Ptr NetQueryCreator::create(uint64 id, const Storer &storer, DcId dc_id, NetQuery::Type type,
|
|
|
|
NetQuery::AuthFlag auth_flag, NetQuery::GzipFlag gzip_flag,
|
|
|
|
double total_timeout_limit) {
|
|
|
|
BufferSlice slice(storer.size());
|
2018-07-06 22:33:11 +02:00
|
|
|
auto real_size = storer.store(slice.as_slice().ubegin());
|
2018-08-06 18:04:21 +02:00
|
|
|
CHECK(real_size == slice.size()) << real_size << " " << slice.size() << " "
|
|
|
|
<< format::as_hex_dump<4>(Slice(slice.as_slice()));
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
// TODO: magic constant
|
|
|
|
if (slice.size() < (1 << 8)) {
|
|
|
|
gzip_flag = NetQuery::GzipFlag::Off;
|
|
|
|
}
|
|
|
|
int32 tl_constructor = NetQuery::tl_magic(slice);
|
|
|
|
if (gzip_flag == NetQuery::GzipFlag::On) {
|
|
|
|
// TODO: try to compress files?
|
2018-06-08 20:42:04 +02:00
|
|
|
BufferSlice compressed = gzencode(slice.as_slice());
|
2018-12-31 20:04:05 +01:00
|
|
|
if (compressed.empty()) {
|
|
|
|
gzip_flag = NetQuery::GzipFlag::Off;
|
|
|
|
} else {
|
|
|
|
slice = std::move(compressed);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
auto query = object_pool_.create(NetQuery::State::Query, id, std::move(slice), BufferSlice(), dc_id, type, auth_flag,
|
|
|
|
gzip_flag, tl_constructor);
|
|
|
|
query->set_cancellation_token(query.generation());
|
|
|
|
query->total_timeout_limit = total_timeout_limit;
|
|
|
|
return query;
|
|
|
|
}
|
2018-04-24 18:21:47 +02:00
|
|
|
|
2018-12-31 20:04:05 +01:00
|
|
|
} // namespace td
|