org.neo4j.consistency.checking.cache.PackedMultiFieldCache 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.cache;
import org.neo4j.consistency.checking.ByteArrayBitsManipulator;
import org.neo4j.kernel.impl.store.record.Record;
import org.neo4j.unsafe.impl.batchimport.cache.ByteArray;
import static org.neo4j.consistency.checking.cache.CacheSlots.ID_SLOT_SIZE;
import static org.neo4j.unsafe.impl.batchimport.cache.NumberArrayFactory.AUTO_WITHOUT_PAGECACHE;
/**
* Simply combining a {@link ByteArray} with {@link ByteArrayBitsManipulator}, so that each byte[] index can be split up into
* slots, i.e. holding multiple values for space efficiency and convenience.
*/
public class PackedMultiFieldCache
{
private final ByteArray array;
private ByteArrayBitsManipulator slots;
private long[] initValues;
static ByteArray defaultArray()
{
return AUTO_WITHOUT_PAGECACHE.newDynamicByteArray( 1_000_000, new byte[ByteArrayBitsManipulator.MAX_BYTES] );
}
public PackedMultiFieldCache( int... slotSizes )
{
this( defaultArray(), slotSizes );
}
public PackedMultiFieldCache( ByteArray array, int... slotSizes )
{
this.array = array;
setSlotSizes( slotSizes );
}
public void put( long index, long... values )
{
for ( int i = 0; i < values.length; i++ )
{
slots.set( array, index, i, values[i] );
}
}
public void put( long index, int slot, long value )
{
slots.set( array, index, slot, value );
}
public long get( long index, int slot )
{
return slots.get( array, index, slot );
}
public void setSlotSizes( int... slotSizes )
{
this.slots = new ByteArrayBitsManipulator( slotSizes );
this.initValues = getInitVals( slotSizes );
}
public void clear()
{
long length = array.length();
for ( long i = 0; i < length; i++ )
{
clear( i );
}
}
public void clear( long index )
{
put( index, initValues );
}
private static long[] getInitVals( int[] slotSizes )
{
long[] initVals = new long[slotSizes.length];
for ( int i = 0; i < initVals.length; i++ )
{
initVals[i] = isId( slotSizes, i ) ? Record.NO_NEXT_RELATIONSHIP.intValue() : 0;
}
return initVals;
}
private static boolean isId( int[] slotSizes, int i )
{
return slotSizes[i] >= ID_SLOT_SIZE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy