org.neo4j.dbms.database.KnownSystemComponentVersion 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.dbms.database;
import org.neo4j.graphdb.Label;
import org.neo4j.graphdb.Node;
import org.neo4j.graphdb.ResourceIterator;
import org.neo4j.graphdb.Transaction;
import org.neo4j.internal.kernel.api.security.AbstractSecurityLog;
/**
* Version of a system graph component.
* Components that due to breaking schema changes requires migrations also needs versions.
* Each component has its own version scheme starting at 0 and increasing each release with breaking changes.
* The versions should be on the format [component]Version_[versionNbr]_[neo4jRelease].
* The version schemes are described in {@link ComponentVersion}.
*/
public abstract class KnownSystemComponentVersion
{
public static final int UNKNOWN_VERSION = -1;
private final Label versionLabel = Label.label( "Version" );
private final ComponentVersion componentVersion;
protected final String componentVersionProperty;
public final int version;
public final String description;
protected final AbstractSecurityLog securityLog;
protected KnownSystemComponentVersion( ComponentVersion componentVersion, AbstractSecurityLog securityLog )
{
this.componentVersion = componentVersion;
this.componentVersionProperty = componentVersion.getComponentName();
this.version = componentVersion.getVersion();
this.description = componentVersion.getDescription();
this.securityLog = securityLog;
}
public boolean isCurrent()
{
return componentVersion.isCurrent();
}
public boolean migrationSupported()
{
return componentVersion.migrationSupported();
}
public boolean runtimeSupported()
{
return componentVersion.runtimeSupported();
}
protected Integer getVersion( Transaction tx )
{
return SystemGraphComponent.getVersionNumber( tx, componentVersionProperty );
}
public boolean detected( Transaction tx )
{
Integer version = getVersion( tx );
return version != null && version == this.version;
}
public UnsupportedOperationException unsupported()
{
String message = String.format( "System graph version %d for component '%s' in '%s' is not supported", version, componentVersionProperty, description );
securityLog.error( message );
return new UnsupportedOperationException( message );
}
public SystemGraphComponent.Status getStatus()
{
if ( this.version == UNKNOWN_VERSION )
{
return SystemGraphComponent.Status.UNINITIALIZED;
}
else if ( this.isCurrent() )
{
return SystemGraphComponent.Status.CURRENT;
}
else if ( this.migrationSupported() )
{
return this.runtimeSupported() ? SystemGraphComponent.Status.REQUIRES_UPGRADE : SystemGraphComponent.Status.UNSUPPORTED_BUT_CAN_UPGRADE;
}
else
{
return SystemGraphComponent.Status.UNSUPPORTED;
}
}
protected static boolean nodesWithLabelExist( Transaction tx, Label label )
{
try ( ResourceIterator nodes = tx.findNodes( label ) )
{
return nodes.hasNext();
}
}
public void setVersionProperty( Transaction tx, int newVersion )
{
Node versionNode = findOrCreateVersionNode( tx );
var oldVersion = versionNode.getProperty( componentVersionProperty, null );
if ( oldVersion != null )
{
securityLog.info( String.format( "Upgrading '%s' version property from %s to %d", componentVersionProperty, oldVersion, newVersion ) );
}
else
{
securityLog.info( String.format( "Setting version for '%s' to %d", componentVersionProperty, newVersion ) );
}
versionNode.setProperty( componentVersionProperty, newVersion );
}
private Node findOrCreateVersionNode( Transaction tx )
{
try ( ResourceIterator nodes = tx.findNodes( versionLabel ) )
{
if ( nodes.hasNext() )
{
Node node = nodes.next();
if ( nodes.hasNext() )
{
throw new IllegalStateException( "More than one Version node exists" );
}
return node;
}
}
return tx.createNode( versionLabel );
}
}