10#include <pybind11/complex.h>
23 static constexpr auto name = const_name<ConstRefCasted>();
32 return std::move(
value);
53 template <
typename T_>
60 std::is_same<T_, const ConstRefCasted &>::value,
77 m.def(
"string_roundtrip", [](
const char *s) {
return s; });
82 char32_t a32 = 0x61 , z32 = 0x7a , ib32 = 0x203d , cake32 = 0x1f382 ,
84 char16_t b16 = 0x62 , z16 = 0x7a, ib16 = 0x203d, cake16_1 = 0xd83c, cake16_2 = 0xdf82,
85 mathbfA16_1 = 0xd835, mathbfA16_2 = 0xdc00;
88 wstr.push_back(0x2e18);
90 wstr.push_back(mathbfA16_1);
91 wstr.push_back(mathbfA16_2);
94 wstr.push_back((
wchar_t) mathbfA32);
98 m.def(
"good_utf8_string", []() {
99 return std::string((
const char *) u8
"Say utf8\u203d \U0001f382 \U0001d400");
101 m.def(
"good_utf16_string", [=]() {
102 return std::u16string({b16, ib16, cake16_1, cake16_2, mathbfA16_1, mathbfA16_2, z16});
104 m.def(
"good_utf32_string", [=]() {
105 return std::u32string({a32, mathbfA32, cake32, ib32, z32});
107 m.def(
"good_wchar_string", [=]() {
return wstr; });
108 m.def(
"bad_utf8_string", []() {
109 return std::string(
"abc\xd0"
112 m.def(
"bad_utf16_string", [=]() {
return std::u16string({b16, char16_t(0xd800), z16}); });
113#if PY_MAJOR_VERSION >= 3
116 m.def(
"bad_utf32_string", [=]() {
return std::u32string({a32, char32_t(0xd800), z32}); });
118 m.def(
"bad_wchar_string", [=]() {
119 return std::wstring({wchar_t(0x61), wchar_t(0xd800)});
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; });
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; });
139 m.def(
"strlen", [](
char *s) {
return strlen(s); });
140 m.def(
"string_length", [](
const std::string &s) {
return s.length(); });
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");
147 m.def(
"bad_utf8_u8string", []() {
148 return std::u8string((
const char8_t *)
"abc\xd0"
152 m.def(
"u8_char8_Z", []() ->
char8_t {
return u8
'Z'; });
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); });
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) {
168 l.append((std::uint8_t) c);
172 m.def(
"string_view16_chars", [](std::u16string_view s) {
179 m.def(
"string_view32_chars", [](std::u32string_view s) {
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"); });
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);
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) {
213 l.append((std::uint8_t) c);
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"}}; });
220 struct TypeWithBothOperatorStringAndStringView {
222 operator std::string()
const {
return "success"; }
224 operator std::string_view()
const {
return "failure"; }
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()); });
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); });
239 m.def(
"int_passthrough", [](
int arg) {
return arg; });
241 "int_passthrough_noconvert", [](
int arg) {
return arg; }, py::arg{}.
noconvert());
246 [](
const std::pair<bool, std::string> &input) {
247 return std::make_pair(input.second, input.first);
249 "Return a pair in reversed order");
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));
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>>>
262 m.def(
"lvalue_pair", []() ->
const decltype(lvpair) & {
return lvpair; });
263 m.def(
"rvalue_tuple",
265 m.def(
"lvalue_tuple", []() ->
const decltype(lvtuple) & {
return lvtuple; });
266 m.def(
"rvalue_nested", []() {
267 return std::make_pair(
271 m.def(
"lvalue_nested", []() ->
const decltype(lvnested) & {
return lvnested; });
273 static std::pair<int, std::string> int_string_pair{2,
"items"};
274 m.def(
"int_string_pair", []() {
return &int_string_pair; });
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; });
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; });
293 m.def(
"load_nullptr_t", [](std::nullptr_t) {});
294 m.def(
"cast_nullptr_t", []() {
return std::nullptr_t{}; });
299 m.def(
"bool_passthrough", [](
bool arg) {
return arg; });
301 "bool_passthrough_noconvert", [](
bool arg) {
return arg; }, py::arg{}.
noconvert());
304#if !defined(__INTEL_COMPILER)
310 "bool_passthrough_noconvert2", [](
bool arg) {
return arg; }, py::arg().
noconvert());
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(); });
319 m.def(
"refwrap_lvalue", []() -> std::reference_wrapper<UserType> {
323 m.def(
"refwrap_lvalue_const", []() -> std::reference_wrapper<const UserType> {
337 for (
const auto &f : {std::ref(x1), std::ref(x2)}) {
339 f,
copy ? py::return_value_policy::copy : py::return_value_policy::reference));
345 m.def(
"refwrap_iiw", [](
const IncType &w) {
return w.
value(); });
346 m.def(
"refwrap_call_iiw", [](
IncType &w,
const py::function &f) {
348 l.append(f(std::ref(w)));
349 l.append(f(std::cref(w)));
351 l.append(f(std::ref(x)));
353 auto r3 = std::ref(y);
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()); });
364 m.def(
"int_cast", []() {
return (
int) 42; });
365 m.def(
"long_cast", []() {
return (
long) 42; });
366 m.def(
"longlong_cast", []() {
return ULLONG_MAX; });
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;
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; });
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.
\rst Holds a reference to a Python object (no reference counting)
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)
#define PYBIND11_NAMESPACE_BEGIN(name)
typename std::conditional< B, T, F >::type conditional_t
@ copy
Create a new copy of the returned object, which will be owned by Python.
#define PYBIND11_SILENCE_MSVC_C4127(...)
#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.
arg & noconvert(bool flag=true)
Indicate that the type should not be converted in the type caster.
Annotation for function names.