issues.cpp 1.94 KB
Newer Older
1
2
3
/*
    example/issues.cpp -- collection of testcases for miscellaneous issues

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

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

#include "example.h"
11
#include <pybind11/stl.h>
12

13
14
15
struct Base {
    virtual void dispatch(void) const = 0;
};
16

17
18
struct DispatchIssue : Base {
    virtual void dispatch(void) const {
19
        PYBIND11_OVERLOAD_PURE(void, Base, dispatch, /* no arguments */);
20
21
22
    }
};

23
struct Placeholder { int i; Placeholder(int i) : i(i) { } };
24

25
void dispatch_issue_go(const Base * b) { b->dispatch(); }
26

27
28
29
30
31
void init_issues(py::module &m) {
    py::module m2 = m.def_submodule("issues");

    // #137: const char* isn't handled properly
    m2.def("print_cchar", [](const char *string) { std::cout << string << std::endl; });
32
33
34

    // #150: char bindings broken
    m2.def("print_char", [](char c) { std::cout << c << std::endl; });
35
36

    // #159: virtual function dispatch has problems with similar-named functions
37
    py::class_<DispatchIssue> base(m2, "DispatchIssue");
38
    base.alias<Base>()
39
        .def(py::init<>())
40
41
42
        .def("dispatch", &Base::dispatch);

    m2.def("dispatch_issue_go", &dispatch_issue_go);
43
44

    py::class_<Placeholder>(m2, "Placeholder")
45
        .def(py::init<int>())
46
47
48
        .def("__repr__", [](const Placeholder &p) { return "Placeholder[" + std::to_string(p.i) + "]"; });

    // #171: Can't return reference wrappers (or STL datastructures containing them)
49
    m2.def("return_vec_of_reference_wrapper", [](std::reference_wrapper<Placeholder> p4){
50
51
        Placeholder *p1 = new Placeholder{1};
        Placeholder *p2 = new Placeholder{2};
52
        Placeholder *p3 = new Placeholder{3};
53
54
55
56
        std::vector<std::reference_wrapper<Placeholder>> v;
        v.push_back(std::ref(*p1));
        v.push_back(std::ref(*p2));
        v.push_back(std::ref(*p3));
57
        v.push_back(p4);
58
59
        return v;
    });
60
}