mirror of
https://github.com/zeromq/cppzmq.git
synced 2025-04-05 18:41:12 +02:00
Merge pull request #343 from gummif/gfa/str-buffer
Problem: Sending string literals is awkward
This commit is contained in:
commit
b2fa1192bd
@ -236,6 +236,52 @@ TEST_CASE("const_buffer creation string_view", "[buffer]")
|
||||
}
|
||||
#endif
|
||||
|
||||
TEST_CASE("const_buffer creation with str_buffer", "[buffer]")
|
||||
{
|
||||
const wchar_t wd[10] = {};
|
||||
zmq::const_buffer b = zmq::str_buffer(wd);
|
||||
CHECK(b.size() == 9 * sizeof(wchar_t));
|
||||
CHECK(b.data() == static_cast<const wchar_t*>(wd));
|
||||
|
||||
zmq::const_buffer b2_null = zmq::buffer("hello");
|
||||
constexpr zmq::const_buffer b2 = zmq::str_buffer("hello");
|
||||
CHECK(b2_null.size() == 6);
|
||||
CHECK(b2.size() == 5);
|
||||
CHECK(std::string(static_cast<const char*>(b2.data()), b2.size()) == "hello");
|
||||
}
|
||||
|
||||
TEST_CASE("const_buffer creation with zbuf string literal char", "[buffer]")
|
||||
{
|
||||
using namespace zmq::literals;
|
||||
constexpr zmq::const_buffer b = "hello"_zbuf;
|
||||
CHECK(b.size() == 5);
|
||||
CHECK(std::memcmp(b.data(), "hello", b.size()) == 0);
|
||||
}
|
||||
|
||||
TEST_CASE("const_buffer creation with zbuf string literal wchar_t", "[buffer]")
|
||||
{
|
||||
using namespace zmq::literals;
|
||||
constexpr zmq::const_buffer b = L"hello"_zbuf;
|
||||
CHECK(b.size() == 5 * sizeof(wchar_t));
|
||||
CHECK(std::memcmp(b.data(), L"hello", b.size()) == 0);
|
||||
}
|
||||
|
||||
TEST_CASE("const_buffer creation with zbuf string literal char16_t", "[buffer]")
|
||||
{
|
||||
using namespace zmq::literals;
|
||||
constexpr zmq::const_buffer b = u"hello"_zbuf;
|
||||
CHECK(b.size() == 5 * sizeof(char16_t));
|
||||
CHECK(std::memcmp(b.data(), u"hello", b.size()) == 0);
|
||||
}
|
||||
|
||||
TEST_CASE("const_buffer creation with zbuf string literal char32_t", "[buffer]")
|
||||
{
|
||||
using namespace zmq::literals;
|
||||
constexpr zmq::const_buffer b = U"hello"_zbuf;
|
||||
CHECK(b.size() == 5 * sizeof(char32_t));
|
||||
CHECK(std::memcmp(b.data(), U"hello", b.size()) == 0);
|
||||
}
|
||||
|
||||
TEST_CASE("buffer of structs", "[buffer]")
|
||||
{
|
||||
struct some_pod
|
||||
|
34
zmq.hpp
34
zmq.hpp
@ -1110,6 +1110,40 @@ const_buffer buffer(std::basic_string_view<T, Traits> data, size_t n_bytes) noex
|
||||
}
|
||||
#endif
|
||||
|
||||
// Buffer for a string literal (null terminated)
|
||||
// where the buffer size excludes the terminating character.
|
||||
// Equivalent to zmq::buffer(std::string_view("...")).
|
||||
template<class Char, size_t N>
|
||||
constexpr const_buffer str_buffer(const Char (&data)[N]) noexcept
|
||||
{
|
||||
static_assert(detail::is_pod_like<Char>::value, "Char must be POD");
|
||||
#ifdef ZMQ_CPP14
|
||||
assert(data[N - 1] == Char{0});
|
||||
#endif
|
||||
return const_buffer(static_cast<const Char*>(data),
|
||||
(N - 1) * sizeof(Char));
|
||||
}
|
||||
|
||||
namespace literals
|
||||
{
|
||||
constexpr const_buffer operator"" _zbuf(const char* str, size_t len) noexcept
|
||||
{
|
||||
return const_buffer(str, len * sizeof(char));
|
||||
}
|
||||
constexpr const_buffer operator"" _zbuf(const wchar_t* str, size_t len) noexcept
|
||||
{
|
||||
return const_buffer(str, len * sizeof(wchar_t));
|
||||
}
|
||||
constexpr const_buffer operator"" _zbuf(const char16_t* str, size_t len) noexcept
|
||||
{
|
||||
return const_buffer(str, len * sizeof(char16_t));
|
||||
}
|
||||
constexpr const_buffer operator"" _zbuf(const char32_t* str, size_t len) noexcept
|
||||
{
|
||||
return const_buffer(str, len * sizeof(char32_t));
|
||||
}
|
||||
}
|
||||
|
||||
#endif // ZMQ_CPP11
|
||||
|
||||
namespace detail
|
||||
|
Loading…
x
Reference in New Issue
Block a user