com.facebook.presto.google.sheets.SheetsMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of presto-google-sheets Show documentation
Show all versions of presto-google-sheets Show documentation
Presto - Google Sheets Connector
/*
* 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.google.sheets;
import com.facebook.presto.spi.ColumnHandle;
import com.facebook.presto.spi.ColumnMetadata;
import com.facebook.presto.spi.ConnectorSession;
import com.facebook.presto.spi.ConnectorTableHandle;
import com.facebook.presto.spi.ConnectorTableLayout;
import com.facebook.presto.spi.ConnectorTableLayoutHandle;
import com.facebook.presto.spi.ConnectorTableLayoutResult;
import com.facebook.presto.spi.ConnectorTableMetadata;
import com.facebook.presto.spi.Constraint;
import com.facebook.presto.spi.PrestoException;
import com.facebook.presto.spi.SchemaTableName;
import com.facebook.presto.spi.SchemaTablePrefix;
import com.facebook.presto.spi.TableNotFoundException;
import com.facebook.presto.spi.connector.ConnectorMetadata;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import javax.inject.Inject;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import java.util.Set;
import static com.facebook.presto.google.sheets.SheetsErrorCode.SHEETS_UNKNOWN_TABLE_ERROR;
import static com.google.common.collect.ImmutableList.toImmutableList;
import static com.google.common.collect.Iterables.getOnlyElement;
import static java.util.Objects.requireNonNull;
public class SheetsMetadata
implements ConnectorMetadata
{
private final SheetsClient sheetsClient;
private static final List SCHEMAS = ImmutableList.of("default");
@Inject
public SheetsMetadata(SheetsClient sheetsClient)
{
this.sheetsClient = requireNonNull(sheetsClient, "sheetsClient is null");
}
@Override
public List listSchemaNames(ConnectorSession session)
{
return listSchemaNames();
}
public List listSchemaNames()
{
return SCHEMAS;
}
@Override
public SheetsTableHandle getTableHandle(ConnectorSession session, SchemaTableName tableName)
{
requireNonNull(tableName, "tableName is null");
if (!listSchemaNames(session).contains(tableName.getSchemaName())) {
return null;
}
Optional table = sheetsClient.getTable(tableName.getTableName());
if (!table.isPresent()) {
return null;
}
return new SheetsTableHandle(tableName.getSchemaName(), tableName.getTableName());
}
@Override
public List getTableLayouts(
ConnectorSession session, ConnectorTableHandle table,
Constraint constraint, Optional> desiredColumns)
{
SheetsTableHandle tableHandle = (SheetsTableHandle) table;
ConnectorTableLayout layout = new ConnectorTableLayout(new SheetsTableLayoutHandle(tableHandle));
return ImmutableList.of(new ConnectorTableLayoutResult(layout, constraint.getSummary()));
}
@Override
public ConnectorTableLayout getTableLayout(ConnectorSession session, ConnectorTableLayoutHandle handle)
{
return new ConnectorTableLayout(handle);
}
@Override
public ConnectorTableMetadata getTableMetadata(ConnectorSession session, ConnectorTableHandle table)
{
Optional connectorTableMetadata = getTableMetadata(((SheetsTableHandle) table).toSchemaTableName());
if (!connectorTableMetadata.isPresent()) {
throw new PrestoException(SHEETS_UNKNOWN_TABLE_ERROR, "Metadata not found for table " + ((SheetsTableHandle) table).getTableName());
}
return connectorTableMetadata.get();
}
private Optional getTableMetadata(SchemaTableName tableName)
{
if (!listSchemaNames().contains(tableName.getSchemaName())) {
return Optional.empty();
}
Optional table = sheetsClient.getTable(tableName.getTableName());
if (table.isPresent()) {
return Optional.of(new ConnectorTableMetadata(tableName, table.get().getColumnsMetadata()));
}
return Optional.empty();
}
@Override
public Map getColumnHandles(ConnectorSession session, ConnectorTableHandle tableHandle)
{
SheetsTableHandle sheetsTableHandle = (SheetsTableHandle) tableHandle;
Optional table = sheetsClient.getTable(sheetsTableHandle.getTableName());
if (!table.isPresent()) {
throw new TableNotFoundException(sheetsTableHandle.toSchemaTableName());
}
ImmutableMap.Builder columnHandles = ImmutableMap.builder();
int index = 0;
for (ColumnMetadata column : table.get().getColumnsMetadata()) {
columnHandles.put(column.getName(), new SheetsColumnHandle(column.getName(), column.getType(), index));
index++;
}
return columnHandles.build();
}
@Override
public ColumnMetadata getColumnMetadata(ConnectorSession session, ConnectorTableHandle tableHandle, ColumnHandle columnHandle)
{
return ((SheetsColumnHandle) columnHandle).getColumnMetadata();
}
@Override
public Map> listTableColumns(ConnectorSession session, SchemaTablePrefix prefix)
{
requireNonNull(prefix, "prefix is null");
ImmutableMap.Builder> columns = ImmutableMap.builder();
for (SchemaTableName tableName : listTables(session, Optional.of(prefix.getSchemaName()))) {
Optional tableMetadata = getTableMetadata(tableName);
// table can disappear during listing operation
if (tableMetadata.isPresent()) {
columns.put(tableName, tableMetadata.get().getColumns());
}
}
return columns.build();
}
@Override
public List listTables(ConnectorSession session, Optional schemaName)
{
String schema = schemaName.orElse(getOnlyElement(SCHEMAS));
if (listSchemaNames().contains(schema)) {
return sheetsClient.getTableNames().stream()
.map(tableName -> new SchemaTableName(schema, tableName))
.collect(toImmutableList());
}
return ImmutableList.of();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy