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

com.oceanbase.connector.flink.table.HTableInfo Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2024 OceanBase.
 *
 * 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.oceanbase.connector.flink.table;

import org.apache.flink.table.catalog.Column;
import org.apache.flink.table.catalog.ResolvedSchema;
import org.apache.flink.table.types.logical.LogicalType;
import org.apache.flink.table.types.logical.LogicalTypeRoot;
import org.apache.flink.table.types.logical.RowType;

import javax.annotation.Nonnull;

import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
import java.util.stream.IntStream;

import static org.apache.flink.util.Preconditions.checkNotNull;

public class HTableInfo implements Table {

    private static final long serialVersionUID = 1L;

    private final TableId tableId;
    private final String rowKeyName;
    private final LogicalType rowKeyType;
    private final Map fieldIndexMap;
    private final List familyNames;
    private final Map columnNameMap;
    private final Map columnTypeMap;

    public HTableInfo(TableId tableId, ResolvedSchema resolvedSchema) {
        this(
                tableId,
                rowKeyColumn(resolvedSchema).getName(),
                rowKeyColumn(resolvedSchema).getDataType().getLogicalType(),
                columns(resolvedSchema).stream().map(Column::getName).collect(Collectors.toList()),
                familyColumns(resolvedSchema).stream()
                        .collect(
                                Collectors.toMap(
                                        Column::getName,
                                        family ->
                                                ((RowType) family.getDataType().getLogicalType())
                                                        .getFields().stream()
                                                                .map(RowType.RowField::getName)
                                                                .collect(Collectors.toList())
                                                                .toArray(new String[0]))),
                familyColumns(resolvedSchema).stream()
                        .collect(
                                Collectors.toMap(
                                        Column::getName,
                                        family ->
                                                ((RowType) family.getDataType().getLogicalType())
                                                        .getFields().stream()
                                                                .map(RowType.RowField::getType)
                                                                .collect(Collectors.toList())
                                                                .toArray(new LogicalType[0]))));
    }

    private static List columns(ResolvedSchema resolvedSchema) {
        return resolvedSchema.getColumns();
    }

    private static Column rowKeyColumn(ResolvedSchema resolvedSchema) {
        List columns =
                columns(resolvedSchema).stream()
                        .filter(
                                column ->
                                        column.getDataType().getLogicalType().getTypeRoot()
                                                != LogicalTypeRoot.ROW)
                        .collect(Collectors.toList());
        if (columns.size() != 1) {
            throw new IllegalArgumentException(
                    "There should be exactly one field that is not ROW type.");
        }
        return columns.get(0);
    }

    private static List familyColumns(ResolvedSchema resolvedSchema) {
        return columns(resolvedSchema).stream()
                .filter(
                        column ->
                                column.getDataType().getLogicalType().getTypeRoot()
                                        == LogicalTypeRoot.ROW)
                .collect(Collectors.toList());
    }

    public HTableInfo(
            @Nonnull TableId tableId,
            @Nonnull String rowKeyName,
            @Nonnull LogicalType rowKeyType,
            @Nonnull List fieldNames,
            @Nonnull Map columnNameMap,
            @Nonnull Map columnTypeMap) {
        this.tableId = tableId;
        this.rowKeyName = rowKeyName;
        this.rowKeyType = rowKeyType;
        this.familyNames =
                fieldNames.stream().filter(s -> !rowKeyName.equals(s)).collect(Collectors.toList());
        this.columnNameMap = columnNameMap;
        this.columnTypeMap = columnTypeMap;
        this.fieldIndexMap =
                IntStream.range(0, fieldNames.size())
                        .boxed()
                        .collect(Collectors.toMap(fieldNames::get, i -> i));
    }

    @Override
    public TableId getTableId() {
        return tableId;
    }

    @Override
    public List getKey() {
        return Collections.singletonList(rowKeyName);
    }

    public String getRowKeyName() {
        return rowKeyName;
    }

    public LogicalType getRowKeyType() {
        return rowKeyType;
    }

    public List getFamilyNames() {
        return familyNames;
    }

    public String[] getColumnNames(String familyName) {
        return columnNameMap.get(familyName);
    }

    public LogicalType[] getColumnTypes(String familyName) {
        return columnTypeMap.get(familyName);
    }

    @Override
    public int getFieldIndex(String fieldName) {
        return checkNotNull(
                fieldIndexMap.get(fieldName), String.format("Field '%s' not found", fieldName));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy