example-constants-and-functions.cpp 2.43 KB
Newer Older
Wenzel Jakob's avatar
Wenzel Jakob committed
1
/*
2
    example/example-constants-and-functions.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

    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
};

17
18
19
20
21
enum class ECMyEnum {
    Two = 2,
    Three
};

22
class ExampleWithEnum {
Wenzel Jakob's avatar
Wenzel Jakob committed
23
24
25
26
27
28
public:
    enum EMode {
        EFirstMode = 1,
        ESecondMode
    };

29
    static EMode test_function(EMode mode) {
30
        std::cout << "ExampleWithEnum::test_function(enum=" << mode << ")" << std::endl;
31
        return mode;
Wenzel Jakob's avatar
Wenzel Jakob committed
32
33
34
35
36
37
38
39
    }
};

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

40
41
void test_function2(EMyEnumeration k) {
    std::cout << "test_function(enum=" << k << ")" << std::endl;
Wenzel Jakob's avatar
Wenzel Jakob committed
42
43
}

44
45
float test_function3(int i) {
    std::cout << "test_function(" << i << ")" << std::endl;
46
    return (float) i / 2.f;
Wenzel Jakob's avatar
Wenzel Jakob committed
47
48
}

49
50
51
52
void test_ecenum(ECMyEnum z) {
    std::cout << "test_ecenum(ECMyEnum::" << (z == ECMyEnum::Two ? "Two" : "Three") << ")" << std::endl;
}

53
54
py::bytes return_bytes() {
    const char *data = "\x01\x00\x02\x00";
55
    return std::string(data, 4);
56
57
58
59
60
61
62
63
}

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;
}

64
void init_ex_constants_and_functions(py::module &m) {
Wenzel Jakob's avatar
Wenzel Jakob committed
65
66
67
    m.def("test_function", &test_function1);
    m.def("test_function", &test_function2);
    m.def("test_function", &test_function3);
68
    m.def("test_ecenum", &test_ecenum);
Wenzel Jakob's avatar
Wenzel Jakob committed
69
70
71
72
73
74
75
    m.attr("some_constant") = py::int_(14);

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

76
77
78
79
80
    py::enum_<ECMyEnum>(m, "ECMyEnum")
        .value("Two", ECMyEnum::Two)
        .value("Three", ECMyEnum::Three)
        ;

81
82
83
84
85
    py::class_<ExampleWithEnum> exenum_class(m, "ExampleWithEnum");
    exenum_class.def_static("test_function", &ExampleWithEnum::test_function);
    py::enum_<ExampleWithEnum::EMode>(exenum_class, "EMode")
        .value("EFirstMode", ExampleWithEnum::EFirstMode)
        .value("ESecondMode", ExampleWithEnum::ESecondMode)
Wenzel Jakob's avatar
Wenzel Jakob committed
86
        .export_values();
87
88
89

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