aboutsummaryrefslogtreecommitdiffstats
path: root/sources/hv-collector-configuration/src/main/kotlin/org/onap/dcae/collectors/veshv/config/impl/CbsClientAdapter.kt
blob: 1f5c0c237471e62d5ffb2388bc00087a62e31ca1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
 * ============LICENSE_START=======================================================
 * dcaegen2-collectors-veshv
 * ================================================================================
 * Copyright (C) 2019-2020 NOKIA
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */
package org.onap.dcae.collectors.veshv.config.impl

import org.onap.dcae.collectors.veshv.config.api.ConfigurationStateListener
import org.onap.dcae.collectors.veshv.utils.logging.Logger
import org.onap.dcae.collectors.veshv.utils.logging.MappedDiagnosticContext
import org.onap.dcae.collectors.veshv.utils.rx.nextWithVariableInterval
import org.onap.dcaegen2.services.sdk.rest.services.cbs.client.api.CbsClient
import org.onap.dcaegen2.services.sdk.rest.services.cbs.client.api.CbsRequests
import org.onap.dcaegen2.services.sdk.rest.services.cbs.client.model.CbsRequest
import org.onap.dcaegen2.services.sdk.rest.services.model.logging.RequestDiagnosticContext
import reactor.core.publisher.Mono
import reactor.retry.Retry
import reactor.util.retry.Retry.withThrowable
import java.time.Duration
import java.util.concurrent.atomic.AtomicReference


internal class CbsClientAdapter(private val cbsClientMono: Mono<CbsClient>,
                                private val firstRequestDelay: Duration,
                                private val configurationStateListener: ConfigurationStateListener,
                                private val mdc: MappedDiagnosticContext,
                                retrySpec: Retry<Any>) {

    private val requestInterval = AtomicReference<Duration>(Duration.ZERO)
    private val retry = retrySpec.doOnRetry {
        logger.withWarn(mdc) {
            log("Exception while creating CBS client, retrying. Reason: ${it.exception().localizedMessage}")
        }
        configurationStateListener.retrying()
    }

    fun configurationUpdates() = cbsClientMono
            .doOnNext {
                logger.info(mdc) {
                    "CBS client successfully created, first request will be sent in ${firstRequestDelay.seconds} s"
                }
            }
            .retryWhen(withThrowable(retry))
            .delayElement(firstRequestDelay)
            .flatMapMany(::toPeriodicalConfigurations)
            .distinctUntilChanged()

    fun updateCbsInterval(intervalUpdate: Duration) = requestInterval.set(intervalUpdate).also {
        logger.debug(mdc) { "CBS request interval changed to: ${intervalUpdate.seconds} s" }
    }

    private fun toPeriodicalConfigurations(cbsClient: CbsClient) =
            Mono.defer { cbsClient.get(configurationRequest.withNewInvocationId()) }
                    .repeatWhen { it.nextWithVariableInterval(requestInterval::get) }

    companion object {
        private val logger = Logger(CbsClientAdapter::class)

        private val configurationRequest: CbsRequest = CbsRequests.getConfiguration(RequestDiagnosticContext.create())
    }
}