417183fbc637e1d4814db938db2d7546697c5fe6
[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 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 arrow.effects.IO
24 import arrow.effects.fix
25 import arrow.effects.instances.io.monadError.monadError
26 import arrow.typeclasses.bindingCatch
27 import org.onap.dcae.collectors.veshv.utils.arrow.getOption
28 import org.onap.dcae.collectors.veshv.utils.logging.Logger
29 import java.io.InputStream
30 import java.util.concurrent.atomic.AtomicReference
31
32 /**
33  * @author Piotr Jaszczyk <piotr.jaszczyk@nokia.com>
34  * @since August 2018
35  */
36 class DcaeAppSimulator(private val consumerFactory: ConsumerFactory,
37                        private val messageStreamValidation: MessageStreamValidation) {
38     private val consumerState: AtomicReference<ConsumerStateProvider> = AtomicReference()
39
40     fun listenToTopics(topicsString: String) = listenToTopics(extractTopics(topicsString))
41
42     fun listenToTopics(topics: Set<String>): IO<Unit> = IO.monadError().bindingCatch {
43         if (topics.isEmpty() || topics.any { it.isBlank() }) {
44             val message = "Topic list cannot be empty or contain empty elements, topics: $topics"
45             logger.info { message }
46             throw IllegalArgumentException(message)
47         }
48
49         logger.info("Received new configuration. Creating consumer for topics: $topics")
50         consumerState.set(consumerFactory.createConsumerForTopics(topics).bind())
51     }.fix()
52
53     fun state() = consumerState.getOption().map { it.currentState() }
54
55     fun resetState(): IO<Unit> = consumerState.getOption().fold(
56             { IO.unit },
57             { it.reset() }
58     )
59
60     fun validate(jsonDescription: InputStream) = messageStreamValidation.validate(jsonDescription, currentMessages())
61
62     private fun currentMessages(): List<ByteArray> =
63             consumerState.getOption()
64                     .map { it.currentState().consumedMessages }
65                     .getOrElse(::emptyList)
66
67     private fun extractTopics(topicsString: String): Set<String> =
68             topicsString.substringAfter("=")
69                     .split(",")
70                     .toSet()
71
72     companion object {
73         private val logger = Logger(DcaeAppSimulator::class)
74     }
75 }