com.facebook.presto.jdbc.internal.spi.block.BlockBuilderStatus Maven / Gradle / Ivy
/*
* Licensed 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 com.facebook.presto.jdbc.internal.spi.block;
import com.facebook.presto.jdbc.internal.jol.info.ClassLayout;
import java.lang.reflect.Field;
import java.lang.reflect.Modifier;
import static java.lang.String.format;
import static java.util.Objects.requireNonNull;
public class BlockBuilderStatus
{
public static final int INSTANCE_SIZE = deepInstanceSize(BlockBuilderStatus.class);
private final PageBuilderStatus pageBuilderStatus;
private int currentSize;
BlockBuilderStatus(PageBuilderStatus pageBuilderStatus)
{
this.pageBuilderStatus = requireNonNull(pageBuilderStatus, "pageBuilderStatus must not be null");
}
public int getMaxPageSizeInBytes()
{
return pageBuilderStatus.getMaxPageSizeInBytes();
}
public void addBytes(int bytes)
{
currentSize += bytes;
pageBuilderStatus.addBytes(bytes);
}
@Override
public String toString()
{
StringBuilder buffer = new StringBuilder("BlockBuilderStatus{");
buffer.append(", currentSize=").append(currentSize);
buffer.append('}');
return buffer.toString();
}
/**
* Computes the size of an instance of this class assuming that all reference fields are non-null
*/
private static int deepInstanceSize(Class> clazz)
{
if (clazz.isArray()) {
throw new IllegalArgumentException(format("Cannot determine size of %s because it contains an array", clazz.getSimpleName()));
}
if (clazz.isInterface()) {
throw new IllegalArgumentException(format("%s is an interface", clazz.getSimpleName()));
}
if (Modifier.isAbstract(clazz.getModifiers())) {
throw new IllegalArgumentException(format("%s is abstract", clazz.getSimpleName()));
}
if (!clazz.getSuperclass().equals(Object.class)) {
throw new IllegalArgumentException(format("Cannot determine size of a subclass. %s extends from %s", clazz.getSimpleName(), clazz.getSuperclass().getSimpleName()));
}
int size = ClassLayout.parseClass(clazz).instanceSize();
for (Field field : clazz.getDeclaredFields()) {
if (!field.getType().isPrimitive()) {
size += deepInstanceSize(field.getType());
}
}
return size;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy