c08df7485118ad6eaeed9786795f05a1878f5999
[dcaegen2/collectors/hv-ves.git] /
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.factory
21
22 import arrow.core.Option
23 import org.onap.dcae.collectors.veshv.boundary.Collector
24 import org.onap.dcae.collectors.veshv.boundary.CollectorProvider
25 import org.onap.dcae.collectors.veshv.boundary.ConfigurationProvider
26 import org.onap.dcae.collectors.veshv.boundary.Metrics
27 import org.onap.dcae.collectors.veshv.boundary.SinkProvider
28 import org.onap.dcae.collectors.veshv.config.api.model.Routing
29 import org.onap.dcae.collectors.veshv.domain.WireFrameDecoder
30 import org.onap.dcae.collectors.veshv.healthcheck.api.HealthDescription
31 import org.onap.dcae.collectors.veshv.healthcheck.api.HealthState
32 import org.onap.dcae.collectors.veshv.impl.Router
33 import org.onap.dcae.collectors.veshv.impl.VesDecoder
34 import org.onap.dcae.collectors.veshv.impl.VesHvCollector
35 import org.onap.dcae.collectors.veshv.impl.wire.WireChunkDecoder
36 import org.onap.dcae.collectors.veshv.model.ClientContext
37 import org.onap.dcae.collectors.veshv.model.ServiceContext
38 import org.onap.dcae.collectors.veshv.utils.arrow.getOption
39 import org.onap.dcae.collectors.veshv.utils.logging.Logger
40 import java.util.concurrent.atomic.AtomicReference
41
42 /**
43  * @author Piotr Jaszczyk <piotr.jaszczyk@nokia.com>
44  * @since May 2018
45  */
46 class CollectorFactory(private val configuration: ConfigurationProvider,
47                        private val sinkProvider: SinkProvider,
48                        private val metrics: Metrics,
49                        private val maxPayloadSizeBytes: Int,
50                        private val healthState: HealthState = HealthState.INSTANCE) {
51
52     fun createVesHvCollectorProvider(): CollectorProvider {
53         val config = AtomicReference<Routing>()
54         configuration()
55                 .doOnNext {
56                     logger.info(ServiceContext::mdc) { "Using updated configuration for new connections" }
57                     healthState.changeState(HealthDescription.HEALTHY)
58                 }
59                 .doOnError {
60                     logger.error(ServiceContext::mdc) { "Failed to acquire configuration ${it.message}" }
61                     logger.debug(ServiceContext::mdc) { "Detailed stack trace: $it" }
62                     healthState.changeState(HealthDescription.DYNAMIC_CONFIGURATION_NOT_FOUND)
63                 }
64                 .subscribe(config::set)
65
66         return object : CollectorProvider {
67             override fun invoke(ctx: ClientContext): Option<Collector> =
68                     config.getOption().map { createVesHvCollector(it, ctx) }
69
70             override fun close() = sinkProvider.close()
71         }
72     }
73
74     private fun createVesHvCollector(routing: Routing, ctx: ClientContext): Collector =
75             VesHvCollector(
76                     clientContext = ctx,
77                     wireChunkDecoder = WireChunkDecoder(WireFrameDecoder(maxPayloadSizeBytes), ctx),
78                     protobufDecoder = VesDecoder(),
79                     router = Router(routing, ctx),
80                     sink = sinkProvider(ctx),
81                     metrics = metrics)
82
83     companion object {
84         private val logger = Logger(CollectorFactory::class)
85     }
86 }
87