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/utils/tl_parsers.h"
|
|
|
|
|
|
|
|
namespace td {
|
|
|
|
|
2018-02-12 18:21:29 +01:00
|
|
|
alignas(4) const unsigned char TlParser::empty_data[sizeof(UInt256)] = {}; // static zero-initialized
|
2018-12-31 20:04:05 +01:00
|
|
|
|
|
|
|
void TlParser::set_error(const string &error_message) {
|
|
|
|
if (error.empty()) {
|
|
|
|
CHECK(!error_message.empty());
|
|
|
|
error = error_message;
|
|
|
|
error_pos = data_len - left_len;
|
|
|
|
data = empty_data;
|
|
|
|
left_len = 0;
|
|
|
|
data_len = 0;
|
|
|
|
} else {
|
|
|
|
data = empty_data;
|
|
|
|
CHECK(error_pos != std::numeric_limits<size_t>::max());
|
2019-02-12 17:17:20 +01:00
|
|
|
LOG_CHECK(data_len == 0) << data_len << " " << left_len << " " << data << " " << &empty_data[0] << " " << error_pos
|
2019-02-12 22:28:47 +01:00
|
|
|
<< " " << error;
|
2018-12-31 20:04:05 +01:00
|
|
|
CHECK(left_len == 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace td
|