Class AbstractConfig

    • Constructor Detail

      • AbstractConfig

        public AbstractConfig​(ConfigDef definition,
                              Map<?,​?> originals,
                              Map<String,​?> configProviderProps,
                              boolean doLog)
        Construct a configuration with a ConfigDef and the configuration properties, which can include properties for zero or more ConfigProvider that will be used to resolve variables in configuration property values. The originals is a name-value pair configuration properties and optional config provider configs. The value of the configuration can be a variable as defined below or the actual value. This constructor will first instantiate the ConfigProviders using the config provider configs, then it will find all the variables in the values of the originals configurations, attempt to resolve the variables using the named ConfigProviders, and then parse and validate the configurations. ConfigProvider configs can be passed either as configs in the originals map or in the separate configProviderProps map. If config providers properties are passed in the configProviderProps any config provider properties in originals map will be ignored. If ConfigProvider properties are not provided, the constructor will skip the variable substitution step and will simply validate and parse the supplied configuration. The "config.providers" configuration property and all configuration properties that begin with the "config.providers." prefix are reserved. The "config.providers" configuration property specifies the names of the config providers, and properties that begin with the "config.providers.." prefix correspond to the properties for that named provider. For example, the "config.providers..class" property specifies the name of the ConfigProvider implementation class that should be used for the provider. The keys for ConfigProvider configs in both originals and configProviderProps will start with the above mentioned "config.providers." prefix. Variables have the form "${providerName:[path:]key}", where "providerName" is the name of a ConfigProvider, "path" is an optional string, and "key" is a required string. This variable is resolved by passing the "key" and optional "path" to a ConfigProvider with the specified name, and the result from the ConfigProvider is then used in place of the variable. Variables that cannot be resolved by the AbstractConfig constructor will be left unchanged in the configuration.
        Parameters:
        definition - the definition of the configurations; may not be null
        originals - the configuration properties plus any optional config provider properties;
        configProviderProps - the map of properties of config providers which will be instantiated by the constructor to resolve any variables in originals; may be null or empty
        doLog - whether the configurations should be logged
      • AbstractConfig

        public AbstractConfig​(ConfigDef definition,
                              Map<?,​?> originals)
        Construct a configuration with a ConfigDef and the configuration properties, which can include properties for zero or more ConfigProvider that will be used to resolve variables in configuration property values.
        Parameters:
        definition - the definition of the configurations; may not be null
        originals - the configuration properties plus any optional config provider properties; may not be null
      • AbstractConfig

        public AbstractConfig​(ConfigDef definition,
                              Map<?,​?> originals,
                              boolean doLog)
        Construct a configuration with a ConfigDef and the configuration properties, which can include properties for zero or more ConfigProvider that will be used to resolve variables in configuration property values.
        Parameters:
        definition - the definition of the configurations; may not be null
        originals - the configuration properties plus any optional config provider properties; may not be null
        doLog - whether the configurations should be logged
    • Method Detail

      • postProcessParsedConfig

        protected Map<String,​Object> postProcessParsedConfig​(Map<String,​Object> parsedValues)
        Called directly after user configs got parsed (and thus default values got set). This allows to change default values for "secondary defaults" if required.
        Parameters:
        parsedValues - unmodifiable map of current configuration
        Returns:
        a map of updates that should be applied to the configuration (will be validated to prevent bad updates)
      • ignore

        public void ignore​(String key)
      • documentationOf

        public String documentationOf​(String key)
      • getPassword

        public org.apache.kafka.common.config.types.Password getPassword​(String key)
      • originalsStrings

        public Map<String,​String> originalsStrings()
        Get all the original settings, ensuring that all values are of type String.
        Returns:
        the original settings
        Throws:
        ClassCastException - if any of the values are not strings
      • originalsWithPrefix

        public Map<String,​Object> originalsWithPrefix​(String prefix)
        Gets all original settings with the given prefix, stripping the prefix before adding it to the output.
        Parameters:
        prefix - the prefix to use as a filter
        Returns:
        a Map containing the settings with the prefix
      • originalsWithPrefix

        public Map<String,​Object> originalsWithPrefix​(String prefix,
                                                            boolean strip)
        Gets all original settings with the given prefix.
        Parameters:
        prefix - the prefix to use as a filter
        strip - strip the prefix before adding to the output if set true
        Returns:
        a Map containing the settings with the prefix
      • valuesWithPrefixOverride

        public Map<String,​Object> valuesWithPrefixOverride​(String prefix)
        Put all keys that do not start with prefix and their parsed values in the result map and then put all the remaining keys with the prefix stripped and their parsed values in the result map. This is useful if one wants to allow prefixed configs to override default ones.

        Two forms of prefixes are supported:

        • listener.name.{listenerName}.some.prop: If the provided prefix is `listener.name.{listenerName}.`, the key `some.prop` with the value parsed using the definition of `some.prop` is returned.
        • listener.name.{listenerName}.{mechanism}.some.prop: If the provided prefix is `listener.name.{listenerName}.`, the key `{mechanism}.some.prop` with the value parsed using the definition of `some.prop` is returned. This is used to provide per-mechanism configs for a broker listener (e.g sasl.jaas.config)

      • valuesWithPrefixAllOrNothing

        public Map<String,​Object> valuesWithPrefixAllOrNothing​(String prefix)
        If at least one key with prefix exists, all prefixed values will be parsed and put into map. If no value with prefix exists all unprefixed values will be returned. This is useful if one wants to allow prefixed configs to override default ones, but wants to use either only prefixed configs or only regular configs, but not mix them.
      • nonInternalValues

        public Map<String,​?> nonInternalValues()
      • logUnused

        public void logUnused()
        Log warnings for any unused configurations
      • getConfiguredInstance

        public <T> T getConfiguredInstance​(String key,
                                           Class<T> t)
        Get a configured instance of the give class specified by the given configuration key. If the object implements Configurable configure it using the configuration.
        Parameters:
        key - The configuration key for the class
        t - The interface the class should implement
        Returns:
        A configured instance of the class
      • getConfiguredInstance

        public <T> T getConfiguredInstance​(String key,
                                           Class<T> t,
                                           Map<String,​Object> configOverrides)
        Get a configured instance of the give class specified by the given configuration key. If the object implements Configurable configure it using the configuration.
        Parameters:
        key - The configuration key for the class
        t - The interface the class should implement
        configOverrides - override origin configs
        Returns:
        A configured instance of the class
      • getConfiguredInstances

        public <T> List<T> getConfiguredInstances​(String key,
                                                  Class<T> t)
        Get a list of configured instances of the given class specified by the given configuration key. The configuration may specify either null or an empty string to indicate no configured instances. In both cases, this method returns an empty list to indicate no configured instances.
        Parameters:
        key - The configuration key for the class
        t - The interface the class should implement
        Returns:
        The list of configured instances
      • getConfiguredInstances

        public <T> List<T> getConfiguredInstances​(String key,
                                                  Class<T> t,
                                                  Map<String,​Object> configOverrides)
        Get a list of configured instances of the given class specified by the given configuration key. The configuration may specify either null or an empty string to indicate no configured instances. In both cases, this method returns an empty list to indicate no configured instances.
        Parameters:
        key - The configuration key for the class
        t - The interface the class should implement
        configOverrides - Configuration overrides to use.
        Returns:
        The list of configured instances
      • getConfiguredInstances

        public <T> List<T> getConfiguredInstances​(List<String> classNames,
                                                  Class<T> t,
                                                  Map<String,​Object> configOverrides)
        Get a list of configured instances of the given class specified by the given configuration key. The configuration may specify either null or an empty string to indicate no configured instances. In both cases, this method returns an empty list to indicate no configured instances.
        Parameters:
        classNames - The list of class names of the instances to create
        t - The interface the class should implement
        configOverrides - Configuration overrides to use.
        Returns:
        The list of configured instances
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object