/** * Copyright 2011-2017 Asakusa Framework Team. * * 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.asakusafw.windgate.core; import java.util.Collections; import java.util.Map; import java.util.Set; import java.util.TreeMap; import java.util.TreeSet; /** * A script describes drivers' behavior. * @since 0.2.2 * @version 0.8.0 */ public class DriverScript { /** * Prefix of property keys about source drivers. */ public static final String PREFIX_SOURCE = "source"; /** * Prefix of property keys about drain drivers. */ public static final String PREFIX_DRAIN = "drain"; private final String resourceName; private final Map<String, String> configuration; private final Set<String> parameterNames; /** * Creates a new instance. * @param resource the name of target resource * @param configuration configurations for this driver * @throws IllegalArgumentException if any parameter is {@code null} */ public DriverScript(String resource, Map<String, String> configuration) { this(resource, configuration, Collections.emptySet()); } /** * Creates a new instance. * @param resource the name of target resource * @param configuration configurations for this driver * @param parameterNames required parameter names * @throws IllegalArgumentException if any parameter is {@code null} * @since 0.8.0 */ public DriverScript(String resource, Map<String, String> configuration, Set<String> parameterNames) { if (resource == null) { throw new IllegalArgumentException("resource must not be null"); //$NON-NLS-1$ } if (configuration == null) { throw new IllegalArgumentException("configuration must not be null"); //$NON-NLS-1$ } if (parameterNames == null) { throw new IllegalArgumentException("parameterNames must not be null"); //$NON-NLS-1$ } this.resourceName = resource; this.configuration = Collections.unmodifiableMap(new TreeMap<>(configuration)); this.parameterNames = Collections.unmodifiableSet(new TreeSet<>(parameterNames)); } /** * Returns the name of target resource. * This represents a {@code resource name} defined in profile. * @return the resource name */ public String getResourceName() { return resourceName; } /** * Returns the configuration for this driver. * @return the configuration */ public Map<String, String> getConfiguration() { return configuration; } /** * Returns the required parameter names. * @return the required parameter names * @since 0.8.0 */ public Set<String> getParameterNames() { return parameterNames; } /** * Driver kind (source / drain). * @since 0.2.2 */ public enum Kind { /** * Source drivers. */ SOURCE(PREFIX_SOURCE) { @Override public Kind opposite() { return DRAIN; } }, /** * Drain drivers. */ DRAIN(PREFIX_DRAIN) { @Override public Kind opposite() { return SOURCE; } }, ; /** * Property key prefix for this kind. */ public final String prefix; Kind(String prefix) { assert prefix != null; this.prefix = prefix; } /** * Returns the opposite kind. * @return the opposite kind */ public abstract Kind opposite(); } }