Bug 1535487 - determine rootUrl directly in buglist creator r=tomprince
[gecko.git] / mfbt / ReentrancyGuard.h
blob1db8d5907b6ef32e19dc24cbbf6cdf4447cfee92
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 /* Small helper class for asserting uses of a class are non-reentrant. */
9 #ifndef mozilla_ReentrancyGuard_h
10 #define mozilla_ReentrancyGuard_h
12 #include "mozilla/Assertions.h"
13 #include "mozilla/Attributes.h"
14 #include "mozilla/GuardObjects.h"
16 namespace mozilla {
18 /* Useful for implementing containers that assert non-reentrancy */
19 class MOZ_RAII ReentrancyGuard {
20 MOZ_DECL_USE_GUARD_OBJECT_NOTIFIER
21 #ifdef DEBUG
22 bool& mEntered;
23 #endif
25 public:
26 template <class T>
27 #ifdef DEBUG
28 explicit ReentrancyGuard(T& aObj MOZ_GUARD_OBJECT_NOTIFIER_PARAM)
29 : mEntered(aObj.mEntered)
30 #else
31 explicit ReentrancyGuard(T& MOZ_GUARD_OBJECT_NOTIFIER_PARAM)
32 #endif
34 MOZ_GUARD_OBJECT_NOTIFIER_INIT;
35 #ifdef DEBUG
36 MOZ_ASSERT(!mEntered);
37 mEntered = true;
38 #endif
40 ~ReentrancyGuard() {
41 #ifdef DEBUG
42 mEntered = false;
43 #endif
46 private:
47 ReentrancyGuard(const ReentrancyGuard&) = delete;
48 void operator=(const ReentrancyGuard&) = delete;
51 } // namespace mozilla
53 #endif /* mozilla_ReentrancyGuard_h */