blob: ffb2c1e0b247b65ee43fb4416bc9942166e51b2f [file] [log] [blame]
// Copyright (c) 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef NET_THIRD_PARTY_QUIC_PLATFORM_IMPL_QUIC_MUTEX_IMPL_H_
#define NET_THIRD_PARTY_QUIC_PLATFORM_IMPL_QUIC_MUTEX_IMPL_H_
#include "base/macros.h"
#include "base/synchronization/lock.h"
#include "base/synchronization/waitable_event.h"
#include "net/third_party/quic/platform/api/quic_export.h"
#ifndef EXCLUSIVE_LOCK_FUNCTION
#define EXCLUSIVE_LOCK_FUNCTION(...)
#endif
#ifndef UNLOCK_FUNCTION
#define UNLOCK_FUNCTION(...)
#endif
#ifndef SHARED_LOCK_FUNCTION
#define SHARED_LOCK_FUNCTION(...)
#endif
#ifndef ASSERT_SHARED_LOCK
#define ASSERT_SHARED_LOCK(...)
#endif
#ifndef LOCKABLE
#define LOCKABLE
#endif
#ifndef SCOPED_LOCKABLE
#define SCOPED_LOCKABLE
#endif
#ifndef GUARDED_BY
#define GUARDED_BY(x)
#endif
#ifndef SHARED_LOCKS_REQUIRED
#define SHARED_LOCKS_REQUIRED(...)
#endif
#ifndef EXCLUSIVE_LOCKS_REQUIRED
#define EXCLUSIVE_LOCKS_REQUIRED(...)
#endif
namespace quic {
// A class wrapping a non-reentrant mutex.
class LOCKABLE QUIC_EXPORT_PRIVATE QuicLockImpl {
public:
QuicLockImpl() = default;
// Block until lock_ is free, then acquire it exclusively.
void WriterLock() EXCLUSIVE_LOCK_FUNCTION();
// Release lock_. Caller must hold it exclusively.
void WriterUnlock() UNLOCK_FUNCTION();
// Block until lock_ is free or shared, then acquire a share of it.
void ReaderLock() SHARED_LOCK_FUNCTION();
// Release lock_. Caller could hold it in shared mode.
void ReaderUnlock() UNLOCK_FUNCTION();
// Not implemented.
void AssertReaderHeld() const ASSERT_SHARED_LOCK() {}
private:
base::Lock lock_;
DISALLOW_COPY_AND_ASSIGN(QuicLockImpl);
};
// A Notification allows threads to receive notification of a single occurrence
// of a single event.
class QUIC_EXPORT_PRIVATE QuicNotificationImpl {
public:
QuicNotificationImpl()
: event_(base::WaitableEvent::ResetPolicy::MANUAL,
base::WaitableEvent::InitialState::NOT_SIGNALED) {}
QuicNotificationImpl(const QuicNotificationImpl&) = delete;
QuicNotificationImpl& operator=(const QuicNotificationImpl&) = delete;
bool HasBeenNotified() { return event_.IsSignaled(); }
void Notify() { event_.Signal(); }
void WaitForNotification() { event_.Wait(); }
private:
base::WaitableEvent event_;
};
} // namespace quic
#endif // NET_THIRD_PARTY_QUIC_PLATFORM_IMPL_QUIC_MUTEX_IMPL_H_