e889e180ec19cf1e715f870f6f479aa30d0ee97f
[music.git] / src / main / java / org / onap / music / main / MusicCore.java
1 /*
2  * ============LICENSE_START==========================================
3  * org.onap.music
4  * ===================================================================
5  *  Copyright (c) 2017 AT&T Intellectual Property
6  * ===================================================================
7  *  Licensed under the Apache License, Version 2.0 (the "License");
8  *  you may not use this file except in compliance with the License.
9  *  You may obtain a copy of the License at
10  *
11  *     http://www.apache.org/licenses/LICENSE-2.0
12  *
13  *  Unless required by applicable law or agreed to in writing, software
14  *  distributed under the License is distributed on an "AS IS" BASIS,
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  *  See the License for the specific language governing permissions and
17  *  limitations under the License.
18  *
19  * ============LICENSE_END=============================================
20  * ====================================================================
21  */
22
23 package org.onap.music.main;
24
25 import java.util.List;
26 import java.util.Map;
27
28 import javax.ws.rs.core.MultivaluedMap;
29
30 import org.onap.music.datastore.Condition;
31 import org.onap.music.datastore.PreparedQueryObject;
32 import org.onap.music.datastore.jsonobjects.JsonDelete;
33 import org.onap.music.datastore.jsonobjects.JsonIndex;
34 import org.onap.music.datastore.jsonobjects.JsonInsert;
35 import org.onap.music.datastore.jsonobjects.JsonKeySpace;
36 import org.onap.music.datastore.jsonobjects.JsonSelect;
37 import org.onap.music.datastore.jsonobjects.JsonTable;
38 import org.onap.music.datastore.jsonobjects.JsonUpdate;
39 import org.onap.music.eelf.logging.EELFLoggerDelegate;
40 import org.onap.music.exceptions.MusicLockingException;
41 import org.onap.music.exceptions.MusicQueryException;
42 import org.onap.music.exceptions.MusicServiceException;
43 import org.onap.music.lockingservice.cassandra.CassaLockStore;
44 import org.onap.music.lockingservice.cassandra.LockType;
45 import org.onap.music.lockingservice.cassandra.MusicLockState;
46 import org.onap.music.service.MusicCoreService;
47
48 import com.datastax.driver.core.ResultSet;
49
50 public class MusicCore {
51
52     private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(MusicCore.class);
53     private static MusicCoreService musicCore = MusicUtil.getMusicCoreService();
54     private static CassaLockStore mLockHandle;
55     
56     public static CassaLockStore getmLockHandle() {
57         return mLockHandle;
58     }
59
60     public static void setmLockHandle(CassaLockStore mLockHandleIn) {
61         mLockHandle = mLockHandleIn;
62     }
63
64     /**
65      * Acquire lock
66      * 
67      * @param fullyQualifiedKey DO NOT RELY ON THIS KEY WORKING. INCLUDE THE KEY IN THE LOCKID.
68      * @param lockId - the full lock id (key + lockRef)
69      * @return
70      * @throws MusicLockingException
71      * @throws MusicQueryException
72      * @throws MusicServiceException
73      */
74     public static ReturnType acquireLock(String fullyQualifiedKey, String lockId)
75             throws MusicLockingException, MusicQueryException, MusicServiceException {
76         return musicCore.acquireLock(fullyQualifiedKey, lockId);
77     }
78
79     public static ReturnType acquireLockWithLease(String key, String lockId, long leasePeriod)
80             throws MusicLockingException, MusicQueryException, MusicServiceException {
81         return musicCore.acquireLockWithLease(key, lockId, leasePeriod);
82     }
83
84     public static String createLockReference(String fullyQualifiedKey) throws MusicLockingException {
85         return musicCore.createLockReference(fullyQualifiedKey);
86     }
87
88     public static String createLockReference(String fullyQualifiedKey, LockType locktype) throws MusicLockingException {
89         return musicCore.createLockReference(fullyQualifiedKey, locktype);
90     }
91
92     public static String createLockReference(String fullyQualifiedKey, LockType locktype, String owner) throws MusicLockingException {
93         return musicCore.createLockReference(fullyQualifiedKey, locktype, owner);
94     }
95
96     public static ResultType createTable(String keyspace, String table, PreparedQueryObject tableQueryObject,
97             String consistency) throws MusicServiceException {
98         return musicCore.createTable(keyspace, table, tableQueryObject, consistency);
99     }
100
101     public static ResultSet quorumGet(PreparedQueryObject query) {
102         return musicCore.quorumGet(query);
103     }
104
105     /**
106      * Gets the top of queue for fullyQualifiedKey
107      * 
108      * @param fullyQualifiedKey
109      * @return
110      */
111     public static String whoseTurnIsIt(String fullyQualifiedKey) {
112         return musicCore.whoseTurnIsIt(fullyQualifiedKey);
113     }
114
115     /**
116      * Gets the current lockholder(s) for fullyQualifiedKey
117      * 
118      * @param fullyQualifiedKey
119      * @return
120      */
121     public static List<String> getCurrentLockHolders(String fullyQualifiedKey) {
122         return musicCore.getCurrentLockHolders(fullyQualifiedKey);
123     }
124
125     public static void destroyLockRef(String lockId) throws MusicLockingException {
126         musicCore.destroyLockRef(lockId);
127     }
128
129     public static ReturnType eventualPut(PreparedQueryObject queryObject) {
130         return musicCore.eventualPut(queryObject);
131     }
132
133     public static ReturnType eventualPut_nb(PreparedQueryObject queryObject, String keyspace, String tablename,
134             String primaryKey) {
135         return musicCore.eventualPut_nb(queryObject, keyspace, tablename, primaryKey);
136     }
137
138     public static ReturnType criticalPut(String keyspace, String table, String primaryKeyValue,
139             PreparedQueryObject queryObject, String lockReference, Condition conditionInfo) {
140         return musicCore.criticalPut(keyspace, table, primaryKeyValue, queryObject, lockReference, conditionInfo);
141     }
142
143     public static ResultType nonKeyRelatedPut(PreparedQueryObject queryObject, String consistency)
144             throws MusicServiceException,MusicQueryException {
145         return musicCore.nonKeyRelatedPut(queryObject, consistency);
146     }
147
148     public static ResultSet get(PreparedQueryObject queryObject) throws MusicServiceException {
149         return musicCore.get(queryObject);
150     }
151
152     public static ResultSet criticalGet(String keyspace, String table, String primaryKeyValue,
153             PreparedQueryObject queryObject, String lockReference) throws MusicServiceException {
154         return musicCore.criticalGet(keyspace, table, primaryKeyValue, queryObject, lockReference);
155     }
156
157     public static ReturnType atomicPut(String keyspaceName, String tableName, String primaryKey,
158             PreparedQueryObject queryObject, Condition conditionInfo)
159             throws MusicLockingException, MusicQueryException, MusicServiceException {
160         return musicCore.atomicPut(keyspaceName, tableName, primaryKey, queryObject, conditionInfo);
161     }
162
163     public static ResultSet atomicGet(String keyspaceName, String tableName, String primaryKey,
164             PreparedQueryObject queryObject) throws MusicServiceException, MusicLockingException, MusicQueryException {
165         return musicCore.atomicGet(keyspaceName, tableName, primaryKey, queryObject);
166     }
167
168     public static List<String> getLockQueue(String fullyQualifiedKey)
169             throws MusicServiceException, MusicQueryException, MusicLockingException {
170         return musicCore.getLockQueue(fullyQualifiedKey);
171     }
172
173     public static long getLockQueueSize(String fullyQualifiedKey)
174             throws MusicServiceException, MusicQueryException, MusicLockingException {
175         return musicCore.getLockQueueSize(fullyQualifiedKey);
176     }
177
178     public static void deleteLock(String lockName) throws MusicLockingException {
179         musicCore.deleteLock(lockName);
180     }
181
182     public static ReturnType atomicPutWithDeleteLock(String keyspaceName, String tableName, String primaryKey,
183             PreparedQueryObject queryObject, Condition conditionInfo) throws MusicLockingException {
184         return musicCore.atomicPutWithDeleteLock(keyspaceName, tableName, primaryKey, queryObject, conditionInfo);
185     }
186
187     public static ResultSet atomicGetWithDeleteLock(String keyspaceName, String tableName, String primaryKey,
188             PreparedQueryObject queryObject) throws MusicServiceException, MusicLockingException {
189         return musicCore.atomicGetWithDeleteLock(keyspaceName, tableName, primaryKey, queryObject);
190     }
191
192     public static Map<String, Object> validateLock(String lockName) {
193         return musicCore.validateLock(lockName);
194     }
195
196     public static MusicLockState releaseLock(String lockId, boolean voluntaryRelease) throws MusicLockingException {
197         return musicCore.releaseLock(lockId, voluntaryRelease);
198     }
199     
200     public static List<String> releaseAllLocksForOwner(String ownerId, String keyspace, String table) throws MusicLockingException, MusicServiceException, MusicQueryException {
201         return musicCore.releaseAllLocksForOwner(ownerId, keyspace, table);
202         }
203
204     //Added changes for orm implementation.
205     
206     public static ResultType createKeyspace(JsonKeySpace jsonKeySpaceObject, String consistencyInfo) 
207             throws MusicServiceException, MusicQueryException {
208         return musicCore.createKeyspace(jsonKeySpaceObject,consistencyInfo);
209     }
210     
211     public static ResultType dropKeyspace(JsonKeySpace josnKeyspaceObject, String consistencyInfo)
212             throws MusicServiceException,MusicQueryException {
213         return musicCore.dropKeyspace(josnKeyspaceObject, consistencyInfo);
214     }
215     
216     public static ResultType createTable(JsonTable jsonTableObject,String consistencyInfo) 
217             throws MusicServiceException,MusicQueryException {
218         return musicCore.createTable(jsonTableObject, consistencyInfo);
219     }
220     
221     public static ResultType dropTable(JsonTable jsonTableObject, String consistencyInfo) 
222             throws MusicServiceException, MusicQueryException {
223         return musicCore.dropTable(jsonTableObject, consistencyInfo);
224     }
225     
226     public static ResultType createIndex(JsonIndex jsonIndexObject, String consistencyInfo) 
227             throws MusicServiceException,MusicQueryException {
228         return musicCore.createIndex(jsonIndexObject, consistencyInfo);
229     }
230     
231     public static ResultSet select(JsonSelect jsonSelect, MultivaluedMap<String, String> rowParams) 
232             throws MusicServiceException, MusicQueryException{
233         return musicCore.select(jsonSelect, rowParams);
234     }
235     
236     public static ResultSet selectCritical(JsonInsert jsonInsertObj, MultivaluedMap<String, String> rowParams) 
237             throws MusicLockingException, MusicQueryException, MusicServiceException{
238         return musicCore.selectCritical(jsonInsertObj, rowParams);
239     }
240     
241     
242     public static ReturnType insertIntoTable(JsonInsert jsonInsert) throws MusicLockingException, MusicQueryException, MusicServiceException{
243         return musicCore.insertIntoTable(jsonInsert);
244     }
245     
246     public static ReturnType updateTable(JsonUpdate jsonUpdateObj,MultivaluedMap<String, String> rowParams) 
247             throws MusicLockingException, MusicQueryException, MusicServiceException{
248         return musicCore.updateTable(jsonUpdateObj, rowParams);
249     }
250     
251     public static ReturnType deleteFromTable(JsonDelete jsonDeleteObj,MultivaluedMap<String, String> rowParams) 
252             throws MusicLockingException, MusicQueryException, MusicServiceException{
253         return musicCore.deleteFromTable(jsonDeleteObj,rowParams);
254     }
255
256 }