Skip to content

Commit

Permalink
cli_worker: use absl::AnyInvocable
Browse files Browse the repository at this point in the history
  • Loading branch information
Chilledheart committed Dec 4, 2023
1 parent 9f619cf commit 03f7196
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 15 deletions.
27 changes: 17 additions & 10 deletions src/cli/cli_worker.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,16 @@ Worker::Worker()

Worker::~Worker() {
Stop(std::function<void()>());
start_callback_ = nullptr;
stop_callback_ = nullptr;
work_guard_.reset();
delete private_;
}

void Worker::Start(std::function<void(asio::error_code)> callback) {
void Worker::Start(absl::AnyInvocable<void(asio::error_code)> &&callback) {
DCHECK_EQ(private_->cli_server.get(), nullptr);
DCHECK(!start_callback_);
start_callback_ = std::move(callback);
if (thread_ && thread_->joinable())
thread_->join();

Expand All @@ -64,7 +68,7 @@ void Worker::Start(std::function<void(asio::error_code)> callback) {
PLOG(WARNING) << "failed to set thread priority";
}
});
asio::post(io_context_, [this, callback]() {
asio::post(io_context_, [this]() {
std::string host_name = absl::GetFlag(FLAGS_local_host);
uint16_t port = absl::GetFlag(FLAGS_local_port);

Expand All @@ -75,7 +79,7 @@ void Worker::Start(std::function<void(asio::error_code)> callback) {
asio::ip::tcp::endpoint endpoint(addr, port);
auto results = asio::ip::tcp::resolver::results_type::create(
endpoint, host_name, std::to_string(port));
on_resolve_local(ec, results, callback);
on_resolve_local(ec, results);
return;
}
#ifdef HAVE_C_ARES
Expand All @@ -84,24 +88,27 @@ void Worker::Start(std::function<void(asio::error_code)> callback) {
resolver_.async_resolve(Net_ipv6works() ? asio::ip::tcp::unspec() : asio::ip::tcp::v4(),
host_name, std::to_string(port),
#endif
[this, callback](const asio::error_code& ec,
asio::ip::tcp::resolver::results_type results) {
on_resolve_local(ec, results, callback);
[this](const asio::error_code& ec,
asio::ip::tcp::resolver::results_type results) {
on_resolve_local(ec, results);
});
});
}

void Worker::Stop(std::function<void()> callback) {
void Worker::Stop(absl::AnyInvocable<void()> &&callback) {
DCHECK(!stop_callback_);
stop_callback_ = std::move(callback);
/// stop in the worker thread
if (!thread_) {
return;
}
asio::post(io_context_ ,[this, callback]() {
asio::post(io_context_ ,[this]() {
#ifdef HAVE_C_ARES
resolver_->Cancel();
#else
resolver_.cancel();
#endif
auto callback = std::move(stop_callback_);
if (private_->cli_server) {
private_->cli_server->stop();
}
Expand Down Expand Up @@ -141,8 +148,8 @@ void Worker::WorkFunc() {
}

void Worker::on_resolve_local(asio::error_code ec,
asio::ip::tcp::resolver::results_type results,
std::function<void(asio::error_code)> callback) {
asio::ip::tcp::resolver::results_type results) {
auto callback = std::move(start_callback_);
if (ec) {
LOG(WARNING) << "local resolved host:" << absl::GetFlag(FLAGS_local_host)
<< " failed due to: " << ec;
Expand Down
13 changes: 8 additions & 5 deletions src/cli/cli_worker.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,11 @@

#include "core/cipher.hpp"

#include <functional>
#include <memory>
#include <thread>

#include <absl/functional/any_invocable.h>

#include "config/config.hpp"
#include "core/asio.hpp"
#include "core/logging.hpp"
Expand All @@ -23,8 +24,8 @@ class Worker {
Worker();
~Worker();

void Start(std::function<void(asio::error_code)> callback);
void Stop(std::function<void()> callback);
void Start(absl::AnyInvocable<void(asio::error_code)> &&callback);
void Stop(absl::AnyInvocable<void()> &&callback);

std::string GetDomain() const;
std::string GetRemoteDomain() const;
Expand All @@ -35,8 +36,7 @@ class Worker {
void WorkFunc();

void on_resolve_local(asio::error_code ec,
asio::ip::tcp::resolver::results_type results,
std::function<void(asio::error_code)> callback);
asio::ip::tcp::resolver::results_type results);

asio::io_context io_context_;
/// stopping the io_context from running out of work
Expand All @@ -50,6 +50,9 @@ class Worker {
/// used to do io in another thread
std::unique_ptr<std::thread> thread_;

absl::AnyInvocable<void(asio::error_code)> start_callback_;
absl::AnyInvocable<void()> stop_callback_;

WorkerPrivate *private_;
std::vector<asio::ip::tcp::endpoint> endpoints_;
};
Expand Down

0 comments on commit 03f7196

Please sign in to comment.