dc8fdb1001387f8b6b8f70b188d770191cdc84bc
[policy/apex-pdp.git] / plugins / plugins-context / plugins-context-locking / plugins-context-locking-curator / src / main / java / org / onap / policy / apex / plugins / context / locking / curator / CuratorLockFacade.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.curator;
22
23 import java.util.concurrent.TimeUnit;
24 import java.util.concurrent.locks.Condition;
25 import java.util.concurrent.locks.Lock;
26
27 import org.apache.curator.framework.recipes.locks.InterProcessMutex;
28 import org.slf4j.ext.XLogger;
29 import org.slf4j.ext.XLoggerFactory;
30
31 /**
32  * This class provides a facade over the {@link Lock} interface for Curator locks.
33  *
34  * @author Liam Fallon (liam.fallon@ericsson.com)
35  */
36 public class CuratorLockFacade implements Lock {
37     // Logger for this class
38     private static final XLogger LOGGER = XLoggerFactory.getXLogger(CuratorLockFacade.class);
39
40     // Recurring string constants
41     private static final String FAILED_TO_ACQUIRE_LOCK_TAG = "failed to acquire lock for \"{}\"";
42
43     // The Lock ID
44     private final String lockId;
45
46     // The mutex used for Curator locking
47     private final InterProcessMutex lockMutex;
48
49     /**
50      * Create the lock Facade.
51      *
52      * @param lockMutex The lock mutex behind the facade
53      * @param lockId The ID of the lock
54      */
55     public CuratorLockFacade(final InterProcessMutex lockMutex, final String lockId) {
56         this.lockId = lockId;
57         this.lockMutex = lockMutex;
58     }
59
60     /**
61      * {@inheritDoc}.
62      */
63     @Override
64     public void lock() {
65         try {
66             lockMutex.acquire();
67         } catch (final Exception e) {
68             LOGGER.warn(FAILED_TO_ACQUIRE_LOCK_TAG, lockId, e);
69         }
70     }
71
72     /**
73      * {@inheritDoc}.
74      */
75     @Override
76     public void lockInterruptibly() throws InterruptedException {
77         LOGGER.warn("lockInterruptibly() not supported for \"{}\"", lockId);
78     }
79
80     /**
81      * {@inheritDoc}.
82      */
83     @Override
84     public boolean tryLock() {
85         try {
86             lockMutex.acquire();
87             return true;
88         } catch (final Exception e) {
89             LOGGER.warn("failed to acquire lock for \"" + lockId, e);
90             return false;
91         }
92     }
93
94     /**
95      * {@inheritDoc}.
96      */
97     @Override
98     public boolean tryLock(final long time, final TimeUnit unit) throws InterruptedException {
99         try {
100             lockMutex.acquire(time, unit);
101             return true;
102         } catch (final Exception e) {
103             LOGGER.warn("failed to acquire lock for \"" + lockId, e);
104             return false;
105         }
106     }
107
108     /**
109      * {@inheritDoc}.
110      */
111     @Override
112     public void unlock() {
113         try {
114             lockMutex.release();
115         } catch (final Exception e) {
116             LOGGER.warn("failed to release lock for \"" + lockId, e);
117         }
118     }
119
120     /**
121      * {@inheritDoc}.
122      */
123     @Override
124     public Condition newCondition() {
125         LOGGER.warn("newCondition() not supported for \"{} \"", lockId);
126         return null;
127     }
128 }