mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-20 11:45:53 +00:00
137 lines
4.8 KiB
C++
137 lines
4.8 KiB
C++
//------------------------------------------------------------------------------
|
|
/*
|
|
This file is part of clio: https://github.com/XRPLF/clio
|
|
Copyright (c) 2023, the clio developers.
|
|
|
|
Permission to use, copy, modify, and distribute this software for any
|
|
purpose with or without fee is hereby granted, provided that the above
|
|
copyright notice and this permission notice appear in all copies.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|
|
//==============================================================================
|
|
|
|
#pragma once
|
|
|
|
#include "data/cassandra/Concepts.hpp"
|
|
#include "data/cassandra/Handle.hpp"
|
|
#include "data/cassandra/Types.hpp"
|
|
#include "data/cassandra/impl/RetryPolicy.hpp"
|
|
#include "util/Mutex.hpp"
|
|
#include "util/log/Logger.hpp"
|
|
|
|
#include <boost/asio.hpp>
|
|
#include <boost/asio/io_context.hpp>
|
|
|
|
#include <functional>
|
|
#include <memory>
|
|
#include <mutex>
|
|
#include <optional>
|
|
#include <utility>
|
|
|
|
namespace data::cassandra::impl {
|
|
|
|
/**
|
|
* @brief A query executor with a changeable retry policy
|
|
*
|
|
* Note: this is a bit of an anti-pattern and should be done differently
|
|
* eventually.
|
|
*
|
|
* Currently it's basically a saner implementation of the previous design that
|
|
* was used in production without much issue but was using raw new/delete and
|
|
* could leak easily. This version is slightly better but the overall design is
|
|
* flawed and should be reworked.
|
|
*/
|
|
template <
|
|
typename StatementType,
|
|
typename HandleType = Handle,
|
|
SomeRetryPolicy RetryPolicyType = ExponentialBackoffRetryPolicy>
|
|
class AsyncExecutor : public std::enable_shared_from_this<AsyncExecutor<StatementType, HandleType, RetryPolicyType>> {
|
|
using FutureWithCallbackType = typename HandleType::FutureWithCallbackType;
|
|
using CallbackType = std::function<void(typename HandleType::ResultOrErrorType)>;
|
|
using RetryCallbackType = std::function<void()>;
|
|
|
|
util::Logger log_{"Backend"};
|
|
|
|
StatementType data_;
|
|
RetryPolicyType retryPolicy_;
|
|
CallbackType onComplete_;
|
|
RetryCallbackType onRetry_;
|
|
|
|
// does not exist during initial construction, hence optional
|
|
using OptionalFuture = std::optional<FutureWithCallbackType>;
|
|
util::Mutex<OptionalFuture> future_;
|
|
|
|
public:
|
|
/**
|
|
* @brief Create a new instance of the AsyncExecutor and execute it.
|
|
*/
|
|
static void
|
|
run(boost::asio::io_context& ioc,
|
|
HandleType const& handle,
|
|
StatementType&& data,
|
|
CallbackType&& onComplete,
|
|
RetryCallbackType&& onRetry)
|
|
{
|
|
// this is a helper that allows us to use std::make_shared below
|
|
struct EnableMakeShared : public AsyncExecutor<StatementType, HandleType, RetryPolicyType> {
|
|
EnableMakeShared(
|
|
boost::asio::io_context& ioc,
|
|
StatementType&& data,
|
|
CallbackType&& onComplete,
|
|
RetryCallbackType&& onRetry
|
|
)
|
|
: AsyncExecutor(ioc, std::move(data), std::move(onComplete), std::move(onRetry))
|
|
{
|
|
}
|
|
};
|
|
|
|
auto ptr = std::make_shared<EnableMakeShared>(ioc, std::move(data), std::move(onComplete), std::move(onRetry));
|
|
ptr->execute(handle);
|
|
}
|
|
|
|
private:
|
|
AsyncExecutor(
|
|
boost::asio::io_context& ioc,
|
|
StatementType&& data,
|
|
CallbackType&& onComplete,
|
|
RetryCallbackType&& onRetry
|
|
)
|
|
: data_{std::move(data)}, retryPolicy_{ioc}, onComplete_{std::move(onComplete)}, onRetry_{std::move(onRetry)}
|
|
{
|
|
}
|
|
|
|
void
|
|
execute(HandleType const& handle)
|
|
{
|
|
auto self = this->shared_from_this();
|
|
|
|
// lifetime is extended by capturing self ptr
|
|
auto handler = [this, &handle, self](auto&& res) mutable {
|
|
if (res) {
|
|
onComplete_(std::forward<decltype(res)>(res));
|
|
} else {
|
|
if (retryPolicy_.shouldRetry(res.error())) {
|
|
onRetry_();
|
|
retryPolicy_.retry([self, &handle]() { self->execute(handle); });
|
|
} else {
|
|
onComplete_(std::forward<decltype(res)>(res)); // report error
|
|
}
|
|
}
|
|
|
|
self = nullptr; // explicitly decrement refcount
|
|
};
|
|
|
|
auto future = future_.template lock<std::scoped_lock>();
|
|
future->emplace(handle.asyncExecute(data_, std::move(handler)));
|
|
}
|
|
};
|
|
|
|
} // namespace data::cassandra::impl
|