org.neo4j.kernel.impl.newapi.Read Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neo4j-kernel Show documentation
Show all versions of neo4j-kernel Show documentation
Neo4j kernel is a lightweight, embedded Java database designed to
store data structured as graphs rather than tables. For more
information, see http://neo4j.org.
/*
* Copyright (c) "Neo4j"
* Neo4j Sweden AB [https://neo4j.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.kernel.impl.newapi;
import static java.lang.String.format;
import static org.neo4j.internal.kernel.api.IndexQueryConstraints.unconstrained;
import static org.neo4j.kernel.impl.locking.ResourceIds.indexEntryResourceId;
import java.util.ArrayList;
import java.util.List;
import org.neo4j.common.EntityType;
import org.neo4j.exceptions.KernelException;
import org.neo4j.internal.kernel.api.Cursor;
import org.neo4j.internal.kernel.api.IndexQueryConstraints;
import org.neo4j.internal.kernel.api.IndexReadSession;
import org.neo4j.internal.kernel.api.InternalIndexState;
import org.neo4j.internal.kernel.api.Locks;
import org.neo4j.internal.kernel.api.NodeCursor;
import org.neo4j.internal.kernel.api.NodeLabelIndexCursor;
import org.neo4j.internal.kernel.api.NodeValueIndexCursor;
import org.neo4j.internal.kernel.api.PartitionedScan;
import org.neo4j.internal.kernel.api.PropertyCursor;
import org.neo4j.internal.kernel.api.PropertyIndexQuery;
import org.neo4j.internal.kernel.api.QueryContext;
import org.neo4j.internal.kernel.api.RelationshipScanCursor;
import org.neo4j.internal.kernel.api.RelationshipTraversalCursor;
import org.neo4j.internal.kernel.api.RelationshipTypeIndexCursor;
import org.neo4j.internal.kernel.api.RelationshipValueIndexCursor;
import org.neo4j.internal.kernel.api.TokenPredicate;
import org.neo4j.internal.kernel.api.TokenRead;
import org.neo4j.internal.kernel.api.TokenReadSession;
import org.neo4j.internal.kernel.api.exceptions.schema.IndexNotApplicableKernelException;
import org.neo4j.internal.kernel.api.exceptions.schema.IndexNotFoundKernelException;
import org.neo4j.internal.kernel.api.security.AccessMode;
import org.neo4j.internal.schema.IndexDescriptor;
import org.neo4j.io.pagecache.context.CursorContext;
import org.neo4j.kernel.api.StatementConstants;
import org.neo4j.kernel.api.exceptions.schema.IndexBrokenKernelException;
import org.neo4j.kernel.api.index.ValueIndexReader;
import org.neo4j.kernel.api.txstate.TxStateHolder;
import org.neo4j.storageengine.api.PropertySelection;
import org.neo4j.storageengine.api.Reference;
import org.neo4j.storageengine.api.RelationshipSelection;
import org.neo4j.storageengine.api.StorageReader;
import org.neo4j.storageengine.api.cursor.StoreCursors;
import org.neo4j.util.Preconditions;
abstract class Read
implements TxStateHolder,
org.neo4j.internal.kernel.api.Read,
org.neo4j.internal.kernel.api.SchemaRead,
org.neo4j.internal.kernel.api.Procedures {
protected final StorageReader storageReader;
protected final DefaultPooledCursors cursors;
private final TokenRead tokenRead;
protected final StoreCursors storageCursors;
protected final QueryContext queryContext;
protected final Locks entityLocks;
Read(
StorageReader storageReader,
TokenRead tokenRead,
DefaultPooledCursors cursors,
StoreCursors storageCursors,
Locks entityLocks,
QueryContext queryContext) {
this.storageReader = storageReader;
this.tokenRead = tokenRead;
this.cursors = cursors;
this.storageCursors = storageCursors;
this.entityLocks = entityLocks;
this.queryContext = queryContext;
}
@Override
public final void nodeIndexSeek(
QueryContext queryContext,
IndexReadSession index,
NodeValueIndexCursor cursor,
IndexQueryConstraints constraints,
PropertyIndexQuery... query)
throws IndexNotApplicableKernelException {
performCheckBeforeOperation();
DefaultIndexReadSession indexSession = (DefaultIndexReadSession) index;
validateConstraints(constraints, indexSession);
if (indexSession.reference.schema().entityType() != EntityType.NODE) {
throw new IndexNotApplicableKernelException("Node index seek can not be performed on index: "
+ index.reference().userDescription(tokenRead));
}
EntityIndexSeekClient client = (EntityIndexSeekClient) cursor;
client.setRead(this);
indexSession.reader.query(client, queryContext, constraints, query);
}
@Override
public PartitionedScan nodeIndexSeek(
IndexReadSession index,
int desiredNumberOfPartitions,
QueryContext queryContext,
PropertyIndexQuery... query)
throws IndexNotApplicableKernelException {
performCheckBeforeOperation();
final var descriptor = index.reference();
if (descriptor.schema().entityType() != EntityType.NODE) {
throw new IndexNotApplicableKernelException(
"Node index seek can not be performed on index: " + descriptor.userDescription(tokenRead));
}
return propertyIndexSeek(index, desiredNumberOfPartitions, queryContext, query);
}
@Override
public final void relationshipIndexSeek(
QueryContext queryContext,
IndexReadSession index,
RelationshipValueIndexCursor cursor,
IndexQueryConstraints constraints,
PropertyIndexQuery... query)
throws IndexNotApplicableKernelException {
performCheckBeforeOperation();
DefaultIndexReadSession indexSession = (DefaultIndexReadSession) index;
validateConstraints(constraints, indexSession);
if (indexSession.reference.schema().entityType() != EntityType.RELATIONSHIP) {
throw new IndexNotApplicableKernelException("Relationship index seek can not be performed on index: "
+ index.reference().userDescription(tokenRead));
}
EntityIndexSeekClient client = (EntityIndexSeekClient) cursor;
client.setRead(this);
indexSession.reader.query(client, queryContext, constraints, query);
}
@Override
public PartitionedScan relationshipIndexSeek(
IndexReadSession index,
int desiredNumberOfPartitions,
QueryContext queryContext,
PropertyIndexQuery... query)
throws IndexNotApplicableKernelException {
performCheckBeforeOperation();
final var descriptor = index.reference();
if (descriptor.schema().entityType() != EntityType.RELATIONSHIP) {
throw new IndexNotApplicableKernelException(
"Relationship index seek can not be performed on index: " + descriptor.userDescription(tokenRead));
}
return propertyIndexSeek(index, desiredNumberOfPartitions, queryContext, query);
}
@Override
public long lockingNodeUniqueIndexSeek(
IndexDescriptor index, NodeValueIndexCursor cursor, PropertyIndexQuery.ExactPredicate... predicates)
throws IndexNotApplicableKernelException, IndexNotFoundKernelException, IndexBrokenKernelException {
assertIndexOnline(index);
assertPredicatesMatchSchema(index, predicates);
int[] entityTokenIds = index.schema().getEntityTokenIds();
if (entityTokenIds.length != 1) {
throw new IndexNotApplicableKernelException("Multi-token index " + index + " does not support uniqueness.");
}
long indexEntryId = indexEntryResourceId(entityTokenIds[0], predicates);
// First try to find node under a shared lock
// if not found upgrade to exclusive and try again
entityLocks.acquireSharedIndexEntryLock(indexEntryId);
try (IndexReaders readers = new IndexReaders(index, this)) {
nodeIndexSeekWithFreshIndexReader((DefaultNodeValueIndexCursor) cursor, readers.createReader(), predicates);
if (!cursor.next()) {
entityLocks.releaseSharedIndexEntryLock(indexEntryId);
entityLocks.acquireExclusiveIndexEntryLock(indexEntryId);
nodeIndexSeekWithFreshIndexReader(
(DefaultNodeValueIndexCursor) cursor, readers.createReader(), predicates);
if (cursor.next()) {
// we found it under the exclusive lock
// downgrade to a shared lock
entityLocks.acquireSharedIndexEntryLock(indexEntryId);
entityLocks.releaseExclusiveIndexEntryLock(indexEntryId);
return cursor.nodeReference();
} else {
return StatementConstants.NO_SUCH_NODE;
}
}
return cursor.nodeReference();
}
}
@Override
public long lockingRelationshipUniqueIndexSeek(
IndexDescriptor index, RelationshipValueIndexCursor cursor, PropertyIndexQuery.ExactPredicate... predicates)
throws KernelException {
assertIndexOnline(index);
assertPredicatesMatchSchema(index, predicates);
int[] entityTokenIds = index.schema().getEntityTokenIds();
if (entityTokenIds.length != 1) {
throw new IndexNotApplicableKernelException("Multi-token index " + index + " does not support uniqueness.");
}
long indexEntryId = indexEntryResourceId(entityTokenIds[0], predicates);
// First try to find relationship under a shared lock
// if not found upgrade to exclusive and try again
entityLocks.acquireSharedIndexEntryLock(indexEntryId);
try (IndexReaders readers = new IndexReaders(index, this)) {
DefaultRelationshipValueIndexCursor indexCursor = (DefaultRelationshipValueIndexCursor) cursor;
relationshipIndexSeekWithFreshIndexReader(indexCursor, readers.createReader(), predicates);
if (!cursor.next()) {
entityLocks.releaseSharedIndexEntryLock(indexEntryId);
entityLocks.acquireExclusiveIndexEntryLock(indexEntryId);
relationshipIndexSeekWithFreshIndexReader(indexCursor, readers.createReader(), predicates);
if (cursor.next()) {
// we found it under the exclusive lock
// downgrade to a shared lock
entityLocks.acquireSharedIndexEntryLock(indexEntryId);
entityLocks.releaseExclusiveIndexEntryLock(indexEntryId);
return cursor.relationshipReference();
} else {
return StatementConstants.NO_SUCH_RELATIONSHIP;
}
}
return cursor.relationshipReference();
}
}
public void nodeIndexSeekWithFreshIndexReader(
DefaultNodeValueIndexCursor cursor,
ValueIndexReader indexReader,
PropertyIndexQuery.ExactPredicate... query)
throws IndexNotApplicableKernelException {
cursor.setRead(this);
indexReader.query(cursor, queryContext, unconstrained(), query);
}
public void relationshipIndexSeekWithFreshIndexReader(
DefaultRelationshipValueIndexCursor cursor,
ValueIndexReader indexReader,
PropertyIndexQuery.ExactPredicate... query)
throws IndexNotApplicableKernelException {
cursor.setRead(this);
indexReader.query(cursor, queryContext, unconstrained(), query);
}
@Override
public final void nodeIndexScan(
IndexReadSession index, NodeValueIndexCursor cursor, IndexQueryConstraints constraints)
throws KernelException {
performCheckBeforeOperation();
DefaultIndexReadSession indexSession = (DefaultIndexReadSession) index;
if (indexSession.reference.schema().entityType() != EntityType.NODE) {
throw new IndexNotApplicableKernelException("Node index scan can not be performed on index: "
+ index.reference().userDescription(tokenRead));
}
scanIndex(indexSession, (EntityIndexSeekClient) cursor, constraints);
}
@Override
public PartitionedScan nodeIndexScan(
IndexReadSession index, int desiredNumberOfPartitions, QueryContext queryContext)
throws IndexNotApplicableKernelException {
performCheckBeforeOperation();
final var descriptor = index.reference();
if (descriptor.schema().entityType() != EntityType.NODE) {
throw new IndexNotApplicableKernelException(
"Node index scan can not be performed on index: " + descriptor.userDescription(tokenRead));
}
return propertyIndexScan(index, desiredNumberOfPartitions, queryContext);
}
@Override
public final void relationshipIndexScan(
IndexReadSession index, RelationshipValueIndexCursor cursor, IndexQueryConstraints constraints)
throws KernelException {
performCheckBeforeOperation();
DefaultIndexReadSession indexSession = (DefaultIndexReadSession) index;
if (indexSession.reference.schema().entityType() != EntityType.RELATIONSHIP) {
throw new IndexNotApplicableKernelException("Relationship index scan can not be performed on index: "
+ index.reference().userDescription(tokenRead));
}
scanIndex(indexSession, (EntityIndexSeekClient) cursor, constraints);
}
@Override
public PartitionedScan relationshipIndexScan(
IndexReadSession index, int desiredNumberOfPartitions, QueryContext queryContext)
throws IndexNotApplicableKernelException {
performCheckBeforeOperation();
final var descriptor = index.reference();
if (descriptor.schema().entityType() != EntityType.RELATIONSHIP) {
throw new IndexNotApplicableKernelException(
"Relationship index scan can not be performed on index: " + descriptor.userDescription(tokenRead));
}
return propertyIndexScan(index, desiredNumberOfPartitions, queryContext);
}
private void scanIndex(
DefaultIndexReadSession indexSession,
EntityIndexSeekClient indexSeekClient,
IndexQueryConstraints constraints)
throws KernelException {
indexSeekClient.setRead(this);
indexSession.reader.query(indexSeekClient, queryContext, constraints, PropertyIndexQuery.allEntries());
}
@Override
public final PartitionedScan nodeLabelScan(
TokenReadSession session, int desiredNumberOfPartitions, CursorContext cursorContext, TokenPredicate query)
throws IndexNotApplicableKernelException {
performCheckBeforeOperation();
if (session.reference().schema().entityType() != EntityType.NODE) {
throw new IndexNotApplicableKernelException("Node label index scan can not be performed on index: "
+ session.reference().userDescription(tokenRead));
}
return tokenIndexScan(session, desiredNumberOfPartitions, cursorContext, query);
}
@Override
public final PartitionedScan nodeLabelScan(
TokenReadSession session, PartitionedScan leadingPartitionScan, TokenPredicate query)
throws IndexNotApplicableKernelException {
performCheckBeforeOperation();
if (session.reference().schema().entityType() != EntityType.NODE) {
throw new IndexNotApplicableKernelException("Node label index scan can not be performed on index: "
+ session.reference().userDescription(tokenRead));
}
return tokenIndexScan(session, leadingPartitionScan, query);
}
@Override
public final List> nodeLabelScans(
TokenReadSession session,
int desiredNumberOfPartitions,
CursorContext cursorContext,
TokenPredicate... queries)
throws IndexNotApplicableKernelException {
performCheckBeforeOperation();
if (session.reference().schema().entityType() != EntityType.NODE) {
throw new IndexNotApplicableKernelException("Node label index scan can not be performed on index: "
+ session.reference().userDescription(tokenRead));
}
return tokenIndexScan(session, desiredNumberOfPartitions, cursorContext, queries);
}
@Override
public final void nodeLabelScan(
TokenReadSession session,
NodeLabelIndexCursor cursor,
IndexQueryConstraints constraints,
TokenPredicate query,
CursorContext cursorContext)
throws KernelException {
performCheckBeforeOperation();
if (session.reference().schema().entityType() != EntityType.NODE) {
throw new IndexNotApplicableKernelException("Node label index scan can not be performed on index: "
+ session.reference().userDescription(tokenRead));
}
var tokenSession = (DefaultTokenReadSession) session;
DefaultNodeLabelIndexCursor indexCursor = (DefaultNodeLabelIndexCursor) cursor;
indexCursor.setRead(this);
tokenSession.reader.query(indexCursor, constraints, query, cursorContext);
}
@Override
public final void allNodesScan(NodeCursor cursor) {
performCheckBeforeOperation();
((DefaultNodeCursor) cursor).scan(this);
}
@Override
public final void singleNode(long reference, NodeCursor cursor) {
performCheckBeforeOperation();
((DefaultNodeCursor) cursor).single(reference, this);
}
@Override
public PartitionedScan allNodesScan(int desiredNumberOfPartitions, CursorContext cursorContext) {
performCheckBeforeOperation();
long totalCount = storageReader.nodesGetCount(cursorContext);
return new PartitionedNodeCursorScan(storageReader.allNodeScan(), desiredNumberOfPartitions, totalCount);
}
@Override
public PartitionedScan allRelationshipsScan(
int desiredNumberOfPartitions, CursorContext cursorContext) {
performCheckBeforeOperation();
long totalCount = storageReader.relationshipsGetCount(cursorContext);
return new PartitionedRelationshipCursorScan(
storageReader.allRelationshipScan(), desiredNumberOfPartitions, totalCount);
}
@Override
public final void singleRelationship(long reference, RelationshipScanCursor cursor) {
performCheckBeforeOperation();
((DefaultRelationshipScanCursor) cursor).single(reference, this);
}
@Override
public void singleRelationship(
long reference,
long sourceNodeReference,
int type,
long targetNodeReference,
RelationshipScanCursor cursor) {
performCheckBeforeOperation();
((DefaultRelationshipScanCursor) cursor)
.single(reference, sourceNodeReference, type, targetNodeReference, this);
}
@Override
public final void allRelationshipsScan(RelationshipScanCursor cursor) {
performCheckBeforeOperation();
((DefaultRelationshipScanCursor) cursor).scan(this);
}
@Override
public final PartitionedScan relationshipTypeScan(
TokenReadSession session, int desiredNumberOfPartitions, CursorContext cursorContext, TokenPredicate query)
throws IndexNotApplicableKernelException {
performCheckBeforeOperation();
if (session.reference().schema().entityType() != EntityType.RELATIONSHIP) {
throw new IndexNotApplicableKernelException("Relationship type index scan can not be performed on index: "
+ session.reference().userDescription(tokenRead));
}
return tokenIndexScan(session, desiredNumberOfPartitions, cursorContext, query);
}
@Override
public final PartitionedScan relationshipTypeScan(
TokenReadSession session,
PartitionedScan leadingPartitionScan,
TokenPredicate query)
throws IndexNotApplicableKernelException {
performCheckBeforeOperation();
if (session.reference().schema().entityType() != EntityType.RELATIONSHIP) {
throw new IndexNotApplicableKernelException("Relationship type index scan can not be performed on index: "
+ session.reference().userDescription(tokenRead));
}
return tokenIndexScan(session, leadingPartitionScan, query);
}
@Override
public final List> relationshipTypeScans(
TokenReadSession session,
int desiredNumberOfPartitions,
CursorContext cursorContext,
TokenPredicate... queries)
throws IndexNotApplicableKernelException {
performCheckBeforeOperation();
if (session.reference().schema().entityType() != EntityType.RELATIONSHIP) {
throw new IndexNotApplicableKernelException("Relationship type index scan can not be performed on index: "
+ session.reference().userDescription(tokenRead));
}
return tokenIndexScan(session, desiredNumberOfPartitions, cursorContext, queries);
}
@Override
public final void relationshipTypeScan(
TokenReadSession session,
RelationshipTypeIndexCursor cursor,
IndexQueryConstraints constraints,
TokenPredicate query,
CursorContext cursorContext)
throws KernelException {
performCheckBeforeOperation();
if (session.reference().schema().entityType() != EntityType.RELATIONSHIP) {
throw new IndexNotApplicableKernelException("Relationship type index scan can not be performed on index: "
+ session.reference().userDescription(tokenRead));
}
var tokenSession = (DefaultTokenReadSession) session;
var indexCursor = (InternalRelationshipTypeIndexCursor) cursor;
indexCursor.setRead(this);
tokenSession.reader.query(indexCursor, constraints, query, cursorContext);
}
@Override
public void relationships(
long nodeReference, long reference, RelationshipSelection selection, RelationshipTraversalCursor cursor) {
((DefaultRelationshipTraversalCursor) cursor).init(nodeReference, reference, selection, this);
}
@Override
public void nodeProperties(
long nodeReference, Reference reference, PropertySelection selection, PropertyCursor cursor) {
((DefaultPropertyCursor) cursor).initNode(nodeReference, reference, selection, this);
}
@Override
public void relationshipProperties(
long relationshipReference, Reference reference, PropertySelection selection, PropertyCursor cursor) {
((DefaultPropertyCursor) cursor).initRelationship(relationshipReference, reference, selection, this);
}
private void validateConstraints(IndexQueryConstraints constraints, DefaultIndexReadSession indexSession) {
if (constraints.needsValues()
&& !indexSession.reference().getCapability().supportsReturningValues()) {
throw new UnsupportedOperationException(format(
"%s index has no value capability", indexSession.reference().getIndexType()));
}
}
private PartitionedScan propertyIndexScan(
IndexReadSession index, int desiredNumberOfPartitions, QueryContext queryContext)
throws IndexNotApplicableKernelException {
performCheckBeforeOperation();
return propertyIndexSeek(index, desiredNumberOfPartitions, queryContext, PropertyIndexQuery.allEntries());
}
private PartitionedScan propertyIndexSeek(
IndexReadSession index,
int desiredNumberOfPartitions,
QueryContext queryContext,
PropertyIndexQuery... query)
throws IndexNotApplicableKernelException {
performCheckBeforeOperation();
final var descriptor = index.reference();
if (!descriptor.getCapability().supportPartitionedScan(query)) {
throw new IndexNotApplicableKernelException("This index does not support partitioned scan for this query: "
+ descriptor.userDescription(tokenRead));
}
if (hasTxStateWithChanges()) {
throw new IllegalStateException(
"Transaction contains changes; PartitionScan is only valid in Read-Only transactions.");
}
final var session = (DefaultIndexReadSession) index;
final var valueSeek = session.reader.valueSeek(desiredNumberOfPartitions, queryContext, query);
return new PartitionedValueIndexCursorSeek<>(descriptor, valueSeek, query);
}
private PartitionedScan tokenIndexScan(
TokenReadSession session, int desiredNumberOfPartitions, CursorContext cursorContext, TokenPredicate query)
throws IndexNotApplicableKernelException {
performCheckBeforeOperation();
final var descriptor = session.reference();
if (!descriptor.getCapability().supportPartitionedScan(query)) {
throw new IndexNotApplicableKernelException("This index does not support partitioned scan for this query: "
+ descriptor.userDescription(tokenRead));
}
if (hasTxStateWithChanges()) {
throw new IllegalStateException(
"Transaction contains changes; PartitionScan is only valid in Read-Only transactions.");
}
final var defaultSession = (DefaultTokenReadSession) session;
final var tokenScan = defaultSession.reader.entityTokenScan(desiredNumberOfPartitions, cursorContext, query);
return new PartitionedTokenIndexCursorScan<>(query, tokenScan);
}
private PartitionedScan tokenIndexScan(
TokenReadSession session, PartitionedScan leadingPartitionScan, TokenPredicate query)
throws IndexNotApplicableKernelException {
performCheckBeforeOperation();
final var descriptor = session.reference();
if (!descriptor.getCapability().supportPartitionedScan(query)) {
throw new IndexNotApplicableKernelException("This index does not support partitioned scan for this query: "
+ descriptor.userDescription(tokenRead));
}
if (hasTxStateWithChanges()) {
throw new IllegalStateException(
"Transaction contains changes; PartitionScan is only valid in Read-Only transactions.");
}
final var defaultSession = (DefaultTokenReadSession) session;
final var leadingTokenIndexCursorScan = (PartitionedTokenIndexCursorScan) leadingPartitionScan;
final var tokenScan = defaultSession.reader.entityTokenScan(leadingTokenIndexCursorScan.getTokenScan(), query);
return new PartitionedTokenIndexCursorScan<>(query, tokenScan);
}
private List> tokenIndexScan(
TokenReadSession session,
int desiredNumberOfPartitions,
CursorContext cursorContext,
TokenPredicate... queries)
throws IndexNotApplicableKernelException {
performCheckBeforeOperation();
Preconditions.requireNonEmpty(queries);
final var scans = new ArrayList>(queries.length);
final var leadingPartitionScan =
this.tokenIndexScan(session, desiredNumberOfPartitions, cursorContext, queries[0]);
scans.add(leadingPartitionScan);
for (int i = 1; i < queries.length; i++) {
scans.add(tokenIndexScan(session, leadingPartitionScan, queries[i]));
}
return scans;
}
public abstract ValueIndexReader newValueIndexReader(IndexDescriptor index) throws IndexNotFoundKernelException;
private void assertIndexOnline(IndexDescriptor index)
throws IndexNotFoundKernelException, IndexBrokenKernelException {
if (indexGetState(index) == InternalIndexState.ONLINE) {
return;
}
throw new IndexBrokenKernelException(indexGetFailure(index));
}
private static void assertPredicatesMatchSchema(
IndexDescriptor index, PropertyIndexQuery.ExactPredicate[] predicates)
throws IndexNotApplicableKernelException {
int[] propertyIds = index.schema().getPropertyIds();
if (propertyIds.length != predicates.length) {
throw new IndexNotApplicableKernelException(format(
"The index specifies %d properties, but only %d lookup predicates were given.",
propertyIds.length, predicates.length));
}
for (int i = 0; i < predicates.length; i++) {
if (predicates[i].propertyKeyId() != propertyIds[i]) {
throw new IndexNotApplicableKernelException(format(
"The index has the property id %d in position %d, but the lookup property id was %d.",
propertyIds[i], i, predicates[i].propertyKeyId()));
}
}
}
abstract void performCheckBeforeOperation();
abstract AccessMode getAccessMode();
}