mirror of
https://github.com/ton-blockchain/ton
synced 2025-02-12 19:22:37 +00:00
e27fb1e09c
- updated vm - new actor scheduler - updated tonlib - updated DNS smartcontract
92 lines
2.6 KiB
C++
92 lines
2.6 KiB
C++
/*
|
|
This file is part of TON Blockchain Library.
|
|
|
|
TON Blockchain Library is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Lesser 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 Library 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 Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public License
|
|
along with TON Blockchain Library. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
Copyright 2017-2020 Telegram Systems LLP
|
|
*/
|
|
#pragma once
|
|
|
|
#include "td/utils/int_types.h"
|
|
#include "td/actor/actor.h"
|
|
|
|
namespace ton {
|
|
|
|
namespace validator {
|
|
|
|
class StatsMerger : public td::actor::Actor {
|
|
public:
|
|
StatsMerger(td::Promise<std::vector<std::pair<std::string, std::string>>> promise)
|
|
|
|
: promise_(std::move(promise)) {
|
|
}
|
|
void start_up() override {
|
|
if (!pending_) {
|
|
finish();
|
|
}
|
|
}
|
|
|
|
void finish_subjob(td::Result<std::vector<std::pair<std::string, std::string>>> R, std::string prefix) {
|
|
if (R.is_ok()) {
|
|
auto v = R.move_as_ok();
|
|
for (auto &el : v) {
|
|
cur_.emplace_back(prefix + el.first, std::move(el.second));
|
|
}
|
|
}
|
|
if (--pending_ == 0) {
|
|
finish();
|
|
}
|
|
}
|
|
void inc() {
|
|
++pending_;
|
|
}
|
|
void dec() {
|
|
if (--pending_ == 0) {
|
|
finish();
|
|
}
|
|
}
|
|
void finish() {
|
|
promise_.set_value(std::move(cur_));
|
|
stop();
|
|
}
|
|
|
|
struct InitGuard {
|
|
td::actor::ActorId<StatsMerger> merger;
|
|
~InitGuard() {
|
|
td::actor::send_closure(merger, &StatsMerger::dec);
|
|
}
|
|
auto make_promise(std::string prefix) {
|
|
merger.get_actor_unsafe().inc();
|
|
return td::PromiseCreator::lambda(
|
|
[merger = merger, prefix](td::Result<std::vector<std::pair<std::string, std::string>>> R) {
|
|
td::actor::send_closure(merger, &StatsMerger::finish_subjob, std::move(R), std::move(prefix));
|
|
});
|
|
}
|
|
};
|
|
|
|
static InitGuard create(td::Promise<std::vector<std::pair<std::string, std::string>>> promise) {
|
|
InitGuard ig;
|
|
ig.merger = td::actor::create_actor<StatsMerger>("m", std::move(promise)).release();
|
|
return ig;
|
|
}
|
|
|
|
private:
|
|
std::vector<std::pair<std::string, std::string>> cur_;
|
|
std::atomic<td::uint32> pending_{1};
|
|
td::Promise<std::vector<std::pair<std::string, std::string>>> promise_;
|
|
};
|
|
|
|
} // namespace validator
|
|
|
|
} // namespace ton
|