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

org.iris_events.asyncapi.api.AsyncApiConfigImpl Maven / Gradle / Ivy

There is a newer version: 6.1.8
Show newest version
/**
 * Copyright 2019 Red Hat, Inc, and individual contributors.
 * 

* 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 org.iris_events.asyncapi.api; import java.util.Set; import java.util.regex.Pattern; import org.eclipse.microprofile.config.Config; import org.iris_events.asyncapi.api.util.ConfigUtil; import org.iris_events.asyncapi.spec.AAIConfig; /** * Implementation of the {@link AsyncApiConfig} interface that gets config information from a * standard MP Config object. * * @author [email protected] */ public class AsyncApiConfigImpl implements AsyncApiConfig { private Config config; private String modelReader; private String filter; private Boolean scanDisable; private Set scanPackages; private Set scanClasses; private Set scanExcludePackages; private Set scanExcludeClasses; private Set servers; private Boolean scanDependenciesDisable; private Set scanDependenciesJars; private Boolean schemaReferencesEnable; private String customSchemaRegistryClass; private Set excludeFromSchemas; private String projectVersion; /** * Constructor. * * @param config MicroProfile Config instance */ public AsyncApiConfigImpl(Config config) { this.config = config; } /** * @return the MP config instance */ protected Config getConfig() { // We cannot use ConfigProvider.getConfig() as the archive is not deployed yet - TCCL cannot be set return config; } /** * @see AsyncApiConfig#modelReader() */ @Override public String modelReader() { if (modelReader != null) { return modelReader; } modelReader = getConfig().getOptionalValue(AAIConfig.MODEL_READER, String.class).orElse(null); return modelReader; } /** * @see AsyncApiConfig#filter() */ @Override public String filter() { if (filter != null) { return filter; } filter = getConfig().getOptionalValue(AAIConfig.FILTER, String.class).orElse(null); return filter; } /** * @see AsyncApiConfig#scanDisable() */ @Override public boolean scanDisable() { if (scanDisable != null) { return scanDisable; } scanDisable = getConfig().getOptionalValue(AAIConfig.SCAN_DISABLE, Boolean.class).orElse(false); return scanDisable; } /** * @return * @see AsyncApiConfig#scanPackages() */ @Override public Set scanPackages() { if (scanPackages != null) { return scanPackages; } String packages = getConfig().getOptionalValue(AAIConfig.SCAN_PACKAGES, String.class).orElse(null); scanPackages = ConfigUtil.asCsvSet(packages); return scanPackages; } /** * @return * @see AsyncApiConfig#scanPackages() */ @Override public Pattern scanPackagesPattern() { return ConfigUtil.patternFromSet(scanPackages()); } /** * @see AsyncApiConfig#scanClasses() */ @Override public Set scanClasses() { if (scanClasses != null) { return scanClasses; } String classes = getConfig().getOptionalValue(AAIConfig.SCAN_CLASSES, String.class).orElse(null); scanClasses = ConfigUtil.asCsvSet(classes); return scanClasses; } public Pattern scanClassesPattern() { return ConfigUtil.patternFromSet(scanClasses()); } /** * @see AsyncApiConfig#scanExcludePackages() */ @Override public Set scanExcludePackages() { if (scanExcludePackages != null) { return scanExcludePackages; } String packages = getConfig().getOptionalValue(AAIConfig.SCAN_EXCLUDE_PACKAGES, String.class).orElse(null); scanExcludePackages = ConfigUtil.asCsvSet(packages); return scanExcludePackages; } @Override public Pattern scanExcludePackagesPattern() { return ConfigUtil.patternFromSet(scanExcludePackages()); } /** * @see AsyncApiConfig#scanExcludeClasses() */ @Override public Set scanExcludeClasses() { if (scanExcludeClasses != null) { return scanExcludeClasses; } String classes = getConfig().getOptionalValue(AAIConfig.SCAN_EXCLUDE_CLASSES, String.class).orElse(null); scanExcludeClasses = ConfigUtil.asCsvSet(classes); return scanExcludeClasses; } @Override public Pattern scanExcludeClassesPattern() { return ConfigUtil.patternFromSet(scanExcludeClasses()); } /** * @see AsyncApiConfig#servers() */ @Override public Set servers() { if (servers != null) { return servers; } String theServers = getConfig().getOptionalValue(AAIConfig.SERVERS, String.class).orElse(null); servers = ConfigUtil.asCsvSet(theServers); return servers; } /** * @see AsyncApiConfig#scanDependenciesDisable() */ @Override public boolean scanDependenciesDisable() { if (scanDependenciesDisable != null) { return scanDependenciesDisable; } scanDependenciesDisable = getConfig().getOptionalValue(AsyncApiConstants.SCAN_DEPENDENCIES_DISABLE, Boolean.class) .orElse(false); return scanDependenciesDisable; } /** * @see AsyncApiConfig#scanDependenciesJars() */ @Override public Set scanDependenciesJars() { if (scanDependenciesJars != null) { return scanDependenciesJars; } String classes = getConfig().getOptionalValue(AsyncApiConstants.SCAN_DEPENDENCIES_JARS, String.class).orElse(null); scanDependenciesJars = ConfigUtil.asCsvSet(classes); return scanDependenciesJars; } @Override public boolean schemaReferencesEnable() { if (schemaReferencesEnable != null) { return schemaReferencesEnable; } schemaReferencesEnable = getConfig().getOptionalValue(AsyncApiConstants.SCHEMA_REFERENCES_ENABLE, Boolean.class) .orElse(false); return schemaReferencesEnable; } @Override public String customSchemaRegistryClass() { if (customSchemaRegistryClass != null) { return customSchemaRegistryClass; } customSchemaRegistryClass = getConfig() .getOptionalValue(AsyncApiConstants.CUSTOM_SCHEMA_REGISTRY_CLASS, String.class).orElse(null); return customSchemaRegistryClass; } @Override public Set excludeFromSchemas() { if (excludeFromSchemas != null) { return excludeFromSchemas; } String packages = getConfig() .getOptionalValue(AsyncApiConstants.EXCLUDE_FROM_SCHEMAS, String.class).orElse(null); excludeFromSchemas = ConfigUtil.asCsvSet(packages); return excludeFromSchemas; } @Override public String projectVersion() { if (projectVersion != null) { return projectVersion; } projectVersion = getConfig().getOptionalValue(AsyncApiConstants.PROJECT_VERSION, String.class).orElse(null); return projectVersion; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy