mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-09-12 13:42:10 +02:00
e8de5c7b68 Merge bitcoin-core/libmultiprocess#305: refactor: memcpy to std::ranges::copy to work around ubsan warn 9307e68e5a Merge bitcoin-core/libmultiprocess#306: doc: Bump version 12 > 13 fac7b9b7f6 refactor: memcpy to std::ranges::copy to work around ubsan warn 1bd7025609 Merge bitcoin-core/libmultiprocess#297: test: add map serialization round-trip coverage 438fdd243d doc: Bump version 12 > 13 463d073cb8 test: rename vBool to vector_bool 85df233845 test: add mapStringInt to foo.capnp to cover map serialization and deserialization git-subtree-dir: src/ipc/libmultiprocess git-subtree-split: e8de5c7b68e0ae21c94ae92aa22e5c3b213f9c12
51 lines
1.9 KiB
C++
51 lines
1.9 KiB
C++
// Copyright (c) The Bitcoin Core developers
|
|
// Distributed under the MIT software license, see the accompanying
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef MP_PROXY_TYPE_DATA_H
|
|
#define MP_PROXY_TYPE_DATA_H
|
|
|
|
#include <mp/util.h>
|
|
|
|
#include <concepts>
|
|
#include <span>
|
|
#include <ranges>
|
|
|
|
namespace mp {
|
|
template <typename T, typename U>
|
|
concept IsSpanOf =
|
|
std::convertible_to<T, std::span<const U>> &&
|
|
std::constructible_from<T, const U*, const U*>;
|
|
|
|
template <typename T>
|
|
concept IsByteSpan =
|
|
IsSpanOf<T, std::byte> ||
|
|
IsSpanOf<T, char> ||
|
|
IsSpanOf<T, unsigned char> ||
|
|
IsSpanOf<T, signed char>;
|
|
|
|
//! Generic ::capnp::Data field builder for any C++ type that can be converted
|
|
//! to a span of bytes, like std::vector<char> or std::array<uint8_t>, or custom
|
|
//! blob types like uint256 or PKHash with data() and size() methods pointing to
|
|
//! bytes.
|
|
template <typename LocalType, typename Value, typename Output>
|
|
void CustomBuildField(TypeList<LocalType>, Priority<2>, InvokeContext& invoke_context, Value&& value, Output&& output)
|
|
requires (std::is_same_v<decltype(output.get()), ::capnp::Data::Builder> && IsByteSpan<LocalType>)
|
|
{
|
|
auto data = std::span{value};
|
|
auto result = output.init(data.size());
|
|
std::ranges::copy(data, result.begin());
|
|
}
|
|
|
|
template <typename LocalType, typename Input, typename ReadDest>
|
|
decltype(auto) CustomReadField(TypeList<LocalType>, Priority<2>, InvokeContext& invoke_context, Input&& input, ReadDest&& read_dest)
|
|
requires (std::is_same_v<decltype(input.get()), ::capnp::Data::Reader> && IsByteSpan<LocalType>)
|
|
{
|
|
using ByteType = decltype(std::span{std::declval<LocalType>().begin(), std::declval<LocalType>().end()})::element_type;
|
|
const kj::byte *begin{input.get().begin()}, *end{input.get().end()};
|
|
return read_dest.construct(reinterpret_cast<const ByteType*>(begin), reinterpret_cast<const ByteType*>(end));
|
|
}
|
|
} // namespace mp
|
|
|
|
#endif // MP_PROXY_TYPE_DATA_H
|