All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.datastax.oss.driver.internal.core.config.map.MapBasedDriverConfig Maven / Gradle / Ivy

The newest version!
/*
 * Copyright DataStax, Inc.
 *
 * 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.datastax.oss.driver.internal.core.config.map;

import com.datastax.oss.driver.api.core.config.DriverConfig;
import com.datastax.oss.driver.api.core.config.DriverExecutionProfile;
import com.datastax.oss.driver.api.core.config.DriverOption;
import edu.umd.cs.findbugs.annotations.NonNull;
import java.util.Collections;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;

/** @see MapBasedDriverConfigLoader */
public class MapBasedDriverConfig implements DriverConfig {

  private final Map> optionsMap;
  private final Map profiles = new ConcurrentHashMap<>();

  public MapBasedDriverConfig(Map> optionsMap) {
    this.optionsMap = optionsMap;
    if (!optionsMap.containsKey(DriverExecutionProfile.DEFAULT_NAME)) {
      throw new IllegalArgumentException(
          "The options map must contain a profile named " + DriverExecutionProfile.DEFAULT_NAME);
    }
    createMissingProfiles();
  }

  @NonNull
  @Override
  public DriverExecutionProfile getProfile(@NonNull String profileName) {
    return profiles.computeIfAbsent(profileName, this::newProfile);
  }

  @NonNull
  @Override
  public Map getProfiles() {
    // Refresh in case profiles were added to the backing map
    createMissingProfiles();
    return Collections.unmodifiableMap(profiles);
  }

  private void createMissingProfiles() {
    for (Map.Entry> entry : optionsMap.entrySet()) {
      String profileName = entry.getKey();
      if (!profiles.containsKey(profileName)) {
        profiles.put(profileName, newProfile(profileName));
      }
    }
  }

  private MapBasedDriverExecutionProfile newProfile(String profileName) {
    return new MapBasedDriverExecutionProfile(optionsMap, profileName);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy