com.swirlds.state.merkle.singleton.SingletonNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of swirlds-state-api Show documentation
Show all versions of swirlds-state-api 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.
The newest version!
/*
* Copyright (C) 2023-2024 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.state.merkle.singleton;
import static com.swirlds.state.merkle.logging.StateLogger.logSingletonRead;
import static com.swirlds.state.merkle.logging.StateLogger.logSingletonWrite;
import com.hedera.pbj.runtime.Codec;
import com.swirlds.common.merkle.MerkleInternal;
import com.swirlds.common.merkle.impl.PartialBinaryMerkleInternal;
import com.swirlds.common.merkle.utility.DebugIterationEndpoint;
import com.swirlds.common.utility.Labeled;
import com.swirlds.state.merkle.StateUtils;
import edu.umd.cs.findbugs.annotations.NonNull;
import edu.umd.cs.findbugs.annotations.Nullable;
/**
* A merkle node with a string (the label) as the left child, and the merkle node value as the right
* child. We actually support a raw type (any type!) as the value, and we serialize it and put it
* into a simple merkle node.
*
* @param The value type
*/
@DebugIterationEndpoint
public class SingletonNode extends PartialBinaryMerkleInternal implements Labeled, MerkleInternal {
static final long CLASS_ID = 0x3832CC837AB77BFL;
public static final int CLASS_VERSION = 1;
/**
* @deprecated Only exists for constructable registry as it works today. Remove ASAP!
*/
@Deprecated(forRemoval = true)
public SingletonNode() {
setLeft(new StringLeaf());
setRight(null);
}
public SingletonNode(
@NonNull final String serviceName,
@NonNull final String stateKey,
long classId,
@NonNull final Codec codec,
@Nullable final T value) {
setLeft(new StringLeaf(StateUtils.computeLabel(serviceName, stateKey)));
setRight(new ValueLeaf<>(classId, codec, value));
}
private SingletonNode(@NonNull final SingletonNode other) {
this.setLeft(other.getLeft().copy());
this.setRight(other.getRight().copy());
}
@Override
public SingletonNode copy() {
return new SingletonNode<>(this);
}
@Override
public long getClassId() {
return CLASS_ID;
}
@Override
public int getVersion() {
return CLASS_VERSION;
}
@Override
public String getLabel() {
final StringLeaf left = getLeft();
return left.getLabel();
}
public T getValue() {
final ValueLeaf right = getRight();
// Log to transaction state log, what was read
logSingletonRead(getLabel(), right);
return right.getValue();
}
public void setValue(T value) {
ValueLeaf right = getRight();
right.setValue(value);
right.invalidateHash();
invalidateHash();
// Log to transaction state log, what was written
logSingletonWrite(getLabel(), value);
}
}