example4.cpp 1.98 KB
Newer Older
Wenzel Jakob's avatar
Wenzel Jakob committed
1
/*
2
    example/example4.cpp -- global constants and functions, enumerations, raw byte strings
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
10
11
12
13
14
15
16
17
18
19
20
21
22
23

    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"

enum EMyEnumeration {
    EFirstEntry = 1,
    ESecondEntry
};

class Example4 {
public:
    enum EMode {
        EFirstMode = 1,
        ESecondMode
    };

24
    static EMode test_function(EMode mode) {
Wenzel Jakob's avatar
Wenzel Jakob committed
25
        std::cout << "Example4::test_function(enum=" << mode << ")" << std::endl;
26
        return mode;
Wenzel Jakob's avatar
Wenzel Jakob committed
27
28
29
30
31
32
33
34
    }
};

bool test_function1() {
    std::cout << "test_function()" << std::endl;
    return false;
}

35
36
void test_function2(EMyEnumeration k) {
    std::cout << "test_function(enum=" << k << ")" << std::endl;
Wenzel Jakob's avatar
Wenzel Jakob committed
37
38
}

39
40
float test_function3(int i) {
    std::cout << "test_function(" << i << ")" << std::endl;
41
    return (float) i / 2.f;
Wenzel Jakob's avatar
Wenzel Jakob committed
42
43
}

44
45
py::bytes return_bytes() {
    const char *data = "\x01\x00\x02\x00";
46
    return std::string(data, 4);
47
48
49
50
51
52
53
54
}

void print_bytes(py::bytes bytes) {
    std::string value = (std::string) bytes;
    for (size_t i = 0; i < value.length(); ++i)
        std::cout << "bytes[" << i << "]=" << (int) value[i] << std::endl;
}

Wenzel Jakob's avatar
Wenzel Jakob committed
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
void init_ex4(py::module &m) {
    m.def("test_function", &test_function1);
    m.def("test_function", &test_function2);
    m.def("test_function", &test_function3);
    m.attr("some_constant") = py::int_(14);

    py::enum_<EMyEnumeration>(m, "EMyEnumeration")
        .value("EFirstEntry", EFirstEntry)
        .value("ESecondEntry", ESecondEntry)
        .export_values();

    py::class_<Example4> ex4_class(m, "Example4");
    ex4_class.def_static("test_function", &Example4::test_function);
    py::enum_<Example4::EMode>(ex4_class, "EMode")
        .value("EFirstMode", Example4::EFirstMode)
        .value("ESecondMode", Example4::ESecondMode)
        .export_values();
72
73
74

    m.def("return_bytes", &return_bytes);
    m.def("print_bytes", &print_bytes);
Wenzel Jakob's avatar
Wenzel Jakob committed
75
}