use of org.neo4j.kernel.impl.coreapi.internal.CursorIterator in project neo4j by neo4j.
the class TransactionImpl method relationshipsByTypeAndProperty.
private ResourceIterator<Relationship> relationshipsByTypeAndProperty(KernelTransaction transaction, int typeId, PropertyIndexQuery query) {
Read read = transaction.dataRead();
if (query.propertyKeyId() == TokenRead.NO_TOKEN || typeId == TokenRead.NO_TOKEN) {
return emptyResourceIterator();
}
var index = findUsableMatchingIndex(transaction, SchemaDescriptor.forRelType(typeId, query.propertyKeyId()));
if (index != IndexDescriptor.NO_INDEX) {
// Ha! We found an index - let's use it to find matching relationships
try {
var cursor = transaction.cursors().allocateRelationshipValueIndexCursor(transaction.cursorContext(), transaction.memoryTracker());
IndexReadSession indexSession = read.indexReadSession(index);
read.relationshipIndexSeek(indexSession, cursor, unconstrained(), query);
return new CursorIterator<>(cursor, RelationshipIndexCursor::relationshipReference, c -> newRelationshipEntity(c.relationshipReference()), coreApiResourceTracker);
} catch (KernelException e) {
// weird at this point but ignore and fallback to a type scan
}
}
return getRelationshipsByTypeAndPropertyWithoutPropertyIndex(transaction, typeId, query);
}
use of org.neo4j.kernel.impl.coreapi.internal.CursorIterator in project neo4j by neo4j.
the class TransactionImpl method allRelationshipsWithType.
private ResourceIterator<Relationship> allRelationshipsWithType(final RelationshipType type) {
KernelTransaction ktx = kernelTransaction();
int typeId = ktx.tokenRead().relationshipType(type.name());
if (typeId == TokenRead.NO_TOKEN) {
return emptyResourceIterator();
}
var index = findUsableMatchingIndex(ktx, SchemaDescriptor.forAnyEntityTokens(EntityType.RELATIONSHIP));
if (index != IndexDescriptor.NO_INDEX) {
try {
var session = ktx.dataRead().tokenReadSession(index);
var cursor = ktx.cursors().allocateRelationshipTypeIndexCursor(ktx.cursorContext());
ktx.dataRead().relationshipTypeScan(session, cursor, unconstrained(), new TokenPredicate(typeId));
return new CursorIterator<>(cursor, RelationshipIndexCursor::relationshipReference, c -> newRelationshipEntity(c.relationshipReference()), coreApiResourceTracker);
} catch (KernelException e) {
// ignore, fallback to all node scan
}
}
return allRelationshipsByTypeWithoutIndex(ktx, typeId);
}
use of org.neo4j.kernel.impl.coreapi.internal.CursorIterator in project neo4j by neo4j.
the class TransactionImpl method allNodesByLabelWithoutIndex.
private ResourceIterator<Node> allNodesByLabelWithoutIndex(KernelTransaction ktx, int labelId) {
NodeCursor cursor = ktx.cursors().allocateNodeCursor(ktx.cursorContext());
ktx.dataRead().allNodesScan(cursor);
var filetredCursor = new FilteringNodeCursorWrapper(cursor, CursorPredicates.hasLabel(labelId));
return new CursorIterator<>(filetredCursor, NodeCursor::nodeReference, c -> newNodeEntity(c.nodeReference()), coreApiResourceTracker);
}
use of org.neo4j.kernel.impl.coreapi.internal.CursorIterator in project neo4j by neo4j.
the class TransactionImpl method relationshipsByTypeAndProperties.
private ResourceIterator<Relationship> relationshipsByTypeAndProperties(KernelTransaction tx, int typeId, PropertyIndexQuery.ExactPredicate... queries) {
Read read = tx.dataRead();
if (isInvalidQuery(typeId, queries)) {
return emptyResourceIterator();
}
int[] propertyIds = getPropertyIds(queries);
IndexDescriptor index = findUsableMatchingCompositeIndex(tx, SchemaDescriptor.forRelType(typeId, propertyIds), propertyIds, () -> tx.schemaRead().indexesGetForRelationshipType(typeId));
if (index != IndexDescriptor.NO_INDEX) {
try {
RelationshipValueIndexCursor cursor = tx.cursors().allocateRelationshipValueIndexCursor(tx.cursorContext(), tx.memoryTracker());
IndexReadSession indexSession = read.indexReadSession(index);
read.relationshipIndexSeek(indexSession, cursor, unconstrained(), getReorderedIndexQueries(index.schema().getPropertyIds(), queries));
return new CursorIterator<>(cursor, RelationshipIndexCursor::relationshipReference, c -> newRelationshipEntity(c.relationshipReference()), coreApiResourceTracker);
} catch (KernelException e) {
// weird at this point but ignore and fallback to a label scan
}
}
return getRelationshipsByTypeAndPropertyWithoutPropertyIndex(tx, typeId, queries);
}
use of org.neo4j.kernel.impl.coreapi.internal.CursorIterator in project neo4j by neo4j.
the class TransactionImpl method nodesByLabelAndProperties.
private ResourceIterator<Node> nodesByLabelAndProperties(KernelTransaction transaction, int labelId, PropertyIndexQuery.ExactPredicate... queries) {
Read read = transaction.dataRead();
if (isInvalidQuery(labelId, queries)) {
return emptyResourceIterator();
}
int[] propertyIds = getPropertyIds(queries);
IndexDescriptor index = findUsableMatchingCompositeIndex(transaction, SchemaDescriptor.forLabel(labelId, propertyIds), propertyIds, () -> transaction.schemaRead().indexesGetForLabel(labelId));
if (index != IndexDescriptor.NO_INDEX) {
try {
NodeValueIndexCursor cursor = transaction.cursors().allocateNodeValueIndexCursor(transaction.cursorContext(), transaction.memoryTracker());
IndexReadSession indexSession = read.indexReadSession(index);
read.nodeIndexSeek(indexSession, cursor, unconstrained(), getReorderedIndexQueries(index.schema().getPropertyIds(), queries));
return new CursorIterator<>(cursor, NodeIndexCursor::nodeReference, c -> newNodeEntity(c.nodeReference()), coreApiResourceTracker);
} catch (KernelException e) {
// weird at this point but ignore and fallback to a label scan
}
}
return getNodesByLabelAndPropertyWithoutPropertyIndex(transaction, labelId, queries);
}
Aggregations