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
executable file
·140 lines (116 loc) · 4.13 KB
/
UtxoStore.java
File metadata and controls
executable file
·140 lines (116 loc) · 4.13 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
/*
* 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.HashMap;
import java.util.List;
import java.util.Objects;
import java.util.Set;
import java.util.stream.Collectors;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.lang3.ArrayUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Qualifier;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Component;
import org.tron.common.crypto.ECKey;
import org.tron.common.utils.ByteArray;
import org.tron.core.SpendableOutputs;
import org.tron.protos.Protocol.TXOutput;
import org.tron.protos.Protocol.TXOutputs;
@Slf4j
@Component
public class UtxoStore extends TronDatabase {
@Autowired
private UtxoStore(@Value("utxo") String dbName) {
super(dbName);
}
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);
}
/**
* Find spendable outputs.
*/
public SpendableOutputs findSpendableOutputs(byte[] pubKeyHash, long amount) {
SpendableOutputs spendableOutputs = new SpendableOutputs();
HashMap<String, long[]> unspentOutputs = new HashMap<>();
long accumulated = 0L;
for (byte[] key : getDbSource().allKeys()) {
try {
TXOutputs txOutputs = TXOutputs.parseFrom(getDbSource().getData(key));
String keyToHexString = ByteArray.toHexString(key);
for (int i = 0, len = txOutputs.getOutputsCount(); 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 = ArrayUtils.nullToEmpty(unspentOutputs.get(keyToHexString));
unspentOutputs.put(keyToHexString, ArrayUtils.add(v, i));
}
}
} catch (InvalidProtocolBufferException e) {
logger.debug(e.getMessage(), e);
}
}
spendableOutputs.setAmount(accumulated);
spendableOutputs.setUnspentOutputs(unspentOutputs);
return spendableOutputs;
}
/**
* Find related UTXOs.
*/
public ArrayList<TXOutput> findUtxo(byte[] address) {
return getDbSource().allKeys().stream()
.map(key -> {
try {
return TXOutputs.parseFrom(getDbSource().getData(key));
} catch (InvalidProtocolBufferException e) {
logger.debug(e.getMessage(), e);
return null;
}
})
.filter(Objects::nonNull)
.map(TXOutputs::getOutputsList)
.flatMap(List::stream)
.filter(txOutput -> ByteArray.toHexString(ECKey.computeAddress(address))
.equals(ByteArray.toHexString(txOutput.getPubKeyHash().toByteArray())))
.collect(Collectors.toCollection(ArrayList::new));
}
@Override
public void put(byte[] key, Object item) {
}
@Override
public void delete(byte[] key) {
}
@Override
public Object get(byte[] key) {
return null;
}
@Override
public boolean has(byte[] key) {
return false;
}
}