Bump checkstyle version
[dcaegen2/collectors/hv-ves.git] / sources / hv-collector-core / src / main / kotlin / org / onap / dcae / collectors / veshv / impl / adapters / kafka / KafkaSink.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.kafka
21
22 import org.onap.dcae.collectors.veshv.boundary.Sink
23 import org.onap.dcae.collectors.veshv.model.RoutedMessage
24 import org.onap.dcae.collectors.veshv.model.VesMessage
25 import org.onap.dcae.collectors.veshv.utils.logging.Logger
26 import org.onap.ves.VesEventOuterClass.CommonEventHeader
27 import reactor.core.publisher.Flux
28 import reactor.kafka.sender.KafkaSender
29 import reactor.kafka.sender.SenderRecord
30 import reactor.kafka.sender.SenderResult
31 import java.util.concurrent.atomic.AtomicLong
32
33 /**
34  * @author Piotr Jaszczyk <piotr.jaszczyk@nokia.com>
35  * @since May 2018
36  */
37 internal class KafkaSink(private val sender: KafkaSender<CommonEventHeader, VesMessage>) : Sink {
38     private val sentMessages = AtomicLong(0)
39
40     override fun send(messages: Flux<RoutedMessage>): Flux<RoutedMessage> {
41         val records = messages.map(this::vesToKafkaRecord)
42         val result = sender.send(records)
43                 .doOnNext(::logException)
44                 .filter(::isSuccessful)
45                 .map { it.correlationMetadata() }
46
47         return if (logger.traceEnabled) {
48             result.doOnNext(::logSentMessage)
49         } else {
50             result
51         }
52     }
53
54     private fun vesToKafkaRecord(msg: RoutedMessage): SenderRecord<CommonEventHeader, VesMessage, RoutedMessage> {
55         return SenderRecord.create(
56                 msg.topic,
57                 msg.partition,
58                 System.currentTimeMillis(),
59                 msg.message.header,
60                 msg.message,
61                 msg)
62     }
63
64     private fun logException(senderResult: SenderResult<out Any>) {
65         if (senderResult.exception() != null) {
66             logger.warn(senderResult.exception()) { "Failed to send message to Kafka" }
67         }
68     }
69
70     private fun logSentMessage(sentMsg: RoutedMessage) {
71         logger.trace {
72             val msgNum = sentMessages.incrementAndGet()
73             "Message #$msgNum has been sent to ${sentMsg.topic}:${sentMsg.partition}"
74         }
75     }
76
77     private fun isSuccessful(senderResult: SenderResult<out Any>) = senderResult.exception() == null
78
79     companion object {
80         val logger = Logger(KafkaSink::class)
81     }
82 }