All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.swirlds.fchashmap.internal.Mutation Maven / Gradle / Ivy

Go to download

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.

There is a newer version: 0.56.5
Show newest version
/*
 * Copyright (C) 2016-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.fchashmap.internal;

/**
 * Represents a single modification of a FCHashMap. Can be assembled into a linked list.
 */
public class Mutation {

    /**
     * The copy version when this mutation was performed.
     */
    private final long version;

    /**
     * The value after the mutation. A value of null signifies a deletion.
     */
    private V value;

    /**
     * The previous mutation in the linked list, or null if this mutation is the oldest unreleased mutation.
     */
    private Mutation previous;

    /**
     * The next mutation in the linked list, or null if this mutation is the newest mutation.
     */
    private Mutation next;

    /**
     * Create a mutation and add it to the front of the linked list.
     *
     * @param version
     * 		the version of the mutation
     * @param value
     * 		the value of the mutation
     * @param previous
     * 		the previous mutation
     */
    public Mutation(final long version, final V value, final Mutation previous) {
        this.version = version;
        this.value = value;
        this.previous = previous;
        if (previous != null) {
            previous.next = this;
        }
    }

    /**
     * Convert this mutation to a human-readable string. For debugging purposes.
     */
    public String toString() {
        return "(version = " + version + ", value = " + (value == null ? "DELETED" : value) + ")";
    }

    /**
     * Get the value held by the mutation. If null then this mutation signifies a deletion.
     *
     * @return the value held by this mutation
     */
    public V getValue() {
        return value;
    }

    /**
     * Set the value held by this mutation.
     *
     * @param value
     * 		the value of the mutation, or null if this mutation should signify a deletion
     */
    public void setValue(final V value) {
        this.value = value;
    }

    /**
     * Get the version of the {@link com.swirlds.fchashmap.FCHashMap FCHashMap} when this mutation was created.
     *
     * @return the version of the mutation
     */
    public long getVersion() {
        return version;
    }

    /**
     * Get the mutation before this mutation, or null if this mutation is the oldest mutation
     *
     * @return the previous mutation
     */
    public Mutation getPrevious() {
        return previous;
    }

    /**
     * Set the previous mutation before this mutation.
     *
     * @param previous
     * 		the previous mutation
     */
    public void setPrevious(final Mutation previous) {
        this.previous = previous;
    }

    /**
     * Get the next mutation, or null if this is the newest mutation.
     *
     * @return the next mutation
     */
    public Mutation getNext() {
        return next;
    }

    /**
     * Set the next mutation.
     *
     * @param next
     * 		the next mutation
     */
    public void setNext(final Mutation next) {
        this.next = next;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy