All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.facebook.presto.iceberg.delete.StructLikeRow Maven / Gradle / Ivy

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 java.util.Arrays;

import static com.facebook.presto.iceberg.IcebergPageSink.getIcebergValue;
import static com.google.common.base.Preconditions.checkArgument;

final class StructLikeRow
        implements StructLike
{
    private final Object[] values;

    public StructLikeRow(Type[] types, Page page, int position)
    {
        checkArgument(types.length == page.getChannelCount(), "mismatched types for page");
        values = new Object[types.length];
        for (int i = 0; i < values.length; i++) {
            values[i] = getIcebergValue(page.getBlock(i), position, types[i]);
        }
    }

    @Override
    public int size()
    {
        return values.length;
    }

    @Override
    public  T get(int i, Class clazz)
    {
        return clazz.cast(values[i]);
    }

    @Override
    public  void set(int i, T t)
    {
        throw new UnsupportedOperationException();
    }

    @Override
    public String toString()
    {
        return "StructLikeRow" + Arrays.toString(values);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy