blob: 26ed2a0b837dd5198222f6f0cdebab5e1c07cc5a [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.cassandra;
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.logical.AbstractSecuredStoragePluginConfig;
import org.apache.drill.exec.store.security.CredentialProviderUtils;
import org.apache.drill.common.logical.security.CredentialsProvider;
import org.apache.drill.exec.store.security.UsernamePasswordCredentials;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
@JsonTypeName(CassandraStorageConfig.NAME)
public class CassandraStorageConfig extends AbstractSecuredStoragePluginConfig {
public static final String NAME = "cassandra";
private final String host;
private final int port;
@JsonCreator
public CassandraStorageConfig(
@JsonProperty("host") String host,
@JsonProperty("port") int port,
@JsonProperty("username") String username,
@JsonProperty("password") String password,
@JsonProperty("credentialsProvider") CredentialsProvider credentialsProvider) {
super(CredentialProviderUtils.getCredentialsProvider(username, password, credentialsProvider),
credentialsProvider == null);
this.host = host;
this.port = port;
}
public String getHost() {
return host;
}
public int getPort() {
return port;
}
@JsonIgnore
public UsernamePasswordCredentials getUsernamePasswordCredentials() {
return new UsernamePasswordCredentials(credentialsProvider);
}
public String getUsername() {
if (directCredentials) {
return getUsernamePasswordCredentials().getUsername();
}
return null;
}
public String getPassword() {
if (directCredentials) {
return getUsernamePasswordCredentials().getPassword();
}
return null;
}
@JsonIgnore
public Map<String, Object> toConfigMap() {
UsernamePasswordCredentials credentials = getUsernamePasswordCredentials();
Map<String, Object> result = new HashMap<>();
result.put("host", host);
result.put("port", port);
result.put("username", credentials.getUsername());
result.put("password", credentials.getPassword());
return result;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
CassandraStorageConfig that = (CassandraStorageConfig) o;
return Objects.equals(host, that.host)
&& Objects.equals(credentialsProvider, that.credentialsProvider);
}
@Override
public int hashCode() {
return Objects.hash(host, credentialsProvider);
}
}