com.swirlds.state.merkle.memory.InMemoryReadableKVState 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) 2022-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.memory;
import static com.swirlds.state.merkle.logging.StateLogger.logMapGet;
import static com.swirlds.state.merkle.logging.StateLogger.logMapGetSize;
import static com.swirlds.state.merkle.logging.StateLogger.logMapIterate;
import com.swirlds.merkle.map.MerkleMap;
import com.swirlds.state.spi.ReadableKVState;
import com.swirlds.state.spi.ReadableKVStateBase;
import edu.umd.cs.findbugs.annotations.NonNull;
import java.util.Iterator;
import java.util.Objects;
/**
* An implementation of {@link ReadableKVState} backed by a {@link MerkleMap}, resulting in a state
* that is stored in memory.
*
* @param The type of key for the state
* @param The type of value for the state
*/
@SuppressWarnings("DuplicatedCode")
public final class InMemoryReadableKVState extends ReadableKVStateBase {
/** The underlying merkle tree data structure with the data */
private final MerkleMap, InMemoryValue> merkle;
/**
* Create a new instance.
*
* @param stateKey the state key
* @param merkleMap The backing merkle map
*/
public InMemoryReadableKVState(
@NonNull final String stateKey, @NonNull MerkleMap, InMemoryValue> merkleMap) {
super(stateKey);
this.merkle = Objects.requireNonNull(merkleMap);
}
@Override
protected V readFromDataSource(@NonNull K key) {
final var k = new InMemoryKey<>(key);
final var leaf = merkle.get(k);
final var value = leaf == null ? null : leaf.getValue();
// Log to transaction state log, what was read
logMapGet(getStateKey(), key, value);
return value;
}
@NonNull
@Override
protected Iterator iterateFromDataSource() {
final var keySet = merkle.keySet();
// Log to transaction state log, what was iterated
logMapIterate(getStateKey(), keySet);
return keySet.stream().map(InMemoryKey::key).iterator();
}
/** {@inheritDoc} */
@Override
public long size() {
final var size = merkle.size();
// Log to transaction state log, size of map
logMapGetSize(getStateKey(), size);
return size;
}
}