org.neo4j.kernel.database.DatabaseReference 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 [http://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.database;
import java.util.Comparator;
import java.util.Objects;
import java.util.UUID;
import org.neo4j.configuration.helpers.RemoteUri;
/**
* Implementations of this interface represent different kinds of Database reference.
*
* - {@link Internal} references point to databases which are present in this DBMS.
* - {@link External} references point to databases which are not present in this DBMS.
*
* A database may have multiple references, each with a different alias.
* The reference whose {@link #alias()} corresponds to the database's original name is known as the primary reference.
*/
public abstract class DatabaseReference implements Comparable
{
private static final Comparator referenceComparator = Comparator.comparing( a -> a.alias().name(), String::compareToIgnoreCase );
private static final Comparator nullSafeReferenceComparator = Comparator.nullsLast( referenceComparator );
/**
* @return the alias associated with this database reference
*/
public abstract NormalizedDatabaseName alias();
/**
* @return whether the alias associated with this reference is the database's original/true name
*/
public abstract boolean isPrimary();
/**
* @return whether the reference refers to a database which is present on this physical instance
*/
public abstract boolean isRemote();
/**
* @return the unique identity for this reference
*/
public abstract UUID id();
@Override
public int compareTo( DatabaseReference that )
{
return nullSafeReferenceComparator.compare( this, that );
}
/**
* External references point to databases which are not stored within this DBMS.
*/
public static final class External extends DatabaseReference
{
private final NormalizedDatabaseName targetName;
private final NormalizedDatabaseName name;
private final RemoteUri remoteUri;
private final UUID uuid;
public External( NormalizedDatabaseName targetName, NormalizedDatabaseName name, RemoteUri remoteUri, UUID uuid )
{
this.targetName = targetName;
this.name = name;
this.remoteUri = remoteUri;
this.uuid = uuid;
}
@Override
public NormalizedDatabaseName alias()
{
return name;
}
@Override
public boolean isPrimary()
{
return false;
}
@Override
public boolean isRemote()
{
return true;
}
public RemoteUri remoteUri()
{
return remoteUri;
}
public NormalizedDatabaseName remoteName()
{
return targetName;
}
@Override
public UUID id()
{
return uuid;
}
@Override
public boolean equals( Object o )
{
if ( this == o )
{
return true;
}
if ( o == null || getClass() != o.getClass() )
{
return false;
}
External remote = (External) o;
return Objects.equals( targetName, remote.targetName ) && Objects.equals( name, remote.name ) &&
Objects.equals( remoteUri, remote.remoteUri ) && Objects.equals( uuid, remote.uuid );
}
@Override
public int hashCode()
{
return Objects.hash( targetName, name, remoteUri, uuid );
}
@Override
public String toString()
{
return "DatabaseReference.External{" +
"remoteName=" + targetName +
", name=" + name +
", remoteUri=" + remoteUri +
", uuid=" + uuid +
'}';
}
}
/**
* Local references point to databases which are stored within this DBMS.
*
* Note, however, that a local reference may point to databases not stored on this physical instance.
* Whether a reference points to a database present on this instance is represented by {@link #isRemote()}.
*/
public static final class Internal extends DatabaseReference
{
private final NormalizedDatabaseName name;
private final NamedDatabaseId namedDatabaseId;
public Internal( NormalizedDatabaseName name, NamedDatabaseId namedDatabaseId )
{
this.name = name;
this.namedDatabaseId = namedDatabaseId;
}
public NamedDatabaseId databaseId()
{
return namedDatabaseId;
}
@Override
public NormalizedDatabaseName alias()
{
return name;
}
@Override
public boolean isPrimary()
{
return Objects.equals( name.name(), namedDatabaseId.name() );
}
@Override
public boolean isRemote()
{
return false;
}
@Override
public UUID id()
{
return namedDatabaseId.databaseId().uuid();
}
@Override
public boolean equals( Object o )
{
if ( this == o )
{
return true;
}
if ( o == null || getClass() != o.getClass() )
{
return false;
}
Internal internal = (Internal) o;
return Objects.equals( name, internal.name ) && Objects.equals( namedDatabaseId, internal.namedDatabaseId );
}
@Override
public int hashCode()
{
return Objects.hash( name, namedDatabaseId );
}
@Override
public String toString()
{
return "DatabaseReference.Internal{" +
"name=" + name +
", namedDatabaseId=" + namedDatabaseId +
'}';
}
}
}