2015-07-05 18:05:44 +00:00
|
|
|
/*
|
Rename examples files, as per #288
This renames example files from `exampleN` to `example-description`.
Specifically, the following renaming is applied:
example1 -> example-methods-and-attributes
example2 -> example-python-types
example3 -> example-operator-overloading
example4 -> example-constants-and-functions
example5 -> example-callbacks (*)
example6 -> example-sequence-and-iterators
example7 -> example-buffers
example8 -> example-custom-ref-counting
example9 -> example-modules
example10 -> example-numpy-vectorize
example11 -> example-arg-keywords-and-defaults
example12 -> example-virtual-functions
example13 -> example-keep-alive
example14 -> example-opaque-types
example15 -> example-pickling
example16 -> example-inheritance
example17 -> example-stl-binders
example18 -> example-eval
example19 -> example-custom-exceptions
* the inheritance parts of example5 are moved into example-inheritance
(previously example16), and the remainder is left as example-callbacks.
This commit also renames the internal variables ("Example1",
"Example2", "Example4", etc.) into non-numeric names ("ExampleMandA",
"ExamplePythonTypes", "ExampleWithEnum", etc.) to correspond to the
file renaming.
The order of tests is preserved, but this can easily be changed if
there is some more natural ordering by updating the list in
examples/CMakeLists.txt.
2016-07-18 20:43:18 +00:00
|
|
|
example/example-constants-and-functions.cpp -- global constants and functions, enumerations, raw byte strings
|
2015-07-05 18:05:44 +00:00
|
|
|
|
2016-04-17 18:21:41 +00:00
|
|
|
Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>
|
2015-07-05 18:05:44 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
};
|
|
|
|
|
2016-08-04 03:45:08 +00:00
|
|
|
enum class ECMyEnum {
|
|
|
|
Two = 2,
|
|
|
|
Three
|
|
|
|
};
|
|
|
|
|
Rename examples files, as per #288
This renames example files from `exampleN` to `example-description`.
Specifically, the following renaming is applied:
example1 -> example-methods-and-attributes
example2 -> example-python-types
example3 -> example-operator-overloading
example4 -> example-constants-and-functions
example5 -> example-callbacks (*)
example6 -> example-sequence-and-iterators
example7 -> example-buffers
example8 -> example-custom-ref-counting
example9 -> example-modules
example10 -> example-numpy-vectorize
example11 -> example-arg-keywords-and-defaults
example12 -> example-virtual-functions
example13 -> example-keep-alive
example14 -> example-opaque-types
example15 -> example-pickling
example16 -> example-inheritance
example17 -> example-stl-binders
example18 -> example-eval
example19 -> example-custom-exceptions
* the inheritance parts of example5 are moved into example-inheritance
(previously example16), and the remainder is left as example-callbacks.
This commit also renames the internal variables ("Example1",
"Example2", "Example4", etc.) into non-numeric names ("ExampleMandA",
"ExamplePythonTypes", "ExampleWithEnum", etc.) to correspond to the
file renaming.
The order of tests is preserved, but this can easily be changed if
there is some more natural ordering by updating the list in
examples/CMakeLists.txt.
2016-07-18 20:43:18 +00:00
|
|
|
class ExampleWithEnum {
|
2015-07-05 18:05:44 +00:00
|
|
|
public:
|
|
|
|
enum EMode {
|
|
|
|
EFirstMode = 1,
|
|
|
|
ESecondMode
|
|
|
|
};
|
|
|
|
|
2016-01-24 13:05:12 +00:00
|
|
|
static EMode test_function(EMode mode) {
|
Rename examples files, as per #288
This renames example files from `exampleN` to `example-description`.
Specifically, the following renaming is applied:
example1 -> example-methods-and-attributes
example2 -> example-python-types
example3 -> example-operator-overloading
example4 -> example-constants-and-functions
example5 -> example-callbacks (*)
example6 -> example-sequence-and-iterators
example7 -> example-buffers
example8 -> example-custom-ref-counting
example9 -> example-modules
example10 -> example-numpy-vectorize
example11 -> example-arg-keywords-and-defaults
example12 -> example-virtual-functions
example13 -> example-keep-alive
example14 -> example-opaque-types
example15 -> example-pickling
example16 -> example-inheritance
example17 -> example-stl-binders
example18 -> example-eval
example19 -> example-custom-exceptions
* the inheritance parts of example5 are moved into example-inheritance
(previously example16), and the remainder is left as example-callbacks.
This commit also renames the internal variables ("Example1",
"Example2", "Example4", etc.) into non-numeric names ("ExampleMandA",
"ExamplePythonTypes", "ExampleWithEnum", etc.) to correspond to the
file renaming.
The order of tests is preserved, but this can easily be changed if
there is some more natural ordering by updating the list in
examples/CMakeLists.txt.
2016-07-18 20:43:18 +00:00
|
|
|
std::cout << "ExampleWithEnum::test_function(enum=" << mode << ")" << std::endl;
|
2016-01-24 13:05:12 +00:00
|
|
|
return mode;
|
2015-07-05 18:05:44 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
bool test_function1() {
|
|
|
|
std::cout << "test_function()" << std::endl;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-10-04 13:17:12 +00:00
|
|
|
void test_function2(EMyEnumeration k) {
|
|
|
|
std::cout << "test_function(enum=" << k << ")" << std::endl;
|
2015-07-05 18:05:44 +00:00
|
|
|
}
|
|
|
|
|
2015-10-04 13:17:12 +00:00
|
|
|
float test_function3(int i) {
|
|
|
|
std::cout << "test_function(" << i << ")" << std::endl;
|
2016-05-28 10:26:18 +00:00
|
|
|
return (float) i / 2.f;
|
2015-07-05 18:05:44 +00:00
|
|
|
}
|
|
|
|
|
2016-08-04 03:45:08 +00:00
|
|
|
void test_ecenum(ECMyEnum z) {
|
|
|
|
std::cout << "test_ecenum(ECMyEnum::" << (z == ECMyEnum::Two ? "Two" : "Three") << ")" << std::endl;
|
|
|
|
}
|
|
|
|
|
2016-01-17 21:36:37 +00:00
|
|
|
py::bytes return_bytes() {
|
|
|
|
const char *data = "\x01\x00\x02\x00";
|
2016-01-24 13:05:12 +00:00
|
|
|
return std::string(data, 4);
|
2016-01-17 21:36:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
Rename examples files, as per #288
This renames example files from `exampleN` to `example-description`.
Specifically, the following renaming is applied:
example1 -> example-methods-and-attributes
example2 -> example-python-types
example3 -> example-operator-overloading
example4 -> example-constants-and-functions
example5 -> example-callbacks (*)
example6 -> example-sequence-and-iterators
example7 -> example-buffers
example8 -> example-custom-ref-counting
example9 -> example-modules
example10 -> example-numpy-vectorize
example11 -> example-arg-keywords-and-defaults
example12 -> example-virtual-functions
example13 -> example-keep-alive
example14 -> example-opaque-types
example15 -> example-pickling
example16 -> example-inheritance
example17 -> example-stl-binders
example18 -> example-eval
example19 -> example-custom-exceptions
* the inheritance parts of example5 are moved into example-inheritance
(previously example16), and the remainder is left as example-callbacks.
This commit also renames the internal variables ("Example1",
"Example2", "Example4", etc.) into non-numeric names ("ExampleMandA",
"ExamplePythonTypes", "ExampleWithEnum", etc.) to correspond to the
file renaming.
The order of tests is preserved, but this can easily be changed if
there is some more natural ordering by updating the list in
examples/CMakeLists.txt.
2016-07-18 20:43:18 +00:00
|
|
|
void init_ex_constants_and_functions(py::module &m) {
|
2015-07-05 18:05:44 +00:00
|
|
|
m.def("test_function", &test_function1);
|
|
|
|
m.def("test_function", &test_function2);
|
|
|
|
m.def("test_function", &test_function3);
|
2016-08-04 03:45:08 +00:00
|
|
|
m.def("test_ecenum", &test_ecenum);
|
2015-07-05 18:05:44 +00:00
|
|
|
m.attr("some_constant") = py::int_(14);
|
|
|
|
|
|
|
|
py::enum_<EMyEnumeration>(m, "EMyEnumeration")
|
|
|
|
.value("EFirstEntry", EFirstEntry)
|
|
|
|
.value("ESecondEntry", ESecondEntry)
|
|
|
|
.export_values();
|
|
|
|
|
2016-08-04 03:45:08 +00:00
|
|
|
py::enum_<ECMyEnum>(m, "ECMyEnum")
|
|
|
|
.value("Two", ECMyEnum::Two)
|
|
|
|
.value("Three", ECMyEnum::Three)
|
|
|
|
;
|
|
|
|
|
Rename examples files, as per #288
This renames example files from `exampleN` to `example-description`.
Specifically, the following renaming is applied:
example1 -> example-methods-and-attributes
example2 -> example-python-types
example3 -> example-operator-overloading
example4 -> example-constants-and-functions
example5 -> example-callbacks (*)
example6 -> example-sequence-and-iterators
example7 -> example-buffers
example8 -> example-custom-ref-counting
example9 -> example-modules
example10 -> example-numpy-vectorize
example11 -> example-arg-keywords-and-defaults
example12 -> example-virtual-functions
example13 -> example-keep-alive
example14 -> example-opaque-types
example15 -> example-pickling
example16 -> example-inheritance
example17 -> example-stl-binders
example18 -> example-eval
example19 -> example-custom-exceptions
* the inheritance parts of example5 are moved into example-inheritance
(previously example16), and the remainder is left as example-callbacks.
This commit also renames the internal variables ("Example1",
"Example2", "Example4", etc.) into non-numeric names ("ExampleMandA",
"ExamplePythonTypes", "ExampleWithEnum", etc.) to correspond to the
file renaming.
The order of tests is preserved, but this can easily be changed if
there is some more natural ordering by updating the list in
examples/CMakeLists.txt.
2016-07-18 20:43:18 +00:00
|
|
|
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)
|
2015-07-05 18:05:44 +00:00
|
|
|
.export_values();
|
2016-01-17 21:36:37 +00:00
|
|
|
|
|
|
|
m.def("return_bytes", &return_bytes);
|
|
|
|
m.def("print_bytes", &print_bytes);
|
2015-07-05 18:05:44 +00:00
|
|
|
}
|