Fix incorrect naming on context plugins
[policy/apex-pdp.git] / plugins / plugins-context / plugins-context-locking / plugins-context-locking-hazelcast / src / main / java / org / onap / policy / apex / plugins / context / locking / hazelcast / HazelcastLockManager.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2016-2018 Ericsson. 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.policy.apex.plugins.context.locking.hazelcast;
22
23 import java.util.concurrent.locks.ReadWriteLock;
24
25 import org.onap.policy.apex.context.ContextException;
26 import org.onap.policy.apex.context.impl.locking.AbstractLockManager;
27 import org.onap.policy.apex.model.basicmodel.concepts.AxArtifactKey;
28 import org.slf4j.ext.XLogger;
29 import org.slf4j.ext.XLoggerFactory;
30
31 import com.hazelcast.core.Hazelcast;
32 import com.hazelcast.core.HazelcastInstance;
33
34 /**
35  * The Class HazelcastLockManager manages Hazelcast locks for locks on items in Apex context albums.
36  *
37  * @author Liam Fallon (liam.fallon@ericsson.com)
38  */
39 public class HazelcastLockManager extends AbstractLockManager {
40     // Logger for this class
41     private static final XLogger LOGGER = XLoggerFactory.getXLogger(HazelcastLockManager.class);
42
43     private HazelcastInstance hazelcastInstance;
44
45     /**
46      * Constructor, set up a lock manager that uses Hazelcast locking.
47      *
48      * @throws ContextException On errors connecting to the Hazelcast cluster
49      */
50     public HazelcastLockManager() throws ContextException {
51         LOGGER.entry("HazelcastLockManager(): setting up the Hazelcast lock manager . . .");
52
53         LOGGER.exit("HazelcastLockManager(): Hazelcast lock manager set up");
54     }
55
56     /*
57      * (non-Javadoc)
58      *
59      * @see org.onap.policy.apex.context.impl.locking.AbstractLockManager#init(org.onap.policy.apex.
60      * model. basicmodel.concepts.AxArtifactKey)
61      */
62     @Override
63     public void init(final AxArtifactKey key) throws ContextException {
64         LOGGER.entry("init(" + key + ")");
65
66         super.init(key);
67
68         // Set up the Hazelcast instance for lock handling
69         hazelcastInstance = Hazelcast.newHazelcastInstance();
70
71         LOGGER.exit("init(" + key + ")");
72     }
73
74     /*
75      * (non-Javadoc)
76      *
77      * @see
78      * org.onap.policy.apex.core.context.impl.locking.AbstractLockManager#getReentrantReadWriteLock(
79      * java.lang.String)
80      */
81     @Override
82     public ReadWriteLock getReentrantReadWriteLock(final String lockId) throws ContextException {
83         // Check if the framework is active
84         if (hazelcastInstance != null && hazelcastInstance.getLifecycleService().isRunning()) {
85             return new HazelcastLock(hazelcastInstance, lockId);
86         } else {
87             throw new ContextException("creation of hazelcast lock failed, see error log for details");
88         }
89     }
90
91     /*
92      * (non-Javadoc)
93      *
94      * @see org.onap.policy.apex.core.context.LockManager#shutdown()
95      */
96     @Override
97     public void shutdown() {
98         if (hazelcastInstance == null) {
99             return;
100         }
101         hazelcastInstance.shutdown();
102         hazelcastInstance = null;
103     }
104 }