DeltaTableProperties.java
/*
* 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.delta;
import com.facebook.presto.common.type.TypeManager;
import com.facebook.presto.hive.HiveClientConfig;
import com.facebook.presto.hive.HiveStorageFormat;
import com.facebook.presto.spi.session.PropertyMetadata;
import com.google.common.collect.ImmutableList;
import javax.inject.Inject;
import java.util.List;
import java.util.Map;
import static com.facebook.presto.common.type.VarcharType.createUnboundedVarcharType;
import static com.facebook.presto.spi.session.PropertyMetadata.stringProperty;
import static java.util.Locale.ENGLISH;
public class DeltaTableProperties
{
public static final String EXTERNAL_LOCATION_PROPERTY = "external_location";
public static final String STORAGE_FORMAT_PROPERTY = "format";
private final List<PropertyMetadata<?>> tableProperties;
@Inject
public DeltaTableProperties(TypeManager typeManager, HiveClientConfig config)
{
tableProperties = ImmutableList.of(
stringProperty(
EXTERNAL_LOCATION_PROPERTY,
"File system location URI for external table",
null,
false),
new PropertyMetadata<>(
STORAGE_FORMAT_PROPERTY,
"Hive storage format for the table",
createUnboundedVarcharType(),
HiveStorageFormat.class,
config.getHiveStorageFormat(),
false,
value -> HiveStorageFormat.valueOf(((String) value).toUpperCase(ENGLISH)),
HiveStorageFormat::toString));
}
public List<PropertyMetadata<?>> getTableProperties()
{
return tableProperties;
}
public static boolean isExternalTable(Map<String, Object> tableProperties)
{
return tableProperties.get(EXTERNAL_LOCATION_PROPERTY) != null;
}
public static HiveStorageFormat getTableStorageFormat(Map<String, Object> tableProperties)
{
return (HiveStorageFormat) tableProperties.get(STORAGE_FORMAT_PROPERTY);
}
}