com.swirlds.common.test.merkle.dummy.DummyMerkleInternal Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swirlds-common-testing Show documentation
Show all versions of swirlds-common-testing Show documentation
Swirlds is a software platform designed to build fully-distributed applications that harness the power of the cloud without servers. Now you can develop applications with fairness in decision making, speed, trust and reliability, at a fraction of the cost of traditional server-based platforms.
/*
* Copyright (C) 2020-2023 Hedera Hashgraph, LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.swirlds.common.test.merkle.dummy;
import com.swirlds.common.merkle.MerkleInternal;
import com.swirlds.common.merkle.MerkleNode;
import com.swirlds.common.merkle.impl.PartialNaryMerkleInternal;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.function.BiFunction;
public class DummyMerkleInternal extends PartialNaryMerkleInternal implements DummyMerkleNode, MerkleInternal {
private final String value;
private static final long CLASS_ID = 0x86753092L;
public static final int CLASS_VERSION = 1;
private Integer overridingClassVersion = null;
private boolean initialized;
private final AtomicBoolean released = new AtomicBoolean(false);
private static BiFunction migrationMapper = (node, version) -> node;
public DummyMerkleInternal(String value) {
this.value = value;
this.initialized = false;
}
public DummyMerkleInternal() {
this("?");
initialized = false;
}
private DummyMerkleInternal(final DummyMerkleInternal that) {
super(that);
initialized = that.initialized;
value = that.value;
}
/**
* Set the method that is used when migrating all DummyMerkleInternal objects.
*
* @param migrationMapper
* a method that is used to migrate a dummy merkle internal
*/
public static void setMigrationMapper(final BiFunction migrationMapper) {
DummyMerkleInternal.migrationMapper = migrationMapper;
}
/**
* Reset the migration mapper, causing DummyMerkleLeaf objects to not do any migration.
*/
public static void resetMigrationMapper() {
migrationMapper = (node, version) -> node;
}
@Override
public void rebuild() {
if (initialized) {
throw new RuntimeException("Node should only be initialized once.");
}
int numberOfChildren = getNumberOfChildren();
for (int childIndex = 0; childIndex < numberOfChildren; childIndex++) {
MerkleNode child = getChild(childIndex);
if (child instanceof DummyMerkleNode && child.isInternal()) {
DummyMerkleInternal internalChild = (DummyMerkleInternal) child;
if (!internalChild.isInitialized()) {
throw new RuntimeException("Children must be initialized before their parents.");
}
}
}
initialized = true;
}
public boolean isInitialized() {
return initialized;
}
@Override
public long getClassId() {
return CLASS_ID;
}
@Override
public int getVersion() {
if (overridingClassVersion != null) {
return overridingClassVersion;
} else {
return CLASS_VERSION;
}
}
/**
* Set the version. For tests that intentionally want to break things with invalid versions.
*/
public void setVersion(int version) {
this.overridingClassVersion = version;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("[");
sb.append(value);
sb.append("](");
for (int childIndex = 0; childIndex < getNumberOfChildren(); childIndex++) {
MerkleNode next = getChild(childIndex);
sb.append(" ");
String str = next == null ? "null" : next.toString();
sb.append(str);
sb.append(" ");
}
sb.append(")");
return sb.toString();
}
@Override
public String getValue() {
return value;
}
@Override
public boolean isLeaf() {
return false;
}
/**
* {@inheritDoc}
*/
@Override
public void destroyNode() {
if (!released.compareAndSet(false, true)) {
throw new IllegalStateException("This type of node should only be deleted once");
}
}
@Override
public DummyMerkleInternal copy() {
return new DummyMerkleInternal(this);
}
/**
* When this node migrates, it will always replace itself with a DummyMerkleInternal containing a single leaf
* in position 0, and that leaf will equal this node.
*/
@Override
public MerkleNode migrate(final int version) {
return migrationMapper.apply(this, version);
}
}