forked from wjakob/nanobind
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_classes.cpp
533 lines (426 loc) · 16.6 KB
/
test_classes.cpp
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
#include <nanobind/nanobind.h>
#include <nanobind/trampoline.h>
#include <nanobind/operators.h>
#include <nanobind/stl/string.h>
#include <nanobind/stl/pair.h>
#include <nanobind/stl/shared_ptr.h>
#include <nanobind/stl/tuple.h>
#include <memory>
#include <cstring>
#include <vector>
#include <nanobind/stl/detail/traits.h>
#include "inter_module.h"
namespace nb = nanobind;
using namespace nb::literals;
static int default_constructed = 0, value_constructed = 0, copy_constructed = 0,
move_constructed = 0, copy_assigned = 0, move_assigned = 0,
destructed = 0, pickled = 0, unpickled = 0;
struct Struct;
std::unique_ptr<Struct> struct_tmp;
struct Struct {
int i = 5;
Struct() { default_constructed++; }
Struct(int i) : i(i) { value_constructed++; }
Struct(const Struct &s) : i(s.i) { copy_constructed++; }
Struct(Struct &&s) noexcept : i(s.i) { s.i = 0; move_constructed++; }
Struct &operator=(const Struct &s) { i = s.i; copy_assigned++; return *this; }
Struct &operator=(Struct &&s) noexcept { i = s.i; s.i = 0; move_assigned++; return *this; }
~Struct() { destructed++; }
int value() const { return i; }
int getstate() const { ++pickled; return i; }
void set_value(int value) { i = value; }
void setstate(int value) { unpickled++; i = value; }
static int static_test(int) { return 1; }
static int static_test(float) { return 2; }
static Struct* create_take() { return new Struct(10); }
static Struct create_move() { return Struct(11); }
static Struct* create_copy() { return struct_tmp.get(); }
static Struct* create_reference() { return struct_tmp.get(); }
Struct &self() { return *this; }
};
struct PairStruct {
Struct s1;
Struct s2;
};
struct Big {
char data[1024];
Big() { memset(data, 0xff, 1024); }
};
struct alignas(128) BigAligned {
char data[128];
BigAligned() {
if (((uintptr_t) data) % 128)
throw std::runtime_error("data is not aligned!");
memset(data, 0xff, 128);
}
};
struct Animal {
virtual ~Animal() = default;
virtual std::string name() const { return "Animal"; }
virtual std::string what() const = 0;
virtual void void_ret() { }
};
struct StaticProperties {
static int value;
};
struct StaticProperties2 : StaticProperties { };
int StaticProperties::value = 23;
static Py_ssize_t sq_length_dummy(PyObject *) {
return 123;
}
struct Wrapper {
std::shared_ptr<Wrapper> value;
};
int wrapper_tp_traverse(PyObject *self, visitproc visit, void *arg) {
Wrapper *w = nb::inst_ptr<Wrapper>(self);
// If c->value corresponds to an associated CPython object, return it
nb::object value = nb::find(w->value);
// Inform the Python GC about it
Py_VISIT(value.ptr());
return 0;
}
int wrapper_tp_clear(PyObject *self) {
Wrapper *w = nb::inst_ptr<Wrapper>(self);
w->value.reset();
return 0;
}
PyType_Slot wrapper_slots[] = {
{ Py_tp_traverse, (void *) wrapper_tp_traverse },
{ Py_tp_clear, (void *) wrapper_tp_clear },
{ 0, 0 }
};
NB_MODULE(test_classes_ext, m) {
struct_tmp = std::make_unique<Struct>(12);
auto cls = nb::class_<Struct>(m, "Struct", "Some documentation")
.def(nb::init<>())
.def(nb::init<int>())
.def("value", &Struct::value)
.def("set_value", &Struct::set_value, "value"_a)
.def("self", &Struct::self, nb::rv_policy::none)
.def("none", [](Struct &) -> const Struct * { return nullptr; })
.def("__getstate__", &Struct::getstate)
.def("__setstate__", &Struct::setstate)
.def_static("static_test", nb::overload_cast<int>(&Struct::static_test))
.def_static("static_test", nb::overload_cast<float>(&Struct::static_test))
.def_static("create_move", &Struct::create_move)
.def_static("create_reference", &Struct::create_reference,
nb::rv_policy::reference)
.def_static("create_copy", &Struct::create_copy,
nb::rv_policy::copy)
.def_static("create_take", &Struct::create_take);
if (!nb::type<Struct>().is(cls))
nb::detail::raise("type lookup failed!");
nb::class_<PairStruct>(m, "PairStruct")
.def(nb::init<>())
.def_rw("s1", &PairStruct::s1)
.def_rw("s2", &PairStruct::s2);
m.def("stats", []{
nb::dict d;
d["default_constructed"] = default_constructed;
d["value_constructed"] = value_constructed;
d["copy_constructed"] = copy_constructed;
d["move_constructed"] = move_constructed;
d["copy_assigned"] = copy_assigned;
d["move_assigned"] = move_assigned;
d["destructed"] = destructed;
d["pickled"] = pickled;
d["unpickled"] = unpickled;
return d;
});
m.def("reset", []() {
default_constructed = 0;
value_constructed = 0;
copy_constructed = 0;
move_constructed = 0;
copy_assigned = 0;
move_assigned = 0;
destructed = 0;
pickled = 0;
unpickled = 0;
});
// test06_big
nb::class_<Big>(m, "Big")
.def(nb::init<>());
nb::class_<BigAligned>(m, "BigAligned")
.def(nb::init<>());
// test09_trampoline
// test10_trampoline_failures
struct PyAnimal : Animal {
NB_TRAMPOLINE(Animal, 3);
PyAnimal() {
default_constructed++;
}
~PyAnimal() override {
destructed++;
}
std::string name() const override {
NB_OVERRIDE(name);
}
std::string what() const override {
NB_OVERRIDE_PURE(what);
}
void void_ret() override {
NB_OVERRIDE(void_ret);
}
};
struct Dog : Animal {
Dog(const std::string &s) : s(s) { }
std::string name() const override { return "Dog"; }
std::string what() const override { return s; }
std::string s;
};
struct PyDog : Dog {
NB_TRAMPOLINE(Dog, 2);
PyDog(const std::string &s) : Dog(s) { }
std::string name() const override {
NB_OVERRIDE(name);
}
std::string what() const override {
NB_OVERRIDE(what);
}
};
struct Cat : Animal {
Cat(const std::string &s) : s(s) { }
std::string name() const override { return "Cat"; }
std::string what() const override { return s; }
std::string s;
};
struct Foo { };
auto animal = nb::class_<Animal, PyAnimal>(m, "Animal")
.def(nb::init<>())
.def("name", &Animal::name)
.def("what", &Animal::what);
nb::class_<Dog, Animal, PyDog>(m, "Dog")
.def(nb::init<const std::string &>());
nb::class_<Cat>(m, "Cat", animal)
.def(nb::init<const std::string &>());
m.def("go", [](Animal *a) {
return a->name() + " says " + a->what();
});
m.def("animal_passthrough", [](Animal *a) { return a; }, nb::rv_policy::none);
m.def("dog_passthrough", [](Dog *d) { return d; }, nb::rv_policy::none);
m.def("void_ret", [](Animal *a) { a->void_ret(); });
m.def("call_function", [](nb::handle h) {
return h(1, 2, "hello", true, 4);
});
m.def("call_method", [](nb::handle h) {
return h.attr("f")(1, 2, "hello", true, 4);
});
// test11_large_pointers
nb::class_<Foo>(m, "Foo");
m.def("i2p", [](uintptr_t x) { return (Foo *) x; }, nb::rv_policy::reference);
m.def("p2i", [](Foo *x) { return (uintptr_t) x; });
// test12_implicitly_convertible
struct A { int a; };
struct B { int b; };
struct B2 : B { B2(int i) : B{i} { } };
struct C { int c; };
struct D {
D(const A &a) : value(a.a + 10) { }
D(const B *b) : value(b->b + 100) { }
D(C c) : value(c.c + 1000) { }
D(int d) : value(d + 10000) { }
D(float) : value(0) { throw std::runtime_error("Fail!"); }
int value;
};
nb::class_<A>(m, "A")
.def(nb::init<int>());
nb::class_<B>(m, "B")
.def(nb::init<int>());
nb::class_<B2, B>(m, "B2")
.def(nb::init<int>());
nb::class_<C>(m, "C")
.def(nb::init<int>());
nb::class_<D>(m, "D")
.def(nb::init_implicit<const A &>())
.def(nb::init_implicit<const B *>())
.def(nb::init_implicit<int>())
.def(nb::init_implicit<float>())
.def_rw("value", &D::value);
m.def("get_d", [](const D &d) { return d.value; });
struct Int {
int i;
Int operator+(Int o) const { return {i + o.i}; }
Int operator-(float j) const { return {int(i - j)}; }
Int &operator+=(Int o) {
i += o.i;
return *this;
}
};
// test13_operators
nb::class_<Int>(m, "Int")
.def(nb::init<int>())
.def(nb::self + nb::self)
.def(nb::self += nb::self)
.def(nb::self - float())
.def("__repr__", [](const Int &i) { return std::to_string(i.i); });
// test15: Test nb::keep_alive feature
m.def(
"keep_alive_arg", [](nb::handle, nb::handle ret) { return ret; },
nb::keep_alive<0, 1>());
m.def(
"keep_alive_ret", [](nb::handle, nb::handle ret) { return ret; },
nb::keep_alive<1, 0>());
// test17_name_qualname_module()
m.def("f", []{});
struct MyClass { struct NestedClass { }; };
nb::class_<MyClass> mcls(m, "MyClass");
nb::class_<MyClass::NestedClass> ncls(mcls, "NestedClass");
mcls.def(nb::init<>());
mcls.def("f", []{});
ncls.def("f", []{});
// test18_static_properties
nb::class_<StaticProperties>(m, "StaticProperties")
.def_rw_static("value", &StaticProperties::value, "Static property docstring")
.def_static("get", []{ return StaticProperties::value; } );
nb::class_<StaticProperties2, StaticProperties>(m, "StaticProperties2");
// test19_supplement
struct ClassWithSupplement { };
struct Supplement {
uint8_t data[0xFF];
};
auto scls = nb::class_<ClassWithSupplement>(m, "ClassWithSupplement", nb::supplement<Supplement>())
.def(nb::init<>());
Supplement &supplement = nb::type_supplement<Supplement>(scls);
for (uint8_t i = 0; i < 0xFF; ++i)
supplement.data[i] = i;
m.def("check_supplement", [](nb::handle h) {
if (nb::isinstance<ClassWithSupplement>(h)) {
Supplement &s2 = nb::type_supplement<Supplement>(h.type());
for (uint16_t i = 0; i < 0xFF; ++i) {
if (s2.data[i] != i)
return false;
}
return true;
}
return false;
});
// test20_type_callback
PyType_Slot slots[] {
{ Py_sq_length, (void *) sq_length_dummy },
{ 0, nullptr }
};
struct ClassWithLen { };
nb::class_<ClassWithLen>(m, "ClassWithLen", nb::type_slots(slots))
.def(nb::init<>());
// test21_low_level
m.def("test_lowlevel", []() {
nb::handle py_type = nb::type<Struct>();
if (!(nb::type_check(py_type) &&
nb::type_size(py_type) == sizeof(Struct) &&
nb::type_align(py_type) == alignof(Struct) &&
nb::type_info(py_type) == typeid(Struct)))
throw std::runtime_error("Internal error!");
nb::object py_inst = nb::inst_alloc(py_type);
if (!(nb::inst_check(py_inst) && py_inst.type().is(py_type) &&
!nb::inst_ready(py_inst)))
throw std::runtime_error("Internal error! (2)");
// Get a C++ pointer to the uninitialized instance data
Struct *ptr = nb::inst_ptr<Struct>(py_inst);
// Perform an in-place construction of the C++ object
new (ptr) Struct(123);
nb::inst_mark_ready(py_inst);
if (!nb::inst_ready(py_inst))
throw std::runtime_error("Internal error! (3)");
nb::object py_inst_2 = nb::inst_alloc(py_type);
if (nb::inst_ready(py_inst_2))
throw std::runtime_error("Internal error! (4)");
nb::inst_copy(py_inst_2, py_inst);
if (!nb::inst_ready(py_inst_2))
throw std::runtime_error("Internal error! (5)");
nb::inst_destruct(py_inst);
if (nb::inst_ready(py_inst))
throw std::runtime_error("Internal error! (6)");
nb::inst_move(py_inst, py_inst_2);
if (!nb::inst_ready(py_inst))
throw std::runtime_error("Internal error! (7)");
nb::handle py_type_pair = nb::type<PairStruct>();
PairStruct *ps = new PairStruct{Struct(123), Struct(456)};
nb::object py_inst_3 = nb::inst_take_ownership(py_type_pair, ps);
if (!(nb::inst_check(py_inst_3) && py_inst_3.type().is(py_type_pair) &&
nb::inst_state(py_inst_3) == std::make_pair(true, true)))
throw std::runtime_error("Internal error! (8)");
nb::object py_inst_4 = nb::inst_reference(py_type, &ps->s1, py_inst_3);
if (!(nb::inst_check(py_inst_4) && py_inst_4.type().is(py_type) &&
nb::inst_state(py_inst_4) == std::make_pair(true, false)))
throw std::runtime_error("Internal error! (9)");
return nb::make_tuple(py_inst, py_inst_2, py_inst_3, py_inst_4);
});
// test22_handle_t
m.def("test_handle_t", [](nb::handle_t<Struct> h) { return borrow(h); });
// test23_type_object_t
m.def("test_type_object_t", [](nb::type_object_t<Struct> h) -> nb::object { return std::move(h); });
// test24_none_arg
m.def("none_0", [](Struct *s) { return s == nullptr; });
m.def("none_1", [](Struct *s) { return s == nullptr; }, nb::arg());
m.def("none_2", [](Struct *s) { return s == nullptr; }, nb::arg("arg"));
m.def("none_3", [](Struct *s) { return s == nullptr; }, nb::arg().none());
m.def("none_4", [](Struct *s) { return s == nullptr; }, nb::arg("arg").none());
// test25_is_final
struct FinalType { };
nb::class_<FinalType>(m, "FinalType", nb::is_final())
.def(nb::init<>());
// test26_dynamic_attr
struct StructWithAttr : Struct { };
nb::class_<StructWithAttr, Struct>(m, "StructWithAttr", nb::dynamic_attr())
.def(nb::init<int>());
nb::class_<Wrapper>(m, "Wrapper", nb::type_slots(wrapper_slots))
.def(nb::init<>())
.def_rw("value", &Wrapper::value);
// The following isn't tested on the Python side, we just want to make sure it compiles
struct NonCopyable {
NonCopyable() = default;
NonCopyable(const NonCopyable&) = delete;
};
using NonCopyableVec = std::vector<NonCopyable>;
nb::class_<NonCopyableVec>(m, "NonCopyableVec");
m.def("is_int_1", [](nb::handle h) { return nb::isinstance<int>(h); });
m.def("is_int_2", [](nb::handle h) { return nb::isinstance<nb::int_>(h); });
m.def("is_struct", [](nb::handle h) { return nb::isinstance<Struct>(h); });
struct Base { ~Base() = default; };
struct PolymorphicBase { virtual ~PolymorphicBase() = default; };
struct Subclass : Base { };
struct PolymorphicSubclass : PolymorphicBase { };
struct AnotherSubclass : Base { };
struct AnotherPolymorphicSubclass : PolymorphicBase { };
nb::class_<Base> (m, "Base");
nb::class_<Subclass> (m, "Subclass");
nb::class_<PolymorphicBase> (m, "PolymorphicBase");
nb::class_<PolymorphicSubclass> (m, "PolymorphicSubclass");
m.def("polymorphic_factory", []() { return (PolymorphicBase *) new PolymorphicSubclass(); });
m.def("polymorphic_factory_2", []() { return (PolymorphicBase *) new AnotherPolymorphicSubclass(); });
m.def("factory", []() { return (Base *) new Subclass(); });
m.def("factory_2", []() { return (Base *) new AnotherSubclass(); });
m.def("check_shared", [](Shared *) { });
m.def("try_cast_1", [](nb::handle h) {
Struct s;
bool rv = nb::try_cast<Struct>(h, s);
return std::make_pair(rv, std::move(s));
});
m.def("try_cast_2", [](nb::handle h) {
Struct s;
Struct &s2 = s;
bool rv = nb::try_cast<Struct &>(h, s2);
return std::make_pair(rv, std::move(s2));
});
m.def("try_cast_3", [](nb::handle h) {
Struct *sp = nullptr;
bool rv = nb::try_cast<Struct *>(h, sp);
return std::make_pair(rv, sp);
}, nb::rv_policy::none);
m.def("try_cast_4", [](nb::handle h) {
int i = 0;
bool rv = nb::try_cast<int>(h, i);
return std::make_pair(rv, i);
});
#if !defined(Py_LIMITED_API)
m.def("test_slots", []() {
nb::object wrapper_tp = nb::module_::import_("test_classes_ext").attr("Wrapper");
return nb::make_tuple(
nb::type_get_slot(wrapper_tp, Py_tp_traverse) == wrapper_tp_traverse,
nb::type_get_slot(&PyLong_Type, Py_tp_init) == PyLong_Type.tp_init,
nb::type_get_slot(&PyLong_Type, Py_nb_add) == PyLong_Type.tp_as_number->nb_add
);
});
#endif
}