blob: 429c6f5ade327543e62a92b72296c4809179545e [file] [log] [blame]
mtklein4a9426f2015-03-31 14:24:27 -07001/*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SkFunction_DEFINED
9#define SkFunction_DEFINED
10
mtklein0d992db2015-05-06 07:40:25 -070011// TODO: document, more pervasive move support in constructors, small-Fn optimization
mtklein4a9426f2015-03-31 14:24:27 -070012
mtklein0d992db2015-05-06 07:40:25 -070013#include "SkTemplates.h"
mtklein4a9426f2015-03-31 14:24:27 -070014#include "SkTypes.h"
15
16template <typename> class SkFunction;
17
18template <typename R, typename... Args>
mtklein0d992db2015-05-06 07:40:25 -070019class SkFunction<R(Args...)> {
mtklein4a9426f2015-03-31 14:24:27 -070020public:
mtklein0d992db2015-05-06 07:40:25 -070021 SkFunction() {}
mtklein4a9426f2015-03-31 14:24:27 -070022
23 template <typename Fn>
mtklein0d992db2015-05-06 07:40:25 -070024 SkFunction(const Fn& fn) : fFunction(SkNEW_ARGS(LambdaImpl<Fn>, (fn))) {}
25
26 SkFunction(R (*fn)(Args...)) : fFunction(SkNEW_ARGS(FnPtrImpl, (fn))) {}
27
28 SkFunction(const SkFunction& other) { *this = other; }
29 SkFunction& operator=(const SkFunction& other) {
30 if (this != &other) {
31 fFunction.reset(other.fFunction ? other.fFunction->clone() : nullptr);
32 }
33 return *this;
mtklein4a9426f2015-03-31 14:24:27 -070034 }
35
mtklein0d992db2015-05-06 07:40:25 -070036 R operator()(Args... args) const {
37 SkASSERT(fFunction.get());
38 return fFunction->call(Forward(args)...);
mtklein97312d02015-04-01 08:11:16 -070039 }
40
mtklein4a9426f2015-03-31 14:24:27 -070041private:
mtklein74415272015-04-01 11:26:31 -070042 // ~= std::forward. This moves its argument if possible, falling back to a copy if not.
43 template <typename T> static T&& Forward(T& v) { return (T&&)v; }
44
mtklein0d992db2015-05-06 07:40:25 -070045 struct Interface {
46 virtual ~Interface() {}
47 virtual R call(Args...) const = 0;
48 virtual Interface* clone() const = 0;
mtklein4a9426f2015-03-31 14:24:27 -070049 };
50
mtklein4a9426f2015-03-31 14:24:27 -070051 template <typename Fn>
mtklein0d992db2015-05-06 07:40:25 -070052 class LambdaImpl final : public Interface {
53 public:
54 LambdaImpl(const Fn& fn) : fFn(fn) {}
mtklein4a9426f2015-03-31 14:24:27 -070055
mtklein0d992db2015-05-06 07:40:25 -070056 R call(Args... args) const override { return fFn(Forward(args)...); }
57 Interface* clone() const { return SkNEW_ARGS(LambdaImpl<Fn>, (fFn)); }
58 private:
59 Fn fFn;
60 };
mtklein97312d02015-04-01 08:11:16 -070061
mtklein0d992db2015-05-06 07:40:25 -070062 class FnPtrImpl final : public Interface {
63 public:
64 FnPtrImpl(R (*fn)(Args...)) : fFn(fn) {}
mtklein97312d02015-04-01 08:11:16 -070065
mtklein0d992db2015-05-06 07:40:25 -070066 R call(Args... args) const override { return fFn(Forward(args)...); }
67 Interface* clone() const { return SkNEW_ARGS(FnPtrImpl, (fFn)); }
68 private:
69 R (*fFn)(Args...);
70 };
71
72 SkAutoTDelete<Interface> fFunction;
mtklein4a9426f2015-03-31 14:24:27 -070073};
74
mtklein4a9426f2015-03-31 14:24:27 -070075#endif//SkFunction_DEFINED