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

io.trino.plugin.hive.metastore.UserTableKey Maven / Gradle / Ivy

Go to download

This is a Databricks build of Trino's Hive plugin which includes support for HTTP based transport for it's Hive metastore thrift interface.

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 io.trino.plugin.hive.metastore;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;

import javax.annotation.concurrent.Immutable;

import java.util.Objects;
import java.util.Optional;

import static com.google.common.base.MoreObjects.toStringHelper;
import static java.util.Objects.requireNonNull;

@Immutable
public class UserTableKey
{
    private final Optional principal;
    private final String database;
    private final String table;
    private final Optional owner;

    @JsonCreator
    public UserTableKey(
            @JsonProperty("principal") Optional principal,
            @JsonProperty("database") String database,
            @JsonProperty("table") String table,
            @JsonProperty("owner") Optional owner)
    {
        this.principal = requireNonNull(principal, "principal is null");
        this.database = requireNonNull(database, "database is null");
        this.table = requireNonNull(table, "table is null");
        this.owner = requireNonNull(owner, "owner is null");
    }

    @JsonProperty
    public Optional getPrincipal()
    {
        return principal;
    }

    @JsonProperty
    public String getDatabase()
    {
        return database;
    }

    @JsonProperty
    public String getTable()
    {
        return table;
    }

    @JsonProperty
    public Optional getOwner()
    {
        return owner;
    }

    public boolean matches(String databaseName, String tableName)
    {
        return this.database.equals(databaseName) && this.table.equals(tableName);
    }

    @Override
    public boolean equals(Object o)
    {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        UserTableKey that = (UserTableKey) o;
        return Objects.equals(principal, that.principal) &&
                Objects.equals(table, that.table) &&
                Objects.equals(database, that.database) &&
                Objects.equals(owner, that.owner);
    }

    @Override
    public int hashCode()
    {
        return Objects.hash(principal, table, database, owner);
    }

    @Override
    public String toString()
    {
        return toStringHelper(this)
                .add("principal", principal)
                .add("table", table)
                .add("database", database)
                .add("owner", owner.orElse(null))
                .toString();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy