540cf62be5026ed1ba5e38d63d8e952b8345db24
[policy/clamp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2023-2024 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.policy.clamp.acm.runtime.supervision.comm;
22
23 import io.micrometer.core.annotation.Timed;
24 import java.time.Instant;
25 import java.util.List;
26 import java.util.UUID;
27 import lombok.AllArgsConstructor;
28 import org.onap.policy.clamp.acm.runtime.main.parameters.AcRuntimeParameterGroup;
29 import org.onap.policy.clamp.models.acm.concepts.AutomationComposition;
30 import org.onap.policy.clamp.models.acm.concepts.AutomationCompositionDefinition;
31 import org.onap.policy.clamp.models.acm.messages.kafka.participant.ParticipantRestart;
32 import org.onap.policy.clamp.models.acm.utils.AcmUtils;
33 import org.slf4j.Logger;
34 import org.slf4j.LoggerFactory;
35 import org.springframework.stereotype.Component;
36
37 @Component
38 @AllArgsConstructor
39 public class ParticipantRestartPublisher extends AbstractParticipantPublisher<ParticipantRestart> {
40
41     private static final Logger LOGGER = LoggerFactory.getLogger(ParticipantRestartPublisher.class);
42     private final AcRuntimeParameterGroup acRuntimeParameterGroup;
43
44     /**
45      * Send Restart to Participant.
46      *
47      * @param participantId the ParticipantId
48      * @param acmDefinition the AutomationComposition Definition
49      * @param automationCompositions the list of automationCompositions
50      */
51     @Timed(value = "publisher.participant_restart", description = "Participant Restart published")
52     public void send(UUID participantId, AutomationCompositionDefinition acmDefinition,
53             List<AutomationComposition> automationCompositions) {
54
55         var message = new ParticipantRestart();
56         message.setParticipantId(participantId);
57         message.setCompositionId(acmDefinition.getCompositionId());
58         message.setMessageId(UUID.randomUUID());
59         message.setTimestamp(Instant.now());
60         message.setState(acmDefinition.getState());
61         message.setParticipantDefinitionUpdates(
62                 AcmUtils.prepareParticipantRestarting(participantId, acmDefinition,
63                         acRuntimeParameterGroup.getAcmParameters().getToscaElementName()));
64         var toscaServiceTemplateFragment = AcmUtils.getToscaServiceTemplateFragment(acmDefinition.getServiceTemplate());
65
66         for (var automationComposition : automationCompositions) {
67             var restartAc = AcmUtils
68                     .createAcRestart(automationComposition, participantId, toscaServiceTemplateFragment);
69             message.getAutomationcompositionList().add(restartAc);
70         }
71
72         LOGGER.debug("Participant Restart sent {}", message.getMessageId());
73         super.send(message);
74     }
75 }