com.facebook.presto.plugin.memory.MemoryTableHandle Maven / Gradle / Ivy
/*
* 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.plugin.memory;
import com.facebook.presto.spi.ConnectorTableHandle;
import com.facebook.presto.spi.ConnectorTableMetadata;
import com.facebook.presto.spi.SchemaTableName;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
import java.util.Objects;
import static com.google.common.base.MoreObjects.toStringHelper;
import static java.util.Objects.requireNonNull;
import static java.util.stream.Collectors.toList;
public final class MemoryTableHandle
implements ConnectorTableHandle
{
private final String connectorId;
private final String schemaName;
private final String tableName;
private final Long tableId;
private final List columnHandles;
public MemoryTableHandle(
String connectorId,
Long tableId,
ConnectorTableMetadata tableMetadata)
{
this(connectorId,
tableMetadata.getTable().getSchemaName(),
tableMetadata.getTable().getTableName(),
tableId,
MemoryColumnHandle.extractColumnHandles(tableMetadata.getColumns()));
}
@JsonCreator
public MemoryTableHandle(
@JsonProperty("connectorId") String connectorId,
@JsonProperty("schemaName") String schemaName,
@JsonProperty("tableName") String tableName,
@JsonProperty("tableId") Long tableId,
@JsonProperty("columnHandles") List columnHandles)
{
this.connectorId = requireNonNull(connectorId, "connectorId is null");
this.schemaName = requireNonNull(schemaName, "schemaName is null");
this.tableName = requireNonNull(tableName, "tableName is null");
this.tableId = requireNonNull(tableId, "tableId is null");
this.columnHandles = requireNonNull(columnHandles, "columnHandles is null");
}
@JsonProperty
public String getConnectorId()
{
return connectorId;
}
@JsonProperty
public String getSchemaName()
{
return schemaName;
}
@JsonProperty
public String getTableName()
{
return tableName;
}
@JsonProperty
public Long getTableId()
{
return tableId;
}
@JsonProperty
public List getColumnHandles()
{
return columnHandles;
}
public ConnectorTableMetadata toTableMetadata()
{
return new ConnectorTableMetadata(
toSchemaTableName(),
columnHandles.stream().map(MemoryColumnHandle::toColumnMetadata).collect(toList()));
}
public SchemaTableName toSchemaTableName()
{
return new SchemaTableName(schemaName, tableName);
}
@Override
public int hashCode()
{
return Objects.hash(getConnectorId(), getTableId());
}
@Override
public boolean equals(Object obj)
{
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
MemoryTableHandle other = (MemoryTableHandle) obj;
return Objects.equals(this.getConnectorId(), other.getConnectorId()) &&
Objects.equals(this.getTableId(), other.getTableId());
}
@Override
public String toString()
{
return toStringHelper(this)
.add("connectorId", connectorId)
.add("schemaName", schemaName)
.add("tableName", tableName)
.add("tableId", tableId)
.add("columnHandles", columnHandles)
.toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy