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

org.neo4j.storageengine.api.txstate.ReadableTransactionState Maven / Gradle / Ivy

/*
 * Copyright (c) 2002-2016 "Neo Technology,"
 * Network Engine for Objects in Lund AB [http://neotechnology.com]
 *
 * This file is part of Neo4j.
 *
 * Neo4j is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */
package org.neo4j.storageengine.api.txstate;

import java.util.Iterator;

import org.neo4j.collection.primitive.PrimitiveIntIterator;
import org.neo4j.collection.primitive.PrimitiveLongIterator;
import org.neo4j.cursor.Cursor;
import org.neo4j.kernel.api.constraints.NodePropertyConstraint;
import org.neo4j.kernel.api.constraints.PropertyConstraint;
import org.neo4j.kernel.api.constraints.RelationshipPropertyConstraint;
import org.neo4j.kernel.api.constraints.UniquenessConstraint;
import org.neo4j.kernel.api.exceptions.schema.ConstraintValidationKernelException;
import org.neo4j.kernel.api.exceptions.schema.CreateConstraintFailureException;
import org.neo4j.kernel.api.index.IndexDescriptor;
import org.neo4j.kernel.impl.api.RelationshipVisitor;
import org.neo4j.kernel.impl.api.store.RelationshipIterator;
import org.neo4j.storageengine.api.Direction;
import org.neo4j.storageengine.api.LabelItem;
import org.neo4j.storageengine.api.NodeItem;
import org.neo4j.storageengine.api.PropertyItem;
import org.neo4j.storageengine.api.RelationshipItem;
import org.neo4j.storageengine.api.StorageProperty;

/**
 * This interface contains the methods for reading transaction state from the transaction state.
 * The implementation of these methods should be free of any side effects (such as initialising lazy state).
 */
public interface ReadableTransactionState
{
    void accept( TxStateVisitor visitor ) throws ConstraintValidationKernelException, CreateConstraintFailureException;

    boolean hasChanges();

    // ENTITY RELATED

    /**
     * Returns all nodes that, in this tx, have had labelId removed.
     */
    ReadableDiffSets nodesWithLabelChanged( int labelId );

    /**
     * Returns nodes that have been added and removed in this tx.
     */
    ReadableDiffSets addedAndRemovedNodes();

    /**
     * Returns rels that have been added and removed in this tx.
     */
    ReadableRelationshipDiffSets addedAndRemovedRelationships();

    /**
     * Nodes that have had labels, relationships, or properties modified in this tx.
     */
    Iterable modifiedNodes();

    /**
     * Rels that have properties modified in this tx.
     */
    Iterable modifiedRelationships();

    boolean relationshipIsAddedInThisTx( long relationshipId );

    boolean relationshipIsDeletedInThisTx( long relationshipId );

    ReadableDiffSets nodeStateLabelDiffSets( long nodeId );

    Iterator augmentGraphProperties( Iterator original );

    boolean nodeIsAddedInThisTx( long nodeId );

    boolean nodeIsDeletedInThisTx( long nodeId );

    boolean nodeModifiedInThisTx( long nodeId );

    PrimitiveIntIterator nodeRelationshipTypes( long nodeId );

    int augmentNodeDegree( long node, int committedDegree, Direction direction );

    int augmentNodeDegree( long node, int committedDegree, Direction direction, int relType );

    PrimitiveLongIterator augmentNodesGetAll( PrimitiveLongIterator committed );

    RelationshipIterator augmentRelationshipsGetAll( RelationshipIterator committed );

    /**
     * @return {@code true} if the relationship was visited in this state, i.e. if it was created
     * by this current transaction, otherwise {@code false} where the relationship might need to be
     * visited from the store.
     */
     boolean relationshipVisit( long relId, RelationshipVisitor visitor ) throws EX;

    // SCHEMA RELATED

    ReadableDiffSets indexDiffSetsByLabel( int labelId );

    ReadableDiffSets constraintIndexDiffSetsByLabel( int labelId );

    ReadableDiffSets indexChanges();

    ReadableDiffSets constraintIndexChanges();

    Iterable constraintIndexesCreatedInTx();

    ReadableDiffSets constraintsChanges();

    ReadableDiffSets constraintsChangesForLabel( int labelId );

    ReadableDiffSets constraintsChangesForLabelAndProperty( int labelId, int propertyKey );

    ReadableDiffSets constraintsChangesForRelationshipType( int relTypeId );

    ReadableDiffSets constraintsChangesForRelationshipTypeAndProperty( int relTypeId,
            int propertyKey );

    Long indexCreatedForConstraint( UniquenessConstraint constraint );

    ReadableDiffSets indexUpdatesForScanOrSeek( IndexDescriptor index, Object value );

    ReadableDiffSets indexUpdatesForRangeSeekByNumber( IndexDescriptor index,
                                                             Number lower, boolean includeLower,
                                                             Number upper, boolean includeUpper );

    ReadableDiffSets indexUpdatesForRangeSeekByString( IndexDescriptor index,
                                                             String lower, boolean includeLower,
                                                             String upper, boolean includeUpper );

    ReadableDiffSets indexUpdatesForRangeSeekByPrefix( IndexDescriptor index, String prefix );

    NodeState getNodeState( long id );

    RelationshipState getRelationshipState( long id );

    Cursor augmentSingleNodeCursor( Cursor cursor, long nodeId );

    Cursor augmentPropertyCursor( Cursor cursor,
            PropertyContainerState propertyContainerState );

    Cursor augmentSinglePropertyCursor( Cursor cursor,
            PropertyContainerState propertyContainerState,
            int propertyKeyId );

    Cursor augmentLabelCursor( Cursor cursor, NodeState nodeState );

    public Cursor augmentSingleLabelCursor( Cursor cursor, NodeState nodeState, int labelId );

    Cursor augmentSingleRelationshipCursor( Cursor cursor, long relationshipId );

    Cursor augmentIteratorRelationshipCursor( Cursor cursor,
            RelationshipIterator iterator );

    Cursor augmentNodeRelationshipCursor( Cursor cursor,
            NodeState nodeState,
            Direction direction,
            int[] relTypes );

    Cursor augmentNodesGetAllCursor( Cursor cursor );

    Cursor augmentRelationshipsGetAllCursor( Cursor cursor );

    /**
     * The way tokens are created is that the first time a token is needed it gets created in its own little
     * token mini-transaction, separate from the surrounding transaction that creates or modifies data that need it.
     * From the kernel POV it's interesting to know whether or not any tokens have been created in this tx state,
     * because then we know it's a mini-transaction like this and won't have to let transaction event handlers
     * know about it, for example.
     *
     * The same applies to schema changes, such as creating and dropping indexes and constraints.
     */
    boolean hasDataChanges();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy