Bug 1869043 assert that graph set access is main thread only r=padenot
[gecko.git] / mfbt / MaybeOneOf.h
blob769f18d5ddbc30dfabc594dcf73230046486a288
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 /*
8 * A class storing one of two optional value types that supports in-place lazy
9 * construction.
12 #ifndef mozilla_MaybeOneOf_h
13 #define mozilla_MaybeOneOf_h
15 #include <stddef.h> // for size_t
17 #include <new> // for placement new
18 #include <utility>
20 #include "mozilla/Assertions.h"
21 #include "mozilla/OperatorNewExtensions.h"
22 #include "mozilla/TemplateLib.h"
24 namespace mozilla {
27 * MaybeOneOf<T1, T2> is like Maybe, but it supports constructing either T1
28 * or T2. When a MaybeOneOf<T1, T2> is constructed, it is |empty()|, i.e.,
29 * no value has been constructed and no destructor will be called when the
30 * MaybeOneOf<T1, T2> is destroyed. Upon calling |construct<T1>()| or
31 * |construct<T2>()|, a T1 or T2 object will be constructed with the given
32 * arguments and that object will be destroyed when the owning MaybeOneOf is
33 * destroyed.
35 * Because MaybeOneOf must be aligned suitable to hold any value stored within
36 * it, and because |alignas| requirements don't affect platform ABI with respect
37 * to how parameters are laid out in memory, MaybeOneOf can't be used as the
38 * type of a function parameter. Pass MaybeOneOf to functions by pointer or
39 * reference instead.
41 template <class T1, class T2>
42 class MOZ_NON_PARAM MaybeOneOf {
43 static constexpr size_t StorageAlignment =
44 tl::Max<alignof(T1), alignof(T2)>::value;
45 static constexpr size_t StorageSize = tl::Max<sizeof(T1), sizeof(T2)>::value;
47 alignas(StorageAlignment) unsigned char storage[StorageSize];
49 // GCC fails due to -Werror=strict-aliasing if |storage| is directly cast to
50 // T*. Indirecting through these functions addresses the problem.
51 void* data() { return storage; }
52 const void* data() const { return storage; }
54 enum State { None, SomeT1, SomeT2 } state;
55 template <class T, class Ignored = void>
56 struct Type2State {};
58 template <class T>
59 T& as() {
60 MOZ_ASSERT(state == Type2State<T>::result);
61 return *static_cast<T*>(data());
64 template <class T>
65 const T& as() const {
66 MOZ_ASSERT(state == Type2State<T>::result);
67 return *static_cast<const T*>(data());
70 public:
71 MaybeOneOf() : state(None) {}
72 ~MaybeOneOf() { destroyIfConstructed(); }
74 MaybeOneOf(MaybeOneOf&& rhs) : state(None) {
75 if (!rhs.empty()) {
76 if (rhs.constructed<T1>()) {
77 construct<T1>(std::move(rhs.as<T1>()));
78 rhs.as<T1>().~T1();
79 } else {
80 construct<T2>(std::move(rhs.as<T2>()));
81 rhs.as<T2>().~T2();
83 rhs.state = None;
87 MaybeOneOf& operator=(MaybeOneOf&& rhs) {
88 MOZ_ASSERT(this != &rhs, "Self-move is prohibited");
89 this->~MaybeOneOf();
90 new (this) MaybeOneOf(std::move(rhs));
91 return *this;
94 bool empty() const { return state == None; }
96 template <class T>
97 bool constructed() const {
98 return state == Type2State<T>::result;
101 template <class T, class... Args>
102 void construct(Args&&... aArgs) {
103 MOZ_ASSERT(state == None);
104 state = Type2State<T>::result;
105 ::new (KnownNotNull, data()) T(std::forward<Args>(aArgs)...);
108 template <class T>
109 T& ref() {
110 return as<T>();
113 template <class T>
114 const T& ref() const {
115 return as<T>();
118 void destroy() {
119 MOZ_ASSERT(state == SomeT1 || state == SomeT2);
120 if (state == SomeT1) {
121 as<T1>().~T1();
122 } else if (state == SomeT2) {
123 as<T2>().~T2();
125 state = None;
128 void destroyIfConstructed() {
129 if (!empty()) {
130 destroy();
134 template <typename Func>
135 constexpr auto mapNonEmpty(Func&& aFunc) const {
136 MOZ_ASSERT(!empty());
137 if (state == SomeT1) {
138 return std::forward<Func>(aFunc)(as<T1>());
140 return std::forward<Func>(aFunc)(as<T2>());
142 template <typename Func>
143 constexpr auto mapNonEmpty(Func&& aFunc) {
144 MOZ_ASSERT(!empty());
145 if (state == SomeT1) {
146 return std::forward<Func>(aFunc)(as<T1>());
148 return std::forward<Func>(aFunc)(as<T2>());
151 private:
152 MaybeOneOf(const MaybeOneOf& aOther) = delete;
153 const MaybeOneOf& operator=(const MaybeOneOf& aOther) = delete;
156 template <class T1, class T2>
157 template <class Ignored>
158 struct MaybeOneOf<T1, T2>::Type2State<T1, Ignored> {
159 typedef MaybeOneOf<T1, T2> Enclosing;
160 static const typename Enclosing::State result = Enclosing::SomeT1;
163 template <class T1, class T2>
164 template <class Ignored>
165 struct MaybeOneOf<T1, T2>::Type2State<T2, Ignored> {
166 typedef MaybeOneOf<T1, T2> Enclosing;
167 static const typename Enclosing::State result = Enclosing::SomeT2;
170 } // namespace mozilla
172 #endif /* mozilla_MaybeOneOf_h */