mirror of
https://github.com/ChronosX88/JGUN.git
synced 2024-11-09 08:41:01 +00:00
Handle array merging
This commit is contained in:
parent
f7da23a939
commit
096f3c4387
@ -3,6 +3,7 @@ package io.github.chronosx88.JGUN.storage;
|
|||||||
import io.github.chronosx88.JGUN.api.NodeChangeListener;
|
import io.github.chronosx88.JGUN.api.NodeChangeListener;
|
||||||
import io.github.chronosx88.JGUN.models.graph.*;
|
import io.github.chronosx88.JGUN.models.graph.*;
|
||||||
import io.github.chronosx88.JGUN.models.graph.NodeValue;
|
import io.github.chronosx88.JGUN.models.graph.NodeValue;
|
||||||
|
import io.github.chronosx88.JGUN.models.graph.values.ArrayValue;
|
||||||
|
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
|
|
||||||
@ -17,7 +18,7 @@ public abstract class Storage {
|
|||||||
|
|
||||||
public abstract Set<Map.Entry<String, Node>> entries();
|
public abstract Set<Map.Entry<String, Node>> entries();
|
||||||
|
|
||||||
public abstract Collection<Node> nodes();
|
public abstract Collection<Node> nodes();
|
||||||
|
|
||||||
public abstract boolean isEmpty();
|
public abstract boolean isEmpty();
|
||||||
|
|
||||||
@ -102,7 +103,14 @@ public abstract class Storage {
|
|||||||
.build())
|
.build())
|
||||||
.build();
|
.build();
|
||||||
}
|
}
|
||||||
changedNode.values.put(key, value);
|
|
||||||
|
if (value.getValueType() == NodeValue.ValueType.ARRAY) {
|
||||||
|
// handle appending element to array instead of rewriting
|
||||||
|
ArrayValue array = (ArrayValue) changedNode.getValues().getOrDefault(key, new ArrayValue(List.of()));
|
||||||
|
array.getValue().addAll(((ArrayValue) value).getValue());
|
||||||
|
value = array;
|
||||||
|
}
|
||||||
|
changedNode.getValues().put(key, value);
|
||||||
changedNode.getMetadata().getStates().put(key, state);
|
changedNode.getMetadata().getStates().put(key, state);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user