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

com.hazelcast.sql.impl.plan.node.PlanNodeSchema Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2024 Hazelcast Inc.
 *
 * Licensed under the Hazelcast Community License (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://hazelcast.com/hazelcast-community-license
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.hazelcast.sql.impl.plan.node;

import com.hazelcast.sql.impl.type.QueryDataType;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Objects;

/**
 * Schema of a node.
 */
public class PlanNodeSchema implements PlanNodeFieldTypeProvider {

    private final List types;
    private final int rowWidth;

    public PlanNodeSchema(List types) {
        assert types != null;

        this.types = Collections.unmodifiableList(types);

        rowWidth = calculateEstimatedRowSize(types);
    }

    public static PlanNodeSchema combine(PlanNodeSchema schema1, PlanNodeSchema schema2) {
        ArrayList types = new ArrayList<>(schema1.types);

        types.addAll(schema2.types);

        return new PlanNodeSchema(types);
    }

    @Override
    public QueryDataType getType(int index) {
        return types.get(index);
    }

    public List getTypes() {
        return types;
    }

    /**
     * @return Estimated size of the row in bytes.
     */
    public int getEstimatedRowSize() {
        return rowWidth;
    }

    private static int calculateEstimatedRowSize(List types) {
        int res = 0;

        for (QueryDataType type : types) {
            res += type.getTypeFamily().getEstimatedSize();
        }

        return res;
    }

    @Override
    public int hashCode() {
        return Objects.hash(types, rowWidth);
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }

        if (o == null || getClass() != o.getClass()) {
            return false;
        }

        PlanNodeSchema schema = (PlanNodeSchema) o;

        return rowWidth == schema.rowWidth && types.equals(schema.types);
    }

    @Override
    public String toString() {
        return "PlanNodeSchema {width=" + rowWidth + ", types=" + types + '}';
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy