org.neo4j.consistency.checking.full.NodeLabelReader Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neo4j-consistency-check Show documentation
Show all versions of neo4j-consistency-check Show documentation
Tool for checking consistency of a Neo4j data store.
/*
* Copyright (c) 2002-2020 "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.consistency.checking.full;
import org.eclipse.collections.api.set.primitive.MutableLongSet;
import org.eclipse.collections.impl.set.mutable.primitive.LongHashSet;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;
import org.neo4j.collection.PrimitiveLongCollections;
import org.neo4j.consistency.checking.CheckerEngine;
import org.neo4j.consistency.checking.LabelChainWalker;
import org.neo4j.consistency.report.ConsistencyReport;
import org.neo4j.consistency.store.RecordAccess;
import org.neo4j.consistency.store.RecordReference;
import org.neo4j.kernel.impl.store.DynamicNodeLabels;
import org.neo4j.kernel.impl.store.InlineNodeLabels;
import org.neo4j.kernel.impl.store.NodeLabels;
import org.neo4j.kernel.impl.store.NodeLabelsField;
import org.neo4j.kernel.impl.store.RecordStore;
import org.neo4j.kernel.impl.store.record.AbstractBaseRecord;
import org.neo4j.kernel.impl.store.record.DynamicRecord;
import org.neo4j.kernel.impl.store.record.NodeRecord;
import org.neo4j.kernel.impl.store.record.Record;
import static org.neo4j.kernel.impl.store.record.RecordLoad.FORCE;
public class NodeLabelReader
{
private NodeLabelReader()
{
}
public static Set getListOfLabels(
NodeRecord nodeRecord, RecordAccess records, CheckerEngine engine )
{
final Set labels = new HashSet<>();
NodeLabels nodeLabels = NodeLabelsField.parseLabelsField( nodeRecord );
if ( nodeLabels instanceof DynamicNodeLabels )
{
DynamicNodeLabels dynamicNodeLabels = (DynamicNodeLabels) nodeLabels;
long firstRecordId = dynamicNodeLabels.getFirstDynamicRecordId();
RecordReference firstRecordReference = records.nodeLabels( firstRecordId );
engine.comparativeCheck( firstRecordReference,
new LabelChainWalker<>(
new LabelChainWalker.Validator()
{
@Override
public void onRecordNotInUse( DynamicRecord dynamicRecord,
CheckerEngine engine )
{
}
@Override
public void onRecordChainCycle( DynamicRecord record,
CheckerEngine engine )
{
}
@Override
public void onWellFormedChain( long[] labelIds,
CheckerEngine engine,
RecordAccess records )
{
copyToSet( labelIds, labels );
}
} ) );
}
else
{
copyToSet( nodeLabels.get( null ), labels );
}
return labels;
}
public static long[] getListOfLabels( NodeRecord nodeRecord, RecordStore labels )
{
long field = nodeRecord.getLabelField();
if ( NodeLabelsField.fieldPointsToDynamicRecordOfLabels( field ) )
{
List recordList = new ArrayList<>();
final MutableLongSet alreadySeen = new LongHashSet();
long id = NodeLabelsField.firstDynamicLabelRecordId( field );
while ( !Record.NULL_REFERENCE.is( id ) )
{
DynamicRecord record = labels.getRecord( id, labels.newRecord(), FORCE );
if ( !record.inUse() || !alreadySeen.add( id ) )
{
return PrimitiveLongCollections.EMPTY_LONG_ARRAY;
}
recordList.add( record );
}
return LabelChainWalker.labelIds( recordList );
}
return InlineNodeLabels.get( nodeRecord );
}
public static Set getListOfLabels( long labelField )
{
final Set labels = new HashSet<>();
copyToSet( InlineNodeLabels.parseInlined(labelField), labels );
return labels;
}
private static void copyToSet( long[] array, Set set )
{
for ( long labelId : array )
{
set.add( labelId );
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy