From cb08e0822cc44fc7b382e9b48682ab93607f7c43 Mon Sep 17 00:00:00 2001 From: Piotr Jaszczyk Date: Tue, 26 Mar 2019 12:36:10 +0000 Subject: Revert "Read HV-VES healtcheck api port from cmd line" This reverts commit f3d3e6745328b9ec8bb68dfbfb3d3d57aa47b36f. Change-Id: I9d8813484831483812b0f7062d39e3d031dd7083 Signed-off-by: Piotr Jaszczyk Issue-ID: DCAEGEN2-1364 --- .../veshv/config/api/ConfigurationModule.kt | 6 +-- .../veshv/config/impl/ArgHvVesConfiguration.kt | 62 ++-------------------- 2 files changed, 5 insertions(+), 63 deletions(-) (limited to 'sources/hv-collector-configuration/src/main/kotlin/org/onap') diff --git a/sources/hv-collector-configuration/src/main/kotlin/org/onap/dcae/collectors/veshv/config/api/ConfigurationModule.kt b/sources/hv-collector-configuration/src/main/kotlin/org/onap/dcae/collectors/veshv/config/api/ConfigurationModule.kt index 1b9248b5..9f8c552b 100644 --- a/sources/hv-collector-configuration/src/main/kotlin/org/onap/dcae/collectors/veshv/config/api/ConfigurationModule.kt +++ b/sources/hv-collector-configuration/src/main/kotlin/org/onap/dcae/collectors/veshv/config/api/ConfigurationModule.kt @@ -19,7 +19,6 @@ */ package org.onap.dcae.collectors.veshv.config.api -import arrow.core.getOrElse import org.onap.dcae.collectors.veshv.config.api.model.HvVesConfiguration import org.onap.dcae.collectors.veshv.config.api.model.MissingArgumentException import org.onap.dcae.collectors.veshv.config.api.model.ValidationException @@ -30,16 +29,13 @@ import org.onap.dcae.collectors.veshv.utils.arrow.throwOnLeft import reactor.core.publisher.Flux class ConfigurationModule { - private val DEFAULT_HEALTHCHECK_PORT: Int = 6060 private val cmd = ArgHvVesConfiguration() private val configReader = FileConfigurationReader() private val configValidator = ConfigurationValidator() - fun healthCheckPort(args: Array): Int = cmd.parseToInt(args).getOrElse { DEFAULT_HEALTHCHECK_PORT } - fun hvVesConfigurationUpdates(args: Array): Flux = - Flux.just(cmd.parseToFile(args)) + Flux.just(cmd.parse(args)) .throwOnLeft { MissingArgumentException(it.message, it.cause) } .map { it.reader().use(configReader::loadConfig) } .map { configValidator.validate(it) } diff --git a/sources/hv-collector-configuration/src/main/kotlin/org/onap/dcae/collectors/veshv/config/impl/ArgHvVesConfiguration.kt b/sources/hv-collector-configuration/src/main/kotlin/org/onap/dcae/collectors/veshv/config/impl/ArgHvVesConfiguration.kt index 71ed509b..9587d5b0 100644 --- a/sources/hv-collector-configuration/src/main/kotlin/org/onap/dcae/collectors/veshv/config/impl/ArgHvVesConfiguration.kt +++ b/sources/hv-collector-configuration/src/main/kotlin/org/onap/dcae/collectors/veshv/config/impl/ArgHvVesConfiguration.kt @@ -19,72 +19,18 @@ */ package org.onap.dcae.collectors.veshv.config.impl -import arrow.core.Either import arrow.core.Option -import arrow.core.Try -import arrow.core.flatMap import org.apache.commons.cli.CommandLine -import org.apache.commons.cli.CommandLineParser import org.apache.commons.cli.DefaultParser -import org.apache.commons.cli.Options +import org.onap.dcae.collectors.veshv.commandline.ArgBasedConfiguration import org.onap.dcae.collectors.veshv.commandline.CommandLineOption.CONFIGURATION_FILE -import org.onap.dcae.collectors.veshv.commandline.CommandLineOption.HEALTH_CHECK_API_PORT -import org.onap.dcae.collectors.veshv.commandline.WrongArgumentError -import org.onap.dcae.collectors.veshv.commandline.intValue import org.onap.dcae.collectors.veshv.commandline.stringValue import java.io.File -class ArgHvVesConfiguration(private val parser: CommandLineParser = DefaultParser()) { - val cmdLineOptionsList = listOf(CONFIGURATION_FILE, HEALTH_CHECK_API_PORT) +internal class ArgHvVesConfiguration : ArgBasedConfiguration(DefaultParser()) { + override val cmdLineOptionsList = listOf(CONFIGURATION_FILE) - fun getConfiguration(cmdLine: CommandLine): Option = + override fun getConfiguration(cmdLine: CommandLine): Option = cmdLine.stringValue(CONFIGURATION_FILE).map(::File) - fun getHealthcheckPort(cmdLine: CommandLine): Option = - cmdLine.intValue(HEALTH_CHECK_API_PORT) - - lateinit var parsingResult: CommandLine - - fun parseToFile(args: Array): Either { - parseIfEmpty(args) - return Try { parsingResult }.toEither() - .mapLeft { WrongArgumentError(it, cmdLineOptionsList) } - .map(this::getConfiguration) - .flatMap { - it.toEither { - WrongArgumentError( - message = "Unexpected error when parsing command line arguments", - cmdLineOptionsList = cmdLineOptionsList) - } - } - } - - fun parseToInt(args: Array): Either { - parseIfEmpty(args) - return Try { parsingResult }.toEither() - .mapLeft { WrongArgumentError(it, cmdLineOptionsList) } - .map(this::getHealthcheckPort) - .flatMap { - it.toEither { - WrongArgumentError( - message = "Unexpected error when parsing command line arguments", - cmdLineOptionsList = cmdLineOptionsList) - } - } - } - - private fun parseIfEmpty(args: Array) { - if (!this::parsingResult.isInitialized) { - parsingResult = parseArgumentsArray(args) - } - } - - private fun parseArgumentsArray(args: Array) = - cmdLineOptionsList - .map { it.option } - .fold(Options(), Options::addOption) - .let { parser.parse(it, args) } - } - - -- cgit 1.2.3-korg