2ce0f42fe0db72f8ddcd6aeecab360f34184afaa
[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.impl.adapters.kafka
21
22 import arrow.effects.IO
23 import org.onap.dcae.collectors.veshv.boundary.Sink
24 import org.onap.dcae.collectors.veshv.impl.adapters.ClientContextLogging.withDebug
25 import org.onap.dcae.collectors.veshv.model.ClientContext
26 import org.onap.dcae.collectors.veshv.model.ConsumedMessage
27 import org.onap.dcae.collectors.veshv.model.FailedToConsumeMessage
28 import org.onap.dcae.collectors.veshv.model.MessageDropCause
29 import org.onap.dcae.collectors.veshv.domain.RoutedMessage
30 import org.onap.dcae.collectors.veshv.model.SuccessfullyConsumedMessage
31 import org.onap.dcae.collectors.veshv.domain.VesMessage
32 import org.onap.dcae.collectors.veshv.utils.logging.Logger
33 import org.onap.dcae.collectors.veshv.utils.logging.Marker
34 import org.onap.ves.VesEventOuterClass.CommonEventHeader
35 import reactor.core.publisher.Flux
36 import reactor.kafka.sender.KafkaSender
37 import reactor.kafka.sender.SenderRecord
38
39 /**
40  * @author Piotr Jaszczyk <piotr.jaszczyk@nokia.com>
41  * @since May 2018
42  */
43 internal class KafkaPublisher(private val sender: KafkaSender<CommonEventHeader, VesMessage>,
44                               private val ctx: ClientContext) : Sink {
45
46     override fun send(messages: Flux<RoutedMessage>): Flux<ConsumedMessage> =
47             messages.map(::vesToKafkaRecord)
48                     .compose { sender.send(it) }
49                     .map {
50                         val msg = it.correlationMetadata()
51                         if (it.exception() == null) {
52                             logger.trace(ctx::fullMdc, Marker.Invoke()) {
53                                 "Message sent to Kafka with metadata: ${it.recordMetadata()}"
54                             }
55                             SuccessfullyConsumedMessage(msg)
56                         } else {
57                             logger.warn(ctx::fullMdc, Marker.Invoke()) {
58                                 "Failed to send message to Kafka. Reason: ${it.exception().message}"
59                             }
60                             logger.withDebug(ctx) { log("Kafka send failure details", it.exception()) }
61                             FailedToConsumeMessage(msg, it.exception(), MessageDropCause.KAFKA_FAILURE)
62                         }
63                     }
64
65     private fun vesToKafkaRecord(routed: RoutedMessage): SenderRecord<CommonEventHeader, VesMessage, RoutedMessage> =
66             SenderRecord.create(
67                     routed.targetTopic,
68                     routed.partition.orNull(),
69                     FILL_TIMESTAMP_LATER,
70                     routed.message.header,
71                     routed.message,
72                     routed)
73
74     companion object {
75         private val FILL_TIMESTAMP_LATER: Long? = null
76         private val logger = Logger(KafkaPublisher::class)
77     }
78 }