annotate osx/include/kj/one-of.h @ 169:223a55898ab9 tip default

Add null config files
author Chris Cannam <cannam@all-day-breakfast.com>
date Mon, 02 Mar 2020 14:03:47 +0000
parents 45360b968bf4
children
rev   line source
cannam@147 1 // Copyright (c) 2013-2014 Sandstorm Development Group, Inc. and contributors
cannam@147 2 // Licensed under the MIT License:
cannam@147 3 //
cannam@147 4 // Permission is hereby granted, free of charge, to any person obtaining a copy
cannam@147 5 // of this software and associated documentation files (the "Software"), to deal
cannam@147 6 // in the Software without restriction, including without limitation the rights
cannam@147 7 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
cannam@147 8 // copies of the Software, and to permit persons to whom the Software is
cannam@147 9 // furnished to do so, subject to the following conditions:
cannam@147 10 //
cannam@147 11 // The above copyright notice and this permission notice shall be included in
cannam@147 12 // all copies or substantial portions of the Software.
cannam@147 13 //
cannam@147 14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
cannam@147 15 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
cannam@147 16 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
cannam@147 17 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
cannam@147 18 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
cannam@147 19 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
cannam@147 20 // THE SOFTWARE.
cannam@147 21
cannam@147 22 #ifndef KJ_ONE_OF_H_
cannam@147 23 #define KJ_ONE_OF_H_
cannam@147 24
cannam@147 25 #if defined(__GNUC__) && !KJ_HEADER_WARNINGS
cannam@147 26 #pragma GCC system_header
cannam@147 27 #endif
cannam@147 28
cannam@147 29 #include "common.h"
cannam@147 30
cannam@147 31 namespace kj {
cannam@147 32
cannam@147 33 namespace _ { // private
cannam@147 34
cannam@147 35 template <uint i, typename Key, typename First, typename... Rest>
cannam@147 36 struct TypeIndex_ { static constexpr uint value = TypeIndex_<i + 1, Key, Rest...>::value; };
cannam@147 37 template <uint i, typename Key, typename... Rest>
cannam@147 38 struct TypeIndex_<i, Key, Key, Rest...> { static constexpr uint value = i; };
cannam@147 39
cannam@147 40 } // namespace _ (private)
cannam@147 41
cannam@147 42 template <typename... Variants>
cannam@147 43 class OneOf {
cannam@147 44 template <typename Key>
cannam@147 45 static inline constexpr uint typeIndex() { return _::TypeIndex_<1, Key, Variants...>::value; }
cannam@147 46 // Get the 1-based index of Key within the type list Types.
cannam@147 47
cannam@147 48 public:
cannam@147 49 inline OneOf(): tag(0) {}
cannam@147 50 OneOf(const OneOf& other) { copyFrom(other); }
cannam@147 51 OneOf(OneOf&& other) { moveFrom(other); }
cannam@147 52 ~OneOf() { destroy(); }
cannam@147 53
cannam@147 54 OneOf& operator=(const OneOf& other) { if (tag != 0) destroy(); copyFrom(other); return *this; }
cannam@147 55 OneOf& operator=(OneOf&& other) { if (tag != 0) destroy(); moveFrom(other); return *this; }
cannam@147 56
cannam@147 57 inline bool operator==(decltype(nullptr)) const { return tag == 0; }
cannam@147 58 inline bool operator!=(decltype(nullptr)) const { return tag != 0; }
cannam@147 59
cannam@147 60 template <typename T>
cannam@147 61 bool is() const {
cannam@147 62 return tag == typeIndex<T>();
cannam@147 63 }
cannam@147 64
cannam@147 65 template <typename T>
cannam@147 66 T& get() {
cannam@147 67 KJ_IREQUIRE(is<T>(), "Must check OneOf::is<T>() before calling get<T>().");
cannam@147 68 return *reinterpret_cast<T*>(space);
cannam@147 69 }
cannam@147 70 template <typename T>
cannam@147 71 const T& get() const {
cannam@147 72 KJ_IREQUIRE(is<T>(), "Must check OneOf::is<T>() before calling get<T>().");
cannam@147 73 return *reinterpret_cast<const T*>(space);
cannam@147 74 }
cannam@147 75
cannam@147 76 template <typename T, typename... Params>
cannam@147 77 T& init(Params&&... params) {
cannam@147 78 if (tag != 0) destroy();
cannam@147 79 ctor(*reinterpret_cast<T*>(space), kj::fwd<Params>(params)...);
cannam@147 80 tag = typeIndex<T>();
cannam@147 81 return *reinterpret_cast<T*>(space);
cannam@147 82 }
cannam@147 83
cannam@147 84 private:
cannam@147 85 uint tag;
cannam@147 86
cannam@147 87 static inline constexpr size_t maxSize(size_t a) {
cannam@147 88 return a;
cannam@147 89 }
cannam@147 90 template <typename... Rest>
cannam@147 91 static inline constexpr size_t maxSize(size_t a, size_t b, Rest... rest) {
cannam@147 92 return maxSize(kj::max(a, b), rest...);
cannam@147 93 }
cannam@147 94 // Returns the maximum of all the parameters.
cannam@147 95 // TODO(someday): Generalize the above template and make it common. I tried, but C++ decided to
cannam@147 96 // be difficult so I cut my losses.
cannam@147 97
cannam@147 98 static constexpr auto spaceSize = maxSize(sizeof(Variants)...);
cannam@147 99 // TODO(msvc): This constant could just as well go directly inside space's bracket's, where it's
cannam@147 100 // used, but MSVC suffers a parse error on `...`.
cannam@147 101
cannam@147 102 union {
cannam@147 103 byte space[spaceSize];
cannam@147 104
cannam@147 105 void* forceAligned;
cannam@147 106 // TODO(someday): Use C++11 alignas() once we require GCC 4.8 / Clang 3.3.
cannam@147 107 };
cannam@147 108
cannam@147 109 template <typename... T>
cannam@147 110 inline void doAll(T... t) {}
cannam@147 111
cannam@147 112 template <typename T>
cannam@147 113 inline bool destroyVariant() {
cannam@147 114 if (tag == typeIndex<T>()) {
cannam@147 115 tag = 0;
cannam@147 116 dtor(*reinterpret_cast<T*>(space));
cannam@147 117 }
cannam@147 118 return false;
cannam@147 119 }
cannam@147 120 void destroy() {
cannam@147 121 doAll(destroyVariant<Variants>()...);
cannam@147 122 }
cannam@147 123
cannam@147 124 template <typename T>
cannam@147 125 inline bool copyVariantFrom(const OneOf& other) {
cannam@147 126 if (other.is<T>()) {
cannam@147 127 ctor(*reinterpret_cast<T*>(space), other.get<T>());
cannam@147 128 }
cannam@147 129 return false;
cannam@147 130 }
cannam@147 131 void copyFrom(const OneOf& other) {
cannam@147 132 // Initialize as a copy of `other`. Expects that `this` starts out uninitialized, so the tag
cannam@147 133 // is invalid.
cannam@147 134 tag = other.tag;
cannam@147 135 doAll(copyVariantFrom<Variants>(other)...);
cannam@147 136 }
cannam@147 137
cannam@147 138 template <typename T>
cannam@147 139 inline bool moveVariantFrom(OneOf& other) {
cannam@147 140 if (other.is<T>()) {
cannam@147 141 ctor(*reinterpret_cast<T*>(space), kj::mv(other.get<T>()));
cannam@147 142 }
cannam@147 143 return false;
cannam@147 144 }
cannam@147 145 void moveFrom(OneOf& other) {
cannam@147 146 // Initialize as a copy of `other`. Expects that `this` starts out uninitialized, so the tag
cannam@147 147 // is invalid.
cannam@147 148 tag = other.tag;
cannam@147 149 doAll(moveVariantFrom<Variants>(other)...);
cannam@147 150 }
cannam@147 151 };
cannam@147 152
cannam@147 153 } // namespace kj
cannam@147 154
cannam@147 155 #endif // KJ_ONE_OF_H_