Get rid of arrow-effects usage
[dcaegen2/collectors/hv-ves.git] / sources / hv-collector-dcae-app-simulator / src / main / kotlin / org / onap / dcae / collectors / veshv / simulators / dcaeapp / impl / DcaeAppSimulator.kt
1 /*
2  * ============LICENSE_START=======================================================
3  * dcaegen2-collectors-veshv
4  * ================================================================================
5  * Copyright (C) 2018-2019 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.dcaeapp.impl
21
22 import arrow.core.getOrElse
23 import org.onap.dcae.collectors.veshv.utils.arrow.getOption
24 import org.onap.dcae.collectors.veshv.utils.logging.Logger
25 import java.io.InputStream
26 import java.util.concurrent.atomic.AtomicReference
27
28 /**
29  * @author Piotr Jaszczyk <piotr.jaszczyk@nokia.com>
30  * @since August 2018
31  */
32 class DcaeAppSimulator(private val consumerFactory: ConsumerFactory,
33                        private val messageStreamValidation: MessageStreamValidation) {
34     private val consumerState: AtomicReference<ConsumerStateProvider> = AtomicReference()
35
36     fun listenToTopics(topicsString: String) = listenToTopics(extractTopics(topicsString))
37
38     fun listenToTopics(topics: Set<String>) {
39         if (topics.isEmpty() || topics.any { it.isBlank() }) {
40             val message = "Topic list cannot be empty or contain empty elements, topics: $topics"
41             logger.info { message }
42             throw IllegalArgumentException(message)
43         }
44
45         logger.info { "Received new configuration. Creating consumer for topics: $topics" }
46         consumerState.set(consumerFactory.createConsumerForTopics(topics))
47     }
48
49     fun state() = consumerState.getOption().map { it.currentState() }
50
51     fun resetState() = consumerState.getOption().fold({ }, { it.reset() })
52
53
54     fun validate(jsonDescription: InputStream)= messageStreamValidation.validate(jsonDescription, currentMessages())
55
56     private fun currentMessages(): List<ByteArray> =
57             consumerState.getOption()
58                     .map { it.currentState().consumedMessages }
59                     .getOrElse(::emptyList)
60
61     private fun extractTopics(topicsString: String): Set<String> =
62             topicsString.substringAfter("=")
63                     .split(",")
64                     .toSet()
65
66     companion object {
67         private val logger = Logger(DcaeAppSimulator::class)
68     }
69 }