14 # pragma warning(push) 15 # pragma warning(disable: 4127) // warning C4127: Conditional expression is constant 20 m.def(
"string_roundtrip", [](
const char *s) {
return s; });
24 char32_t a32 = 0x61 , z32 = 0x7a , ib32 = 0x203d , cake32 = 0x1f382 , mathbfA32 = 0x1d400 ;
25 char16_t b16 = 0x62 , z16 = 0x7a, ib16 = 0x203d, cake16_1 = 0xd83c, cake16_2 = 0xdf82, mathbfA16_1 = 0xd835, mathbfA16_2 = 0xdc00;
28 wstr.push_back(0x2e18);
29 if (
sizeof(
wchar_t) == 2) { wstr.push_back(mathbfA16_1); wstr.push_back(mathbfA16_2); }
30 else { wstr.push_back((
wchar_t) mathbfA32); }
33 m.def(
"good_utf8_string", []() {
return std::string(u8
"Say utf8\u203d \U0001f382 \U0001d400"); });
34 m.def(
"good_utf16_string", [=]() {
return std::u16string({ b16, ib16, cake16_1, cake16_2, mathbfA16_1, mathbfA16_2, z16 }); });
35 m.def(
"good_utf32_string", [=]() {
return std::u32string({ a32, mathbfA32, cake32, ib32, z32 }); });
36 m.def(
"good_wchar_string", [=]() {
return wstr; });
37 m.def(
"bad_utf8_string", []() {
return std::string(
"abc\xd0" "def"); });
38 m.def(
"bad_utf16_string", [=]() {
return std::u16string({ b16, char16_t(0xd800), z16 }); });
40 if (PY_MAJOR_VERSION >= 3)
41 m.def(
"bad_utf32_string", [=]() {
return std::u32string({ a32, char32_t(0xd800), z32 }); });
42 if (PY_MAJOR_VERSION >= 3 ||
sizeof(
wchar_t) == 2)
43 m.def(
"bad_wchar_string", [=]() { return std::wstring({ wchar_t(0x61), wchar_t(0xd800) }); });
44 m.def(
"u8_Z", []() ->
char {
return 'Z'; });
45 m.def(
"u8_eacute", []() ->
char {
return '\xe9'; });
46 m.def(
"u16_ibang", [=]() -> char16_t {
return ib16; });
47 m.def(
"u32_mathbfA", [=]() -> char32_t {
return mathbfA32; });
48 m.def(
"wchar_heart", []() ->
wchar_t {
return 0x2665; });
51 m.attr(
"wchar_size") =
py::cast(
sizeof(
wchar_t));
52 m.def(
"ord_char", [](
char c) ->
int {
return static_cast<unsigned char>(c); });
53 m.def(
"ord_char_lv", [](
char &c) ->
int {
return static_cast<unsigned char>(c); });
54 m.def(
"ord_char16", [](char16_t c) -> uint16_t {
return c; });
55 m.def(
"ord_char16_lv", [](char16_t &c) -> uint16_t {
return c; });
56 m.def(
"ord_char32", [](char32_t c) -> uint32_t {
return c; });
57 m.def(
"ord_wchar", [](
wchar_t c) ->
int {
return c; });
60 m.def(
"strlen", [](
char *s) {
return strlen(s); });
61 m.def(
"string_length", [](std::string s) {
return s.length(); });
64 #ifdef PYBIND11_HAS_STRING_VIEW 65 m.attr(
"has_string_view") =
true;
66 m.def(
"string_view_print", [](std::string_view s) {
py::print(s, s.size()); });
67 m.def(
"string_view16_print", [](std::u16string_view s) {
py::print(s, s.size()); });
68 m.def(
"string_view32_print", [](std::u32string_view s) {
py::print(s, s.size()); });
69 m.def(
"string_view_chars", [](std::string_view s) {
py::list l;
for (
auto c : s) l.append((std::uint8_t) c);
return l; });
70 m.def(
"string_view16_chars", [](std::u16string_view s) {
py::list l;
for (
auto c : s) l.append((
int) c);
return l; });
71 m.def(
"string_view32_chars", [](std::u32string_view s) {
py::list l;
for (
auto c : s) l.append((
int) c);
return l; });
72 m.def(
"string_view_return", []() {
return std::string_view(u8
"utf8 secret \U0001f382"); });
73 m.def(
"string_view16_return", []() {
return std::u16string_view(u
"utf16 secret \U0001f382"); });
74 m.def(
"string_view32_return", []() {
return std::u32string_view(U
"utf32 secret \U0001f382"); });
78 m.def(
"i32_str", [](std::int32_t v) {
return std::to_string(v); });
79 m.def(
"u32_str", [](std::uint32_t v) {
return std::to_string(v); });
80 m.def(
"i64_str", [](std::int64_t v) {
return std::to_string(v); });
81 m.def(
"u64_str", [](std::uint64_t v) {
return std::to_string(v); });
84 m.def(
"pair_passthrough", [](std::pair<bool, std::string> input) {
85 return std::make_pair(input.second, input.first);
86 },
"Return a pair in reversed order");
87 m.def(
"tuple_passthrough", [](std::tuple<bool, std::string, int> input) {
88 return std::make_tuple(std::get<2>(input), std::get<1>(input), std::get<0>(input));
89 },
"Return a triple in reversed order");
90 m.def(
"empty_tuple", []() {
return std::tuple<>(); });
91 static std::pair<RValueCaster, RValueCaster> lvpair;
92 static std::tuple<RValueCaster, RValueCaster, RValueCaster> lvtuple;
93 static std::pair<RValueCaster, std::tuple<RValueCaster, std::pair<RValueCaster, RValueCaster>>> lvnested;
95 m.def(
"lvalue_pair", []() ->
const decltype(lvpair) & {
return lvpair; });
97 m.def(
"lvalue_tuple", []() ->
const decltype(lvtuple) & {
return lvtuple; });
98 m.def(
"rvalue_nested", []() {
100 m.def(
"lvalue_nested", []() ->
const decltype(lvnested) & {
return lvnested; });
103 m.def(
"return_none_string", []() -> std::string * {
return nullptr; });
104 m.def(
"return_none_char", []() ->
const char * {
return nullptr; });
105 m.def(
"return_none_bool", []() ->
bool * {
return nullptr; });
106 m.def(
"return_none_int", []() ->
int * {
return nullptr; });
107 m.def(
"return_none_float", []() ->
float * {
return nullptr; });
110 m.def(
"defer_none_cstring", [](
char *) {
return false; });
111 m.def(
"defer_none_cstring", [](
py::none) {
return true; });
112 m.def(
"defer_none_custom", [](UserType *) {
return false; });
113 m.def(
"defer_none_custom", [](
py::none) {
return true; });
114 m.def(
"nodefer_none_void", [](
void *) {
return true; });
115 m.def(
"nodefer_none_void", [](
py::none) {
return false; });
118 m.def(
"load_nullptr_t", [](std::nullptr_t) {});
119 m.def(
"cast_nullptr_t", []() {
return std::nullptr_t{}; });
122 m.def(
"bool_passthrough", [](
bool arg) {
return arg; });
123 m.def(
"bool_passthrough_noconvert", [](
bool arg) {
return arg; },
py::arg().
noconvert());
126 m.def(
"refwrap_builtin", [](std::reference_wrapper<int> p) {
return 10 * p.get(); });
127 m.def(
"refwrap_usertype", [](std::reference_wrapper<UserType> p) {
return p.get().value(); });
132 m.def(
"refwrap_list", [](
bool copy) {
133 static IncType x1(1), x2(2);
136 l.append(
py::cast(f, copy ? py::return_value_policy::copy
142 m.def(
"refwrap_iiw", [](
const IncType &w) {
return w.value(); });
143 m.def(
"refwrap_call_iiw", [](IncType &w,
py::function f) {
146 l.append(f(std::cref(w)));
147 IncType
x(w.value());
149 IncType y(w.value());
156 m.def(
"complex_cast", [](
float x) {
return "{}"_s.format(
x); });
157 m.def(
"complex_cast", [](std::complex<float>
x) {
return "({}, {})"_s.format(
x.real(),
x.imag()); });
160 m.def(
"int_cast", []() {
return (
int) 42;});
161 m.def(
"long_cast", []() {
return (
long) 42;});
162 m.def(
"longlong_cast", []() {
return ULLONG_MAX;});
165 m.def(
"test_void_caster", []() ->
bool {
166 void *v = (
void *) 0xabcd;
168 return py::cast<void *>(o) == v;
test_initializer builtin_casters("builtin_casters", test_submodule_builtin_casters)
arg & noconvert(bool flag=true)
Indicate that the type should not be converted in the type caster.
T cast(const handle &handle)
void print(Args &&...args)
#define TEST_SUBMODULE(name, variable)
auto to_string(T &&value) -> decltype(std::forward< T >(value))
Convert an object to a string (directly forward if this can become a string)