aboutsummaryrefslogtreecommitdiffstats
path: root/participant/participant-intermediary/src/main/java/org/onap/policy/clamp/acm/participant/intermediary/handler/AutomationCompositionHandler.java
blob: c7cb54893fad6ae81bc08f78695e33b0764b9e05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
/*-
 * ============LICENSE_START=======================================================
 *  Copyright (C) 2021-2023 Nordix Foundation.
 *  Modifications Copyright (C) 2021 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * SPDX-License-Identifier: Apache-2.0
 * ============LICENSE_END=========================================================
 */

package org.onap.policy.clamp.acm.participant.intermediary.handler;

import java.util.HashMap;
import java.util.List;
import java.util.UUID;
import org.onap.policy.clamp.acm.participant.intermediary.comm.ParticipantMessagePublisher;
import org.onap.policy.clamp.models.acm.concepts.AcElementDeploy;
import org.onap.policy.clamp.models.acm.concepts.AcTypeState;
import org.onap.policy.clamp.models.acm.concepts.AutomationComposition;
import org.onap.policy.clamp.models.acm.concepts.AutomationCompositionElementDefinition;
import org.onap.policy.clamp.models.acm.concepts.DeployState;
import org.onap.policy.clamp.models.acm.concepts.LockState;
import org.onap.policy.clamp.models.acm.concepts.ParticipantDeploy;
import org.onap.policy.clamp.models.acm.concepts.ParticipantRestartAc;
import org.onap.policy.clamp.models.acm.concepts.ParticipantUtils;
import org.onap.policy.clamp.models.acm.concepts.StateChangeResult;
import org.onap.policy.clamp.models.acm.messages.dmaap.participant.AutomationCompositionDeploy;
import org.onap.policy.clamp.models.acm.messages.dmaap.participant.AutomationCompositionDeployAck;
import org.onap.policy.clamp.models.acm.messages.dmaap.participant.AutomationCompositionStateChange;
import org.onap.policy.clamp.models.acm.messages.dmaap.participant.ParticipantMessageType;
import org.onap.policy.clamp.models.acm.messages.dmaap.participant.PropertiesUpdate;
import org.onap.policy.clamp.models.acm.messages.rest.instantiation.DeployOrder;
import org.onap.policy.clamp.models.acm.messages.rest.instantiation.LockOrder;
import org.onap.policy.clamp.models.acm.persistence.provider.AcInstanceStateResolver;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Component;

/*
 * This class is responsible for managing the state of all automation compositions in the participant.
 */
@Component
public class AutomationCompositionHandler {
    private static final Logger LOGGER = LoggerFactory.getLogger(AutomationCompositionHandler.class);

    private final CacheProvider cacheProvider;
    private final ParticipantMessagePublisher publisher;
    private final ThreadHandler listener;
    private final AcInstanceStateResolver acInstanceStateResolver;

    /**
     * Constructor, set the participant ID and messageSender.
     *
     * @param cacheProvider the Cache Provider
     * @param publisher the ParticipantMessage Publisher
     * @param listener the ThreadHandler Listener
     */
    public AutomationCompositionHandler(CacheProvider cacheProvider, ParticipantMessagePublisher publisher,
            ThreadHandler listener) {
        this.cacheProvider = cacheProvider;
        this.publisher = publisher;
        this.listener = listener;
        this.acInstanceStateResolver = new AcInstanceStateResolver();
    }

    /**
     * Handle a automation composition state change message.
     *
     * @param stateChangeMsg the state change message
     */
    public void handleAutomationCompositionStateChange(AutomationCompositionStateChange stateChangeMsg) {
        if (stateChangeMsg.getAutomationCompositionId() == null) {
            return;
        }

        var automationComposition = cacheProvider.getAutomationComposition(stateChangeMsg.getAutomationCompositionId());

        if (automationComposition == null) {
            if (DeployOrder.DELETE.equals(stateChangeMsg.getDeployOrderedState())) {
                var automationCompositionAck = new AutomationCompositionDeployAck(
                        ParticipantMessageType.AUTOMATION_COMPOSITION_STATECHANGE_ACK);
                automationCompositionAck.setParticipantId(cacheProvider.getParticipantId());
                automationCompositionAck.setMessage("Already deleted or never used");
                automationCompositionAck.setResult(true);
                automationCompositionAck.setStateChangeResult(StateChangeResult.NO_ERROR);
                automationCompositionAck.setResponseTo(stateChangeMsg.getMessageId());
                automationCompositionAck.setAutomationCompositionId(stateChangeMsg.getAutomationCompositionId());
                publisher.sendAutomationCompositionAck(automationCompositionAck);
            } else {
                LOGGER.debug("Automation composition {} does not use this participant",
                        stateChangeMsg.getAutomationCompositionId());
            }
            return;
        }

        if (!checkConsistantOrderState(automationComposition, stateChangeMsg.getDeployOrderedState(),
                stateChangeMsg.getLockOrderedState())) {
            LOGGER.warn("Not Consistant OrderState Automation composition {}",
                    stateChangeMsg.getAutomationCompositionId());
            return;
        }

        if (DeployOrder.NONE.equals(stateChangeMsg.getDeployOrderedState())) {
            handleLockOrderState(stateChangeMsg.getMessageId(), automationComposition,
                    stateChangeMsg.getLockOrderedState(), stateChangeMsg.getStartPhase());
        } else {
            handleDeployOrderState(stateChangeMsg.getMessageId(), automationComposition,
                    stateChangeMsg.getDeployOrderedState(), stateChangeMsg.getStartPhase());
        }
    }

