ΞΌHAL (v2.8.17)
Part of the IPbus software repository
β€’All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Modules Pages
test_builtin_casters.cpp
Go to the documentation of this file.
1/*
2 tests/test_builtin_casters.cpp -- Casters available without any additional headers
3
4 Copyright (c) 2017 Wenzel Jakob <wenzel.jakob@epfl.ch>
5
6 All rights reserved. Use of this source code is governed by a
7 BSD-style license that can be found in the LICENSE file.
8*/
9
10#include <pybind11/complex.h>
11
12#include "pybind11_tests.h"
13
15 int tag;
16};
17
20template <>
22public:
23 static constexpr auto name = const_name<ConstRefCasted>();
24
25 // Input is unimportant, a new value will always be constructed based on the
26 // cast operator.
27 bool load(handle, bool) { return true; }
28
29 explicit operator ConstRefCasted &&() {
30 value = {1};
31 // NOLINTNEXTLINE(performance-move-const-arg)
32 return std::move(value);
33 }
34 explicit operator ConstRefCasted &() {
35 value = {2};
36 return value;
37 }
38 explicit operator ConstRefCasted *() {
39 value = {3};
40 return &value;
41 }
42
43 explicit operator const ConstRefCasted &() {
44 value = {4};
45 return value;
46 }
47 explicit operator const ConstRefCasted *() {
48 value = {5};
49 return &value;
50 }
51
52 // custom cast_op to explicitly propagate types to the conversion operators.
53 template <typename T_>
57 std::is_same<remove_reference_t<T_>, const ConstRefCasted *>::value,
58 const ConstRefCasted *,
60 std::is_same<T_, const ConstRefCasted &>::value,
61 const ConstRefCasted &,
67 /* else */ ConstRefCasted &&>>>>;
68
69private:
71};
74
75TEST_SUBMODULE(builtin_casters, m) {
76 // test_simple_string
77 m.def("string_roundtrip", [](const char *s) { return s; });
78
79 // test_unicode_conversion
80 // Some test characters in utf16 and utf32 encodings. The last one (the 𝐀) contains a null
81 // byte
82 char32_t a32 = 0x61 /*a*/, z32 = 0x7a /*z*/, ib32 = 0x203d /*β€½*/, cake32 = 0x1f382 /*πŸŽ‚*/,
83 mathbfA32 = 0x1d400 /*𝐀*/;
84 char16_t b16 = 0x62 /*b*/, z16 = 0x7a, ib16 = 0x203d, cake16_1 = 0xd83c, cake16_2 = 0xdf82,
85 mathbfA16_1 = 0xd835, mathbfA16_2 = 0xdc00;
86 std::wstring wstr;
87 wstr.push_back(0x61); // a
88 wstr.push_back(0x2e18); // ⸘
89 if (PYBIND11_SILENCE_MSVC_C4127(sizeof(wchar_t) == 2)) {
90 wstr.push_back(mathbfA16_1);
91 wstr.push_back(mathbfA16_2);
92 } // 𝐀, utf16
93 else {
94 wstr.push_back((wchar_t) mathbfA32);
95 } // 𝐀, utf32
96 wstr.push_back(0x7a); // z
97
98 m.def("good_utf8_string", []() {
99 return std::string((const char *) u8"Say utf8\u203d \U0001f382 \U0001d400");
100 }); // Say utf8β€½ πŸŽ‚ 𝐀
101 m.def("good_utf16_string", [=]() {
102 return std::u16string({b16, ib16, cake16_1, cake16_2, mathbfA16_1, mathbfA16_2, z16});
103 }); // bβ€½πŸŽ‚π€z
104 m.def("good_utf32_string", [=]() {
105 return std::u32string({a32, mathbfA32, cake32, ib32, z32});
106 }); // aπ€πŸŽ‚β€½z
107 m.def("good_wchar_string", [=]() { return wstr; }); // a‽𝐀z
108 m.def("bad_utf8_string", []() {
109 return std::string("abc\xd0"
110 "def");
111 });
112 m.def("bad_utf16_string", [=]() { return std::u16string({b16, char16_t(0xd800), z16}); });
113#if PY_MAJOR_VERSION >= 3
114 // Under Python 2.7, invalid unicode UTF-32 characters don't appear to trigger
115 // UnicodeDecodeError
116 m.def("bad_utf32_string", [=]() { return std::u32string({a32, char32_t(0xd800), z32}); });
117 if (PYBIND11_SILENCE_MSVC_C4127(sizeof(wchar_t) == 2)) {
118 m.def("bad_wchar_string", [=]() {
119 return std::wstring({wchar_t(0x61), wchar_t(0xd800)});
120 });
121 }
122#endif
123 m.def("u8_Z", []() -> char { return 'Z'; });
124 m.def("u8_eacute", []() -> char { return '\xe9'; });
125 m.def("u16_ibang", [=]() -> char16_t { return ib16; });
126 m.def("u32_mathbfA", [=]() -> char32_t { return mathbfA32; });
127 m.def("wchar_heart", []() -> wchar_t { return 0x2665; });
128
129 // test_single_char_arguments
130 m.attr("wchar_size") = py::cast(sizeof(wchar_t));
131 m.def("ord_char", [](char c) -> int { return static_cast<unsigned char>(c); });
132 m.def("ord_char_lv", [](char &c) -> int { return static_cast<unsigned char>(c); });
133 m.def("ord_char16", [](char16_t c) -> uint16_t { return c; });
134 m.def("ord_char16_lv", [](char16_t &c) -> uint16_t { return c; });
135 m.def("ord_char32", [](char32_t c) -> uint32_t { return c; });
136 m.def("ord_wchar", [](wchar_t c) -> int { return c; });
137
138 // test_bytes_to_string
139 m.def("strlen", [](char *s) { return strlen(s); });
140 m.def("string_length", [](const std::string &s) { return s.length(); });
141
142#ifdef PYBIND11_HAS_U8STRING
143 m.attr("has_u8string") = true;
144 m.def("good_utf8_u8string", []() {
145 return std::u8string(u8"Say utf8\u203d \U0001f382 \U0001d400");
146 }); // Say utf8β€½ πŸŽ‚ 𝐀
147 m.def("bad_utf8_u8string", []() {
148 return std::u8string((const char8_t *) "abc\xd0"
149 "def");
150 });
151
152 m.def("u8_char8_Z", []() -> char8_t { return u8'Z'; });
153
154 // test_single_char_arguments
155 m.def("ord_char8", [](char8_t c) -> int { return static_cast<unsigned char>(c); });
156 m.def("ord_char8_lv", [](char8_t &c) -> int { return static_cast<unsigned char>(c); });
157#endif
158
159 // test_string_view
160#ifdef PYBIND11_HAS_STRING_VIEW
161 m.attr("has_string_view") = true;
162 m.def("string_view_print", [](std::string_view s) { py::print(s, s.size()); });
163 m.def("string_view16_print", [](std::u16string_view s) { py::print(s, s.size()); });
164 m.def("string_view32_print", [](std::u32string_view s) { py::print(s, s.size()); });
165 m.def("string_view_chars", [](std::string_view s) {
166 py::list l;
167 for (auto c : s) {
168 l.append((std::uint8_t) c);
169 }
170 return l;
171 });
172 m.def("string_view16_chars", [](std::u16string_view s) {
173 py::list l;
174 for (auto c : s) {
175 l.append((int) c);
176 }
177 return l;
178 });
179 m.def("string_view32_chars", [](std::u32string_view s) {
180 py::list l;
181 for (auto c : s) {
182 l.append((int) c);
183 }
184 return l;
185 });
186 m.def("string_view_return",
187 []() { return std::string_view((const char *) u8"utf8 secret \U0001f382"); });
188 m.def("string_view16_return",
189 []() { return std::u16string_view(u"utf16 secret \U0001f382"); });
190 m.def("string_view32_return",
191 []() { return std::u32string_view(U"utf32 secret \U0001f382"); });
192
193 // The inner lambdas here are to also test implicit conversion
194 using namespace std::literals;
195 m.def("string_view_bytes",
196 []() { return [](py::bytes b) { return b; }("abc \x80\x80 def"sv); });
197 m.def("string_view_str",
198 []() { return [](py::str s) { return s; }("abc \342\200\275 def"sv); });
199 m.def("string_view_from_bytes",
200 [](const py::bytes &b) { return [](std::string_view s) { return s; }(b); });
201# if PY_MAJOR_VERSION >= 3
202 m.def("string_view_memoryview", []() {
203 static constexpr auto val = "Have some \360\237\216\202"sv;
204 return py::memoryview::from_memory(val);
205 });
206# endif
207
208# ifdef PYBIND11_HAS_U8STRING
209 m.def("string_view8_print", [](std::u8string_view s) { py::print(s, s.size()); });
210 m.def("string_view8_chars", [](std::u8string_view s) {
211 py::list l;
212 for (auto c : s)
213 l.append((std::uint8_t) c);
214 return l;
215 });
216 m.def("string_view8_return", []() { return std::u8string_view(u8"utf8 secret \U0001f382"); });
217 m.def("string_view8_str", []() { return py::str{std::u8string_view{u8"abc β€½ def"}}; });
218# endif
219
220 struct TypeWithBothOperatorStringAndStringView {
221 // NOLINTNEXTLINE(google-explicit-constructor)
222 operator std::string() const { return "success"; }
223 // NOLINTNEXTLINE(google-explicit-constructor)
224 operator std::string_view() const { return "failure"; }
225 };
226 m.def("bytes_from_type_with_both_operator_string_and_string_view",
227 []() { return py::bytes(TypeWithBothOperatorStringAndStringView()); });
228 m.def("str_from_type_with_both_operator_string_and_string_view",
229 []() { return py::str(TypeWithBothOperatorStringAndStringView()); });
230#endif
231
232 // test_integer_casting
233 m.def("i32_str", [](std::int32_t v) { return std::to_string(v); });
234 m.def("u32_str", [](std::uint32_t v) { return std::to_string(v); });
235 m.def("i64_str", [](std::int64_t v) { return std::to_string(v); });
236 m.def("u64_str", [](std::uint64_t v) { return std::to_string(v); });
237
238 // test_int_convert
239 m.def("int_passthrough", [](int arg) { return arg; });
240 m.def(
241 "int_passthrough_noconvert", [](int arg) { return arg; }, py::arg{}.noconvert());
242
243 // test_tuple
244 m.def(
245 "pair_passthrough",
246 [](const std::pair<bool, std::string> &input) {
247 return std::make_pair(input.second, input.first);
248 },
249 "Return a pair in reversed order");
250 m.def(
251 "tuple_passthrough",
252 [](std::tuple<bool, std::string, int> input) {
253 return std::make_tuple(std::get<2>(input), std::get<1>(input), std::get<0>(input));
254 },
255 "Return a triple in reversed order");
256 m.def("empty_tuple", []() { return std::tuple<>(); });
257 static std::pair<RValueCaster, RValueCaster> lvpair;
258 static std::tuple<RValueCaster, RValueCaster, RValueCaster> lvtuple;
259 static std::pair<RValueCaster, std::tuple<RValueCaster, std::pair<RValueCaster, RValueCaster>>>
260 lvnested;
261 m.def("rvalue_pair", []() { return std::make_pair(RValueCaster{}, RValueCaster{}); });
262 m.def("lvalue_pair", []() -> const decltype(lvpair) & { return lvpair; });
263 m.def("rvalue_tuple",
264 []() { return std::make_tuple(RValueCaster{}, RValueCaster{}, RValueCaster{}); });
265 m.def("lvalue_tuple", []() -> const decltype(lvtuple) & { return lvtuple; });
266 m.def("rvalue_nested", []() {
267 return std::make_pair(
268 RValueCaster{},
269 std::make_tuple(RValueCaster{}, std::make_pair(RValueCaster{}, RValueCaster{})));
270 });
271 m.def("lvalue_nested", []() -> const decltype(lvnested) & { return lvnested; });
272
273 static std::pair<int, std::string> int_string_pair{2, "items"};
274 m.def("int_string_pair", []() { return &int_string_pair; });
275
276 // test_builtins_cast_return_none
277 m.def("return_none_string", []() -> std::string * { return nullptr; });
278 m.def("return_none_char", []() -> const char * { return nullptr; });
279 m.def("return_none_bool", []() -> bool * { return nullptr; });
280 m.def("return_none_int", []() -> int * { return nullptr; });
281 m.def("return_none_float", []() -> float * { return nullptr; });
282 m.def("return_none_pair", []() -> std::pair<int, int> * { return nullptr; });
283
284 // test_none_deferred
285 m.def("defer_none_cstring", [](char *) { return false; });
286 m.def("defer_none_cstring", [](const py::none &) { return true; });
287 m.def("defer_none_custom", [](UserType *) { return false; });
288 m.def("defer_none_custom", [](const py::none &) { return true; });
289 m.def("nodefer_none_void", [](void *) { return true; });
290 m.def("nodefer_none_void", [](const py::none &) { return false; });
291
292 // test_void_caster
293 m.def("load_nullptr_t", [](std::nullptr_t) {}); // not useful, but it should still compile
294 m.def("cast_nullptr_t", []() { return std::nullptr_t{}; });
295
296 // [workaround(intel)] ICC 20/21 breaks with py::arg().stuff, using py::arg{}.stuff works.
297
298 // test_bool_caster
299 m.def("bool_passthrough", [](bool arg) { return arg; });
300 m.def(
301 "bool_passthrough_noconvert", [](bool arg) { return arg; }, py::arg{}.noconvert());
302
303 // TODO: This should be disabled and fixed in future Intel compilers
304#if !defined(__INTEL_COMPILER)
305 // Test "bool_passthrough_noconvert" again, but using () instead of {} to construct py::arg
306 // When compiled with the Intel compiler, this results in segmentation faults when importing
307 // the module. Tested with icc (ICC) 2021.1 Beta 20200827, this should be tested again when
308 // a newer version of icc is available.
309 m.def(
310 "bool_passthrough_noconvert2", [](bool arg) { return arg; }, py::arg().noconvert());
311#endif
312
313 // test_reference_wrapper
314 m.def("refwrap_builtin", [](std::reference_wrapper<int> p) { return 10 * p.get(); });
315 m.def("refwrap_usertype", [](std::reference_wrapper<UserType> p) { return p.get().value(); });
316 m.def("refwrap_usertype_const",
317 [](std::reference_wrapper<const UserType> p) { return p.get().value(); });
318
319 m.def("refwrap_lvalue", []() -> std::reference_wrapper<UserType> {
320 static UserType x(1);
321 return std::ref(x);
322 });
323 m.def("refwrap_lvalue_const", []() -> std::reference_wrapper<const UserType> {
324 static UserType x(1);
325 return std::cref(x);
326 });
327
328 // Not currently supported (std::pair caster has return-by-value cast operator);
329 // triggers static_assert failure.
330 // m.def("refwrap_pair", [](std::reference_wrapper<std::pair<int, int>>) { });
331
332 m.def(
333 "refwrap_list",
334 [](bool copy) {
335 static IncType x1(1), x2(2);
336 py::list l;
337 for (const auto &f : {std::ref(x1), std::ref(x2)}) {
338 l.append(py::cast(
339 f, copy ? py::return_value_policy::copy : py::return_value_policy::reference));
340 }
341 return l;
342 },
343 "copy"_a);
344
345 m.def("refwrap_iiw", [](const IncType &w) { return w.value(); });
346 m.def("refwrap_call_iiw", [](IncType &w, const py::function &f) {
347 py::list l;
348 l.append(f(std::ref(w)));
349 l.append(f(std::cref(w)));
350 IncType x(w.value());
351 l.append(f(std::ref(x)));
352 IncType y(w.value());
353 auto r3 = std::ref(y);
354 l.append(f(r3));
355 return l;
356 });
357
358 // test_complex
359 m.def("complex_cast", [](float x) { return "{}"_s.format(x); });
360 m.def("complex_cast",
361 [](std::complex<float> x) { return "({}, {})"_s.format(x.real(), x.imag()); });
362
363 // test int vs. long (Python 2)
364 m.def("int_cast", []() { return (int) 42; });
365 m.def("long_cast", []() { return (long) 42; });
366 m.def("longlong_cast", []() { return ULLONG_MAX; });
367
369 m.def("test_void_caster", []() -> bool {
370 void *v = (void *) 0xabcd;
371 py::object o = py::cast(v);
372 return py::cast<void *>(o) == v;
373 });
374
375 // Tests const/non-const propagation in cast_op.
376 m.def("takes", [](ConstRefCasted x) { return x.tag; });
377 m.def("takes_move", [](ConstRefCasted &&x) { return x.tag; });
378 m.def("takes_ptr", [](ConstRefCasted *x) { return x->tag; });
379 m.def("takes_ref", [](ConstRefCasted &x) { return x.tag; });
380 m.def("takes_ref_wrap", [](std::reference_wrapper<ConstRefCasted> x) { return x.get().tag; });
381 m.def("takes_const_ptr", [](const ConstRefCasted *x) { return x->tag; });
382 m.def("takes_const_ref", [](const ConstRefCasted &x) { return x.tag; });
383 m.def("takes_const_ref_wrap",
384 [](std::reference_wrapper<const ConstRefCasted> x) { return x.get().tag; });
385}
Like UserType, but increments value on copy for quick reference vs. copy tests.
A user-defined type which is exported and can be used by any test.
int value() const
\rst Holds a reference to a Python object (no reference counting)
Definition: pytypes.h:194
conditional_t< std::is_same< remove_reference_t< T_ >, const ConstRefCasted * >::value, const ConstRefCasted *, conditional_t< std::is_same< T_, const ConstRefCasted & >::value, const ConstRefCasted &, conditional_t< std::is_same< remove_reference_t< T_ >, ConstRefCasted * >::value, ConstRefCasted *, conditional_t< std::is_same< T_, ConstRefCasted & >::value, ConstRefCasted &, ConstRefCasted && > > > > cast_op_type
#define PYBIND11_NAMESPACE_END(name)
Definition: common.h:21
#define PYBIND11_NAMESPACE_BEGIN(name)
Definition: common.h:20
typename std::conditional< B, T, F >::type conditional_t
Definition: common.h:627
@ copy
Create a new copy of the returned object, which will be owned by Python.
#define PYBIND11_SILENCE_MSVC_C4127(...)
Definition: common.h:1206
#define TEST_SUBMODULE(name, variable)
Custom cast-only type that casts to a string "rvalue" or "lvalue" depending on the cast context.
Annotation for arguments.
Definition: cast.h:1238
arg & noconvert(bool flag=true)
Indicate that the type should not be converted in the type caster.
Definition: cast.h:1247
Annotation for function names.
Definition: attr.h:47