CatapultServer  v0.5.0.1 (Elephant)
MapperUtils.h
Go to the documentation of this file.
1 
21 #pragma once
22 #include "catapult/exceptions.h"
23 #include "catapult/types.h"
24 #include <bsoncxx/builder/stream/document.hpp>
25 #include <mongocxx/client.hpp>
26 #include <type_traits>
27 
28 namespace catapult {
29  namespace model {
30  struct EmbeddedTransaction;
31  struct Receipt;
32  struct VerifiableEntity;
33  }
34 }
35 
36 namespace catapult { namespace mongo { namespace mappers {
37 
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;
45 
46  using array_context = bsoncxx::builder::stream::array_context<bsoncxx::builder::stream::key_context<>>;
47  }
48 
49  // region conversions to db type
50 
52  bsoncxx::v_noabi::types::b_binary ToBinary(const uint8_t* pData, size_t size);
53 
55  bsoncxx::v_noabi::types::b_binary ToBinary(const UnresolvedAddress& unresolvedAddress);
56 
58  template<size_t N, typename TTag>
59  auto ToBinary(const utils::ByteArray<N, TTag>& array) {
60  return ToBinary(array.data(), array.size());
61  }
62 
64  template<
65  typename TBaseValue,
66  typename X = std::enable_if_t<std::is_same_v<uint32_t, typename TBaseValue::ValueType>>>
67  int32_t ToInt32(TBaseValue value) {
68  return static_cast<int32_t>(value.unwrap());
69  }
70 
72  template<
73  typename TBaseValue,
74  typename X = std::enable_if_t<std::is_same_v<uint64_t, typename TBaseValue::ValueType>>>
75  int64_t ToInt64(TBaseValue value) {
76  return static_cast<int64_t>(value.unwrap());
77  }
78 
79  // endregion
80 
81  // region conversions from db type
82 
84  uint8_t ToUint8(int32_t value);
85 
87  uint32_t ToUint32(int32_t value);
88 
90  template<
91  typename TBaseValue,
92  typename TBsonElement,
93  typename X = std::enable_if_t<std::is_same_v<uint64_t, typename TBaseValue::ValueType>>>
94  TBaseValue GetValue64(TBsonElement element) {
95  return TBaseValue(static_cast<typename TBaseValue::ValueType>(element.get_int64().value));
96  }
97 
99  template<size_t N, typename TTag, typename TMongoContainer>
100  void DbBinaryToModelArray(utils::ByteArray<N, TTag>& dest, const TMongoContainer& source) {
101  if (dest.size() != source.size)
102  CATAPULT_THROW_INVALID_ARGUMENT_1("invalid size of dest array", dest.size());
103 
104  std::memcpy(dest.data(), source.bytes, dest.size());
105  }
106 
107  // endregion
108 
109  // region document helpers
110 
112  uint64_t GetUint64OrDefault(const bsoncxx::document::view& documentView, const char* name, uint64_t defaultValue);
113 
115  bool IsEmptyDocument(const bsoncxx::document::value& document);
116 
117  // endregion
118 
119  // region streaming helpers
120 
122  bson_stream::document& StreamEmbeddedTransaction(bson_stream::document& builder, const model::EmbeddedTransaction& transaction);
123 
125  bson_stream::document& StreamVerifiableEntity(bson_stream::document& builder, const model::VerifiableEntity& entity);
126 
129 
132 
134  bson_stream::document& StreamReceipt(bson_stream::document& builder, const model::Receipt& receipt);
135 
136  // endregion
137 }}}
catapult::utils::ByteArray::size
constexpr size_t size() const
Returns the array size.
Definition: ByteArray.h:55
Receipt.h
MapperUtils.h
EmbeddedTransaction.h
exceptions.h
catapult::mongo::mappers::StreamReceipt
bson_stream::document & StreamReceipt(bson_stream::document &builder, const model::Receipt &receipt)
Streams a receipt to builder.
Definition: MapperUtils.cpp:110
catapult::model::Receipt
Binary layout for a receipt entity.
Definition: Receipt.h:31
catapult::mongo::mappers::ToUint8
uint8_t ToUint8(int32_t value)
Converts a 32 bit signed value to an 8 bit unsigned value.
Definition: MapperUtils.cpp:42
catapult::mongo::mappers::StreamMosaic
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
catapult::mongo::mappers::DbBinaryToModelArray
void DbBinaryToModelArray(utils::ByteArray< N, TTag > &dest, const TMongoContainer &source)
Populates dest with data from source.
Definition: MapperUtils.h:100
catapult::mongo::mappers::ToUint32
uint32_t ToUint32(int32_t value)
Converts a 32 bit signed value to a 32 bit unsigned value.
Definition: MapperUtils.cpp:46
catapult::mongo::mappers::bson_stream::array_context
bsoncxx::builder::stream::array_context< bsoncxx::builder::stream::key_context<> > array_context
Definition: MapperUtils.h:46
catapult::utils::to_underlying_type
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
catapult::model::Receipt::Version
uint16_t Version
Receipt version.
Definition: Receipt.h:33
catapult::mongo::mappers::ToInt64
int64_t ToInt64(TBaseValue value)
Converts base value to int64_t.
Definition: MapperUtils.h:75
catapult::model::Receipt::Type
ReceiptType Type
Receipt type.
Definition: Receipt.h:36
catapult::utils::BaseValue< uint64_t, Amount_tag >
catapult::mongo::mappers::ToInt32
int32_t ToInt32(TBaseValue value)
Converts base value to int32_t.
Definition: MapperUtils.h:67
catapult::utils::ByteArray::data
constexpr const uint8_t * data() const noexcept
Returns a const pointer to the underlying array.
Definition: ByteArray.h:70
catapult::mongo::mappers::StreamEmbeddedTransaction
bson_stream::document & StreamEmbeddedTransaction(bson_stream::document &builder, const model::EmbeddedTransaction &transaction)
Streams an embedded transaction to builder.
Definition: MapperUtils.cpp:81
VerifiableEntity.h
catapult::mongo::mappers::StreamVerifiableEntity
bson_stream::document & StreamVerifiableEntity(bson_stream::document &builder, const model::VerifiableEntity &entity)
Streams a verifiable entity to builder.
Definition: MapperUtils.cpp:85
catapult::model::VerifiableEntityHeader::Signature
catapult::Signature Signature
Entity signature.
Definition: VerifiableEntity.h:41
CATAPULT_THROW_INVALID_ARGUMENT_1
#define CATAPULT_THROW_INVALID_ARGUMENT_1(MESSAGE, PARAM1)
Macro used to throw a catapult invalid argument with a single parameter.
Definition: exceptions.h:183
size
uint64_t size
Definition: MemoryCounters.cpp:65
catapult::model::VerifiableEntity
Binary layout for a verifiable (with signature) entity.
Definition: VerifiableEntity.h:45
catapult::model::EmbeddedTransaction
Binary layout for an embedded transaction (non-verifiable).
Definition: EmbeddedTransaction.h:38
catapult::mongo::mappers::GetUint64OrDefault
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
types.h
catapult
Definition: AddressExtractionExtension.cpp:28
catapult::mongo::mappers::ToBinary
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
catapult::mongo::mappers::GetValue64
TBaseValue GetValue64(TBsonElement element)
Gets a 64-bit value from element and converts it to a base value.
Definition: MapperUtils.h:94
catapult::utils::ByteArray
Base class for wrappers of byte array types, to provide some type-safety.
Definition: ByteArray.h:29
catapult::mongo::mappers::IsEmptyDocument
bool IsEmptyDocument(const bsoncxx::document::value &document)
Returns true if document is empty.
Definition: MapperUtils.cpp:62