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

io.trino.spi.connector.ConnectorMaterializedViewDefinition Maven / Gradle / Ivy

There is a newer version: 458
Show 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 io.trino.spi.connector;

import io.trino.spi.type.TypeId;

import java.time.Duration;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.StringJoiner;

import static io.trino.spi.connector.Preconditions.checkArgument;
import static java.util.Objects.requireNonNull;
import static java.util.stream.Collectors.joining;

public class ConnectorMaterializedViewDefinition
{
    private final String originalSql;
    private final Optional storageTable;
    private final Optional catalog;
    private final Optional schema;
    private final List columns;
    private final Optional gracePeriod;
    private final Optional comment;
    private final Optional owner;
    private final List path;
    private final Map properties;

    public ConnectorMaterializedViewDefinition(
            String originalSql,
            Optional storageTable,
            Optional catalog,
            Optional schema,
            List columns,
            Optional gracePeriod,
            Optional comment,
            Optional owner,
            List path,
            Map properties)
    {
        this.originalSql = requireNonNull(originalSql, "originalSql is null");
        this.storageTable = requireNonNull(storageTable, "storageTable is null");
        this.catalog = requireNonNull(catalog, "catalog is null");
        this.schema = requireNonNull(schema, "schema is null");
        this.columns = List.copyOf(requireNonNull(columns, "columns is null"));
        checkArgument(gracePeriod.isEmpty() || !gracePeriod.get().isNegative(), "gracePeriod cannot be negative: %s", gracePeriod);
        this.gracePeriod = gracePeriod;
        this.comment = requireNonNull(comment, "comment is null");
        this.owner = requireNonNull(owner, "owner is null");
        this.path = List.copyOf(path);
        this.properties = requireNonNull(properties, "properties are null");

        if (catalog.isEmpty() && schema.isPresent()) {
            throw new IllegalArgumentException("catalog must be present if schema is present");
        }
        if (columns.isEmpty()) {
            throw new IllegalArgumentException("columns list is empty");
        }
    }

    public String getOriginalSql()
    {
        return originalSql;
    }

    public Optional getStorageTable()
    {
        return storageTable;
    }

    public Optional getCatalog()
    {
        return catalog;
    }

    public Optional getSchema()
    {
        return schema;
    }

    public List getColumns()
    {
        return columns;
    }

    public Optional getGracePeriod()
    {
        return gracePeriod;
    }

    public Optional getComment()
    {
        return comment;
    }

    public Optional getOwner()
    {
        return owner;
    }

    public List getPath()
    {
        return path;
    }

    public Map getProperties()
    {
        return properties;
    }

    @Override
    public String toString()
    {
        StringJoiner joiner = new StringJoiner(", ", "[", "]");
        joiner.add("originalSql=[" + originalSql + "]");
        storageTable.ifPresent(value -> joiner.add("storageTable=" + value));
        catalog.ifPresent(value -> joiner.add("catalog=" + value));
        schema.ifPresent(value -> joiner.add("schema=" + value));
        joiner.add("columns=" + columns);
        gracePeriod.ifPresent(value -> joiner.add("gracePeriod=" + gracePeriod));
        comment.ifPresent(value -> joiner.add("comment=" + value));
        joiner.add("owner=" + owner);
        joiner.add("properties=" + properties);
        joiner.add(path.stream().map(CatalogSchemaName::toString).collect(joining(", ", "path=(", ")")));
        return getClass().getSimpleName() + joiner.toString();
    }

    @Override
    public boolean equals(Object o)
    {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        ConnectorMaterializedViewDefinition that = (ConnectorMaterializedViewDefinition) o;
        return Objects.equals(originalSql, that.originalSql) &&
                Objects.equals(storageTable, that.storageTable) &&
                Objects.equals(catalog, that.catalog) &&
                Objects.equals(schema, that.schema) &&
                Objects.equals(columns, that.columns) &&
                Objects.equals(gracePeriod, that.gracePeriod) &&
                Objects.equals(comment, that.comment) &&
                Objects.equals(owner, that.owner) &&
                Objects.equals(path, that.path) &&
                Objects.equals(properties, that.properties);
    }

    @Override
    public int hashCode()
    {
        return Objects.hash(originalSql, storageTable, catalog, schema, columns, gracePeriod, comment, owner, path, properties);
    }

    public static final class Column
    {
        private final String name;
        private final TypeId type;
        private final Optional comment;

        public Column(String name, TypeId type, Optional comment)
        {
            this.name = requireNonNull(name, "name is null");
            this.type = requireNonNull(type, "type is null");
            this.comment = requireNonNull(comment, "comment is null");
        }

        public String getName()
        {
            return name;
        }

        public TypeId getType()
        {
            return type;
        }

        public Optional getComment()
        {
            return comment;
        }

        @Override
        public String toString()
        {
            return name + " " + type;
        }

        @Override
        public boolean equals(Object o)
        {
            if (this == o) {
                return true;
            }
            if (o == null || getClass() != o.getClass()) {
                return false;
            }
            Column column = (Column) o;
            return Objects.equals(name, column.name) &&
                    Objects.equals(type, column.type) &&
                    Objects.equals(comment, column.comment);
        }

        @Override
        public int hashCode()
        {
            return Objects.hash(name, type, comment);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy