Adding support for upgradable mutexes to LockTraits
authorAaryaman Sagar <aary@instagram.com>
Fri, 5 Aug 2016 00:14:45 +0000 (17:14 -0700)
committerFacebook Github Bot 6 <facebook-github-bot-6-bot@fb.com>
Fri, 5 Aug 2016 00:23:39 +0000 (17:23 -0700)
Summary:
This diff adds support for upgradable mutexes to the LockTraits
abstraction used by folly::Synchronized

Reviewed By: yfeldblum

Differential Revision: D3645453

fbshipit-source-id: 30f16eb3fbebc687a4136256f1103962c0e4c465

folly/LockTraits.h
folly/LockTraitsBoost.h
folly/test/LockTraitsTest.cpp
folly/test/SynchronizedTest.cpp

index 3b84f503e54524ed55335ea52a84a88e68249470..1879e3bc9a769e0fdacaf2b4937ea1bef0387a87 100644 (file)
@@ -39,12 +39,50 @@ namespace folly {
 namespace detail {
 
 /**
 namespace detail {
 
 /**
- * An internal helper class for identifying if a lock type supports
- * lock_shared() and try_lock_for() methods.
+ * An enum to describe the "level" of a mutex.  The supported levels are
+ *  Unique - a normal mutex that supports only exclusive locking
+ *  Shared - a shared mutex which has shared locking and unlocking functions;
+ *  Upgrade - a mutex that has all the methods of the two above along with
+ *            support for upgradable locking
+ */
+enum class MutexLevel { UNIQUE, SHARED, UPGRADE };
+
+/**
+ * A template dispatch mechanism that is used to determine the level of the
+ * mutex based on its interface.  As decided by LockInterfaceDispatcher.
+ */
+template <bool is_unique, bool is_shared, bool is_upgrade>
+struct MutexLevelValueImpl;
+template <>
+struct MutexLevelValueImpl<true, false, false> {
+  static constexpr MutexLevel value = MutexLevel::UNIQUE;
+};
+template <>
+struct MutexLevelValueImpl<true, true, false> {
+  static constexpr MutexLevel value = MutexLevel::SHARED;
+};
+template <>
+struct MutexLevelValueImpl<true, true, true> {
+  static constexpr MutexLevel value = MutexLevel::UPGRADE;
+};
+
+/**
+ * An internal helper class to help identify the interface supported by the
+ * mutex.  This is used in conjunction with the above MutexLevel
+ * specializations and the LockTraitsImpl to determine what functions are
+ * supported by objects of type Mutex
+ *
+ * The implementation uses SINAE in the return value with trailing return
+ * types to figure out what level a mutex is
  */
 template <class Mutex>
  */
 template <class Mutex>
-class LockTraitsImpl {
+class LockInterfaceDispatcher {
  private:
  private:
+  // assert that the mutex type has basic lock and unlock functions
+  static_assert(
+      std::is_same<decltype(std::declval<Mutex>().lock()), void>::value,
+      "The mutex type must support lock and unlock functions");
+
   // Helper functions for implementing the traits using SFINAE
   template <class T>
   static auto timed_lock_test(T*) -> typename std::is_same<
   // Helper functions for implementing the traits using SFINAE
   template <class T>
   static auto timed_lock_test(T*) -> typename std::is_same<
@@ -59,15 +97,38 @@ class LockTraitsImpl {
   template <class T>
   static std::false_type lock_shared_test(...);
 
   template <class T>
   static std::false_type lock_shared_test(...);
 
+  template <class T>
+  static auto lock_upgrade_test(T*) -> typename std::
+      is_same<decltype(std::declval<T>().lock_upgrade()), void>::type;
+  template <class T>
+  static std::false_type lock_upgrade_test(...);
+
  public:
  public:
-  static constexpr bool has_timed_lock =
+  static constexpr bool has_lock_unique = true;
+  static constexpr bool has_lock_timed =
       decltype(timed_lock_test<Mutex>(0))::value;
   static constexpr bool has_lock_shared =
       decltype(lock_shared_test<Mutex>(0))::value;
       decltype(timed_lock_test<Mutex>(0))::value;
   static constexpr bool has_lock_shared =
       decltype(lock_shared_test<Mutex>(0))::value;
+  static constexpr bool has_lock_upgrade =
+      decltype(lock_upgrade_test<Mutex>(0))::value;
 };
 
 };
 
+/**
+ * LockTraitsImpl is the base that is used to desribe the interface used by
+ * different mutex types.  It accepts a MutexLevel argument and a boolean to
+ * show whether the mutex is a timed mutex or not.  The implementations are
+ * partially specialized and inherit from the other implementations to get
+ * similar functionality
+ */
+template <class Mutex, MutexLevel level, bool is_timed>
+struct LockTraitsImpl;
+
 template <class Mutex>
 template <class Mutex>
-struct LockTraitsUniqueBase {
+struct LockTraitsImpl<Mutex, MutexLevel::UNIQUE, false> {
+  static constexpr bool is_timed{false};
+  static constexpr bool is_shared{false};
+  static constexpr bool is_upgrade{false};
+
   /**
    * Acquire the lock exclusively.
    */
   /**
    * Acquire the lock exclusively.
    */
@@ -83,8 +144,17 @@ struct LockTraitsUniqueBase {
   }
 };
 
   }
 };
 
+/**
+ * Higher level mutexes have all the capabilities of the lower levels so
+ * inherit
+ */
 template <class Mutex>
 template <class Mutex>
-struct LockTraitsSharedBase : public LockTraitsUniqueBase<Mutex> {
+struct LockTraitsImpl<Mutex, MutexLevel::SHARED, false>
+    : public LockTraitsImpl<Mutex, MutexLevel::UNIQUE, false> {
+  static constexpr bool is_timed{false};
+  static constexpr bool is_shared{true};
+  static constexpr bool is_upgrade{false};
+
   /**
    * Acquire the lock in shared (read) mode.
    */
   /**
    * Acquire the lock in shared (read) mode.
    */
@@ -100,26 +170,89 @@ struct LockTraitsSharedBase : public LockTraitsUniqueBase<Mutex> {
   }
 };
 
   }
 };
 
-template <class Mutex, bool is_shared, bool is_timed>
-struct LockTraitsBase {};
-
+/**
+ * The following methods are supported.  There are a few methods
+ *
+ *  m.lock_upgrade()
+ *  m.unlock_upgrade()
+ *
+ *  m.unlock_upgrade_and_lock()
+ *
+ *  m.unlock_and_lock_upgrade()
+ *  m.unlock_and_lock_shared()
+ *  m.unlock_upgrade_and_lock_shared()
+ *
+ *  m.try_lock_upgrade_for(rel_time)
+ *  m.try_unlock_upgrade_and_lock_for(rel_time)
+ *
+ * Upgrading a shared lock is likely to deadlock when there is more than one
+ * thread performing an upgrade.  This applies both to upgrading a shared lock
+ * to an upgrade lock and to upgrading a shared lock to a unique lock.
+ *
+ * Therefore, none of the following methods is supported:
+ *  unlock_shared_and_lock_upgrade
+ *  unlock_shared_and_lock
+ *  try_unlock_shared_and_lock_upgrade
+ *  try_unlock_shared_and_lock
+ *  try_unlock_shared_and_lock_upgrade_for
+ *  try_unlock_shared_and_lock_for
+ */
 template <class Mutex>
 template <class Mutex>
-struct LockTraitsBase<Mutex, false, false>
-    : public LockTraitsUniqueBase<Mutex> {
-  static constexpr bool is_shared = false;
-  static constexpr bool is_timed = false;
-};
+struct LockTraitsImpl<Mutex, MutexLevel::UPGRADE, false>
+    : public LockTraitsImpl<Mutex, MutexLevel::SHARED, false> {
+  static constexpr bool is_timed{false};
+  static constexpr bool is_shared{true};
+  static constexpr bool is_upgrade{true};
 
 
-template <class Mutex>
-struct LockTraitsBase<Mutex, true, false> : public LockTraitsSharedBase<Mutex> {
-  static constexpr bool is_shared = true;
-  static constexpr bool is_timed = false;
+  /**
+   * Acquire the lock in upgradable mode.
+   */
+  static void lock_upgrade(Mutex& mutex) {
+    mutex.lock_upgrade();
+  }
+
+  /**
+   * Release the lock in upgrade mode
+   */
+  static void unlock_upgrade(Mutex& mutex) {
+    mutex.unlock_upgrade();
+  }
+
+  /**
+   * Upgrade from an upgradable state to an exclusive state
+   */
+  static void unlock_upgrade_and_lock(Mutex& mutex) {
+    mutex.unlock_upgrade_and_lock();
+  }
+
+  /**
+   * Downgrade from an exclusive state to an upgrade state
+   */
+  static void unlock_and_lock_upgrade(Mutex& mutex) {
+    mutex.unlock_and_lock_upgrade();
+  }
+
+  /**
+   * Downgrade from an exclusive state to a shared state
+   */
+  static void unlock_and_lock_shared(Mutex& mutex) {
+    mutex.unlock_and_lock_shared();
+  }
+
+  /**
+   * Downgrade from an upgrade state to a shared state
+   */
+  static void unlock_upgrade_and_lock_shared(Mutex& mutex) {
+    mutex.unlock_upgrade_and_lock_shared();
+  }
 };
 
 template <class Mutex>
 };
 
 template <class Mutex>
-struct LockTraitsBase<Mutex, false, true> : public LockTraitsUniqueBase<Mutex> {
-  static constexpr bool is_shared = false;
-  static constexpr bool is_timed = true;
+struct LockTraitsImpl<Mutex, MutexLevel::UNIQUE, true>
+    : public LockTraitsImpl<Mutex, MutexLevel::UNIQUE, false> {
+  static constexpr bool is_timed{true};
+  static constexpr bool is_shared{false};
+  static constexpr bool is_upgrade{false};
 
   /**
    * Acquire the lock exclusively, with a timeout.
 
   /**
    * Acquire the lock exclusively, with a timeout.
@@ -134,10 +267,18 @@ struct LockTraitsBase<Mutex, false, true> : public LockTraitsUniqueBase<Mutex> {
   }
 };
 
   }
 };
 
+/**
+ * Note that there is no deadly diamond here because all the structs only have
+ * static functions and static bools which are going to be overridden by the
+ * lowest level implementation
+ */
 template <class Mutex>
 template <class Mutex>
-struct LockTraitsBase<Mutex, true, true> : public LockTraitsSharedBase<Mutex> {
-  static constexpr bool is_shared = true;
-  static constexpr bool is_timed = true;
+struct LockTraitsImpl<Mutex, MutexLevel::SHARED, true>
+    : public LockTraitsImpl<Mutex, MutexLevel::SHARED, false>,
+      public LockTraitsImpl<Mutex, MutexLevel::UNIQUE, true> {
+  static constexpr bool is_timed{true};
+  static constexpr bool is_shared{true};
+  static constexpr bool is_upgrade{false};
 
   /**
    * Acquire the lock exclusively, with a timeout.
 
   /**
    * Acquire the lock exclusively, with a timeout.
@@ -163,6 +304,40 @@ struct LockTraitsBase<Mutex, true, true> : public LockTraitsSharedBase<Mutex> {
     return mutex.try_lock_shared_for(timeout);
   }
 };
     return mutex.try_lock_shared_for(timeout);
   }
 };
+
+template <class Mutex>
+struct LockTraitsImpl<Mutex, MutexLevel::UPGRADE, true>
+    : public LockTraitsImpl<Mutex, MutexLevel::UPGRADE, false>,
+      public LockTraitsImpl<Mutex, MutexLevel::SHARED, true> {
+  static constexpr bool is_timed{true};
+  static constexpr bool is_shared{true};
+  static constexpr bool is_upgrade{true};
+
+  /**
+   * Acquire the lock in upgrade mode with a timeout
+   *
+   * Returns true or false indicating whether the lock was acquired or not
+   */
+  template <class Rep, class Period>
+  static bool try_lock_upgrade_for(
+      Mutex& mutex,
+      const std::chrono::duration<Rep, Period>& timeout) {
+    return mutex.try_lock_upgrade_for(timeout);
+  }
+
+  /**
+   * Try to upgrade from an upgradable state to an exclusive state.
+   *
+   * Returns true or false indicating whether the lock was acquired or not
+   */
+  template <class Rep, class Period>
+  static bool try_unlock_upgrade_and_lock_for(
+      Mutex& mutex,
+      const std::chrono::duration<Rep, Period>& timeout) {
+    return mutex.try_unlock_upgrade_and_lock_for(timeout);
+  }
+};
+
 } // detail
 
 /**
 } // detail
 
 /**
@@ -181,23 +356,50 @@ struct LockTraitsBase<Mutex, true, true> : public LockTraitsSharedBase<Mutex> {
  *   True if the lock supports separate shared vs exclusive locking states.
  * - static constexpr bool is_timed
  *   True if the lock supports acquiring the lock with a timeout.
  *   True if the lock supports separate shared vs exclusive locking states.
  * - static constexpr bool is_timed
  *   True if the lock supports acquiring the lock with a timeout.
+ * - static constexpr bool is_upgrade
+ *   True if the lock supports an upgradable state
  *
  * The following static methods always exist:
  * - lock(Mutex& mutex)
  * - unlock(Mutex& mutex)
  *
  *
  * The following static methods always exist:
  * - lock(Mutex& mutex)
  * - unlock(Mutex& mutex)
  *
- * The following static methods may exist, depending on is_shared and
- * is_timed:
- * - try_lock_for(Mutex& mutex, <std_chrono_duration> timeout)
- * - lock_shared(Mutex& mutex)
- * - unlock_shared(Mutex& mutex)
- * - try_lock_shared_for(Mutex& mutex, <std_chrono_duration> timeout)
+ * The following static methods may exist, depending on is_shared, is_timed
+ * and is_upgrade:
+ * - lock_shared()
+ *
+ * - try_lock_for()
+ * - try_lock_shared_for()
+ *
+ * - lock_upgrade()
+ * - unlock_upgrade_and_lock()
+ * - unlock_and_lock_upgrade()
+ * - unlock_and_lock_shared()
+ * - unlock_upgrade_and_lock_shared()
+ *
+ * - try_lock_upgrade_for()
+ * - try_unlock_upgrade_and_lock_for()
+ *
+ * - unlock_shared()
+ * - unlock_upgrade()
  */
  */
+
+/**
+ * Decoupling LockTraits and LockTraitsBase so that if people want to fully
+ * specialize LockTraits then they can inherit from LockTraitsBase instead
+ * of LockTraits with all the same goodies :)
+ */
+template <class Mutex>
+struct LockTraitsBase
+    : public detail::LockTraitsImpl<
+          Mutex,
+          detail::MutexLevelValueImpl<
+              detail::LockInterfaceDispatcher<Mutex>::has_lock_unique,
+              detail::LockInterfaceDispatcher<Mutex>::has_lock_shared,
+              detail::LockInterfaceDispatcher<Mutex>::has_lock_upgrade>::value,
+          detail::LockInterfaceDispatcher<Mutex>::has_lock_timed> {};
+
 template <class Mutex>
 template <class Mutex>
-struct LockTraits : public detail::LockTraitsBase<
-                        Mutex,
-                        detail::LockTraitsImpl<Mutex>::has_lock_shared,
-                        detail::LockTraitsImpl<Mutex>::has_timed_lock> {};
+struct LockTraits : public LockTraitsBase<Mutex> {};
 
 /**
  * If the lock is a shared lock, acquire it in shared mode.
 
 /**
  * If the lock is a shared lock, acquire it in shared mode.
index 459a5fe8c9928f0314ad264ca81c1f2cb6c47a9e..0d86d2356eb4bafba1230b6a5cb46dfd4e2af291 100644 (file)
@@ -44,7 +44,7 @@ boost::chrono::duration<Rep, boost::ratio<Num, Denom>> toBoostDuration(
  */
 template <>
 struct LockTraits<boost::shared_mutex>
  */
 template <>
 struct LockTraits<boost::shared_mutex>
-    : public folly::detail::LockTraitsSharedBase<boost::shared_mutex> {
+    : public LockTraitsBase<boost::shared_mutex> {
   static constexpr bool is_shared = true;
   static constexpr bool is_timed = true;
 
   static constexpr bool is_shared = true;
   static constexpr bool is_timed = true;
 
@@ -68,7 +68,7 @@ struct LockTraits<boost::shared_mutex>
  */
 template <>
 struct LockTraits<boost::timed_mutex>
  */
 template <>
 struct LockTraits<boost::timed_mutex>
-    : public folly::detail::LockTraitsUniqueBase<boost::timed_mutex> {
+    : public LockTraitsBase<boost::timed_mutex> {
   static constexpr bool is_shared = false;
   static constexpr bool is_timed = true;
 
   static constexpr bool is_shared = false;
   static constexpr bool is_timed = true;
 
@@ -85,7 +85,7 @@ struct LockTraits<boost::timed_mutex>
  */
 template <>
 struct LockTraits<boost::recursive_timed_mutex>
  */
 template <>
 struct LockTraits<boost::recursive_timed_mutex>
-    : public folly::detail::LockTraitsUniqueBase<boost::recursive_timed_mutex> {
+    : public LockTraitsBase<boost::recursive_timed_mutex> {
   static constexpr bool is_shared = false;
   static constexpr bool is_timed = true;
 
   static constexpr bool is_shared = false;
   static constexpr bool is_timed = true;
 
index df43a8a0a895b450a150ba24fa86f48eb41a2fe5..be9f0ec9550941d417b62bae289a80e602ff825b 100644 (file)
 
 using namespace folly;
 
 
 using namespace folly;
 
+static constexpr auto one_ms = std::chrono::milliseconds(1);
+
 TEST(LockTraits, std_mutex) {
   using traits = LockTraits<std::mutex>;
   static_assert(!traits::is_timed, "std:mutex is not a timed lock");
   static_assert(!traits::is_shared, "std:mutex is not a shared lock");
 TEST(LockTraits, std_mutex) {
   using traits = LockTraits<std::mutex>;
   static_assert(!traits::is_timed, "std:mutex is not a timed lock");
   static_assert(!traits::is_shared, "std:mutex is not a shared lock");
+  static_assert(!traits::is_upgrade, "std::mutex is not an upgradable lock");
 
   std::mutex mutex;
   traits::lock(mutex);
 
   std::mutex mutex;
   traits::lock(mutex);
@@ -40,8 +43,9 @@ TEST(LockTraits, std_mutex) {
 
 TEST(LockTraits, SharedMutex) {
   using traits = LockTraits<SharedMutex>;
 
 TEST(LockTraits, SharedMutex) {
   using traits = LockTraits<SharedMutex>;
-  static_assert(traits::is_timed, "SharedMutex is a timed lock");
-  static_assert(traits::is_shared, "SharedMutex is a shared lock");
+  static_assert(traits::is_timed, "folly::SharedMutex is a timed lock");
+  static_assert(traits::is_shared, "folly::SharedMutex is a shared lock");
+  static_assert(traits::is_upgrade, "folly::SharedMutex is an upgradable lock");
 
   SharedMutex mutex;
   traits::lock(mutex);
 
   SharedMutex mutex;
   traits::lock(mutex);
@@ -56,12 +60,62 @@ TEST(LockTraits, SharedMutex) {
   lock_shared_or_unique(mutex);
   unlock_shared_or_unique(mutex);
   unlock_shared_or_unique(mutex);
   lock_shared_or_unique(mutex);
   unlock_shared_or_unique(mutex);
   unlock_shared_or_unique(mutex);
+
+  traits::lock_upgrade(mutex);
+  traits::unlock_upgrade(mutex);
+
+  // test upgrade and downgrades
+  traits::lock_upgrade(mutex);
+  traits::unlock_upgrade_and_lock(mutex);
+  bool gotLock = traits::try_lock_for(mutex, one_ms);
+  EXPECT_FALSE(gotLock) << "Should not have been able to acquire an exclusive "
+                           "lock after upgrading to an exclusive lock";
+  gotLock = traits::try_lock_upgrade_for(mutex, one_ms);
+  EXPECT_FALSE(gotLock) << "Should not have been able to acquire an upgrade "
+                           "lock after upgrading to an exclusive lock";
+  gotLock = traits::try_lock_shared_for(mutex, one_ms);
+  EXPECT_FALSE(gotLock) << "Should not have been able to acquire a shared "
+                           "lock after upgrading to an exclusive lock";
+  traits::unlock(mutex);
+
+  traits::lock_upgrade(mutex);
+  traits::unlock_upgrade_and_lock_shared(mutex);
+  gotLock = traits::try_lock_for(mutex, one_ms);
+  EXPECT_FALSE(gotLock) << "Should not have been able to acquire an exclusive "
+                           "mutex after downgrading from an upgrade to a "
+                           "shared lock";
+  traits::unlock_shared(mutex);
+
+  traits::lock(mutex);
+  gotLock = traits::try_lock_for(mutex, one_ms);
+  EXPECT_FALSE(gotLock) << "Should not have been able to acquire an exclusive "
+                           "lock after acquiring an exclusive lock";
+  gotLock = traits::try_lock_upgrade_for(mutex, one_ms);
+  EXPECT_FALSE(gotLock) << "Should not have been able to acquire an upgrade "
+                           "lock after acquiring an exclusive lock";
+  gotLock = traits::try_lock_shared_for(mutex, one_ms);
+  EXPECT_FALSE(gotLock) << "Should not have been able to acquire a shared "
+                           "lock after acquiring an exclusive lock";
+  traits::unlock_and_lock_upgrade(mutex);
+  gotLock = traits::try_lock_for(mutex, one_ms);
+  EXPECT_FALSE(gotLock) << "Should not have been able to acquire an exclusive "
+                           "lock after downgrading to an upgrade lock";
+  traits::unlock_upgrade(mutex);
+
+  traits::lock(mutex);
+  traits::unlock_and_lock_shared(mutex);
+  gotLock = traits::try_lock_for(mutex, one_ms);
+  EXPECT_FALSE(gotLock) << "Should not have been able to acquire an exclusive "
+                           "lock after downgrading to a shared lock";
+  traits::unlock_shared(mutex);
 }
 
 TEST(LockTraits, SpinLock) {
   using traits = LockTraits<SpinLock>;
   static_assert(!traits::is_timed, "folly::SpinLock is not a timed lock");
   static_assert(!traits::is_shared, "folly::SpinLock is not a shared lock");
 }
 
 TEST(LockTraits, SpinLock) {
   using traits = LockTraits<SpinLock>;
   static_assert(!traits::is_timed, "folly::SpinLock is not a timed lock");
   static_assert(!traits::is_shared, "folly::SpinLock is not a shared lock");
+  static_assert(
+      !traits::is_upgrade, "folly::SpinLock is not an upgradable lock");
 
   SpinLock mutex;
   traits::lock(mutex);
 
   SpinLock mutex;
   traits::lock(mutex);
@@ -75,6 +129,7 @@ TEST(LockTraits, RWSpinLock) {
   using traits = LockTraits<RWSpinLock>;
   static_assert(!traits::is_timed, "folly::RWSpinLock is not a timed lock");
   static_assert(traits::is_shared, "folly::RWSpinLock is a shared lock");
   using traits = LockTraits<RWSpinLock>;
   static_assert(!traits::is_timed, "folly::RWSpinLock is not a timed lock");
   static_assert(traits::is_shared, "folly::RWSpinLock is a shared lock");
+  static_assert(traits::is_upgrade, "folly::RWSpinLock is an upgradable lock");
 
   RWSpinLock mutex;
   traits::lock(mutex);
 
   RWSpinLock mutex;
   traits::lock(mutex);
@@ -95,6 +150,7 @@ TEST(LockTraits, boost_mutex) {
   using traits = LockTraits<boost::mutex>;
   static_assert(!traits::is_timed, "boost::mutex is not a timed lock");
   static_assert(!traits::is_shared, "boost::mutex is not a shared lock");
   using traits = LockTraits<boost::mutex>;
   static_assert(!traits::is_timed, "boost::mutex is not a timed lock");
   static_assert(!traits::is_shared, "boost::mutex is not a shared lock");
+  static_assert(!traits::is_upgrade, "boost::mutex is not an upgradable lock");
 
   boost::mutex mutex;
   traits::lock(mutex);
 
   boost::mutex mutex;
   traits::lock(mutex);
@@ -110,6 +166,8 @@ TEST(LockTraits, boost_recursive_mutex) {
       !traits::is_timed, "boost::recursive_mutex is not a timed lock");
   static_assert(
       !traits::is_shared, "boost::recursive_mutex is not a shared lock");
       !traits::is_timed, "boost::recursive_mutex is not a timed lock");
   static_assert(
       !traits::is_shared, "boost::recursive_mutex is not a shared lock");
+  static_assert(
+      !traits::is_upgrade, "boost::recursive_mutex is not an upgradable lock");
 
   boost::recursive_mutex mutex;
   traits::lock(mutex);
 
   boost::recursive_mutex mutex;
   traits::lock(mutex);
@@ -128,6 +186,8 @@ TEST(LockTraits, timed_mutex) {
   using traits = LockTraits<std::timed_mutex>;
   static_assert(traits::is_timed, "std::timed_mutex is a timed lock");
   static_assert(!traits::is_shared, "std::timed_mutex is not a shared lock");
   using traits = LockTraits<std::timed_mutex>;
   static_assert(traits::is_timed, "std::timed_mutex is a timed lock");
   static_assert(!traits::is_shared, "std::timed_mutex is not a shared lock");
+  static_assert(
+      !traits::is_upgrade, "std::timed_mutex is not an upgradable lock");
 
   std::timed_mutex mutex;
   traits::lock(mutex);
 
   std::timed_mutex mutex;
   traits::lock(mutex);
@@ -148,6 +208,9 @@ TEST(LockTraits, recursive_timed_mutex) {
   static_assert(traits::is_timed, "std::recursive_timed_mutex is a timed lock");
   static_assert(
       !traits::is_shared, "std::recursive_timed_mutex is not a shared lock");
   static_assert(traits::is_timed, "std::recursive_timed_mutex is a timed lock");
   static_assert(
       !traits::is_shared, "std::recursive_timed_mutex is not a shared lock");
+  static_assert(
+      !traits::is_upgrade,
+      "std::recursive_timed_mutex is not an upgradable lock");
 
   std::recursive_timed_mutex mutex;
   traits::lock(mutex);
 
   std::recursive_timed_mutex mutex;
   traits::lock(mutex);
@@ -169,6 +232,8 @@ TEST(LockTraits, boost_shared_mutex) {
   using traits = LockTraits<boost::shared_mutex>;
   static_assert(traits::is_timed, "boost::shared_mutex is a timed lock");
   static_assert(traits::is_shared, "boost::shared_mutex is a shared lock");
   using traits = LockTraits<boost::shared_mutex>;
   static_assert(traits::is_timed, "boost::shared_mutex is a timed lock");
   static_assert(traits::is_shared, "boost::shared_mutex is a shared lock");
+  static_assert(
+      traits::is_upgrade, "boost::shared_mutex is an upgradable lock");
 
   boost::shared_mutex mutex;
   traits::lock(mutex);
 
   boost::shared_mutex mutex;
   traits::lock(mutex);
index fb77721eeb0975167871c80148723dd258dfb428..5826ef28bfce8c34ab1cfda853d0913d33aa1833 100644 (file)
@@ -154,14 +154,12 @@ using CountPair = std::pair<int, int>;
 // This class is specialized only to be uesed in SynchronizedLockTest
 class FakeMutex {
  public:
 // This class is specialized only to be uesed in SynchronizedLockTest
 class FakeMutex {
  public:
-  bool lock() {
+  void lock() {
     ++lockCount_;
     ++lockCount_;
-    return true;
   }
 
   }
 
-  bool unlock() {
+  void unlock() {
     ++unlockCount_;
     ++unlockCount_;
-    return true;
   }
 
   static CountPair getLockUnlockCount() {
   }
 
   static CountPair getLockUnlockCount() {