blob: 7b65310d76ce103529703fa9d6f2a24dda32c826 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.drill.exec.store.http;
import org.apache.calcite.plan.RelOptRule;
import org.apache.calcite.schema.SchemaPlus;
import org.apache.drill.common.JSONOptions;
import org.apache.drill.common.expression.SchemaPath;
import org.apache.drill.common.logical.StoragePluginConfig.AuthMode;
import org.apache.drill.exec.metastore.MetadataProviderManager;
import org.apache.drill.exec.oauth.OAuthTokenProvider;
import org.apache.drill.exec.oauth.PersistentTokenTable;
import org.apache.drill.exec.oauth.TokenRegistry;
import org.apache.drill.exec.ops.OptimizerRulesContext;
import org.apache.drill.exec.physical.base.AbstractGroupScan;
import org.apache.drill.exec.planner.PlannerPhase;
import org.apache.drill.exec.server.DrillbitContext;
import org.apache.drill.exec.server.options.SessionOptionManager;
import org.apache.drill.exec.store.AbstractStoragePlugin;
import org.apache.drill.exec.store.SchemaConfig;
import org.apache.drill.exec.store.StoragePluginRegistry;
import org.apache.drill.exec.store.base.filter.FilterPushDownUtils;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.collect.ImmutableSet;
import com.fasterxml.jackson.core.type.TypeReference;
import java.io.IOException;
import java.util.List;
import java.util.Set;
public class HttpStoragePlugin extends AbstractStoragePlugin {
private final HttpStoragePluginConfig config;
private final HttpSchemaFactory schemaFactory;
private final StoragePluginRegistry registry;
private TokenRegistry tokenRegistry;
public HttpStoragePlugin(HttpStoragePluginConfig configuration, DrillbitContext context, String name) {
super(context, name);
this.config = configuration;
this.registry = context.getStorage();
this.schemaFactory = new HttpSchemaFactory(this);
if (config.getAuthMode() != AuthMode.USER_TRANSLATION) {
initializeOauthTokenTable(null);
}
}
@Override
public void registerSchemas(SchemaConfig schemaConfig, SchemaPlus parent) {
// For user translation mode, this is moved here because we don't have the
// active username in the constructor. Removing it from the constructor makes
// it difficult to test, so we do the check and leave it in both places.
if (config.getAuthMode() == AuthMode.USER_TRANSLATION) {
initializeOauthTokenTable(schemaConfig.getUserName());
}
schemaFactory.registerSchemas(schemaConfig, parent);
}
@VisibleForTesting
public void initializeOauthTokenTable(String username) {
OAuthTokenProvider tokenProvider = context.getOauthTokenProvider();
tokenRegistry = tokenProvider.getOauthTokenRegistry(username);
tokenRegistry.createTokenTable(getName());
}
@Override
public HttpStoragePluginConfig getConfig() {
return config;
}
public StoragePluginRegistry getRegistry() {
return registry;
}
public TokenRegistry getTokenRegistry() {
return tokenRegistry;
}
/**
* This method returns the {@link TokenRegistry} for a given user. It is only used for testing user translation
* with OAuth 2.0.
* @param username A {@link String} of the current active user.
* @return A {@link TokenRegistry} for the given user.
*/
@VisibleForTesting
public TokenRegistry getTokenRegistry(String username) {
initializeOauthTokenTable(username);
return tokenRegistry;
}
public PersistentTokenTable getTokenTable() { return tokenRegistry.getTokenTable(getName()); }
@Override
public boolean supportsRead() {
return true;
}
@Override
public AbstractGroupScan getPhysicalScan(String userName, JSONOptions selection,
SessionOptionManager options) throws IOException {
return getPhysicalScan(userName, selection, AbstractGroupScan.ALL_COLUMNS,
options, null);
}
@Override
public AbstractGroupScan getPhysicalScan(String userName, JSONOptions selection,
SessionOptionManager options, MetadataProviderManager metadataProviderManager) throws IOException {
return getPhysicalScan(userName, selection, AbstractGroupScan.ALL_COLUMNS,
options, metadataProviderManager);
}
@Override
public AbstractGroupScan getPhysicalScan(String userName, JSONOptions selection,
List<SchemaPath> columns) throws IOException {
return getPhysicalScan(userName, selection, columns, null, null);
}
@Override
public AbstractGroupScan getPhysicalScan(String userName, JSONOptions selection) throws IOException {
return getPhysicalScan(userName, selection, AbstractGroupScan.ALL_COLUMNS, null);
}
@Override
public AbstractGroupScan getPhysicalScan(String userName, JSONOptions selection, List<SchemaPath> columns, SessionOptionManager options,
MetadataProviderManager metadataProviderManager) throws IOException {
HttpScanSpec scanSpec = selection.getListWith(context.getLpPersistence().getMapper(), new TypeReference<HttpScanSpec>() {});
return new HttpGroupScan(scanSpec, metadataProviderManager);
}
@Override
public Set<? extends RelOptRule> getOptimizerRules(OptimizerRulesContext optimizerContext, PlannerPhase phase) {
// Push-down planning is done at the logical phase so it can
// influence parallelization in the physical phase. Note that many
// existing plugins perform filter push-down at the physical
// phase, which also works fine if push-down is independent of
// parallelization.
if (FilterPushDownUtils.isFilterPushDownPhase(phase) || phase == PlannerPhase.LOGICAL) {
return HttpPushDownListener.rulesFor(optimizerContext);
} else {
return ImmutableSet.of();
}
}}