blob: fe75fe7f6db984631a2549c9c117d6aab488de3f [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.lucene.util.packed;
import org.apache.lucene.util.RamUsageEstimator;
import org.apache.lucene.util.packed.PackedInts.Mutable;
/**
* A {@link PagedMutable}. This class slices data into fixed-size blocks
* which have the same number of bits per value. It can be a useful replacement
* for {@link PackedInts.Mutable} to store more than 2B values.
* @lucene.internal
*/
public final class PagedMutable extends AbstractPagedMutable<PagedMutable> {
final PackedInts.Format format;
/**
* Create a new {@link PagedMutable} instance.
*
* @param size the number of values to store.
* @param pageSize the number of values per page
* @param bitsPerValue the number of bits per value
* @param acceptableOverheadRatio an acceptable overhead ratio
*/
public PagedMutable(long size, int pageSize, int bitsPerValue, float acceptableOverheadRatio) {
this(size, pageSize, PackedInts.fastestFormatAndBits(pageSize, bitsPerValue, acceptableOverheadRatio));
fillPages();
}
PagedMutable(long size, int pageSize, PackedInts.FormatAndBits formatAndBits) {
this(size, pageSize, formatAndBits.bitsPerValue, formatAndBits.format);
}
PagedMutable(long size, int pageSize, int bitsPerValue, PackedInts.Format format) {
super(bitsPerValue, size, pageSize);
this.format = format;
}
@Override
protected Mutable newMutable(int valueCount, int bitsPerValue) {
assert this.bitsPerValue >= bitsPerValue;
return PackedInts.getMutable(valueCount, this.bitsPerValue, format);
}
@Override
protected PagedMutable newUnfilledCopy(long newSize) {
return new PagedMutable(newSize, pageSize(), bitsPerValue, format);
}
@Override
protected long baseRamBytesUsed() {
return super.baseRamBytesUsed() + RamUsageEstimator.NUM_BYTES_OBJECT_REF;
}
}