annotate osx/include/kj/function.h @ 49:3ab5a40c4e3b

Add Capnp and KJ builds for OSX
author Chris Cannam <cannam@all-day-breakfast.com>
date Tue, 25 Oct 2016 14:48:23 +0100
parents
children 0994c39f1e94
rev   line source
cannam@49 1 // Copyright (c) 2013-2014 Sandstorm Development Group, Inc. and contributors
cannam@49 2 // Licensed under the MIT License:
cannam@49 3 //
cannam@49 4 // Permission is hereby granted, free of charge, to any person obtaining a copy
cannam@49 5 // of this software and associated documentation files (the "Software"), to deal
cannam@49 6 // in the Software without restriction, including without limitation the rights
cannam@49 7 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
cannam@49 8 // copies of the Software, and to permit persons to whom the Software is
cannam@49 9 // furnished to do so, subject to the following conditions:
cannam@49 10 //
cannam@49 11 // The above copyright notice and this permission notice shall be included in
cannam@49 12 // all copies or substantial portions of the Software.
cannam@49 13 //
cannam@49 14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
cannam@49 15 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
cannam@49 16 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
cannam@49 17 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
cannam@49 18 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
cannam@49 19 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
cannam@49 20 // THE SOFTWARE.
cannam@49 21
cannam@49 22 #ifndef KJ_FUNCTION_H_
cannam@49 23 #define KJ_FUNCTION_H_
cannam@49 24
cannam@49 25 #if defined(__GNUC__) && !KJ_HEADER_WARNINGS
cannam@49 26 #pragma GCC system_header
cannam@49 27 #endif
cannam@49 28
cannam@49 29 #include "memory.h"
cannam@49 30
cannam@49 31 namespace kj {
cannam@49 32
cannam@49 33 template <typename Signature>
cannam@49 34 class Function;
cannam@49 35 // Function wrapper using virtual-based polymorphism. Use this when template polymorphism is
cannam@49 36 // not possible. You can, for example, accept a Function as a parameter:
cannam@49 37 //
cannam@49 38 // void setFilter(Function<bool(const Widget&)> filter);
cannam@49 39 //
cannam@49 40 // The caller of `setFilter()` may then pass any callable object as the parameter. The callable
cannam@49 41 // object does not have to have the exact signature specified, just one that is "compatible" --
cannam@49 42 // i.e. the return type is covariant and the parameters are contravariant.
cannam@49 43 //
cannam@49 44 // Unlike `std::function`, `kj::Function`s are movable but not copyable, just like `kj::Own`. This
cannam@49 45 // is to avoid unexpected heap allocation or slow atomic reference counting.
cannam@49 46 //
cannam@49 47 // When a `Function` is constructed from an lvalue, it captures only a reference to the value.
cannam@49 48 // When constructed from an rvalue, it invokes the value's move constructor. So, for example:
cannam@49 49 //
cannam@49 50 // struct AddN {
cannam@49 51 // int n;
cannam@49 52 // int operator(int i) { return i + n; }
cannam@49 53 // }
cannam@49 54 //
cannam@49 55 // Function<int(int, int)> f1 = AddN{2};
cannam@49 56 // // f1 owns an instance of AddN. It may safely be moved out
cannam@49 57 // // of the local scope.
cannam@49 58 //
cannam@49 59 // AddN adder(2);
cannam@49 60 // Function<int(int, int)> f2 = adder;
cannam@49 61 // // f2 contains a reference to `adder`. Thus, it becomes invalid
cannam@49 62 // // when `adder` goes out-of-scope.
cannam@49 63 //
cannam@49 64 // AddN adder2(2);
cannam@49 65 // Function<int(int, int)> f3 = kj::mv(adder2);
cannam@49 66 // // f3 owns an insatnce of AddN moved from `adder2`. f3 may safely
cannam@49 67 // // be moved out of the local scope.
cannam@49 68 //
cannam@49 69 // Additionally, a Function may be bound to a class method using KJ_BIND_METHOD(object, methodName).
cannam@49 70 // For example:
cannam@49 71 //
cannam@49 72 // class Printer {
cannam@49 73 // public:
cannam@49 74 // void print(int i);
cannam@49 75 // void print(kj::StringPtr s);
cannam@49 76 // };
cannam@49 77 //
cannam@49 78 // Printer p;
cannam@49 79 //
cannam@49 80 // Function<void(uint)> intPrinter = KJ_BIND_METHOD(p, print);
cannam@49 81 // // Will call Printer::print(int).
cannam@49 82 //
cannam@49 83 // Function<void(const char*)> strPrinter = KJ_BIND_METHOD(p, print);
cannam@49 84 // // Will call Printer::print(kj::StringPtr).
cannam@49 85 //
cannam@49 86 // Notice how KJ_BIND_METHOD is able to figure out which overload to use depending on the kind of
cannam@49 87 // Function it is binding to.
cannam@49 88
cannam@49 89 template <typename Signature>
cannam@49 90 class ConstFunction;
cannam@49 91 // Like Function, but wraps a "const" (i.e. thread-safe) call.
cannam@49 92
cannam@49 93 template <typename Return, typename... Params>
cannam@49 94 class Function<Return(Params...)> {
cannam@49 95 public:
cannam@49 96 template <typename F>
cannam@49 97 inline Function(F&& f): impl(heap<Impl<F>>(kj::fwd<F>(f))) {}
cannam@49 98 Function() = default;
cannam@49 99
cannam@49 100 // Make sure people don't accidentally end up wrapping a reference when they meant to return
cannam@49 101 // a function.
cannam@49 102 KJ_DISALLOW_COPY(Function);
cannam@49 103 Function(Function&) = delete;
cannam@49 104 Function& operator=(Function&) = delete;
cannam@49 105 template <typename T> Function(const Function<T>&) = delete;
cannam@49 106 template <typename T> Function& operator=(const Function<T>&) = delete;
cannam@49 107 template <typename T> Function(const ConstFunction<T>&) = delete;
cannam@49 108 template <typename T> Function& operator=(const ConstFunction<T>&) = delete;
cannam@49 109 Function(Function&&) = default;
cannam@49 110 Function& operator=(Function&&) = default;
cannam@49 111
cannam@49 112 inline Return operator()(Params... params) {
cannam@49 113 return (*impl)(kj::fwd<Params>(params)...);
cannam@49 114 }
cannam@49 115
cannam@49 116 Function reference() {
cannam@49 117 // Forms a new Function of the same type that delegates to this Function by reference.
cannam@49 118 // Therefore, this Function must outlive the returned Function, but otherwise they behave
cannam@49 119 // exactly the same.
cannam@49 120
cannam@49 121 return *impl;
cannam@49 122 }
cannam@49 123
cannam@49 124 private:
cannam@49 125 class Iface {
cannam@49 126 public:
cannam@49 127 virtual Return operator()(Params... params) = 0;
cannam@49 128 };
cannam@49 129
cannam@49 130 template <typename F>
cannam@49 131 class Impl final: public Iface {
cannam@49 132 public:
cannam@49 133 explicit Impl(F&& f): f(kj::fwd<F>(f)) {}
cannam@49 134
cannam@49 135 Return operator()(Params... params) override {
cannam@49 136 return f(kj::fwd<Params>(params)...);
cannam@49 137 }
cannam@49 138
cannam@49 139 private:
cannam@49 140 F f;
cannam@49 141 };
cannam@49 142
cannam@49 143 Own<Iface> impl;
cannam@49 144 };
cannam@49 145
cannam@49 146 template <typename Return, typename... Params>
cannam@49 147 class ConstFunction<Return(Params...)> {
cannam@49 148 public:
cannam@49 149 template <typename F>
cannam@49 150 inline ConstFunction(F&& f): impl(heap<Impl<F>>(kj::fwd<F>(f))) {}
cannam@49 151 ConstFunction() = default;
cannam@49 152
cannam@49 153 // Make sure people don't accidentally end up wrapping a reference when they meant to return
cannam@49 154 // a function.
cannam@49 155 KJ_DISALLOW_COPY(ConstFunction);
cannam@49 156 ConstFunction(ConstFunction&) = delete;
cannam@49 157 ConstFunction& operator=(ConstFunction&) = delete;
cannam@49 158 template <typename T> ConstFunction(const ConstFunction<T>&) = delete;
cannam@49 159 template <typename T> ConstFunction& operator=(const ConstFunction<T>&) = delete;
cannam@49 160 template <typename T> ConstFunction(const Function<T>&) = delete;
cannam@49 161 template <typename T> ConstFunction& operator=(const Function<T>&) = delete;
cannam@49 162 ConstFunction(ConstFunction&&) = default;
cannam@49 163 ConstFunction& operator=(ConstFunction&&) = default;
cannam@49 164
cannam@49 165 inline Return operator()(Params... params) const {
cannam@49 166 return (*impl)(kj::fwd<Params>(params)...);
cannam@49 167 }
cannam@49 168
cannam@49 169 ConstFunction reference() const {
cannam@49 170 // Forms a new ConstFunction of the same type that delegates to this ConstFunction by reference.
cannam@49 171 // Therefore, this ConstFunction must outlive the returned ConstFunction, but otherwise they
cannam@49 172 // behave exactly the same.
cannam@49 173
cannam@49 174 return *impl;
cannam@49 175 }
cannam@49 176
cannam@49 177 private:
cannam@49 178 class Iface {
cannam@49 179 public:
cannam@49 180 virtual Return operator()(Params... params) const = 0;
cannam@49 181 };
cannam@49 182
cannam@49 183 template <typename F>
cannam@49 184 class Impl final: public Iface {
cannam@49 185 public:
cannam@49 186 explicit Impl(F&& f): f(kj::fwd<F>(f)) {}
cannam@49 187
cannam@49 188 Return operator()(Params... params) const override {
cannam@49 189 return f(kj::fwd<Params>(params)...);
cannam@49 190 }
cannam@49 191
cannam@49 192 private:
cannam@49 193 F f;
cannam@49 194 };
cannam@49 195
cannam@49 196 Own<Iface> impl;
cannam@49 197 };
cannam@49 198
cannam@49 199 #if 1
cannam@49 200
cannam@49 201 namespace _ { // private
cannam@49 202
cannam@49 203 template <typename T, typename Signature, Signature method>
cannam@49 204 class BoundMethod;
cannam@49 205
cannam@49 206 template <typename T, typename Return, typename... Params, Return (Decay<T>::*method)(Params...)>
cannam@49 207 class BoundMethod<T, Return (Decay<T>::*)(Params...), method> {
cannam@49 208 public:
cannam@49 209 BoundMethod(T&& t): t(kj::fwd<T>(t)) {}
cannam@49 210
cannam@49 211 Return operator()(Params&&... params) {
cannam@49 212 return (t.*method)(kj::fwd<Params>(params)...);
cannam@49 213 }
cannam@49 214
cannam@49 215 private:
cannam@49 216 T t;
cannam@49 217 };
cannam@49 218
cannam@49 219 template <typename T, typename Return, typename... Params,
cannam@49 220 Return (Decay<T>::*method)(Params...) const>
cannam@49 221 class BoundMethod<T, Return (Decay<T>::*)(Params...) const, method> {
cannam@49 222 public:
cannam@49 223 BoundMethod(T&& t): t(kj::fwd<T>(t)) {}
cannam@49 224
cannam@49 225 Return operator()(Params&&... params) const {
cannam@49 226 return (t.*method)(kj::fwd<Params>(params)...);
cannam@49 227 }
cannam@49 228
cannam@49 229 private:
cannam@49 230 T t;
cannam@49 231 };
cannam@49 232
cannam@49 233 } // namespace _ (private)
cannam@49 234
cannam@49 235 #define KJ_BIND_METHOD(obj, method) \
cannam@49 236 ::kj::_::BoundMethod<KJ_DECLTYPE_REF(obj), \
cannam@49 237 decltype(&::kj::Decay<decltype(obj)>::method), \
cannam@49 238 &::kj::Decay<decltype(obj)>::method>(obj)
cannam@49 239 // Macro that produces a functor object which forwards to the method `obj.name`. If `obj` is an
cannam@49 240 // lvalue, the functor will hold a reference to it. If `obj` is an rvalue, the functor will
cannam@49 241 // contain a copy (by move) of it.
cannam@49 242 //
cannam@49 243 // The current implementation requires that the method is not overloaded.
cannam@49 244 //
cannam@49 245 // TODO(someday): C++14's generic lambdas may be able to simplify this code considerably, and
cannam@49 246 // probably make it work with overloaded methods.
cannam@49 247
cannam@49 248 #else
cannam@49 249 // Here's a better implementation of the above that doesn't work with GCC (but does with Clang)
cannam@49 250 // because it uses a local class with a template method. Sigh. This implementation supports
cannam@49 251 // overloaded methods.
cannam@49 252
cannam@49 253 #define KJ_BIND_METHOD(obj, method) \
cannam@49 254 ({ \
cannam@49 255 typedef KJ_DECLTYPE_REF(obj) T; \
cannam@49 256 class F { \
cannam@49 257 public: \
cannam@49 258 inline F(T&& t): t(::kj::fwd<T>(t)) {} \
cannam@49 259 template <typename... Params> \
cannam@49 260 auto operator()(Params&&... params) \
cannam@49 261 -> decltype(::kj::instance<T>().method(::kj::fwd<Params>(params)...)) { \
cannam@49 262 return t.method(::kj::fwd<Params>(params)...); \
cannam@49 263 } \
cannam@49 264 private: \
cannam@49 265 T t; \
cannam@49 266 }; \
cannam@49 267 (F(obj)); \
cannam@49 268 })
cannam@49 269 // Macro that produces a functor object which forwards to the method `obj.name`. If `obj` is an
cannam@49 270 // lvalue, the functor will hold a reference to it. If `obj` is an rvalue, the functor will
cannam@49 271 // contain a copy (by move) of it.
cannam@49 272
cannam@49 273 #endif
cannam@49 274
cannam@49 275 } // namespace kj
cannam@49 276
cannam@49 277 #endif // KJ_FUNCTION_H_