com.facebook.presto.iceberg.delete.LazyStructLikeRow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of presto-iceberg Show documentation
Show all versions of presto-iceberg Show documentation
Presto - Iceberg Connector
The newest version!
/*
* 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.iceberg.delete;
import com.facebook.presto.common.Page;
import com.facebook.presto.common.type.Type;
import org.apache.iceberg.StructLike;
import static com.facebook.presto.iceberg.IcebergPageSink.getIcebergValue;
import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkElementIndex;
import static java.util.Objects.requireNonNull;
/**
* Lazy version of {@link StructLikeRow}.
*/
public class LazyStructLikeRow
implements StructLike
{
private final Type[] types;
private final Page page;
private final int position;
private final Object[] values;
public LazyStructLikeRow(Type[] types, Page page, int position)
{
checkArgument(types.length == page.getChannelCount(), "mismatched types for page");
this.types = requireNonNull(types, "types is null");
this.page = requireNonNull(page, "page is null");
checkElementIndex(position, page.getPositionCount(), "page position");
this.position = position;
this.values = new Object[types.length];
}
@Override
public int size()
{
return page.getChannelCount();
}
@Override
public T get(int i, Class clazz)
{
return clazz.cast(get(i));
}
@Override
public void set(int i, T t)
{
throw new UnsupportedOperationException();
}
private Object get(int i)
{
Object value = values[i];
if (value != null) {
return value;
}
value = getIcebergValue(page.getBlock(i), position, types[i]);
values[i] = value;
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy