forked from tronprotocol/java-tron
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUtxoStore.java
More file actions
199 lines (156 loc) · 5.08 KB
/
UtxoStore.java
File metadata and controls
199 lines (156 loc) · 5.08 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
/*
* 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.core.db;
import com.google.protobuf.InvalidProtocolBufferException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map.Entry;
import java.util.Set;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.tron.common.crypto.ECKey;
import org.tron.common.utils.ByteArray;
import org.tron.core.Blockchain;
import org.tron.core.SpendableOutputs;
import org.tron.protos.Protocal.TXOutput;
import org.tron.protos.Protocal.TXOutputs;
public class UtxoStore extends TronDatabase {
public static final Logger logger = LoggerFactory.getLogger("UTXOStore");
private Blockchain blockchain;
private UtxoStore(String dbName) {
super(dbName);
}
@Override
void add() {
}
@Override
void del() {
}
@Override
void fetch() {
}
private static UtxoStore instance;
/**
* create fun.
*
* @param dbName the name of database
*/
public static UtxoStore create(String dbName) {
if (instance == null) {
synchronized (UtxoStore.class) {
if (instance == null) {
instance = new UtxoStore(dbName);
}
}
}
return instance;
}
public void reSet() {
this.dbSource.resetDB();
}
public byte[] find(byte[] key) {
return dbSource.getData(key);
}
public Set<byte[]> getKeys() {
return dbSource.allKeys();
}
/**
* save utxo.
*/
public void saveUtxo(byte[] utxoKey, byte[] utxoData) {
dbSource.putData(utxoKey, utxoData);
}
/**
* Store related UTXOs.
*/
public void storeUtxo() {
logger.info("storeUTXO");
getDbSource().resetDB();
HashMap<String, TXOutputs> utxo = blockchain.findUtxo();
Set<Entry<String, TXOutputs>> entrySet = utxo.entrySet();
for (Entry<String, TXOutputs> entry : entrySet) {
String key = entry.getKey();
TXOutputs value = entry.getValue();
for (TXOutput ignored : value.getOutputsList()) {
getDbSource().putData(ByteArray.fromHexString(key), value.toByteArray());
}
}
}
/**
* Find spendable outputs.
*/
public SpendableOutputs findSpendableOutputs(byte[] pubKeyHash, long amount) {
SpendableOutputs spendableOutputs = new SpendableOutputs();
HashMap<String, long[]> unspentOutputs = new HashMap<>();
long accumulated = 0L;
Set<byte[]> keySet = getDbSource().allKeys();
for (byte[] key : keySet) {
byte[] txOutputsData = getDbSource().getData(key);
try {
TXOutputs txOutputs = TXOutputs.parseFrom(txOutputsData);
int len = txOutputs.getOutputsCount();
for (int i = 0; i < len; i++) {
TXOutput txOutput = txOutputs.getOutputs(i);
if (ByteArray.toHexString(ECKey.computeAddress(pubKeyHash))
.equals(ByteArray.toHexString(txOutput
.getPubKeyHash()
.toByteArray())) && accumulated < amount) {
accumulated += txOutput.getValue();
long[] v = unspentOutputs.get(ByteArray.toHexString(key));
if (v == null) {
v = new long[0];
}
long[] tmp = Arrays.copyOf(v, v.length + 1);
tmp[tmp.length - 1] = i;
unspentOutputs.put(ByteArray.toHexString(key), tmp);
}
}
} catch (InvalidProtocolBufferException e) {
e.printStackTrace();
}
}
spendableOutputs.setAmount(accumulated);
spendableOutputs.setUnspentOutputs(unspentOutputs);
return spendableOutputs;
}
/**
* Find related UTXOs.
*/
public ArrayList<TXOutput> findUtxo(byte[] address) {
ArrayList<TXOutput> utxos = new ArrayList<>();
Set<byte[]> keySet = getDbSource().allKeys();
for (byte[] key : keySet) {
byte[] txData = getDbSource().getData(key);
try {
TXOutputs txOutputs = TXOutputs.parseFrom(txData);
for (TXOutput txOutput : txOutputs.getOutputsList()) {
if (ByteArray.toHexString(ECKey.computeAddress(address))
.equals(ByteArray.toHexString(txOutput
.getPubKeyHash()
.toByteArray()))) {
utxos.add(txOutput);
}
}
} catch (InvalidProtocolBufferException e) {
e.printStackTrace();
}
}
return utxos;
}
public void close() {
dbSource.closeDB();
}
}