    private boolean checkConsistantOrderState(AutomationComposition automationComposition, DeployOrder deployOrder,
            LockOrder lockOrder) {
        if (DeployOrder.UPDATE.equals(deployOrder)) {
            return true;
        }
        return acInstanceStateResolver.resolve(deployOrder, lockOrder, automationComposition.getDeployState(),
                automationComposition.getLockState(), automationComposition.getStateChangeResult()) != null;
    }

    /**
     * Method to handle state changes.
     *
     * @param messageId the messageId
     * @param automationComposition participant response
     * @param orderedState automation composition ordered state
     * @param startPhaseMsg startPhase from message
     */
    private void handleDeployOrderState(UUID messageId, final AutomationComposition automationComposition,
            DeployOrder orderedState, Integer startPhaseMsg) {

        switch (orderedState) {
            case UNDEPLOY:
                handleUndeployState(messageId, automationComposition, startPhaseMsg);
                break;
            case DELETE:
                handleDeleteState(messageId, automationComposition, startPhaseMsg);
                break;

            default:
                LOGGER.error("StateChange message has no state, state is null {}", automationComposition.getKey());
                break;
        }
    }

    /**
     * Method to handle state changes.
     *
     * @param messageId the messageId
     * @param automationComposition participant response
     * @param orderedState automation composition ordered state
     * @param startPhaseMsg startPhase from message
     */
    private void handleLockOrderState(UUID messageId, final AutomationComposition automationComposition,
            LockOrder orderedState, Integer startPhaseMsg) {

        switch (orderedState) {
            case LOCK:
                handleLockState(messageId, automationComposition, startPhaseMsg);
                break;
            case UNLOCK:
                handleUnlockState(messageId, automationComposition, startPhaseMsg);
                break;
            default:
                LOGGER.error("StateChange message has no state, state is null {}", automationComposition.getKey());
                break;
        }
    }

    /**
     * Handle a automation composition properties update message.
     *
     * @param updateMsg the properties update message
     */
    public void handleAcPropertyUpdate(PropertiesUpdate updateMsg) {

        if (updateMsg.getParticipantUpdatesList().isEmpty()) {
            LOGGER.warn("No AutomationCompositionElement updates in message {}",
                    updateMsg.getAutomationCompositionId());
            return;
        }

        for (var participantDeploy : updateMsg.getParticipantUpdatesList()) {
            if (cacheProvider.getParticipantId().equals(participantDeploy.getParticipantId())) {

                updateExistingElementsOnThisParticipant(updateMsg.getAutomationCompositionId(), participantDeploy);

                callParticipantUpdateProperty(updateMsg.getMessageId(), participantDeploy.getAcElementList(),
                        updateMsg.getAutomationCompositionId());
            }
        }
    }

    /**
     * Handle a automation composition Deploy message.
     *
     * @param deployMsg the Deploy message
     */
    public void handleAutomationCompositionDeploy(AutomationCompositionDeploy deployMsg) {

        if (deployMsg.getParticipantUpdatesList().isEmpty()) {
            LOGGER.warn("No AutomationCompositionElement deploy in message {}", deployMsg.getAutomationCompositionId());
            return;
        }

        for (var participantDeploy : deployMsg.getParticipantUpdatesList()) {
            if (cacheProvider.getParticipantId().equals(participantDeploy.getParticipantId())) {
                if (deployMsg.isFirstStartPhase()) {
                    cacheProvider.initializeAutomationComposition(deployMsg.getCompositionId(),
                            deployMsg.getAutomationCompositionId(), participantDeploy);
                }
                callParticipanDeploy(deployMsg.getMessageId(), participantDeploy.getAcElementList(),
                        deployMsg.getStartPhase(), deployMsg.getAutomationCompositionId());
            }
        }
    }

    private void callParticipanDeploy(UUID messageId, List<AcElementDeploy> acElements, Integer startPhaseMsg,
            UUID instanceId) {
        for (var element : acElements) {
            var commonProperties = cacheProvider.getCommonProperties(instanceId, element.getId());
            int startPhase = ParticipantUtils.findStartPhase(commonProperties);
            if (startPhaseMsg.equals(startPhase)) {
                var map = new HashMap<>(commonProperties);
                map.putAll(element.getProperties());
                listener.deploy(messageId, instanceId, element, map);
            }
        }
    }

