org.neo4j.collection.trackable.HeapTrackingUnifiedIdentityHashingSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of neo4j-collections Show documentation
Show all versions of neo4j-collections Show documentation
Collections and collection utilities for Neo4j.
/*
* 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.collection.trackable;
import static java.util.Objects.requireNonNull;
import static org.neo4j.memory.HeapEstimator.ARRAY_HEADER_BYTES;
import static org.neo4j.memory.HeapEstimator.OBJECT_REFERENCE_BYTES;
import static org.neo4j.memory.HeapEstimator.alignObjectSize;
import static org.neo4j.memory.HeapEstimator.shallowSizeOfInstance;
import org.eclipse.collections.impl.block.factory.HashingStrategies;
import org.eclipse.collections.impl.set.strategy.mutable.UnifiedSetWithHashingStrategy;
import org.neo4j.memory.MemoryTracker;
import org.neo4j.util.VisibleForTesting;
@SuppressWarnings("ExternalizableWithoutPublicNoArgConstructor")
public class HeapTrackingUnifiedIdentityHashingSet extends UnifiedSetWithHashingStrategy
implements AutoCloseable {
private static final long SHALLOW_SIZE = shallowSizeOfInstance(HeapTrackingUnifiedIdentityHashingSet.class);
private final MemoryTracker memoryTracker;
private int trackedCapacity;
@VisibleForTesting
public static HeapTrackingUnifiedIdentityHashingSet createUnifiedIdentityHashingSet(
MemoryTracker memoryTracker) {
int initialSizeToAllocate = DEFAULT_INITIAL_CAPACITY << 1;
memoryTracker.allocateHeap(SHALLOW_SIZE + arrayHeapSize(initialSizeToAllocate));
return new HeapTrackingUnifiedIdentityHashingSet<>(memoryTracker, initialSizeToAllocate);
}
private HeapTrackingUnifiedIdentityHashingSet(MemoryTracker memoryTracker, int trackedCapacity) {
super(HashingStrategies.identityStrategy());
this.memoryTracker = requireNonNull(memoryTracker);
this.trackedCapacity = trackedCapacity;
}
@Override
protected void allocateTable(int sizeToAllocate) {
if (memoryTracker != null) {
memoryTracker.allocateHeap(arrayHeapSize(sizeToAllocate));
memoryTracker.releaseHeap(arrayHeapSize(trackedCapacity));
trackedCapacity = sizeToAllocate;
}
super.allocateTable(sizeToAllocate);
}
@Override
public void close() {
memoryTracker.releaseHeap(SHALLOW_SIZE + arrayHeapSize(trackedCapacity));
}
@VisibleForTesting
public int getIndex(T key) {
return index(key);
}
@VisibleForTesting
public static long arrayHeapSize(int arrayLength) {
return alignObjectSize(ARRAY_HEADER_BYTES + (long) arrayLength * OBJECT_REFERENCE_BYTES);
}
}