mirror of
https://github.com/sparrowwallet/drongo.git
synced 2024-11-02 18:26:43 +00:00
add support for retrieving added nodes, refactor nodeRangeToString
This commit is contained in:
parent
025af05758
commit
61b2fd21e6
1 changed files with 72 additions and 2 deletions
|
@ -130,11 +130,16 @@ public class WalletNode extends Persistable implements Comparable<WalletNode> {
|
||||||
return value;
|
return value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public synchronized void fillToIndex(int index) {
|
public synchronized Set<WalletNode> fillToIndex(int index) {
|
||||||
|
Set<WalletNode> newNodes = new TreeSet<>();
|
||||||
for(int i = 0; i <= index; i++) {
|
for(int i = 0; i <= index; i++) {
|
||||||
WalletNode node = new WalletNode(getKeyPurpose(), i);
|
WalletNode node = new WalletNode(getKeyPurpose(), i);
|
||||||
children.add(node);
|
if(children.add(node)) {
|
||||||
|
newNodes.add(node);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return newNodes;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -245,4 +250,69 @@ public class WalletNode extends Persistable implements Comparable<WalletNode> {
|
||||||
|
|
||||||
return changed;
|
return changed;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static String nodeRangesToString(Set<WalletNode> nodes) {
|
||||||
|
return nodeRangesToString(nodes.stream().map(WalletNode::getDerivationPath).collect(Collectors.toList()));
|
||||||
|
}
|
||||||
|
|
||||||
|
public static String nodeRangesToString(Collection<String> nodeDerivations) {
|
||||||
|
List<String> sortedDerivations = new ArrayList<>(nodeDerivations);
|
||||||
|
|
||||||
|
if(nodeDerivations.isEmpty()) {
|
||||||
|
return "[]";
|
||||||
|
}
|
||||||
|
|
||||||
|
List<List<String>> contiguous = splitToContiguous(sortedDerivations);
|
||||||
|
|
||||||
|
String abbrev = "[";
|
||||||
|
for(Iterator<List<String>> iter = contiguous.iterator(); iter.hasNext(); ) {
|
||||||
|
List<String> range = iter.next();
|
||||||
|
abbrev += range.get(0);
|
||||||
|
if(range.size() > 1) {
|
||||||
|
abbrev += "-" + range.get(range.size() - 1);
|
||||||
|
}
|
||||||
|
if(iter.hasNext()) {
|
||||||
|
abbrev += ", ";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
abbrev += "]";
|
||||||
|
|
||||||
|
return abbrev;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static List<List<String>> splitToContiguous(List<String> input) {
|
||||||
|
List<List<String>> result = new ArrayList<>();
|
||||||
|
int prev = 0;
|
||||||
|
|
||||||
|
int keyPurpose = getKeyPurpose(input.get(0));
|
||||||
|
int index = getIndex(input.get(0));
|
||||||
|
|
||||||
|
for (int cur = 0; cur < input.size(); cur++) {
|
||||||
|
if(getKeyPurpose(input.get(cur)) != keyPurpose || getIndex(input.get(cur)) != index) {
|
||||||
|
result.add(input.subList(prev, cur));
|
||||||
|
prev = cur;
|
||||||
|
}
|
||||||
|
index = getIndex(input.get(cur)) + 1;
|
||||||
|
keyPurpose = getKeyPurpose(input.get(cur));
|
||||||
|
}
|
||||||
|
result.add(input.subList(prev, input.size()));
|
||||||
|
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int getKeyPurpose(String path) {
|
||||||
|
List<ChildNumber> childNumbers = KeyDerivation.parsePath(path);
|
||||||
|
if(childNumbers.isEmpty()) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
return childNumbers.get(0).num();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int getIndex(String path) {
|
||||||
|
List<ChildNumber> childNumbers = KeyDerivation.parsePath(path);
|
||||||
|
if(childNumbers.isEmpty()) {
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
return childNumbers.get(childNumbers.size() - 1).num();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue