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 }