test_operator_overloading.cpp 9.24 KB
Newer Older
Wenzel Jakob's avatar
Wenzel Jakob committed
1
/*
Dean Moldovan's avatar
Dean Moldovan committed
2
    tests/test_operator_overloading.cpp -- operator overloading
Wenzel Jakob's avatar
Wenzel Jakob committed
3

4
    Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>
Wenzel Jakob's avatar
Wenzel Jakob committed
5
6
7
8
9

    All rights reserved. Use of this source code is governed by a
    BSD-style license that can be found in the LICENSE file.
*/

10
11
12
#include <pybind11/operators.h>
#include <pybind11/stl.h>

Dean Moldovan's avatar
Dean Moldovan committed
13
#include "constructor_stats.h"
14
#include "pybind11_tests.h"
15

16
#include <functional>
Wenzel Jakob's avatar
Wenzel Jakob committed
17
18
19

class Vector2 {
public:
20
21
    Vector2(float x, float y) : x(x), y(y) { print_created(this, toString()); }
    Vector2(const Vector2 &v) : x(v.x), y(v.y) { print_copy_created(this); }
22
23
24
25
    Vector2(Vector2 &&v) noexcept : x(v.x), y(v.y) {
        print_move_created(this);
        v.x = v.y = 0;
    }
26
27
28
29
30
31
    Vector2 &operator=(const Vector2 &v) {
        x = v.x;
        y = v.y;
        print_copy_assigned(this);
        return *this;
    }
32
    Vector2 &operator=(Vector2 &&v) noexcept {
33
34
        x = v.x;
        y = v.y;
35
36
37
38
        v.x = v.y = 0;
        print_move_assigned(this);
        return *this;
    }
39
    ~Vector2() { print_destroyed(this); }
Wenzel Jakob's avatar
Wenzel Jakob committed
40

41
42
43
    std::string toString() const {
        return "[" + std::to_string(x) + ", " + std::to_string(y) + "]";
    }
Wenzel Jakob's avatar
Wenzel Jakob committed
44

45
    Vector2 operator-() const { return Vector2(-x, -y); }
Wenzel Jakob's avatar
Wenzel Jakob committed
46
47
48
49
50
51
    Vector2 operator+(const Vector2 &v) const { return Vector2(x + v.x, y + v.y); }
    Vector2 operator-(const Vector2 &v) const { return Vector2(x - v.x, y - v.y); }
    Vector2 operator-(float value) const { return Vector2(x - value, y - value); }
    Vector2 operator+(float value) const { return Vector2(x + value, y + value); }
    Vector2 operator*(float value) const { return Vector2(x * value, y * value); }
    Vector2 operator/(float value) const { return Vector2(x / value, y / value); }
52
53
    Vector2 operator*(const Vector2 &v) const { return Vector2(x * v.x, y * v.y); }
    Vector2 operator/(const Vector2 &v) const { return Vector2(x / v.x, y / v.y); }
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
    Vector2 &operator+=(const Vector2 &v) {
        x += v.x;
        y += v.y;
        return *this;
    }
    Vector2 &operator-=(const Vector2 &v) {
        x -= v.x;
        y -= v.y;
        return *this;
    }
    Vector2 &operator*=(float v) {
        x *= v;
        y *= v;
        return *this;
    }
    Vector2 &operator/=(float v) {
        x /= v;
        y /= v;
        return *this;
    }
    Vector2 &operator*=(const Vector2 &v) {
        x *= v.x;
        y *= v.y;
        return *this;
    }
    Vector2 &operator/=(const Vector2 &v) {
        x /= v.x;
        y /= v.y;
        return *this;
    }
84
85
86
87
88

    friend Vector2 operator+(float f, const Vector2 &v) { return Vector2(f + v.x, f + v.y); }
    friend Vector2 operator-(float f, const Vector2 &v) { return Vector2(f - v.x, f - v.y); }
    friend Vector2 operator*(float f, const Vector2 &v) { return Vector2(f * v.x, f * v.y); }
    friend Vector2 operator/(float f, const Vector2 &v) { return Vector2(f / v.x, f / v.y); }
89

90
91
92
    bool operator==(const Vector2 &v) const { return x == v.x && y == v.y; }
    bool operator!=(const Vector2 &v) const { return x != v.x || y != v.y; }

Wenzel Jakob's avatar
Wenzel Jakob committed
93
94
95
96
private:
    float x, y;
};

97
98
class C1 {};
class C2 {};
99
100
101
102
103
104

int operator+(const C1 &, const C1 &) { return 11; }
int operator+(const C2 &, const C2 &) { return 22; }
int operator+(const C2 &, const C1 &) { return 21; }
int operator+(const C1 &, const C2 &) { return 12; }

105
106
107
108
109
110
struct HashMe {
    std::string member;
};

bool operator==(const HashMe &lhs, const HashMe &rhs) { return lhs.member == rhs.member; }

111
112
113
114
115
// Note: Specializing explicit within `namespace std { ... }` is done due to a
// bug in GCC<7. If you are supporting compilers later than this, consider
// specializing `using template<> struct std::hash<...>` in the global
// namespace instead, per this recommendation:
// https://en.cppreference.com/w/cpp/language/extending_std#Adding_template_specializations
116
namespace std {
117
118
119
120
121
template <>
struct hash<Vector2> {
    // Not a good hash function, but easy to test
    size_t operator()(const Vector2 &) { return 4; }
};
122

123
124
125
126
127
128
129
// HashMe has a hash function in C++ but no `__hash__` for Python.
template <>
struct hash<HashMe> {
    std::size_t operator()(const HashMe &selector) const {
        return std::hash<std::string>()(selector.member);
    }
};
130
} // namespace std
131

132
// Not a good abs function, but easy to test.
133
std::string abs(const Vector2 &) { return "abs(Vector2)"; }
134

135
136
// MSVC & Intel warns about unknown pragmas, and warnings are errors.
#if !defined(_MSC_VER) && !defined(__INTEL_COMPILER)
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
#    pragma GCC diagnostic push
// clang 7.0.0 and Apple LLVM 10.0.1 introduce `-Wself-assign-overloaded` to
// `-Wall`, which is used here for overloading (e.g. `py::self += py::self `).
// Here, we suppress the warning using `#pragma diagnostic`.
// Taken from: https://github.com/RobotLocomotion/drake/commit/aaf84b46
// TODO(eric): This could be resolved using a function / functor (e.g. `py::self()`).
#    if defined(__APPLE__) && defined(__clang__)
#        if (__clang_major__ >= 10)
#            pragma GCC diagnostic ignored "-Wself-assign-overloaded"
#        endif
#    elif defined(__clang__)
#        if (__clang_major__ >= 7)
#            pragma GCC diagnostic ignored "-Wself-assign-overloaded"
#        endif
#    endif
Henry Schreiner's avatar
Henry Schreiner committed
152
153
#endif

