mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-12 19:22:37 +00:00
* liteServer.getDispatchQueueInfo query * Fix getting min/max lt * LS getDispatchQueueMessages method
462 lines
23 KiB
C++
462 lines
23 KiB
C++
/*
|
|
This file is part of TON Blockchain source code.
|
|
|
|
TON Blockchain is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
TON Blockchain is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with TON Blockchain. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
In addition, as a special exception, the copyright holders give permission
|
|
to link the code of portions of this program with the OpenSSL library.
|
|
You must obey the GNU General Public License in all respects for all
|
|
of the code used other than OpenSSL. If you modify file(s) with this
|
|
exception, you may extend this exception to your version of the file(s),
|
|
but you are not obligated to do so. If you do not wish to do so, delete this
|
|
exception statement from your version. If you delete this exception statement
|
|
from all source files in the program, then also delete it here.
|
|
|
|
Copyright 2017-2020 Telegram Systems LLP
|
|
*/
|
|
#pragma once
|
|
#include "adnl/adnl-ext-client.h"
|
|
#include "tl-utils/tl-utils.hpp"
|
|
#include "ton/ton-types.h"
|
|
#include "terminal/terminal.h"
|
|
#include "vm/cells.h"
|
|
#include "vm/stack.hpp"
|
|
#include "block/block.h"
|
|
#include "block/mc-config.h"
|
|
#include "td/utils/filesystem.h"
|
|
#include "auto/tl/lite_api.h"
|
|
|
|
using td::Ref;
|
|
|
|
class TestNode : public td::actor::Actor {
|
|
private:
|
|
std::string global_config_ = "ton-global.config";
|
|
enum {
|
|
min_ls_version = 0x101,
|
|
min_ls_capabilities = 1
|
|
}; // server version >= 1.1, capabilities at least +1 = build proof chains
|
|
td::actor::ActorOwn<ton::adnl::AdnlExtClient> client_;
|
|
td::actor::ActorOwn<td::TerminalIO> io_;
|
|
|
|
bool readline_enabled_ = true;
|
|
bool server_ok_ = false;
|
|
td::int32 liteserver_idx_ = -1;
|
|
int print_limit_ = 1024;
|
|
|
|
bool ready_ = false;
|
|
bool inited_ = false;
|
|
std::string db_root_;
|
|
|
|
int server_time_ = 0;
|
|
int server_time_got_at_ = 0;
|
|
int server_version_ = 0;
|
|
long long server_capabilities_ = 0;
|
|
|
|
ton::ZeroStateIdExt zstate_id_;
|
|
ton::BlockIdExt mc_last_id_;
|
|
|
|
ton::BlockIdExt last_block_id_, last_state_id_;
|
|
td::BufferSlice last_block_data_, last_state_data_;
|
|
|
|
ton::StdSmcAddress dns_root_, elect_addr_, config_addr_;
|
|
bool dns_root_queried_{false}, elect_addr_queried_{false}, config_addr_queried_{false};
|
|
|
|
std::string line_;
|
|
const char *parse_ptr_, *parse_end_;
|
|
td::Status error_;
|
|
|
|
td::IPAddress remote_addr_;
|
|
ton::PublicKey remote_public_key_;
|
|
|
|
std::vector<ton::BlockIdExt> known_blk_ids_;
|
|
std::size_t shown_blk_ids_ = 0;
|
|
|
|
td::Timestamp fail_timeout_;
|
|
td::uint32 running_queries_ = 0;
|
|
bool ex_mode_ = false;
|
|
std::vector<td::BufferSlice> ex_queries_;
|
|
|
|
std::map<td::Bits256, Ref<vm::Cell>> cell_cache_;
|
|
|
|
std::unique_ptr<ton::adnl::AdnlExtClient::Callback> make_callback();
|
|
|
|
using creator_stats_func_t =
|
|
std::function<bool(const td::Bits256&, const block::DiscountedCounter&, const block::DiscountedCounter&)>;
|
|
|
|
struct TransId {
|
|
ton::Bits256 acc_addr;
|
|
ton::LogicalTime trans_lt;
|
|
ton::Bits256 trans_hash;
|
|
TransId(const ton::Bits256& addr_, ton::LogicalTime lt_, const ton::Bits256& hash_)
|
|
: acc_addr(addr_), trans_lt(lt_), trans_hash(hash_) {
|
|
}
|
|
};
|
|
|
|
struct BlockHdrInfo {
|
|
ton::BlockIdExt blk_id;
|
|
Ref<vm::Cell> proof, virt_blk_root;
|
|
int mode;
|
|
BlockHdrInfo() : mode(-1) {
|
|
}
|
|
BlockHdrInfo(const ton::BlockIdExt blk_id_, Ref<vm::Cell> proof_, Ref<vm::Cell> vroot_, int mode_)
|
|
: blk_id(blk_id_), proof(std::move(proof_)), virt_blk_root(std::move(vroot_)), mode(mode_) {
|
|
}
|
|
};
|
|
|
|
struct ConfigInfo {
|
|
std::unique_ptr<block::Config> config;
|
|
Ref<vm::Cell> state_proof, config_proof;
|
|
ConfigInfo() = default;
|
|
ConfigInfo(std::unique_ptr<block::Config> config_, Ref<vm::Cell> state_proof_, Ref<vm::Cell> config_proof_)
|
|
: config(std::move(config_)), state_proof(std::move(state_proof_)), config_proof(std::move(config_proof_)) {
|
|
}
|
|
};
|
|
|
|
struct CreatorStatsRes {
|
|
int mode;
|
|
bool complete{false};
|
|
td::Bits256 last_key;
|
|
Ref<vm::Cell> state_proof, data_proof;
|
|
CreatorStatsRes(int mode_ = 0) : mode(mode_) {
|
|
last_key.set_zero();
|
|
}
|
|
CreatorStatsRes(int mode_, const td::Bits256& key_, Ref<vm::Cell> st_proof_ = {}, Ref<vm::Cell> dproof_ = {})
|
|
: mode(mode_), last_key(key_), state_proof(std::move(st_proof_)), data_proof(std::move(dproof_)) {
|
|
}
|
|
};
|
|
|
|
struct ValidatorLoadInfo {
|
|
ton::BlockIdExt blk_id;
|
|
Ref<vm::Cell> state_proof, data_proof, virt_root;
|
|
std::unique_ptr<block::Config> config;
|
|
ton::UnixTime block_created_at{0};
|
|
ton::UnixTime valid_since{0};
|
|
ton::LogicalTime end_lt{0};
|
|
ton::Bits256 vset_hash;
|
|
Ref<vm::Cell> vset_root;
|
|
std::unique_ptr<block::ValidatorSet> vset;
|
|
std::map<ton::Bits256, int> vset_map;
|
|
int special_idx{-1};
|
|
std::pair<td::int64, td::int64> created_total, created_special;
|
|
std::vector<std::pair<td::int64, td::int64>> created;
|
|
ValidatorLoadInfo(ton::BlockIdExt blkid, Ref<vm::Cell> root, Ref<vm::Cell> root2,
|
|
std::unique_ptr<block::Config> cfg = {})
|
|
: blk_id(blkid)
|
|
, state_proof(std::move(root))
|
|
, data_proof(std::move(root2))
|
|
, config(std::move(cfg))
|
|
, valid_since(0) {
|
|
}
|
|
td::Status unpack_vset();
|
|
bool store_record(const td::Bits256& key, const block::DiscountedCounter& mc_cnt,
|
|
const block::DiscountedCounter& shard_cnt);
|
|
bool has_data() const {
|
|
return blk_id.is_masterchain_ext() && state_proof.not_null() && data_proof.not_null() && config;
|
|
}
|
|
td::Status check_header_proof(ton::UnixTime* save_utime = nullptr, ton::LogicalTime* save_lt = nullptr) const;
|
|
td::Result<Ref<vm::Cell>> build_proof(int idx, td::Bits256* save_pubkey = nullptr) const;
|
|
td::Result<Ref<vm::Cell>> build_producer_info(int idx, td::Bits256* save_pubkey = nullptr) const;
|
|
td::Status init_check_proofs();
|
|
static td::Result<std::unique_ptr<ValidatorLoadInfo>> preinit_from_producer_info(Ref<vm::Cell> prod_info);
|
|
td::Status load_special_creator_stat(const td::Bits256& spec_pubkey, bool load_total = true);
|
|
};
|
|
|
|
void run_init_queries();
|
|
char cur() const {
|
|
return *parse_ptr_;
|
|
}
|
|
bool get_server_time();
|
|
bool get_server_version(int mode = 0);
|
|
void got_server_version(td::Result<td::BufferSlice> res, int mode);
|
|
bool get_server_mc_block_id();
|
|
void got_server_mc_block_id(ton::BlockIdExt blkid, ton::ZeroStateIdExt zstateid, int created_at);
|
|
void got_server_mc_block_id_ext(ton::BlockIdExt blkid, ton::ZeroStateIdExt zstateid, int mode, int version,
|
|
long long capabilities, int last_utime, int server_now);
|
|
void set_server_version(td::int32 version, td::int64 capabilities);
|
|
void set_server_time(int server_utime);
|
|
bool request_block(ton::BlockIdExt blkid);
|
|
bool request_state(ton::BlockIdExt blkid);
|
|
void got_mc_block(ton::BlockIdExt blkid, td::BufferSlice data);
|
|
void got_mc_state(ton::BlockIdExt blkid, ton::RootHash root_hash, ton::FileHash file_hash, td::BufferSlice data);
|
|
td::Status send_ext_msg_from_filename(std::string filename);
|
|
td::Status save_db_file(ton::FileHash file_hash, td::BufferSlice data);
|
|
bool get_account_state(ton::WorkchainId workchain, ton::StdSmcAddress addr, ton::BlockIdExt ref_blkid,
|
|
int addr_ext = 0, std::string filename = "", int mode = -1, bool prunned = false);
|
|
void got_account_state(ton::BlockIdExt ref_blk, ton::BlockIdExt blk, ton::BlockIdExt shard_blk,
|
|
td::BufferSlice shard_proof, td::BufferSlice proof, td::BufferSlice state,
|
|
ton::WorkchainId workchain, ton::StdSmcAddress addr, std::string filename, int mode,
|
|
bool prunned);
|
|
bool parse_run_method(ton::WorkchainId workchain, ton::StdSmcAddress addr, ton::BlockIdExt ref_blkid, int addr_ext,
|
|
std::string method_name, bool ext_mode);
|
|
bool after_parse_run_method(ton::WorkchainId workchain, ton::StdSmcAddress addr, ton::BlockIdExt ref_blkid,
|
|
std::string method_name, std::vector<vm::StackEntry> params, bool ext_mode);
|
|
bool start_run_method(ton::WorkchainId workchain, ton::StdSmcAddress addr, ton::BlockIdExt ref_blkid,
|
|
std::string method_name, std::vector<vm::StackEntry> params, int mode,
|
|
td::Promise<std::vector<vm::StackEntry>> promise);
|
|
void run_smc_method(int mode, ton::BlockIdExt ref_blk, ton::BlockIdExt blk, ton::BlockIdExt shard_blk,
|
|
td::BufferSlice shard_proof, td::BufferSlice proof, td::BufferSlice state,
|
|
ton::WorkchainId workchain, ton::StdSmcAddress addr, std::string method,
|
|
std::vector<vm::StackEntry> params, td::BufferSlice remote_c7, td::BufferSlice remote_libs,
|
|
td::BufferSlice remote_result, int remote_exit_code,
|
|
td::Promise<std::vector<vm::StackEntry>> promise);
|
|
bool register_config_param(int idx, Ref<vm::Cell> value);
|
|
bool register_config_param0(Ref<vm::Cell> value);
|
|
bool register_config_param1(Ref<vm::Cell> value);
|
|
bool register_config_param4(Ref<vm::Cell> value);
|
|
bool dns_resolve_start(ton::WorkchainId workchain, ton::StdSmcAddress addr, ton::BlockIdExt blkid, std::string domain,
|
|
td::Bits256 cat, int mode);
|
|
bool dns_resolve_send(ton::WorkchainId workchain, ton::StdSmcAddress addr, ton::BlockIdExt blkid, std::string domain,
|
|
std::string qdomain, td::Bits256 cat, int mode);
|
|
void dns_resolve_finish(ton::WorkchainId workchain, ton::StdSmcAddress addr, ton::BlockIdExt blkid,
|
|
std::string domain, std::string qdomain, td::Bits256 cat, int mode, int used_bits,
|
|
Ref<vm::Cell> value);
|
|
bool show_dns_record(std::ostream& os, td::Bits256 cat, Ref<vm::CellSlice> value, bool raw_dump);
|
|
bool get_all_shards(std::string filename = "", bool use_last = true, ton::BlockIdExt blkid = {});
|
|
void got_all_shards(ton::BlockIdExt blk, td::BufferSlice proof, td::BufferSlice data, std::string filename);
|
|
bool parse_get_config_params(ton::BlockIdExt blkid, int mode = 0, std::string filename = "",
|
|
std::vector<int> params = {});
|
|
bool get_config_params(ton::BlockIdExt blkid, td::Promise<std::unique_ptr<block::Config>> promise, int mode = 0,
|
|
std::string filename = "", std::vector<int> params = {});
|
|
bool get_config_params_ext(ton::BlockIdExt blkid, td::Promise<ConfigInfo> promise, int mode = 0,
|
|
std::string filename = "", std::vector<int> params = {});
|
|
void got_config_params(ton::BlockIdExt req_blkid, int mode, std::string filename, std::vector<int> params,
|
|
td::Result<td::BufferSlice> R, td::Promise<ConfigInfo> promise);
|
|
bool get_block(ton::BlockIdExt blk, bool dump = false);
|
|
void got_block(ton::BlockIdExt blkid, td::BufferSlice data, bool dump);
|
|
bool get_state(ton::BlockIdExt blk, bool dump = false);
|
|
void got_state(ton::BlockIdExt blkid, ton::RootHash root_hash, ton::FileHash file_hash, td::BufferSlice data,
|
|
bool dump);
|
|
bool get_show_block_header(ton::BlockIdExt blk, int mode);
|
|
bool get_block_header(ton::BlockIdExt blk, int mode, td::Promise<BlockHdrInfo> promise);
|
|
bool lookup_show_block(ton::ShardIdFull shard, int mode, td::uint64 arg);
|
|
bool lookup_block(ton::ShardIdFull shard, int mode, td::uint64 arg, td::Promise<BlockHdrInfo>);
|
|
void got_block_header_raw(td::BufferSlice res, td::Promise<BlockHdrInfo> promise, ton::BlockIdExt req_blkid = {});
|
|
void got_block_header(ton::BlockIdExt blkid, td::BufferSlice data, int mode);
|
|
bool show_block_header(ton::BlockIdExt blkid, Ref<vm::Cell> root, int mode);
|
|
bool show_state_header(ton::BlockIdExt blkid, Ref<vm::Cell> root, int mode);
|
|
bool get_one_transaction(ton::BlockIdExt blkid, ton::WorkchainId workchain, ton::StdSmcAddress addr,
|
|
ton::LogicalTime lt, bool dump = false);
|
|
void got_one_transaction(ton::BlockIdExt req_blkid, ton::BlockIdExt blkid, td::BufferSlice proof,
|
|
td::BufferSlice transaction, ton::WorkchainId workchain, ton::StdSmcAddress addr,
|
|
ton::LogicalTime trans_lt, bool dump);
|
|
bool get_last_transactions(ton::WorkchainId workchain, ton::StdSmcAddress addr, ton::LogicalTime lt,
|
|
ton::Bits256 hash, unsigned count, bool dump);
|
|
void got_last_transactions(std::vector<ton::BlockIdExt> blkids, td::BufferSlice transactions_boc,
|
|
ton::WorkchainId workchain, ton::StdSmcAddress addr, ton::LogicalTime lt,
|
|
ton::Bits256 hash, unsigned count, bool dump);
|
|
bool get_block_transactions(ton::BlockIdExt blkid, int mode, unsigned count, ton::Bits256 acc_addr,
|
|
ton::LogicalTime lt);
|
|
void got_block_transactions(ton::BlockIdExt blkid, int mode, unsigned req_count, bool incomplete,
|
|
std::vector<TransId> trans,
|
|
std::vector<ton::tl_object_ptr<ton::lite_api::liteServer_transactionMetadata>> metadata,
|
|
td::BufferSlice proof);
|
|
bool get_block_proof(ton::BlockIdExt from, ton::BlockIdExt to, int mode);
|
|
void got_block_proof(ton::BlockIdExt from, ton::BlockIdExt to, int mode, td::BufferSlice res);
|
|
bool get_creator_stats(ton::BlockIdExt blkid, int mode, unsigned req_count, ton::Bits256 start_after,
|
|
ton::UnixTime min_utime);
|
|
bool get_creator_stats(ton::BlockIdExt blkid, int mode, unsigned req_count, ton::Bits256 start_after,
|
|
ton::UnixTime min_utime, creator_stats_func_t func, td::Promise<td::Bits256> promise);
|
|
bool get_creator_stats(ton::BlockIdExt blkid, unsigned req_count, ton::UnixTime min_utime, creator_stats_func_t func,
|
|
std::unique_ptr<CreatorStatsRes> state, td::Promise<std::unique_ptr<CreatorStatsRes>> promise);
|
|
void got_creator_stats(ton::BlockIdExt req_blkid, ton::BlockIdExt blkid, int mode, ton::UnixTime min_utime,
|
|
td::BufferSlice state_proof, td::BufferSlice data_proof, int count, int req_count,
|
|
bool complete, creator_stats_func_t func, std::unique_ptr<CreatorStatsRes> state,
|
|
td::Promise<std::unique_ptr<CreatorStatsRes>> promise);
|
|
bool check_validator_load(int start_time, int end_time, int mode = 0, std::string file_pfx = "");
|
|
void continue_check_validator_load(ton::BlockIdExt blkid1, Ref<vm::Cell> root1, ton::BlockIdExt blkid2,
|
|
Ref<vm::Cell> root2, int mode = 0, std::string file_pfx = "");
|
|
void continue_check_validator_load2(std::unique_ptr<ValidatorLoadInfo> info1,
|
|
std::unique_ptr<ValidatorLoadInfo> info2, int mode = 0,
|
|
std::string file_pfx = "");
|
|
void continue_check_validator_load3(std::unique_ptr<ValidatorLoadInfo> info1,
|
|
std::unique_ptr<ValidatorLoadInfo> info2, int mode = 0,
|
|
std::string file_pfx = "");
|
|
td::Status write_val_create_proof(ValidatorLoadInfo& info1, ValidatorLoadInfo& info2, int idx, bool severe,
|
|
std::string file_pfx, int cnt);
|
|
bool load_creator_stats(std::unique_ptr<ValidatorLoadInfo> load_to,
|
|
td::Promise<std::unique_ptr<ValidatorLoadInfo>> promise, bool need_proofs);
|
|
td::Status check_validator_load_proof(std::string filename, std::string vset_filename = "",
|
|
ton::Bits256 vset_hash = ton::Bits256::zero());
|
|
td::Status continue_check_validator_load_proof(std::unique_ptr<ValidatorLoadInfo> info1,
|
|
std::unique_ptr<ValidatorLoadInfo> info2, Ref<vm::Cell> root);
|
|
bool get_config_addr(td::Promise<ton::StdSmcAddress> promise);
|
|
bool get_elector_addr(td::Promise<ton::StdSmcAddress> promise);
|
|
bool get_dns_root(td::Promise<ton::StdSmcAddress> promise);
|
|
bool get_special_smc_addr(int addr_ext, td::Promise<ton::StdSmcAddress> promise);
|
|
bool get_past_validator_sets();
|
|
bool send_past_vset_query(ton::StdSmcAddress elector_addr);
|
|
void register_past_vset_info(vm::StackEntry list);
|
|
bool get_complaints(unsigned elect_id, std::string file_pfx);
|
|
void send_get_complaints_query(unsigned elect_id, ton::StdSmcAddress elector_addr, std::string file_pfx);
|
|
void save_complaints(unsigned elect_id, Ref<vm::Cell> complaints, std::string file_pfx);
|
|
td::Status get_complaint_price(unsigned expires_in, std::string filename);
|
|
td::Status get_complaint_price(unsigned expires_in, unsigned bits, unsigned refs,
|
|
td::Bits256 chash = td::Bits256::zero(), std::string filename = "");
|
|
void send_compute_complaint_price_query(ton::StdSmcAddress elector_addr, unsigned expires_in, unsigned bits,
|
|
unsigned refs, td::Bits256 chash, std::string filename);
|
|
bool get_msg_queue_sizes();
|
|
void got_msg_queue_sizes(ton::tl_object_ptr<ton::lite_api::liteServer_outMsgQueueSizes> f);
|
|
bool get_dispatch_queue_info(ton::BlockIdExt block_id);
|
|
bool get_dispatch_queue_info_cont(ton::BlockIdExt block_id, bool first, td::Bits256 after_addr);
|
|
void got_dispatch_queue_info(ton::BlockIdExt block_id,
|
|
ton::tl_object_ptr<ton::lite_api::liteServer_dispatchQueueInfo> info);
|
|
bool get_dispatch_queue_messages(ton::BlockIdExt block_id, ton::WorkchainId wc, ton::StdSmcAddress addr,
|
|
ton::LogicalTime lt, bool one_account);
|
|
void got_dispatch_queue_messages(ton::tl_object_ptr<ton::lite_api::liteServer_dispatchQueueMessages> msgs);
|
|
bool cache_cell(Ref<vm::Cell> cell);
|
|
bool list_cached_cells() const;
|
|
bool dump_cached_cell(td::Slice hash_pfx, td::Slice type_name = {});
|
|
// parser
|
|
bool do_parse_line();
|
|
bool show_help(std::string command);
|
|
td::Slice get_word(char delim = ' ');
|
|
td::Slice get_word_ext(const char* delims, const char* specials = nullptr);
|
|
bool get_word_to(std::string& str, char delim = ' ');
|
|
bool get_word_to(td::Slice& str, char delim = ' ');
|
|
int skipspc();
|
|
std::string get_line_tail(bool remove_spaces = true) const;
|
|
bool eoln() const;
|
|
bool seekeoln();
|
|
bool set_error(td::Status error);
|
|
bool set_error(std::string err_msg);
|
|
void show_context() const;
|
|
bool parse_account_addr(ton::WorkchainId& wc, ton::StdSmcAddress& addr, bool allow_none = false);
|
|
bool parse_account_addr_ext(ton::WorkchainId& wc, ton::StdSmcAddress& addr, int& addr_ext, bool allow_none = false);
|
|
static int parse_hex_digit(int c);
|
|
static bool parse_hash(const char* str, ton::Bits256& hash);
|
|
static bool parse_hash(td::Slice str, ton::Bits256& hash);
|
|
static bool convert_uint64(td::Slice word, td::uint64& val);
|
|
static bool convert_int64(td::Slice word, td::int64& val);
|
|
static bool convert_uint32(td::Slice word, td::uint32& val);
|
|
static bool convert_int32(td::Slice word, td::int32& val);
|
|
static bool convert_shard_id(td::Slice str, ton::ShardIdFull& shard);
|
|
static td::int64 compute_method_id(std::string method);
|
|
bool parse_hash(ton::Bits256& hash);
|
|
bool parse_lt(ton::LogicalTime& lt);
|
|
bool parse_uint32(td::uint32& val);
|
|
bool parse_int32(td::int32& val);
|
|
bool parse_int16(int& val);
|
|
bool parse_shard_id(ton::ShardIdFull& shard);
|
|
bool parse_block_id_ext(ton::BlockIdExt& blkid, bool allow_incomplete = false);
|
|
bool parse_block_id_ext(std::string blk_id_string, ton::BlockIdExt& blkid, bool allow_incomplete = false) const;
|
|
bool parse_stack_value(td::Slice str, vm::StackEntry& value);
|
|
bool parse_stack_value(vm::StackEntry& value);
|
|
bool parse_stack_values(std::vector<vm::StackEntry>& values);
|
|
bool register_blkid(const ton::BlockIdExt& blkid);
|
|
bool show_new_blkids(bool all = false);
|
|
bool complete_blkid(ton::BlockId partial_blkid, ton::BlockIdExt& complete_blkid) const;
|
|
td::Promise<td::Unit> trivial_promise();
|
|
template <typename T>
|
|
td::Promise<T> trivial_promise_of() {
|
|
return td::PromiseCreator::lambda([Self = actor_id(this)](td::Result<T> res) {
|
|
if (res.is_error()) {
|
|
LOG(ERROR) << "error: " << res.move_as_error();
|
|
}
|
|
});
|
|
}
|
|
static ton::UnixTime now() {
|
|
return static_cast<td::uint32>(td::Clocks::system());
|
|
}
|
|
static const tlb::TypenameLookup& get_tlb_dict();
|
|
|
|
public:
|
|
void conn_ready() {
|
|
LOG(ERROR) << "conn ready";
|
|
ready_ = true;
|
|
if (!inited_) {
|
|
run_init_queries();
|
|
}
|
|
}
|
|
void conn_closed() {
|
|
ready_ = false;
|
|
}
|
|
void set_global_config(std::string str) {
|
|
global_config_ = str;
|
|
}
|
|
void set_db_root(std::string db_root) {
|
|
db_root_ = db_root;
|
|
}
|
|
void set_readline_enabled(bool value) {
|
|
readline_enabled_ = value;
|
|
}
|
|
void set_liteserver_idx(td::int32 idx) {
|
|
liteserver_idx_ = idx;
|
|
}
|
|
void set_remote_addr(td::IPAddress addr) {
|
|
remote_addr_ = addr;
|
|
}
|
|
void set_public_key(td::BufferSlice file_name) {
|
|
auto R = [&]() -> td::Result<ton::PublicKey> {
|
|
TRY_RESULT_PREFIX(conf_data, td::read_file(file_name.as_slice().str()), "failed to read: ");
|
|
return ton::PublicKey::import(conf_data.as_slice());
|
|
}();
|
|
|
|
if (R.is_error()) {
|
|
LOG(FATAL) << "bad server public key: " << R.move_as_error();
|
|
}
|
|
remote_public_key_ = R.move_as_ok();
|
|
}
|
|
void decode_public_key(td::BufferSlice b64_key) {
|
|
auto R = [&]() -> td::Result<ton::PublicKey> {
|
|
std::string key_bytes = {(char)0xc6, (char)0xb4, (char)0x13, (char)0x48};
|
|
key_bytes = key_bytes + td::base64_decode(b64_key.as_slice().str()).move_as_ok();
|
|
return ton::PublicKey::import(key_bytes);
|
|
}();
|
|
|
|
if (R.is_error()) {
|
|
LOG(FATAL) << "bad b64 server public key: " << R.move_as_error();
|
|
}
|
|
remote_public_key_ = R.move_as_ok();
|
|
}
|
|
void set_fail_timeout(td::Timestamp ts) {
|
|
fail_timeout_ = ts;
|
|
alarm_timestamp().relax(fail_timeout_);
|
|
}
|
|
void set_print_limit(int plimit) {
|
|
if (plimit >= 0) {
|
|
print_limit_ = plimit;
|
|
}
|
|
}
|
|
void add_cmd(td::BufferSlice data) {
|
|
ex_mode_ = true;
|
|
ex_queries_.push_back(std::move(data));
|
|
readline_enabled_ = false;
|
|
}
|
|
void alarm() override {
|
|
if (fail_timeout_.is_in_past()) {
|
|
std::_Exit(7);
|
|
}
|
|
if (ex_mode_ && !running_queries_ && ex_queries_.size() == 0) {
|
|
std::_Exit(0);
|
|
}
|
|
alarm_timestamp().relax(fail_timeout_);
|
|
}
|
|
|
|
void start_up() override {
|
|
}
|
|
void tear_down() override {
|
|
// FIXME: do not work in windows
|
|
//td::actor::SchedulerContext::get()->stop();
|
|
}
|
|
|
|
void got_result(td::Result<td::BufferSlice> R, td::Promise<td::BufferSlice> promise);
|
|
void after_got_result(bool ok);
|
|
bool envelope_send_query(td::BufferSlice query, td::Promise<td::BufferSlice> promise);
|
|
void parse_line(td::BufferSlice data);
|
|
|
|
TestNode() {
|
|
}
|
|
|
|
void run();
|
|
};
|