96e65778c69a3d6a87d476f44dc708ec4adf05ed
[dcaegen2/collectors/hv-ves.git] /
1 /*
2  * ============LICENSE_START=======================================================
3  * dcaegen2-collectors-veshv
4  * ================================================================================
5  * Copyright (C) 2018 NOKIA
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.dcae.collectors.veshv.simulators.xnf.config
21
22 import org.apache.commons.cli.CommandLine
23 import org.apache.commons.cli.DefaultParser
24 import org.onap.dcae.collectors.veshv.domain.SecurityConfiguration
25 import org.onap.dcae.collectors.veshv.utils.commandline.ArgBasedConfiguration
26 import org.onap.dcae.collectors.veshv.utils.commandline.CommandLineOption.*
27
28
29 /**
30  * @author Jakub Dudycz <jakub.dudycz@nokia.com>
31  * @since June 2018
32  */
33 internal class ArgConfigurationProvider : ArgBasedConfiguration<SimulatorConfiguration>(DefaultParser()) {
34     override val cmdLineOptionsList = listOf(
35             VES_HV_PORT,
36             VES_HV_HOST,
37             MESSAGES_TO_SEND_AMOUNT,
38             SSL_DISABLE,
39             PRIVATE_KEY_FILE,
40             CERT_FILE,
41             TRUST_CERT_FILE
42     )
43
44     override fun getConfiguration(cmdLine: CommandLine): SimulatorConfiguration {
45         val host = cmdLine.stringValue(VES_HV_HOST, DefaultValues.VES_HV_HOST)
46         val port = cmdLine.intValue(VES_HV_PORT, DefaultValues.VES_HV_PORT)
47         val messagesAmount = cmdLine.longValue(MESSAGES_TO_SEND_AMOUNT, DefaultValues.MESSAGES_AMOUNT)
48         return SimulatorConfiguration(
49                 host,
50                 port,
51                 parseSecurityConfig(cmdLine),
52                 messagesAmount)
53     }
54
55     private fun parseSecurityConfig(cmdLine: CommandLine): SecurityConfiguration {
56         val sslDisable = cmdLine.hasOption(SSL_DISABLE)
57         val pkFile = cmdLine.stringValue(PRIVATE_KEY_FILE, DefaultValues.PRIVATE_KEY_FILE)
58         val certFile = cmdLine.stringValue(CERT_FILE, DefaultValues.CERT_FILE)
59         val trustCertFile = cmdLine.stringValue(TRUST_CERT_FILE, DefaultValues.TRUST_CERT_FILE)
60         return SecurityConfiguration(
61                 sslDisable = sslDisable,
62                 privateKey = stringPathToPath(pkFile),
63                 cert = stringPathToPath(certFile),
64                 trustedCert = stringPathToPath(trustCertFile))
65     }
66
67     internal object DefaultValues {
68         const val MESSAGES_AMOUNT = -1L
69         const val PRIVATE_KEY_FILE = "/etc/ves-hv/client.key"
70         const val CERT_FILE = "/etc/ves-hv/client.crt"
71         const val TRUST_CERT_FILE = "/etc/ves-hv/trust.crt"
72         const val VES_HV_PORT = 6061
73         const val VES_HV_HOST = "veshvcollector"
74     }
75 }