Monero
bootstrap_serialization.h
Go to the documentation of this file.
1 // Copyright (c) 2014-2018, The Monero Project
2 //
3 // All rights reserved.
4 //
5 // Redistribution and use in source and binary forms, with or without modification, are
6 // permitted provided that the following conditions are met:
7 //
8 // 1. Redistributions of source code must retain the above copyright notice, this list of
9 // conditions and the following disclaimer.
10 //
11 // 2. Redistributions in binary form must reproduce the above copyright notice, this list
12 // of conditions and the following disclaimer in the documentation and/or other
13 // materials provided with the distribution.
14 //
15 // 3. Neither the name of the copyright holder nor the names of its contributors may be
16 // used to endorse or promote products derived from this software without specific
17 // prior written permission.
18 //
19 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
20 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
21 // MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
22 // THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
23 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25 // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26 // STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
27 // THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 
29 #pragma once
30 
33 
34 
35 namespace cryptonote
36 {
37  namespace bootstrap
38  {
39 
40  struct file_info
41  {
42  uint8_t major_version;
43  uint8_t minor_version;
44  uint32_t header_size;
45 
51  };
52 
53  struct blocks_info
54  {
55  // block heights of file's first and last blocks, zero-based indexes
56  uint64_t block_first;
57  uint64_t block_last;
58 
59  // file position, for directly reading last block
60  uint64_t block_last_pos;
61 
63  VARINT_FIELD(block_first);
64  VARINT_FIELD(block_last);
65  VARINT_FIELD(block_last_pos);
67  };
68 
70  {
72  std::vector<transaction> txs;
73  size_t block_weight;
75  uint64_t coins_generated;
76 
78  FIELD(block)
79  FIELD(txs)
80  VARINT_FIELD(block_weight)
81  VARINT_FIELD(cumulative_difficulty)
82  VARINT_FIELD(coins_generated)
84  };
85 
86  }
87 
88 }
uint8_t major_version
Definition: bootstrap_serialization.h:42
Definition: bootstrap_serialization.h:40
Definition: cryptonote_basic.h:366
uint32_t header_size
Definition: bootstrap_serialization.h:44
size_t block_weight
Definition: bootstrap_serialization.h:73
Definition: bootstrap_serialization.h:53
#define END_SERIALIZE()
self-explanatory
Definition: serialization.h:214
uint64_t block_last
Definition: bootstrap_serialization.h:57
Holds cryptonote related classes and helpers.
Definition: db_bdb.cpp:224
cryptonote::block block
Definition: bootstrap_serialization.h:71
difficulty_type cumulative_difficulty
Definition: bootstrap_serialization.h:74
std::vector< transaction > txs
Definition: bootstrap_serialization.h:72
#define BEGIN_SERIALIZE_OBJECT()
begins the environment of the DSL for described the serialization of an object
Definition: serialization.h:190
uint64_t block_first
Definition: bootstrap_serialization.h:56
std::uint64_t difficulty_type
Definition: difficulty.h:40
Definition: bootstrap_serialization.h:69
#define BEGIN_SERIALIZE()
Begins the environment of the DSL for describing how to serialize an of an archive type...
Definition: serialization.h:181
uint64_t block_last_pos
Definition: bootstrap_serialization.h:60
uint8_t minor_version
Definition: bootstrap_serialization.h:43
uint64_t coins_generated
Definition: bootstrap_serialization.h:75