-
Notifications
You must be signed in to change notification settings - Fork 1.6k
chore: Add mutex wrapper from clio #6447
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,159 @@ | ||
| /* | ||
| This file is part of clio: https://github.com/XRPLF/clio | ||
| Copyright (c) 2024, 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 <mutex> | ||
| #include <type_traits> | ||
|
|
||
| namespace xrpl { | ||
kuznetsss marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| template <typename ProtectedDataType, typename MutexType> | ||
| class Mutex; | ||
|
|
||
| /** | ||
| * @brief A lock on a mutex that provides access to the protected data. | ||
| * | ||
| * @tparam ProtectedDataType data type to hold | ||
| * @tparam LockType type of lock | ||
| * @tparam MutexType type of mutex | ||
| */ | ||
| template <typename ProtectedDataType, template <typename...> typename LockType, typename MutexType> | ||
| class Lock | ||
| { | ||
| LockType<MutexType> lock_; | ||
| ProtectedDataType& data_; | ||
|
|
||
| public: | ||
| /** @cond */ | ||
| ProtectedDataType const& | ||
| operator*() const | ||
| { | ||
| return data_; | ||
| } | ||
|
|
||
| ProtectedDataType& | ||
| operator*() | ||
| { | ||
| return data_; | ||
| } | ||
|
|
||
| ProtectedDataType const& | ||
| get() const | ||
| { | ||
| return data_; | ||
| } | ||
|
|
||
| ProtectedDataType& | ||
| get() | ||
| { | ||
| return data_; | ||
| } | ||
|
|
||
| ProtectedDataType const* | ||
| operator->() const | ||
| { | ||
| return &data_; | ||
| } | ||
|
|
||
| ProtectedDataType* | ||
| operator->() | ||
| { | ||
| return &data_; | ||
| } | ||
|
|
||
| operator LockType<MutexType>&() | ||
| { | ||
| return lock_; | ||
| } | ||
| /** @endcond */ | ||
|
|
||
| private: | ||
| friend class Mutex<std::remove_const_t<ProtectedDataType>, MutexType>; | ||
|
|
||
| Lock(MutexType& mutex, ProtectedDataType& data) : lock_(mutex), data_(data) | ||
| { | ||
| } | ||
| }; | ||
|
|
||
| /** | ||
| * @brief A container for data that is protected by a mutex. Inspired by Mutex in Rust. | ||
| * | ||
| * @tparam ProtectedDataType data type to hold | ||
| * @tparam MutexType type of mutex | ||
| */ | ||
| template <typename ProtectedDataType, typename MutexType = std::mutex> | ||
| class Mutex | ||
| { | ||
| mutable MutexType mutex_; | ||
| ProtectedDataType data_; | ||
|
|
||
| public: | ||
| Mutex() = default; | ||
|
|
||
| /** | ||
| * @brief Construct a new Mutex object with the given data | ||
| * | ||
| * @param data The data to protect | ||
| */ | ||
| explicit Mutex(ProtectedDataType data) : data_(std::move(data)) | ||
| { | ||
| } | ||
|
|
||
| /** | ||
| * @brief Make a new Mutex object with the given data | ||
| * | ||
| * @tparam Args The types of the arguments to forward to the constructor of the protected data | ||
| * @param args The arguments to forward to the constructor of the protected data | ||
| * @return The Mutex object that protects the given data | ||
| */ | ||
| template <typename... Args> | ||
| static Mutex | ||
| make(Args&&... args) | ||
| { | ||
| return Mutex{ProtectedDataType{std::forward<Args>(args)...}}; | ||
| } | ||
|
|
||
| /** | ||
| * @brief Lock the mutex and get a lock object allowing access to the protected data | ||
| * | ||
| * @tparam LockType The type of lock to use | ||
| * @return A lock on the mutex and a reference to the protected data | ||
| */ | ||
| template <template <typename...> typename LockType = std::lock_guard> | ||
| Lock<ProtectedDataType const, LockType, MutexType> | ||
| lock() const | ||
| { | ||
| return {mutex_, data_}; | ||
| } | ||
|
|
||
| /** | ||
| * @brief Lock the mutex and get a lock object allowing access to the protected data | ||
| * | ||
| * @tparam LockType The type of lock to use | ||
| * @return A lock on the mutex and a reference to the protected data | ||
| */ | ||
| template <template <typename...> typename LockType = std::lock_guard> | ||
| Lock<ProtectedDataType, LockType, MutexType> | ||
| lock() | ||
| { | ||
| return {mutex_, data_}; | ||
| } | ||
|
Comment on lines
+118
to
+156
|
||
| }; | ||
|
|
||
| } // namespace xrpl | ||
Uh oh!
There was an error while loading. Please reload this page.