org.neo4j.internal.schema.SchemaDescriptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neo4j-schema Show documentation
Show all versions of neo4j-schema Show documentation
Schema descriptors and interfaces in Neo4j.
The newest version!
/*
* 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.internal.schema;
import org.neo4j.common.EntityType;
import org.neo4j.common.TokenNameLookup;
import org.neo4j.lock.ResourceType;
/**
* Internal representation of one schema unit, for example a label-property pair.
*/
public interface SchemaDescriptor {
/**
* Test if this schema descriptor is a {@code T}.
* @return {@code true} if calling {@link #asSchemaDescriptorType(Class)} will not throw an exception.
*/
boolean isSchemaDescriptorType(Class type);
/**
* If this schema descriptor matches the structure required by {@code T}, then return this descriptor as that type.
* Otherwise, throw an {@link IllegalStateException}.
*/
T asSchemaDescriptorType(Class type);
/**
* Returns true if any of the given entity token ids are part of this schema unit.
* @param entityTokenIds entity token ids to check against.
* @return true if the supplied ids are relevant to this schema unit.
*/
boolean isAffected(int[] entityTokenIds);
/**
* This method return the property ids that are relevant to this Schema Descriptor.
*
* Putting this method here is a convenience that will break if/when we introduce more complicated schema
* descriptors like paths, but until that point it is very useful.
*
* @return the property ids
*/
int[] getPropertyIds();
/**
* Assume that this schema descriptor describes a schema that includes a single property id, and return that id.
*
* @return The presumed single property id of this schema.
* @throws IllegalStateException if this schema does not have exactly one property.
*/
default int getPropertyId() {
int[] propertyIds = getPropertyIds();
if (propertyIds.length != 1) {
throw new IllegalStateException(
"Single property schema requires one property but had " + propertyIds.length);
}
return propertyIds[0];
}
/**
* This method returns the entity token ids handled by this descriptor.
* @return the entity token ids that this schema descriptor represents
*/
int[] getEntityTokenIds();
/**
* Assuming this schema descriptor represents a schema on nodes, with a single label id, then get that label id.
* Otherwise an exception is thrown.
*/
default int getLabelId() {
if (entityType() != EntityType.NODE) {
throw new IllegalStateException("Cannot get label id from a schema on " + entityType() + " entities.");
}
int[] entityTokenIds = getEntityTokenIds();
if (entityTokenIds.length != 1) {
throw new IllegalStateException(
"Cannot get a single label id from a multi-token schema descriptor: " + this);
}
return entityTokenIds[0];
}
/**
* Assuming this schema descriptor represents a schema on relationships, with a single relationship type id, then get that relationship type id.
* Otherwise an exception is thrown.
*/
default int getRelTypeId() {
if (entityType() != EntityType.RELATIONSHIP) {
throw new IllegalStateException(
"Cannot get relationship type id from a schema on " + entityType() + " entities.");
}
int[] entityTokenIds = getEntityTokenIds();
if (entityTokenIds.length != 1) {
throw new IllegalStateException(
"Cannot get a single relationship type id from a multi-token schema descriptor: " + this);
}
return entityTokenIds[0];
}
/**
* Get the ids that together with the {@link #keyType()} can be used to acquire the schema locks needed to lock the schema represented by this descriptor.
*/
long[] lockingKeys();
/**
* Type of underlying schema descriptor key.
* Key is part of schema unit that determines which resources with specified properties are applicable.
* @return type of underlying key
*/
ResourceType keyType();
/**
* Type of entities this schema represents.
* @return entity type
*/
EntityType entityType();
/**
* Returns the type of this schema. See {@link SchemaPatternMatchingType}.
* @return SchemaPatternMatchingType of this schema unit.
*/
SchemaPatternMatchingType schemaPatternMatchingType();
/**
* Produce a user-friendly description of this schema entity.
*
* @param tokenNameLookup used for looking up names for token ids.
* @return a user friendly description of this schema entity.
*/
String userDescription(TokenNameLookup tokenNameLookup);
}