4c846293047452589b911ccf60d94842ee408ef0
[cps.git] / cps-ncmp-service / src / main / java / org / onap / cps / ncmp / api / impl / events / EventsPublisher.java
1 /*
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2022-2023 Nordix Foundation
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *       http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.cps.ncmp.api.impl.events;
22
23 import lombok.RequiredArgsConstructor;
24 import lombok.extern.slf4j.Slf4j;
25 import org.apache.kafka.clients.producer.ProducerRecord;
26 import org.apache.kafka.common.header.Headers;
27 import org.springframework.kafka.core.KafkaTemplate;
28 import org.springframework.kafka.support.SendResult;
29 import org.springframework.stereotype.Service;
30 import org.springframework.util.concurrent.ListenableFuture;
31 import org.springframework.util.concurrent.ListenableFutureCallback;
32
33 /**
34  * EventsPublisher to publish events.
35  */
36
37 @Slf4j
38 @Service
39 @RequiredArgsConstructor
40 public class EventsPublisher<T> {
41
42     private final KafkaTemplate<String, T> eventKafkaTemplate;
43
44     /**
45      * Generic Event publisher.
46      *
47      * @param topicName valid topic name
48      * @param eventKey  message key
49      * @param event     message payload
50      */
51     @Deprecated
52     public void publishEvent(final String topicName, final String eventKey, final T event) {
53         final ListenableFuture<SendResult<String, T>> eventFuture = eventKafkaTemplate.send(topicName, eventKey, event);
54         eventFuture.addCallback(handleCallback(topicName));
55     }
56
57     /**
58      * Generic Event Publisher with headers.
59      *
60      * @param topicName    valid topic name
61      * @param eventKey     message key
62      * @param eventHeaders event headers
63      * @param event        message payload
64      */
65     public void publishEvent(final String topicName, final String eventKey, final Headers eventHeaders, final T event) {
66
67         final ProducerRecord<String, T> producerRecord =
68                 new ProducerRecord<>(topicName, null, eventKey, event, eventHeaders);
69         final ListenableFuture<SendResult<String, T>> eventFuture = eventKafkaTemplate.send(producerRecord);
70         eventFuture.addCallback(handleCallback(topicName));
71     }
72
73     private ListenableFutureCallback<SendResult<String, T>> handleCallback(final String topicName) {
74         return new ListenableFutureCallback<>() {
75             @Override
76             public void onFailure(final Throwable throwable) {
77                 log.error("Unable to publish event to topic : {} due to {}", topicName, throwable.getMessage());
78             }
79
80             @Override
81             public void onSuccess(final SendResult<String, T> sendResult) {
82                 log.debug("Successfully published event to topic : {} , Event : {}",
83                         sendResult.getRecordMetadata().topic(), sendResult.getProducerRecord().value());
84             }
85         };
86     }
87
88 }