    private void callParticipantUpdateProperty(UUID messageId, List<AcElementDeploy> acElements, UUID instanceId) {
        for (var element : acElements) {
            listener.update(messageId, instanceId, element, element.getProperties());
        }
    }

    private void updateExistingElementsOnThisParticipant(UUID instanceId, ParticipantDeploy participantDeploy) {
        var acElementList = cacheProvider.getAutomationComposition(instanceId).getElements();
        for (var element : participantDeploy.getAcElementList()) {
            var acElement = acElementList.get(element.getId());
            acElement.getProperties().putAll(element.getProperties());
        }
    }

    /**
     * Method to handle when the new state from participant is UNINITIALISED state.
     *
     * @param messageId the messageId
     * @param automationComposition participant response
     * @param startPhaseMsg startPhase from message
     */
    private void handleUndeployState(UUID messageId, final AutomationComposition automationComposition,
            Integer startPhaseMsg) {
        for (var acElement : automationComposition.getElements().values()) {
            int startPhase = ParticipantUtils.findStartPhase(
                    cacheProvider.getCommonProperties(automationComposition.getInstanceId(), acElement.getId()));
            if (startPhaseMsg.equals(startPhase)) {
                acElement.setDeployState(DeployState.UNDEPLOYING);
                listener.undeploy(messageId, automationComposition.getInstanceId(), acElement.getId());
            }
        }
    }

    private void handleDeleteState(UUID messageId, final AutomationComposition automationComposition,
            Integer startPhaseMsg) {
        for (var acElement : automationComposition.getElements().values()) {
            int startPhase = ParticipantUtils.findStartPhase(
                    cacheProvider.getCommonProperties(automationComposition.getInstanceId(), acElement.getId()));
            if (startPhaseMsg.equals(startPhase)) {
                acElement.setDeployState(DeployState.DELETING);
                listener.delete(messageId, automationComposition.getInstanceId(), acElement.getId());
            }
        }
    }

    /**
     * Method to handle when the new state from participant is PASSIVE state.
     *
     * @param messageId the messageId
     * @param automationComposition participant response
     * @param startPhaseMsg startPhase from message
     */
    private void handleLockState(UUID messageId, final AutomationComposition automationComposition,
            Integer startPhaseMsg) {
        for (var acElement : automationComposition.getElements().values()) {
            int startPhase = ParticipantUtils.findStartPhase(
                    cacheProvider.getCommonProperties(automationComposition.getInstanceId(), acElement.getId()));
            if (startPhaseMsg.equals(startPhase)) {
                acElement.setLockState(LockState.LOCKING);
                listener.lock(messageId, automationComposition.getInstanceId(), acElement.getId());
            }
        }
    }

    /**
     * Method to handle when the new state from participant is RUNNING state.
     *
     * @param messageId the messageId
     * @param automationComposition participant response
     * @param startPhaseMsg startPhase from message
     */
    private void handleUnlockState(UUID messageId, final AutomationComposition automationComposition,
            Integer startPhaseMsg) {
        for (var acElement : automationComposition.getElements().values()) {
            int startPhase = ParticipantUtils.findStartPhase(
                    cacheProvider.getCommonProperties(automationComposition.getInstanceId(), acElement.getId()));
            if (startPhaseMsg.equals(startPhase)) {
                acElement.setLockState(LockState.UNLOCKING);
                listener.unlock(messageId, automationComposition.getInstanceId(), acElement.getId());
            }
        }
    }

    /**
     * Handles prime a Composition Definition.
     *
     * @param messageId the messageId
     * @param compositionId the compositionId
     * @param list the list of AutomationCompositionElementDefinition
     */
    public void prime(UUID messageId, UUID compositionId, List<AutomationCompositionElementDefinition> list) {
        listener.prime(messageId, compositionId, list);
    }

    /**
     * Handles deprime a Composition Definition.
     *
     * @param messageId the messageId
     * @param compositionId the compositionId
     */
    public void deprime(UUID messageId, UUID compositionId) {
        listener.deprime(messageId, compositionId);
    }

    /**
     * Handles restarted scenario.
     *
     * @param messageId the messageId
     * @param compositionId the compositionId
     * @param list the list of AutomationCompositionElementDefinition
     * @param state the state of the composition
     * @param automationCompositionList list of ParticipantRestartAc
     */
    public void restarted(UUID messageId, UUID compositionId, List<AutomationCompositionElementDefinition> list,
            AcTypeState state, List<ParticipantRestartAc> automationCompositionList) {

        for (var automationcomposition : automationCompositionList) {
            cacheProvider.initializeAutomationComposition(compositionId, automationcomposition);
        }
        listener.restarted(messageId, compositionId, list, state, automationCompositionList);
    }
}