571558ac0cf36dc0d3b00c122c1006a25f185657
[cps.git] /
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.impl.config.embeddedcache;
22
23 import com.hazelcast.config.Config;
24 import com.hazelcast.config.MapConfig;
25 import com.hazelcast.core.Hazelcast;
26 import com.hazelcast.core.HazelcastInstance;
27 import java.util.concurrent.ConcurrentMap;
28 import java.util.concurrent.TimeUnit;
29 import org.springframework.context.annotation.Bean;
30 import org.springframework.context.annotation.Configuration;
31
32 /**
33  * Core infrastructure of the hazelcast distributed map for Module Sync and Data Sync use cases.
34  */
35 @Configuration
36 public class SynchronizationSemaphoresConfig {
37
38     private static final int TIME_TO_LIVE_IN_SECONDS = (int) TimeUnit.MINUTES.toSeconds(30);
39
40     /**
41      * Module Sync Distributed Map Instance.
42      *
43      * @return configured map of module sync semaphores
44      */
45     @Bean
46     public ConcurrentMap<String, Boolean> moduleSyncSemaphores() {
47         return createHazelcastInstance("moduleSyncSemaphores", "moduleSyncSemaphoresConfig")
48                 .getMap("moduleSyncSemaphores");
49     }
50
51     /**
52      * Data Sync Distributed Map Instance.
53      *
54      * @return configured map of data sync semaphores
55      */
56     @Bean
57     public ConcurrentMap<String, Boolean> dataSyncSemaphores() {
58         return createHazelcastInstance("dataSyncSemaphores", "dataSyncSemaphoresConfig")
59                 .getMap("dataSyncSemaphores");
60     }
61
62     private HazelcastInstance createHazelcastInstance(
63             final String hazelcastInstanceName, final String configMapName) {
64         return Hazelcast.newHazelcastInstance(
65                 initializeDefaultMapConfig(hazelcastInstanceName, configMapName));
66     }
67
68     private Config initializeDefaultMapConfig(final String instanceName, final String configName) {
69         final Config config = new Config(instanceName);
70         final MapConfig mapConfig = new MapConfig(configName);
71         mapConfig.setTimeToLiveSeconds(TIME_TO_LIVE_IN_SECONDS);
72         mapConfig.setBackupCount(3);
73         mapConfig.setAsyncBackupCount(3);
74         config.addMapConfig(mapConfig);
75         config.setClusterName("synchronization-semaphores");
76         return config;
77     }
78 }