154
TEST_SUBMODULE(operators, m) {
155

156
    // test_operator_overloading
Wenzel Jakob's avatar
Wenzel Jakob committed
157
158
159
160
161
162
163
164
    py::class_<Vector2>(m, "Vector2")
        .def(py::init<float, float>())
        .def(py::self + py::self)
        .def(py::self + float())
        .def(py::self - py::self)
        .def(py::self - float())
        .def(py::self * float())
        .def(py::self / float())
165
166
        .def(py::self * py::self)
        .def(py::self / py::self)
Wenzel Jakob's avatar
Wenzel Jakob committed
167
168
169
170
        .def(py::self += py::self)
        .def(py::self -= py::self)
        .def(py::self *= float())
        .def(py::self /= float())
171
172
        .def(py::self *= py::self)
        .def(py::self /= py::self)
173
174
175
176
        .def(float() + py::self)
        .def(float() - py::self)
        .def(float() * py::self)
        .def(float() / py::self)
177
        .def(-py::self)
178
        .def("__str__", &Vector2::toString)
179
180
181
182
183
184
        .def("__repr__", &Vector2::toString)
        .def(py::self == py::self)
        .def(py::self != py::self)
        .def(py::hash(py::self))
        // N.B. See warning about usage of `py::detail::abs(py::self)` in
        // `operators.h`.
185
        .def("__abs__", [](const Vector2 &v) { return abs(v); });
Wenzel Jakob's avatar
Wenzel Jakob committed
186
187

    m.attr("Vector") = m.attr("Vector2");
188

189
    // test_operators_notimplemented
190
    // #393: need to return NotSupported to ensure correct arithmetic operator behavior
191
    py::class_<C1>(m, "C1").def(py::init<>()).def(py::self + py::self);
192
193
194
195

    py::class_<C2>(m, "C2")
        .def(py::init<>())
        .def(py::self + py::self)
196
197
        .def("__add__", [](const C2 &c2, const C1 &c1) { return c2 + c1; })
        .def("__radd__", [](const C2 &c2, const C1 &c1) { return c1 + c2; });
198

199
    // test_nested
200
    // #328: first member in a class can't be used in operators
201
202
203
    struct NestABase {
        int value = -2;
    };
204
205
206
207
    py::class_<NestABase>(m, "NestABase")
        .def(py::init<>())
        .def_readwrite("value", &NestABase::value);

208
209
    struct NestA : NestABase {
        int value = 3;
210
211
212
213
        NestA &operator+=(int i) {
            value += i;
            return *this;
        }
214
    };
215
216
217
    py::class_<NestA>(m, "NestA")
        .def(py::init<>())
        .def(py::self += int())
218
219
220
221
        .def(
            "as_base",
            [](NestA &a) -> NestABase & { return (NestABase &) a; },
            py::return_value_policy::reference_internal);
222
    m.def("get_NestA", [](const NestA &a) { return a.value; });
223

224
225
226
    struct NestB {
        NestA a;
        int value = 4;
227
228
229
230
        NestB &operator-=(int i) {
            value -= i;
            return *this;
        }
231
    };
232
233
234
235
    py::class_<NestB>(m, "NestB")
        .def(py::init<>())
        .def(py::self -= int())
        .def_readwrite("a", &NestB::a);
236
    m.def("get_NestB", [](const NestB &b) { return b.value; });
237

238
239
240
    struct NestC {
        NestB b;
        int value = 5;
241
242
243
244
        NestC &operator*=(int i) {
            value *= i;
            return *this;
        }
245
    };
246
247
248
249
250
    py::class_<NestC>(m, "NestC")
        .def(py::init<>())
        .def(py::self *= int())
        .def_readwrite("b", &NestC::b);
    m.def("get_NestC", [](const NestC &c) { return c.value; });
251
252
253
254
255

    // test_overriding_eq_reset_hash
    // #2191 Overriding __eq__ should set __hash__ to None
    struct Comparable {
        int value;
256
        bool operator==(const Comparable &rhs) const { return value == rhs.value; }
257
258
259
    };

    struct Hashable : Comparable {
260
        explicit Hashable(int value) : Comparable{value} {};
261
262
263
264
265
266
267
        size_t hash() const { return static_cast<size_t>(value); }
    };

    struct Hashable2 : Hashable {
        using Hashable::Hashable;
    };

268
    py::class_<Comparable>(m, "Comparable").def(py::init<int>()).def(py::self == py::self);
269
270
271
272
273
274
275
276
277
278
279

    py::class_<Hashable>(m, "Hashable")
        .def(py::init<int>())
        .def(py::self == py::self)
        .def("__hash__", &Hashable::hash);

    // define __hash__ before __eq__
    py::class_<Hashable2>(m, "Hashable2")
        .def("__hash__", &Hashable::hash)
        .def(py::init<int>())
        .def(py::self == py::self);
Henry Schreiner's avatar
Henry Schreiner committed
280

281
282
283
284
285
    // define __eq__ but not __hash__
    py::class_<HashMe>(m, "HashMe").def(py::self == py::self);

    m.def("get_unhashable_HashMe_set", []() { return std::unordered_set<HashMe>{{"one"}}; });
}
286
#if !defined(_MSC_VER) && !defined(__INTEL_COMPILER)
287
#    pragma GCC diagnostic pop
Henry Schreiner's avatar
Henry Schreiner committed
288
#endif