CatapultServer
v0.5.0.1 (Elephant)
|
Go to the documentation of this file.
24 #include <bsoncxx/builder/stream/document.hpp>
25 #include <mongocxx/client.hpp>
26 #include <type_traits>
30 struct EmbeddedTransaction;
32 struct VerifiableEntity;
36 namespace catapult {
namespace mongo {
namespace mappers {
38 namespace bson_stream {
39 using bsoncxx::builder::stream::close_array;
40 using bsoncxx::builder::stream::close_document;
41 using bsoncxx::builder::stream::document;
42 using bsoncxx::builder::stream::open_array;
43 using bsoncxx::builder::stream::open_document;
44 using bsoncxx::builder::stream::finalize;
46 using array_context = bsoncxx::builder::stream::array_context<bsoncxx::builder::stream::key_context<>>;
52 bsoncxx::v_noabi::types::b_binary
ToBinary(
const uint8_t* pData,
size_t size);
58 template<
size_t N,
typename TTag>
66 typename X = std::enable_if_t<std::is_same_v<uint32_t, typename TBaseValue::ValueType>>>
68 return static_cast<int32_t>(value.unwrap());
74 typename X = std::enable_if_t<std::is_same_v<uint64_t, typename TBaseValue::ValueType>>>
76 return static_cast<int64_t>(value.unwrap());
92 typename TBsonElement,
93 typename X = std::enable_if_t<std::is_same_v<uint64_t, typename TBaseValue::ValueType>>>
95 return TBaseValue(static_cast<typename TBaseValue::ValueType>(element.get_int64().value));
99 template<
size_t N,
typename TTag,
typename TMongoContainer>
101 if (dest.
size() != source.size)
104 std::memcpy(dest.
data(), source.bytes, dest.
size());
112 uint64_t
GetUint64OrDefault(
const bsoncxx::document::view& documentView,
const char* name, uint64_t defaultValue);
constexpr size_t size() const
Returns the array size.
Definition: ByteArray.h:55
bson_stream::document & StreamReceipt(bson_stream::document &builder, const model::Receipt &receipt)
Streams a receipt to builder.
Definition: MapperUtils.cpp:110
Binary layout for a receipt entity.
Definition: Receipt.h:31
uint8_t ToUint8(int32_t value)
Converts a 32 bit signed value to an 8 bit unsigned value.
Definition: MapperUtils.cpp:42
bson_stream::array_context & StreamMosaic(bson_stream::array_context &context, MosaicId id, Amount amount)
Streams a mosaic composed of id and amount to context.
Definition: MapperUtils.cpp:102
void DbBinaryToModelArray(utils::ByteArray< N, TTag > &dest, const TMongoContainer &source)
Populates dest with data from source.
Definition: MapperUtils.h:100
uint32_t ToUint32(int32_t value)
Converts a 32 bit signed value to a 32 bit unsigned value.
Definition: MapperUtils.cpp:46
bsoncxx::builder::stream::array_context< bsoncxx::builder::stream::key_context<> > array_context
Definition: MapperUtils.h:46
constexpr std::underlying_type_t< TEnum > to_underlying_type(TEnum value)
Converts a strongly typed enumeration value to its underlying integral value.
Definition: Casting.h:37
uint16_t Version
Receipt version.
Definition: Receipt.h:33
int64_t ToInt64(TBaseValue value)
Converts base value to int64_t.
Definition: MapperUtils.h:75
ReceiptType Type
Receipt type.
Definition: Receipt.h:36
int32_t ToInt32(TBaseValue value)
Converts base value to int32_t.
Definition: MapperUtils.h:67
constexpr const uint8_t * data() const noexcept
Returns a const pointer to the underlying array.
Definition: ByteArray.h:70
bson_stream::document & StreamEmbeddedTransaction(bson_stream::document &builder, const model::EmbeddedTransaction &transaction)
Streams an embedded transaction to builder.
Definition: MapperUtils.cpp:81
bson_stream::document & StreamVerifiableEntity(bson_stream::document &builder, const model::VerifiableEntity &entity)
Streams a verifiable entity to builder.
Definition: MapperUtils.cpp:85
#define CATAPULT_THROW_INVALID_ARGUMENT_1(MESSAGE, PARAM1)
Macro used to throw a catapult invalid argument with a single parameter.
Definition: exceptions.h:183
uint64_t size
Definition: MemoryCounters.cpp:65
Binary layout for a verifiable (with signature) entity.
Definition: VerifiableEntity.h:45
Binary layout for an embedded transaction (non-verifiable).
Definition: EmbeddedTransaction.h:38
uint64_t GetUint64OrDefault(const bsoncxx::document::view &documentView, const char *name, uint64_t defaultValue)
Attempts to read a uint64 value from documentView with name, returning defaultValue if no such value ...
Definition: MapperUtils.cpp:54
Definition: AddressExtractionExtension.cpp:28
bsoncxx::types::b_binary ToBinary(const uint8_t *pData, size_t size)
Converts raw array (pData) of size elements into bson binary type.
Definition: MapperUtils.cpp:30
TBaseValue GetValue64(TBsonElement element)
Gets a 64-bit value from element and converts it to a base value.
Definition: MapperUtils.h:94
Base class for wrappers of byte array types, to provide some type-safety.
Definition: ByteArray.h:29
bool IsEmptyDocument(const bsoncxx::document::value &document)
Returns true if document is empty.
Definition: MapperUtils.cpp:62