veriblock-pop-cpp
C++11 Libraries for leveraging VeriBlock Proof-Of-Proof blockchain technology.
altintegration::btc::BlockTransactionsRequest Struct Reference

Detailed Description

Definition at line 188 of file net_entities.hpp.

+ Collaboration diagram for altintegration::btc::BlockTransactionsRequest:

Public Member Functions

template<typename Stream , typename Operation >
void SerializationOp (Stream &s, Operation ser_action)
 

Public Attributes

uint256 blockhash
 
std::vector< uint16_t > indexes
 
 ADD_SERIALIZE_METHODS
 

Friends

bool operator== (const BlockTransactionsRequest &a, const BlockTransactionsRequest &b)
 
bool operator!= (const BlockTransactionsRequest &a, const BlockTransactionsRequest &b)
 

Member Function Documentation

◆ SerializationOp()

template<typename Stream , typename Operation >
void altintegration::btc::BlockTransactionsRequest::SerializationOp ( Stream &  s,
Operation  ser_action 
)
inline

Definition at line 195 of file net_entities.hpp.

195 {
196 READWRITE(this->blockhash);
197 uint64_t indexes_size = (uint64_t)this->indexes.size();
198 READWRITE(COMPACTSIZE(indexes_size));
199 if (ser_action.ForRead()) {
200 size_t i = 0;
201 while (indexes.size() < indexes_size) {
202 this->indexes.resize(
203 std::min((uint64_t)(1000 + this->indexes.size()), indexes_size));
204 for (; i < this->indexes.size(); ++i) {
205 uint64_t index = 0;
206 READWRITE(COMPACTSIZE(index));
207 if (index > std::numeric_limits<uint16_t>::max()) {
208 throw std::ios_base::failure("index overflowed 16 bits");
209 }
210 this->indexes[i] = (uint16_t)index;
211 }
212 }
213
214 int32_t offset = 0;
215 for (size_t j = 0; j < this->indexes.size(); j++) {
216 if (int32_t(this->indexes[j]) + offset >
217 std::numeric_limits<uint16_t>::max())
218 throw std::ios_base::failure("indexes overflowed 16 bits");
219 this->indexes[j] = this->indexes[j] + (uint16_t)offset;
220 offset = int32_t(this->indexes[j]) + 1;
221 }
222 } else {
223 for (size_t i = 0; i < this->indexes.size(); i++) {
224 uint64_t index =
225 this->indexes[i] - (i == 0 ? 0 : (this->indexes[i - 1] + 1));
226 READWRITE(COMPACTSIZE(index));
227 }
228 }
229 }

Friends And Related Function Documentation

◆ operator!=

bool operator!= ( const BlockTransactionsRequest a,
const BlockTransactionsRequest b 
)
friend

Definition at line 235 of file net_entities.hpp.

236 {
237 return !(a == b);
238 }

◆ operator==

bool operator== ( const BlockTransactionsRequest a,
const BlockTransactionsRequest b 
)
friend

Definition at line 231 of file net_entities.hpp.

232 {
233 return a.blockhash == b.blockhash && a.indexes == b.indexes;
234 }

Member Data Documentation

◆ ADD_SERIALIZE_METHODS

altintegration::btc::BlockTransactionsRequest::ADD_SERIALIZE_METHODS

Definition at line 192 of file net_entities.hpp.

◆ blockhash

uint256 altintegration::btc::BlockTransactionsRequest::blockhash

Definition at line 189 of file net_entities.hpp.

◆ indexes

std::vector<uint16_t> altintegration::btc::BlockTransactionsRequest::indexes

Definition at line 190 of file net_entities.hpp.


The documentation for this struct was generated from the following file: