Add all required and reasonable MDCs
[dcaegen2/collectors/hv-ves.git] / sources / hv-collector-core / src / main / kotlin / org / onap / dcae / collectors / veshv / impl / adapters / ConsulConfigurationProvider.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.impl.adapters
21
22 import org.onap.dcae.collectors.veshv.boundary.ConfigurationProvider
23 import org.onap.dcae.collectors.veshv.healthcheck.api.HealthDescription
24 import org.onap.dcae.collectors.veshv.healthcheck.api.HealthState
25 import org.onap.dcae.collectors.veshv.model.CollectorConfiguration
26 import org.onap.dcae.collectors.veshv.model.ConfigurationProviderParams
27 import org.onap.dcae.collectors.veshv.model.ServiceContext
28 import org.onap.dcae.collectors.veshv.utils.logging.Logger
29 import org.onap.dcae.collectors.veshv.utils.logging.Marker
30 import reactor.core.publisher.Flux
31 import reactor.core.publisher.Mono
32 import reactor.retry.Jitter
33 import reactor.retry.Retry
34 import java.io.StringReader
35 import java.time.Duration
36 import java.util.*
37 import java.util.concurrent.atomic.AtomicReference
38 import javax.json.Json
39 import javax.json.JsonObject
40
41
42 /**
43  * @author Jakub Dudycz <jakub.dudycz@nokia.com>
44  * @since May 2018
45  */
46 internal class ConsulConfigurationProvider(private val http: HttpAdapter,
47                                            private val url: String,
48                                            private val firstRequestDelay: Duration,
49                                            private val requestInterval: Duration,
50                                            private val healthState: HealthState,
51                                            retrySpec: Retry<Any>
52
53 ) : ConfigurationProvider {
54
55     private val lastConfigurationHash: AtomicReference<Int> = AtomicReference(0)
56     private val retry = retrySpec
57             .doOnRetry {
58                 logger.withWarn(ServiceContext::mdc) { log("Could not get fresh configuration", it.exception()) }
59                 healthState.changeState(HealthDescription.RETRYING_FOR_CONSUL_CONFIGURATION)
60             }
61
62     constructor(http: HttpAdapter,
63                 params: ConfigurationProviderParams) : this(
64             http,
65             params.configurationUrl,
66             params.firstRequestDelay,
67             params.requestInterval,
68             HealthState.INSTANCE,
69             Retry.any<Any>()
70                     .retryMax(MAX_RETRIES)
71                     .fixedBackoff(params.requestInterval.dividedBy(BACKOFF_INTERVAL_FACTOR))
72                     .jitter(Jitter.random())
73     )
74
75     override fun invoke(): Flux<CollectorConfiguration> =
76             Flux.interval(firstRequestDelay, requestInterval)
77                     .concatMap { askForConfig() }
78                     .flatMap(::filterDifferentValues)
79                     .map(::parseJsonResponse)
80                     .map(::createCollectorConfiguration)
81                     .retryWhen(retry)
82
83     private fun askForConfig(): Mono<BodyWithInvocationId> = Mono.defer {
84         val invocationId = UUID.randomUUID()
85         http.get(url, invocationId).map { BodyWithInvocationId(it, invocationId) }
86     }
87
88     private fun filterDifferentValues(configuration: BodyWithInvocationId) =
89             configuration.body.let { configurationString ->
90                 hashOf(configurationString).let {
91                     if (it == lastConfigurationHash.get()) {
92                         logger.trace(ServiceContext::mdc, Marker.Invoke(configuration.invocationId)) {
93                             "No change detected in consul configuration"
94                         }
95                         Mono.empty()
96                     } else {
97                         logger.info(ServiceContext::mdc, Marker.Invoke(configuration.invocationId)) {
98                             "Obtained new configuration from consul:\n${configurationString}"
99                         }
100                         lastConfigurationHash.set(it)
101                         Mono.just(configurationString)
102                     }
103                 }
104             }
105
106     private fun hashOf(str: String) = str.hashCode()
107
108     private fun parseJsonResponse(responseString: String): JsonObject =
109             Json.createReader(StringReader(responseString)).readObject()
110
111     private fun createCollectorConfiguration(configuration: JsonObject): CollectorConfiguration {
112         val routing = configuration.getJsonArray("collector.routing")
113
114         return CollectorConfiguration(
115                 kafkaBootstrapServers = configuration.getString("dmaap.kafkaBootstrapServers"),
116                 routing = org.onap.dcae.collectors.veshv.model.routing {
117                     for (route in routing) {
118                         val routeObj = route.asJsonObject()
119                         defineRoute {
120                             fromDomain(routeObj.getString("fromDomain"))
121                             toTopic(routeObj.getString("toTopic"))
122                             withFixedPartitioning()
123                         }
124                     }
125                 }.build()
126         )
127     }
128
129     companion object {
130         private const val MAX_RETRIES = 5L
131         private const val BACKOFF_INTERVAL_FACTOR = 30L
132         private val logger = Logger(ConsulConfigurationProvider::class)
133     }
134
135     private data class BodyWithInvocationId(val body: String, val invocationId: UUID)
136 }