mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 08:03:55 +00:00
Compare commits
10 Commits
2d998433f1
...
dd5e9a8cec
Author | SHA1 | Date | |
---|---|---|---|
|
dd5e9a8cec | ||
|
1334c7eae7 | ||
|
19d8f06c52 | ||
|
9fb90cb30c | ||
|
a453fdb2b1 | ||
|
70b7f0805f | ||
|
263ff1aeb7 | ||
|
3a543a12e1 | ||
|
c50af5b8f8 | ||
|
1083c2b9c7 |
@ -114,6 +114,10 @@ public:
|
||||
|
||||
template <typename CharT>
|
||||
using is_std_char_type = any_of<std::is_same<CharT, char>, /* std::string */
|
||||
#if defined(PYBIND11_CPP17)
|
||||
std::is_same<CharT, std::byte>, /* std::byte */
|
||||
#endif
|
||||
std::is_same<CharT, uint8_t>, /* uint8_t */
|
||||
#if defined(PYBIND11_HAS_U8STRING)
|
||||
std::is_same<CharT, char8_t>, /* std::u8string */
|
||||
#endif
|
||||
@ -450,12 +454,22 @@ struct string_caster {
|
||||
cast(const StringType &src, return_value_policy /* policy */, handle /* parent */) {
|
||||
const char *buffer = reinterpret_cast<const char *>(src.data());
|
||||
auto nbytes = ssize_t(src.size() * sizeof(CharT));
|
||||
#if defined(PYBIND11_CPP17)
|
||||
if constexpr (std::is_same<CharT, uint8_t>::value ||
|
||||
std::is_same<CharT, std::byte>::value)
|
||||
#else
|
||||
if (std::is_same<CharT, uint8_t>::value)
|
||||
#endif
|
||||
{
|
||||
return PyBytes_FromStringAndSize(buffer, nbytes);
|
||||
} else {
|
||||
handle s = decode_utfN(buffer, nbytes);
|
||||
if (!s) {
|
||||
throw error_already_set();
|
||||
}
|
||||
return s;
|
||||
}
|
||||
}
|
||||
|
||||
PYBIND11_TYPE_CASTER(StringType, const_name(PYBIND11_STRING_NAME));
|
||||
|
||||
@ -477,12 +491,18 @@ private:
|
||||
nullptr);
|
||||
#endif
|
||||
}
|
||||
template <typename C>
|
||||
using accept_bytes_as_is = any_of<std::is_same<C, char>,
|
||||
#if defined(PYBIND11_CPP17)
|
||||
std::is_same<C, std::byte>,
|
||||
#endif
|
||||
std::is_same<C, uint8_t>>;
|
||||
|
||||
// When loading into a std::string or char*, accept a bytes/bytearray object as-is (i.e.
|
||||
// without any encoding/decoding attempt). For other C++ char sizes this is a no-op.
|
||||
// which supports loading a unicode from a str, doesn't take this path.
|
||||
template <typename C = CharT>
|
||||
bool load_raw(enable_if_t<std::is_same<C, char>::value, handle> src) {
|
||||
bool load_raw(enable_if_t<accept_bytes_as_is<C>::value, handle> src) {
|
||||
if (PYBIND11_BYTES_CHECK(src.ptr())) {
|
||||
// We were passed raw bytes; accept it into a std::string or char*
|
||||
// without any encoding attempt.
|
||||
@ -490,7 +510,7 @@ private:
|
||||
if (!bytes) {
|
||||
pybind11_fail("Unexpected PYBIND11_BYTES_AS_STRING() failure.");
|
||||
}
|
||||
value = StringType(bytes, (size_t) PYBIND11_BYTES_SIZE(src.ptr()));
|
||||
value = StringType((const C *) bytes, (size_t) PYBIND11_BYTES_SIZE(src.ptr()));
|
||||
return true;
|
||||
}
|
||||
if (PyByteArray_Check(src.ptr())) {
|
||||
@ -500,7 +520,7 @@ private:
|
||||
if (!bytearray) {
|
||||
pybind11_fail("Unexpected PyByteArray_AsString() failure.");
|
||||
}
|
||||
value = StringType(bytearray, (size_t) PyByteArray_Size(src.ptr()));
|
||||
value = StringType((const C *) bytearray, (size_t) PyByteArray_Size(src.ptr()));
|
||||
return true;
|
||||
}
|
||||
|
||||
@ -508,7 +528,7 @@ private:
|
||||
}
|
||||
|
||||
template <typename C = CharT>
|
||||
bool load_raw(enable_if_t<!std::is_same<C, char>::value, handle>) {
|
||||
bool load_raw(enable_if_t<!accept_bytes_as_is<C>::value, handle>) {
|
||||
return false;
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user