forked from tronprotocol/java-tron
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndexedBlockStore.java
More file actions
126 lines (93 loc) · 3.11 KB
/
IndexedBlockStore.java
File metadata and controls
126 lines (93 loc) · 3.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
/*
* java-tron is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* java-tron is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package org.tron.db;
import org.tron.datasource.DataSourceArray;
import org.tron.datasource.ObjectDataSource;
import org.tron.protos.core.TronBlock;
import java.io.Serializable;
import java.math.BigInteger;
import java.util.List;
public class IndexedBlockStore extends AbstractBlockstore {
DataSourceArray<List<BlockInfo>> index;
ObjectDataSource<TronBlock.Block> blocks;
@Override
public synchronized TronBlock.Block getBestBlock() {
Long maxLevel = getMaxNumber();
if (maxLevel < 0) return null;
TronBlock.Block bestBlock = getChainBlockByNumber(maxLevel);
if (bestBlock != null) return bestBlock;
while (bestBlock == null) {
--maxLevel;
bestBlock = getChainBlockByNumber(maxLevel);
}
return bestBlock;
}
@Override
public synchronized long getMaxNumber() {
Long bestIndex = 0L;
if (index.size() > 0) {
bestIndex = (long) index.size();
}
return bestIndex - 1L;
}
@Override
public TronBlock.Block getChainBlockByNumber(long blockNumber) {
if (blockNumber > index.size()) {
return null;
}
List<BlockInfo> blockInfos = index.get((int) blockNumber);
if (blockInfos == null) {
return null;
}
for (BlockInfo blockInfo : blockInfos) {
if (blockInfo.isMainChain()) {
byte[] hash = blockInfo.getHash();
return blocks.get(hash);
}
}
return null;
}
@Override
public synchronized boolean isBlockExist(byte[] hash) {
return blocks.get(hash) != null;
}
@Override
public synchronized TronBlock.Block getBlockByHash(byte[] hash) {
return blocks.get(hash);
}
public static class BlockInfo implements Serializable {
byte[] hash;
BigInteger cummDifficulty;
boolean mainChain;
public byte[] getHash() {
return hash;
}
public void setHash(byte[] hash) {
this.hash = hash;
}
public BigInteger getCummDifficulty() {
return cummDifficulty;
}
public void setCummDifficulty(BigInteger cummDifficulty) {
this.cummDifficulty = cummDifficulty;
}
public boolean isMainChain() {
return mainChain;
}
public void setMainChain(boolean mainChain) {
this.mainChain = mainChain;
}
}
}