blob: 4db31124fc0e619a3a65cb3718bf8deb13fb3478 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
#include "ExecutorService.h"
#include <boost/asio.hpp>
#include <functional>
#include <memory>
#include "LogUtils.h"
DECLARE_LOG_OBJECT()
namespace pulsar {
ExecutorService::ExecutorService()
: io_service_(new boost::asio::io_service()),
work_(new BackgroundWork(*io_service_)),
worker_(std::bind(&ExecutorService::startWorker, this, io_service_)) {}
ExecutorService::~ExecutorService() { close(); }
void ExecutorService::startWorker(std::shared_ptr<boost::asio::io_service> io_service) { io_service_->run(); }
/*
* factory method of boost::asio::ip::tcp::socket associated with io_service_ instance
* @ returns shared_ptr to this socket
*/
SocketPtr ExecutorService::createSocket() {
return SocketPtr(new boost::asio::ip::tcp::socket(*io_service_));
}
TlsSocketPtr ExecutorService::createTlsSocket(SocketPtr &socket, boost::asio::ssl::context &ctx) {
return std::shared_ptr<boost::asio::ssl::stream<boost::asio::ip::tcp::socket &> >(
new boost::asio::ssl::stream<boost::asio::ip::tcp::socket &>(*socket, ctx));
}
/*
* factory method of Resolver object associated with io_service_ instance
* @returns shraed_ptr to resolver object
*/
TcpResolverPtr ExecutorService::createTcpResolver() {
return TcpResolverPtr(new boost::asio::ip::tcp::resolver(*io_service_));
}
DeadlineTimerPtr ExecutorService::createDeadlineTimer() {
return DeadlineTimerPtr(new boost::asio::deadline_timer(*io_service_));
}
void ExecutorService::close() {
bool expectedState = false;
if (!closed_.compare_exchange_strong(expectedState, true)) {
return;
}
io_service_->stop();
work_.reset();
// Detach the worker thread instead of join to avoid potential deadlock
if (worker_.joinable()) {
try {
worker_.detach();
} catch (const std::system_error &e) {
// This condition will happen if we're forking the process, therefore the thread was not ported to
// the child side of the fork and the detach would be failing.
LOG_DEBUG("Failed to detach thread: " << e.what());
}
}
}
void ExecutorService::postWork(std::function<void(void)> task) { io_service_->post(task); }
/////////////////////
ExecutorServiceProvider::ExecutorServiceProvider(int nthreads)
: executors_(nthreads), executorIdx_(0), mutex_() {}
ExecutorServicePtr ExecutorServiceProvider::get() {
Lock lock(mutex_);
int idx = executorIdx_++ % executors_.size();
if (!executors_[idx]) {
executors_[idx] = std::make_shared<ExecutorService>();
}
return executors_[idx];
}
void ExecutorServiceProvider::close() {
Lock lock(mutex_);
for (ExecutorList::iterator it = executors_.begin(); it != executors_.end(); ++it) {
if (*it != NULL) {
(*it)->close();
}
it->reset();
}
}
} // namespace pulsar