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