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