summaryrefslogtreecommitdiff
path: root/Menes/Function.h
blob: 37f8e9737e4a2c57e50b7da72d1014376a4a9c6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/* Cydia - iPhone UIKit Front-End for Debian APT
 * Copyright (C) 2008-2015  Jay Freeman (saurik)
*/

/* GNU General Public License, Version 3 {{{ */
/*
 * Cydia is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published
 * by the Free Software Foundation, either version 3 of the License,
 * or (at your option) any later version.
 *
 * Cydia is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Cydia.  If not, see <http://www.gnu.org/licenses/>.
**/
/* }}} */

#ifndef Menes_Function_H
#define Menes_Function_H

template <typename Result_, typename... Args_>
class Function {
  private:
    class Abstract {
      private:
        unsigned references_;

      public:
        Abstract() :
            references_(0)
        {
        }

        Abstract(const Abstract &) = delete;
        Abstract &operator =(const Abstract &) = delete;

        virtual ~Abstract() {
        }

        void Retain() {
            ++references_;
        }

        void Release() {
            if (--references_ == 0)
                delete this;
        }

        virtual Result_ operator()(Args_... args) const = 0;
    };

    template <typename Callable_>
    class Concrete :
        public Abstract
    {
      private:
        Callable_ callable_;

      public:
        Concrete(const Callable_ &callable) :
            callable_(callable)
        {
        }

        virtual Result_ operator()(Args_... args) const {
            return callable_(args...);
        }
    };

  private:
    Abstract *abstract_;

    void Release() {
        if (abstract_ != NULL)
            abstract_->Release();
    }

    void Copy(Abstract *abstract) {
        if (abstract != NULL)
            abstract->Retain();
        Release();
        abstract_ = abstract;
    }

    template <typename Callable_>
    void Assign(const Callable_ &callable) {
        Copy(new Concrete<Callable_>(callable));
    }

  public:
    Function() :
        abstract_(NULL)
    {
    }

    Function(decltype(nullptr)) :
        Function()
    {
    }

    Function(const Function &function) :
        abstract_(function.abstract_)
    {
        abstract_->Retain();
    }

    template <typename Callable_>
    Function(const Callable_ &callable) :
        Function()
    {
        Assign(callable);
    }

    ~Function() {
        Release();
    }

    Function &operator =(decltype(nullptr)) {
        Clear();
        return *this;
    }

    Function &operator =(const Function &function) {
        Copy(function.abstract_);
        return *this;
    }

    Result_ operator()(Args_... args) const {
        return (*abstract_)(args...);
    }

    void Clear() {
        Release();
        abstract_ = NULL;
    }

    template <typename Callable_>
    Function &operator =(const Callable_ &callable) {
        Assign(callable);
        return *this;
    }

    operator bool() const {
        return abstract_ != NULL;
    }
};

#endif//Menes_Function_H