c8aec3e9e443710387b85b6273f04369ba92fab3
[cps.git] /
1 /*
2  * ============LICENSE_START=======================================================
3  * Copyright (c) 2023-2025 OpenInfra Foundation Europe. All rights reserved.
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.impl.cmnotificationsubscription.cmavc;
22
23 import io.cloudevents.CloudEvent;
24 import io.micrometer.core.annotation.Timed;
25 import lombok.RequiredArgsConstructor;
26 import lombok.extern.slf4j.Slf4j;
27 import org.apache.kafka.clients.consumer.ConsumerRecord;
28 import org.onap.cps.events.EventsProducer;
29 import org.springframework.beans.factory.annotation.Value;
30 import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
31 import org.springframework.kafka.annotation.KafkaListener;
32 import org.springframework.stereotype.Component;
33
34 /**
35  * Listener for AVC events based on CM Subscriptions.
36  */
37 @Component
38 @Slf4j
39 @RequiredArgsConstructor
40 @ConditionalOnProperty(name = "notification.enabled", havingValue = "true", matchIfMissing = true)
41 public class CmAvcEventConsumer {
42
43
44     @Value("${app.ncmp.avc.cm-events-topic}")
45     private String cmEventsTopicName;
46
47     private final EventsProducer<CloudEvent> eventsProducer;
48
49     /**
50      * Incoming Cm AvcEvent in the form of Consumer Record, it will be forwarded as is to a target topic.
51      * The key from incoming record will be used as key for the target topic as well to preserve the message ordering.
52      *
53      * @param cmAvcEventAsConsumerRecord Incoming raw consumer record
54      */
55     @KafkaListener(topics = "${app.dmi.cm-events.topic}",
56             containerFactory = "cloudEventConcurrentKafkaListenerContainerFactory")
57     @Timed(value = "cps.ncmp.cmnotifications.consumeandforward", description = "Time taken to forward CM AVC events")
58     public void consumeAndForward(
59             final ConsumerRecord<String, CloudEvent> cmAvcEventAsConsumerRecord) {
60         final CloudEvent outgoingAvcEvent = cmAvcEventAsConsumerRecord.value();
61         final String outgoingAvcEventKey = cmAvcEventAsConsumerRecord.key();
62         log.debug("Consuming AVC event with key : {} and value : {}", outgoingAvcEventKey, outgoingAvcEvent);
63         eventsProducer.sendCloudEvent(cmEventsTopicName, outgoingAvcEventKey, outgoingAvcEvent);
64     }
65 }