#ifndef BASE_TASK_COMMON_CHECKED_LOCK_IMPL_H_
#define BASE_TASK_COMMON_CHECKED_LOCK_IMPL_H_
#include <optional>
#include "base/base_export.h"
#include "base/synchronization/lock.h"
namespace base {
class ConditionVariable;
namespace internal {
struct UniversalPredecessor {};
struct UniversalSuccessor {};
class BASE_EXPORT CheckedLockImpl {
public:
CheckedLockImpl();
explicit CheckedLockImpl(const CheckedLockImpl* predecessor);
explicit CheckedLockImpl(UniversalPredecessor);
explicit CheckedLockImpl(UniversalSuccessor);
CheckedLockImpl(const CheckedLockImpl&) = delete;
CheckedLockImpl& operator=(const CheckedLockImpl&) = delete;
~CheckedLockImpl();
static void AssertNoLockHeldOnCurrentThread();
void Acquire(subtle::LockTracking tracking = subtle::LockTracking::kDisabled)
EXCLUSIVE_LOCK_FUNCTION(lock_);
void Release() UNLOCK_FUNCTION(lock_);
void AssertAcquired() const;
void AssertNotHeld() const;
ConditionVariable CreateConditionVariable();
void CreateConditionVariableAndEmplace(std::optional<ConditionVariable>& opt);
bool is_universal_predecessor() const { return is_universal_predecessor_; }
bool is_universal_successor() const { return is_universal_successor_; }
private:
Lock lock_;
const bool is_universal_predecessor_ = false;
const bool is_universal_successor_ = false;
};
}
}
#endif