File: test_virtual_inheritance.cpp

package info (click to toggle)
luabind 0.9.1%2Bgit20150823%2Bdfsg-3
  • links: PTS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,692 kB
  • sloc: cpp: 14,884; makefile: 204; sh: 41; python: 38; ansic: 11
file content (236 lines) | stat: -rw-r--r-- 3,814 bytes parent folder | download | duplicates (2)
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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
// Copyright Daniel Wallin 2009. Use, modification and distribution is
// subject to the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

#include "test.hpp"
#include <luabind/luabind.hpp>


namespace {

// Test the following hierarchy:
//
//         X
//        / \.
//       Y   Z
//        \ /
//         U

struct X
{
    X(int x_)
      : value(x_)
    {}

    virtual ~X()
    {}

    int f() const
    {
        return value;
    }

    int value;
};

struct Y : virtual X
{
    Y(int value_)
      : X(value_)
      , dummy(2)
    {}

    int g() const
    {
        return dummy;
    }

    int dummy;
};

struct Z : virtual X
{
    Z(int value_)
      : X(value_)
      , dummy(3)
    {}

    int h() const
    {
        return dummy;
    }

    int dummy;
};

struct U : Y, Z
{
    U(int value_)
      : X(value_)
      , Y(value_)
      , Z(value_)
    {}

    int dummy;
};

X* upcast(U* p)
{
    return p;
}

// This hiearchy tries to prove that conversion and caching works for all sub
// object pointers:
//
//
//      Base  Base
//       |     |
//      Left  Right
//        \   /
//         \ /
//       Derived
//

struct Base
{
    Base(int value_)
      : value(value_)
    {}

    virtual ~Base()
    {}

    int value;
};

struct Left : Base
{
    Left()
      : Base(1)
    {}

    int left() const
    {
        return value;
    }

    int dummy;
};

struct Right : Base
{
    Right()
      : Base(2)
    {}

    int right() const
    {
        return value;
    }

    int dummy;
};

struct Derived : Left, Right
{
    int f() const
    {
        return 3;
    }

    int dummy;
};

Base* left(Left* p)
{
    return p;
}

Base* right(Right* p)
{
    return p;
}

} // namespace unnamed

void test_main(lua_State* L)
{
    using namespace luabind;

    module(L) [
        class_<X>("X")
            .def("f", &X::f),
        class_<Y, X>("Y")
            .def("g", &Y::g),
        class_<Z, X>("Z")
            .def("h", &Z::h),
        class_<U, bases<Y, Z> >("U")
            .def(constructor<int>()),
        def("upcast", &upcast)
    ];

    // Do everything twice to verify that caching works.

    DOSTRING(L,
        "x = U(1)\n"
        "assert(x:f() == 1)\n"
        "assert(x:f() == 1)\n"
        "assert(x:g() == 2)\n"
        "assert(x:g() == 2)\n"
        "assert(x:h() == 3)\n"
        "assert(x:h() == 3)\n"
    );

    DOSTRING(L,
        "y = upcast(x)\n"
        "assert(y:f() == 1)\n"
        "assert(y:f() == 1)\n"
        "assert(y:g() == 2)\n"
        "assert(y:g() == 2)\n"
        "assert(y:h() == 3)\n"
        "assert(y:h() == 3)\n"
    );

    module(L) [
        class_<Base>("Base"),
        class_<Left, Base>("Left")
            .def("left", &Left::left),
        class_<Right, Base>("Right")
            .def("right", &Right::right),
        class_<Derived, bases<Left, Right> >("Derived")
            .def(constructor<>())
            .def("f", &Derived::f),
        def("left", &left),
        def("right", &right)
    ];

    DOSTRING(L,
        "x = Derived()\n"
        "assert(x:left() == 1)\n"
        "assert(x:left() == 1)\n"
        "assert(x:right() == 2)\n"
        "assert(x:right() == 2)\n"
        "assert(x:f() == 3)\n"
        "assert(x:f() == 3)\n"
    );

    DOSTRING(L,
        "y = left(x)\n"
        "assert(y:left() == 1)\n"
        "assert(y:left() == 1)\n"
        "assert(y:right() == 2)\n"
        "assert(y:right() == 2)\n"
        "assert(y:f() == 3)\n"
        "assert(y:f() == 3)\n"
    );

    DOSTRING(L,
        "y = right(x)\n"
        "assert(y:left() == 1)\n"
        "assert(y:left() == 1)\n"
        "assert(y:right() == 2)\n"
        "assert(y:right() == 2)\n"
        "assert(y:f() == 3)\n"
        "assert(y:f() == 3)\n"
    );
}