RTD change to document migration to Spring Boot 3.0
[cps.git] / cps-ncmp-service / src / main / java / org / onap / cps / ncmp / api / inventory / CompositeStateUtils.java
1 /*
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2022 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.inventory;
22
23 import java.util.function.Consumer;
24 import lombok.AccessLevel;
25 import lombok.NoArgsConstructor;
26 import lombok.extern.slf4j.Slf4j;
27
28 /**
29  * It will have all the utility method responsible for handling the composite state.
30  */
31 @Slf4j
32 @NoArgsConstructor(access = AccessLevel.PRIVATE)
33 public class CompositeStateUtils {
34
35     /**
36      * Sets the cmHandleState to the provided state and updates the timestamp.
37      *
38      * @return Updated CompositeState
39      */
40     public static Consumer<CompositeState> setCompositeState(final CmHandleState cmHandleState) {
41         return compositeState -> {
42             compositeState.setCmHandleState(cmHandleState);
43             compositeState.setLastUpdateTimeNow();
44         };
45     }
46
47     /**
48      * Set the Operational datastore sync state based on the global flag.
49      *
50      * @return Updated CompositeState
51      */
52     public static Consumer<CompositeState> setInitialDataStoreSyncState() {
53
54         return compositeState -> {
55             compositeState.setDataSyncEnabled(false);
56             final CompositeState.Operational operational =
57                     getInitialDataStoreSyncState(compositeState.getDataSyncEnabled());
58             final CompositeState.DataStores dataStores =
59                     CompositeState.DataStores.builder().operationalDataStore(operational).build();
60             compositeState.setDataStores(dataStores);
61         };
62     }
63
64     /**
65      * Set the data sync enabled flag, along with the data store sync state based on this flag.
66      *
67      * @param dataSyncEnabled data sync enabled flag
68      * @param compositeState  cm handle composite state
69      */
70     public static void setDataSyncEnabledFlagWithDataSyncState(final boolean dataSyncEnabled,
71             final CompositeState compositeState) {
72         compositeState.setDataSyncEnabled(dataSyncEnabled);
73         compositeState.setLastUpdateTimeNow();
74         final CompositeState.Operational operational = getInitialDataStoreSyncState(dataSyncEnabled);
75         final CompositeState.DataStores dataStores =
76                 CompositeState.DataStores.builder().operationalDataStore(operational).build();
77         compositeState.setDataStores(dataStores);
78     }
79
80     /**
81      * Get initial data sync state based on data sync enabled boolean flag.
82      *
83      * @param dataSyncEnabled data sync enabled boolean flag
84      * @return the data store sync state
85      */
86     private static CompositeState.Operational getInitialDataStoreSyncState(final boolean dataSyncEnabled) {
87         final DataStoreSyncState dataStoreSyncState =
88                 dataSyncEnabled ? DataStoreSyncState.UNSYNCHRONIZED : DataStoreSyncState.NONE_REQUESTED;
89         return CompositeState.Operational.builder().dataStoreSyncState(dataStoreSyncState).build();
90     }
91
92     /**
93      * Sets the cmHandleState to ADVISED and retain the lock details. Used in retry scenarios.
94      *
95      * @return Updated CompositeState
96      */
97     public static Consumer<CompositeState> setCompositeStateForRetry() {
98         return compositeState -> {
99             compositeState.setCmHandleState(CmHandleState.ADVISED);
100             compositeState.setLastUpdateTimeNow();
101             final String oldLockReasonDetails = compositeState.getLockReason().getDetails();
102             final CompositeState.LockReason lockReason =
103                     CompositeState.LockReason.builder().details(oldLockReasonDetails).build();
104             compositeState.setLockReason(lockReason);
105         };
106     }
107 }