blob: 151532cb019ade4fcc0a0f9a9384c4c61d12d73d [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 com.fasterxml.jackson.annotation.JacksonInject;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonTypeName;
import org.apache.drill.common.PlanStringBuilder;
import org.apache.drill.exec.oauth.PersistentTokenTable;
import org.apache.drill.exec.store.StoragePluginRegistry;
@JsonTypeName("http-scan-spec")
public class HttpScanSpec {
private final String pluginName;
private final String connectionName;
private final String tableName;
private final HttpStoragePluginConfig config;
private final StoragePluginRegistry registry;
private final PersistentTokenTable tokenTable;
private final String queryUserName;
@JsonCreator
public HttpScanSpec(@JsonProperty("pluginName") String pluginName,
@JsonProperty("connection") String connectionName,
@JsonProperty("tableName") String tableName,
@JsonProperty("config") HttpStoragePluginConfig config,
@JsonProperty("tokenTable") PersistentTokenTable tokenTable,
@JsonProperty("queryUserName") String queryUserName,
@JacksonInject StoragePluginRegistry engineRegistry) {
this.pluginName = pluginName;
this.connectionName = connectionName;
this.tableName = tableName;
this.config = config;
this.registry = engineRegistry;
this.tokenTable = tokenTable;
this.queryUserName = queryUserName;
}
@JsonProperty("pluginName")
public String pluginName() {
return pluginName;
}
@JsonProperty("connection")
public String connection() {
return connectionName;
}
@JsonProperty("tableName")
public String tableName() {
return tableName;
}
@JsonProperty("config")
public HttpStoragePluginConfig config() {
return config;
}
@JsonProperty("queryUserName")
public String queryUserName() {
return queryUserName;
}
@JsonIgnore
public PersistentTokenTable getTokenTable() {
return tokenTable;
}
@JsonIgnore
public String getURL() {
return connectionName;
}
@JsonIgnore
public StoragePluginRegistry getRegistry() {
return registry;
}
@JsonIgnore
public HttpApiConfig connectionConfig() {
return config.getConnection(connectionName);
}
@Override
public String toString() {
return new PlanStringBuilder(this)
.field("schemaName", pluginName)
.field("database", connectionName)
.field("tableName", tableName)
.field("config", config)
.field("queryUserName", queryUserName)
.toString();
}
}