aboutsummaryrefslogtreecommitdiffstats
path: root/music-rest/src/main/java/org/onap/music/rest/RestMusicLocksAPI.java
blob: 321e25613ae16bec84997b4c68757e6d40ad9c8d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
/*
 * ============LICENSE_START==========================================
 * org.onap.music
 * ===================================================================
 *  Copyright (c) 2017 AT&T Intellectual Property
 * ===================================================================
 *  *  Modifications Copyright (c) 2019 Samsung
 * ===================================================================
 * 
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 * 
 *     http://www.apache.org/licenses/LICENSE-2.0
 * 
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 * 
 * ============LICENSE_END=============================================
 * ====================================================================
 */

package org.onap.music.rest;

import java.util.List;
import java.util.Map;

import javax.ws.rs.Consumes;
import javax.ws.rs.DELETE;
import javax.ws.rs.GET;
import javax.ws.rs.HeaderParam;
import javax.ws.rs.POST;
import javax.ws.rs.Path;
import javax.ws.rs.PathParam;
import javax.ws.rs.Produces;
import javax.ws.rs.core.MediaType;
import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.ResponseBuilder;
import javax.ws.rs.core.Response.Status;

import org.onap.music.datastore.jsonobjects.JsonLeasedLock;
import org.onap.music.datastore.jsonobjects.JsonLock;
import org.onap.music.eelf.logging.EELFLoggerDelegate;
import org.onap.music.eelf.logging.format.AppMessages;
import org.onap.music.eelf.logging.format.ErrorSeverity;
import org.onap.music.eelf.logging.format.ErrorTypes;
import org.onap.music.exceptions.MusicLockingException;
import org.onap.music.lockingservice.cassandra.LockType;
import org.onap.music.lockingservice.cassandra.MusicLockState;
import org.onap.music.main.MusicCore;
import org.onap.music.main.MusicUtil;
import org.onap.music.main.ResultType;
import org.onap.music.main.ReturnType;
import org.onap.music.response.jsonobjects.JsonResponse;

import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
import io.swagger.annotations.ApiParam;
import io.swagger.annotations.ApiResponse;
import io.swagger.annotations.ApiResponses;
import io.swagger.annotations.Example;
import io.swagger.annotations.ExampleProperty;


@Path("/v2/locks/")
@Api(value="Locking Api")
public class RestMusicLocksAPI {

    private EELFLoggerDelegate logger =EELFLoggerDelegate.getLogger(RestMusicLocksAPI.class);
    private static final String XMINORVERSION = "X-minorVersion";
    private static final String XPATCHVERSION = "X-patchVersion";
    private static final String VERSION = "v2";

    /**
     * Puts the requesting process in the q for this lock. The corresponding
     * node will be created if it did not already exist
     * 
     * @param lockName
     * @return
     * @throws Exception 
     */
    @POST
    @Path("/create/{lockname}")
    @ApiOperation(value = "Create and Acquire a Lock Id for a single row.",
        notes = "Creates and Acquires a Lock Id for a specific Row in a table based on the key of that row.\n"
        + " The corresponding lock will be created if it did not already exist."
        + " Lock Name also the Lock is in the form of keyspaceName.tableName.rowId.\n"
        + " The Response will be in the form of \"$kesypaceName.tableName.rowId$lockRef\" "
        + " where the lockRef is a integer representing the Lock Name buffered by \"$\" " 
        + " followed by the lock number. This term for "
        + " this response is a lockId and it will be used in other /locks API calls where a "
        + " lockId is required. If just a lock is required then the form that would be "
        + " the original lockname(without the buffered \"$\").",
        response = Map.class)
    @Consumes(MediaType.APPLICATION_JSON)
    @Produces(MediaType.APPLICATION_JSON)
    @ApiResponses(value={
        @ApiResponse(code=200, message = "Success",examples = @Example( value =  {
            @ExampleProperty(mediaType="application/json",value = 
                "{\"lock\" : {\"lock\" : \"$keyspace.table.rowId$<integer>\"},"
                + "\"status\" : \"SUCCESS\"}")
        })),
        @ApiResponse(code=400, message = "Failure",examples = @Example( value =  {
            @ExampleProperty(mediaType="application/json",value = 
                "{\"error\" : \"Unable to aquire lock\","
                + "\"status\" : \"FAILURE\"}") 
        }))
    })  
    public Response createLockReference(
            @ApiParam(value="Lock Name",required=true) @PathParam("lockname") String lockName,
            @ApiParam(value = "Minor Version",required = false) @HeaderParam(XMINORVERSION) String minorVersion,
            @ApiParam(value = "Patch Version",required = false) @HeaderParam(XPATCHVERSION) String patchVersion,
            @ApiParam(value = "Authorization", required = true) @HeaderParam(MusicUtil.AUTHORIZATION) String authorization,
            @ApiParam(value = "AID", required = false, hidden = true) @HeaderParam("aid") String aid,
            JsonLock lockObject,
            @ApiParam(value = "Lock Owner", required = false) @HeaderParam("owner") String owner,
            @ApiParam(value = "Application namespace",
                            required = false, hidden = true) @HeaderParam("ns") String ns) throws Exception{
        try {
            ResponseBuilder response = MusicUtil.buildVersionResponse(VERSION, minorVersion, patchVersion);
            Map<String, Object> resultMap = MusicCore.validateLock(lockName);
            if (resultMap.containsKey("Error")) {
                logger.error(EELFLoggerDelegate.errorLogger,"", AppMessages.MISSINGINFO  ,ErrorSeverity.CRITICAL, ErrorTypes.GENERALSERVICEERROR);
                response.status(Status.BAD_REQUEST);
                return response.entity(new JsonResponse(ResultType.FAILURE).setError(String.valueOf(resultMap.get("Error"))).toMap()).build();
            }
            String keyspaceName = (String) resultMap.get("keyspace");
            EELFLoggerDelegate.mdcPut("keyspace", "( " + keyspaceName + " ) ");
            
            //default lock type is write, as this is always semantically safe
            LockType locktype = LockType.WRITE;
            if (lockObject!=null && lockObject.getLocktype()!=null) {
                locktype = lockObject.getLocktype();
            }
            String lockId;
            try {
                lockId= MusicCore.createLockReference(lockName, locktype, owner);
            } catch (MusicLockingException e) {
                return response.status(Status.BAD_REQUEST).entity(new JsonResponse(ResultType.FAILURE).setError(e.getMessage()).toMap()).build();
            }
            
            if (lockId == null) {  
                logger.error(EELFLoggerDelegate.errorLogger,"", AppMessages.LOCKINGERROR  ,ErrorSeverity.CRITICAL, ErrorTypes.LOCKINGERROR);
                return response.status(Status.BAD_REQUEST).entity(new JsonResponse(ResultType.FAILURE).setError("Lock Id is null").toMap()).build();
            }
            return response.status(Status.OK).entity(new JsonResponse(ResultType.SUCCESS).setLock(lockId).toMap()).build();
        } finally {
            EELFLoggerDelegate.mdcRemove("keyspace");
        }
    }

    /**
     * 
     * Checks if the node is in the top of the queue and hence acquires the lock
     * 
     * @param lockId
     * @return
     * @throws Exception 
     */
    @GET
    @Path("/acquire/{lockId}")
    @ApiOperation(value = "Aquire Lock Id ", 
        notes = "Checks if the node is in the top of the queue and hence acquires the lock",
        response = Map.class)
    @Produces(MediaType.APPLICATION_JSON)    
    @ApiResponses(value={
        @ApiResponse(code=200, message = "Success",examples = @Example( value =  {
            @ExampleProperty(mediaType="application/json",value = 
                "{\"lock\" : {\"lock\" : \"$keyspace.table.rowId$<integer>\"},"
                + "\"message\" : \"<integer> is the lock holder for the key\","
                + "\"status\" : \"SUCCESS\"}") 
        })),
        @ApiResponse(code=400, message = "Failure",examples = @Example( value =  {
            @ExampleProperty(mediaType="application/json",value = 
                "{\"error\" : \"Unable to aquire lock\","
                + "\"status\" : \"FAILURE\"}") 
        }))
    })  
    public Response accquireLock(
            @ApiParam(value="Lock Id",required=true) @PathParam("lockId") String lockId,
            @ApiParam(value = "Minor Version",required = false) @HeaderParam(XMINORVERSION) String minorVersion,
            @ApiParam(value = "Patch Version",required = false) @HeaderParam(XPATCHVERSION) String patchVersion,
            @ApiParam(value = "Authorization", required = true) @HeaderParam(MusicUtil.AUTHORIZATION) String authorization,
            @ApiParam(value = "AID", required = false, hidden = true) @HeaderParam("aid") String aid,
            @ApiParam(value = "Application namespace",
                            required = false, hidden = true) @HeaderParam("ns") String ns) throws Exception{
        try { 
            ResponseBuilder response = MusicUtil.buildVersionResponse(VERSION, minorVersion, patchVersion);
            Map<String, Object> resultMap = MusicCore.validateLock(lockId);
            if (resultMap.containsKey("Error")) {
                logger.error(EELFLoggerDelegate.errorLogger,"", AppMessages.INCORRECTDATA  ,ErrorSeverity.CRITICAL, ErrorTypes.GENERALSERVICEERROR);
                response.status(Status.BAD_REQUEST);
                return response.entity(new JsonResponse(ResultType.FAILURE).setError(String.valueOf(resultMap.get("Error"))).toMap()).build();
            }
            
            String keyspaceName = (String) resultMap.get("keyspace");
            EELFLoggerDelegate.mdcPut("keyspace", "( " + keyspaceName + " ) ");
            try {
                String lockName = lockId.substring(lockId.indexOf('$')+1, lockId.lastIndexOf('$'));
                ReturnType lockStatus = MusicCore.acquireLock(lockName,lockId);
                if ( lockStatus.getResult().equals(ResultType.SUCCESS)) {
                    response.status(Status.OK);
                } else {
                    response.status(Status.BAD_REQUEST);
                }
                return response.entity(new JsonResponse(lockStatus.getResult()).setLock(lockId).setMessage(lockStatus.getMessage()).toMap()).build();
            } catch (Exception e) {
                logger.error(EELFLoggerDelegate.errorLogger,AppMessages.INVALIDLOCK + lockId, ErrorSeverity.CRITICAL,
                    ErrorTypes.LOCKINGERROR, e);
                return response.status(Status.BAD_REQUEST).entity(new JsonResponse(ResultType.FAILURE).setError("Unable to aquire lock").toMap()).build();
            }
        } finally {
            EELFLoggerDelegate.mdcRemove("keyspace");
        }
    }
    

    @POST
    @Path("/acquire-with-lease/{lockId}")
    @ApiOperation(
        hidden = false,
        value = " ** DEPRECATED ** - Aquire Lock with Lease", 
        notes = "Acquire the lock with a lease, where lease period is in Milliseconds.\n"
        + "This will ensure that a lock will expire in set milliseconds.\n"
        + "This is no longer available after v3.2.0",
        response = Map.class)
    @Consumes(MediaType.APPLICATION_JSON)
    @Produces(MediaType.APPLICATION_JSON) 
    @ApiResponses(value={
        @ApiResponse(code=200, message = "Success",examples = @Example( value =  {
            @ExampleProperty(mediaType="application/json",value = 
                "{\"lock\" : {\"lock\" : \"$keyspace.table.rowId$<integer>\","
                + "\"lock-lease\" : \"6000\"},"
                + "\"message\" : \"<integer> is the lock holder for the key\","
                + "\"status\" : \"SUCCESS\"}")
        })),
        @ApiResponse(code=400, message = "Failure",examples = @Example( value =  {
            @ExampleProperty(mediaType="application/json",value = 
                "{\"error\" : \"Unable to aquire lock\","
                + "\"status\" : \"FAILURE\"}") 
        }))
    })  
    @Deprecated
    public Response accquireLockWithLease(
        JsonLeasedLock lockObj, 
        @ApiParam(value="Lock Id",required=true) @PathParam("lockId") String lockId,
        @ApiParam(value = "Minor Version",required = false) @HeaderParam(XMINORVERSION) String minorVersion,
        @ApiParam(value = "Patch Version",required = false) @HeaderParam(XPATCHVERSION) String patchVersion,
        @ApiParam(value = "Authorization", required = true) @HeaderParam(MusicUtil.AUTHORIZATION) String authorization,
        @ApiParam(value = "AID", required = false, hidden = true) @HeaderParam("aid") String aid,
        @ApiParam(value = "Application namespace",required = false, hidden = true) @HeaderParam("ns") String ns) throws Exception{
        try {
            ResponseBuilder response = MusicUtil.buildVersionResponse(VERSION, minorVersion, patchVersion);
            Map<String, Object> resultMap = MusicCore.validateLock(lockId);
            if (resultMap.containsKey("Error")) {
                logger.error(EELFLoggerDelegate.errorLogger,"", AppMessages.INCORRECTDATA  ,ErrorSeverity.CRITICAL, ErrorTypes.GENERALSERVICEERROR);
                response.status(Status.BAD_REQUEST);
                return response.entity(new JsonResponse(ResultType.FAILURE).setError(String.valueOf(resultMap.get("Error"))).toMap()).build();
            }
            String keyspaceName = (String) resultMap.get("keyspace");
            EELFLoggerDelegate.mdcPut("keyspace", "( " + keyspaceName + " ) ");
            String lockName = lockId.substring(lockId.indexOf('$')+1, lockId.lastIndexOf('$'));
            ReturnType lockLeaseStatus = MusicCore.acquireLockWithLease(lockName, lockId, lockObj.getLeasePeriod());
            if ( lockLeaseStatus.getResult().equals(ResultType.SUCCESS)) {
                response.status(Status.OK);
            } else {
                response.status(Status.BAD_REQUEST);
            }
            return response.entity(new JsonResponse(lockLeaseStatus.getResult()).setLock(lockName)
                .setMessage(lockLeaseStatus.getMessage())
                .setLockLease(String.valueOf(lockObj.getLeasePeriod())).toMap()).build();
        } finally {
            EELFLoggerDelegate.mdcRemove("keyspace");
        }


    } 
    

    @GET
    @Path("/enquire/{lockname}")
    @ApiOperation(value = "Get the top of the lock queue", 
        notes = "Gets the current single lockholder at top of lock queue",
        response = Map.class)
    @Produces(MediaType.APPLICATION_JSON)    
    @ApiResponses(value={
        @ApiResponse(code=200, message = "Success",examples = @Example( value =  {
            @ExampleProperty(mediaType="application/json",value = 
                "{\"lock\" : {\"lock\" : \"keyspace.table.rowId\","
                + "\"lock-holder\" : \"$tomtest.employees.tom$<integer>\"}},"
                + "\"status\" : \"SUCCESS\"}") 
        })),
        @ApiResponse(code=400, message = "Failure",examples = @Example( value =  {
            @ExampleProperty(mediaType="application/json",value = 
                "{\"error\" : \"Error Message\","
                + "\"status\" : \"FAILURE\"}") 
        }))
    })  
    public Response enquireLock(
            @ApiParam(value="Lock Name",required=true) @PathParam("lockname") String lockName,
            @ApiParam(value = "Minor Version",required = false) @HeaderParam(XMINORVERSION) String minorVersion,
            @ApiParam(value = "Patch Version",required = false) @HeaderParam(XPATCHVERSION) String patchVersion,
            @ApiParam(value = "Authorization", required = true) @HeaderParam(MusicUtil.AUTHORIZATION) String authorization,
            @ApiParam(value = "AID", required = false, hidden = true) @HeaderParam("aid") String aid,
            @ApiParam(value = "Application namespace",
                            required = false, hidden = true) @HeaderParam("ns") String ns) throws Exception{
        try {
            ResponseBuilder response = MusicUtil.buildVersionResponse(VERSION, minorVersion, patchVersion);
            Map<String, Object> resultMap = MusicCore.validateLock(lockName);
            if (resultMap.containsKey("Error")) {
                logger.error(EELFLoggerDelegate.errorLogger,"", AppMessages.INCORRECTDATA  ,ErrorSeverity.CRITICAL, ErrorTypes.GENERALSERVICEERROR);
                response.status(Status.BAD_REQUEST);
                return response.entity(new JsonResponse(ResultType.FAILURE).setError(String.valueOf(resultMap.get("Error"))).toMap()).build();
            }
            String keyspaceName = (String) resultMap.get("keyspace");
            EELFLoggerDelegate.mdcPut("keyspace", "( " + keyspaceName + " ) ");
            String who = MusicCore.whoseTurnIsIt(lockName);
            ResultType status = ResultType.SUCCESS;
            String error = "";
            if ( who == null ) { 
                status = ResultType.FAILURE; 
                error = "There was a problem getting the lock holder";
                logger.error(EELFLoggerDelegate.errorLogger,"There was a problem getting the lock holder", AppMessages.INCORRECTDATA  ,ErrorSeverity.CRITICAL, ErrorTypes.GENERALSERVICEERROR);
                return response.status(Status.BAD_REQUEST).entity(new JsonResponse(status).setError(error).setLock(lockName).setLockHolder(who).toMap()).build();
            }
            return response.status(Status.OK).entity(new JsonResponse(status).setError(error).setLock(lockName).setLockHolder(who).toMap()).build();
        } finally {
            EELFLoggerDelegate.mdcRemove("keyspace");
        }
    }

    @GET
    @Path("/holders/{lockname}")
    @ApiOperation(value = "Get Lock Holders", 
        notes = "Gets the current Lock Holders.\n"
        + "Will return an array of READ Lock References.",
        response = Map.class)
    @Produces(MediaType.APPLICATION_JSON)    
    @ApiResponses(value={
        @ApiResponse(code=200, message = "Success",examples = @Example( value =  {
            @ExampleProperty(mediaType="application/json",value = 
                "{\"lock\" : {\"lock\" : \"keyspace.table.rowId\","
                + "\"lock-holder\" : [\"$keyspace.table.rowId$<integer1>\",\"$keyspace.table.rowId$<integer2>\"]}},"
                + "\"status\" : \"SUCCESS\"}") 
        })),
        @ApiResponse(code=400, message = "Failure",examples = @Example( value =  {
            @ExampleProperty(mediaType="application/json",value = 
                "{\"error\" : \"Error message\","
                + "\"status\" : \"FAILURE\"}") 
        }))
    })  
    public Response currentLockHolder(@ApiParam(value="Lock Name",required=true) @PathParam("lockname") String lockName,
            @ApiParam(value = "Minor Version",required = false) @HeaderParam(XMINORVERSION) String minorVersion,
            @ApiParam(value = "Patch Version",required = false) @HeaderParam(XPATCHVERSION) String patchVersion,
            @ApiParam(value = "Authorization", required = true) @HeaderParam(MusicUtil.AUTHORIZATION) String authorization,
            @ApiParam(value = "AID", required = false, hidden = true) @HeaderParam("aid") String aid,
            @ApiParam(value = "Application namespace",
                            required = false, hidden = true) @HeaderParam("ns") String ns) {
        try {
            ResponseBuilder response = MusicUtil.buildVersionResponse(VERSION, minorVersion, patchVersion);
            Map<String, Object> resultMap = MusicCore.validateLock(lockName);
            if (resultMap.containsKey("Error")) {
                logger.error(EELFLoggerDelegate.errorLogger, "", AppMessages.INCORRECTDATA, ErrorSeverity.CRITICAL,
                        ErrorTypes.GENERALSERVICEERROR);
                response.status(Status.BAD_REQUEST);
                return response.entity(
                        new JsonResponse(ResultType.FAILURE).setError(String.valueOf(resultMap.get("Error"))).toMap())
                        .build();
            }
            String keyspaceName = (String) resultMap.get("keyspace");
            List<String> who = MusicCore.getCurrentLockHolders(lockName);
            ResultType status = ResultType.SUCCESS;
            String error = "";
            if (who == null || who.isEmpty()) {
                status = ResultType.FAILURE;
                error = (who !=null && who.isEmpty()) ? "No lock holders for the key":"There was a problem getting the lock holder";
                logger.error(EELFLoggerDelegate.errorLogger, "There was a problem getting the lock holder",
                        AppMessages.INCORRECTDATA, ErrorSeverity.CRITICAL, ErrorTypes.GENERALSERVICEERROR);
                return response.status(Status.BAD_REQUEST)
                        .entity(new JsonResponse(status).setError(error).setLock(lockName).setLockHolder(who).toMap())
                        .build();
            }
            return response.status(Status.OK)
                .entity(new JsonResponse(status).setError(error).setLock(lockName).setLockHolder(who).setisLockHolders(true).toMap())
                .build();
        } finally {
            EELFLoggerDelegate.mdcRemove("keyspace");
        }
    }
    
    
    @GET
    @Path("/{lockname}")
    @ApiOperation(value = "Lock State",
        notes = "Returns current Lock State and Holder.",
        response = Map.class,hidden = true)
    @Produces(MediaType.APPLICATION_JSON)    
    @ApiResponses(value={
        @ApiResponse(code=200, message = "Success",examples = @Example( value =  {
            @ExampleProperty(mediaType="application/json",value = 
                "{\"lock\" : {\"lock\" : \"$keyspace.table.rowId$<integer>\"},"
                + "\"message\" : \"<integer> is the lock holder for the key\","
                + "\"status\" : \"SUCCESS\"}") 
        })),
        @ApiResponse(code=400, message = "Failure",examples = @Example( value =  {
            @ExampleProperty(mediaType="application/json",value = 
                "{\"error\" : \"Unable to aquire lock\","
                + "\"status\" : \"FAILURE\"}") 
        }))
    })  
    public Response currentLockState(
            @ApiParam(value="Lock Name",required=true) @PathParam("lockname") String lockName,
            @ApiParam(value = "Minor Version",required = false) @HeaderParam(XMINORVERSION) String minorVersion,
            @ApiParam(value = "Patch Version",required = false) @HeaderParam(XPATCHVERSION) String patchVersion,
            @ApiParam(value = "Authorization", required = true) @HeaderParam(MusicUtil.AUTHORIZATION) String authorization,
            @ApiParam(value = "AID", required = false, hidden = true) @HeaderParam("aid") String aid,
            @ApiParam(value = "Application namespace",
                            required = false, hidden = true) @HeaderParam("ns") String ns) {
        try {
            ResponseBuilder response = MusicUtil.buildVersionResponse(VERSION, minorVersion, patchVersion);
            Map<String, Object> resultMap = MusicCore.validateLock(lockName);
            if (resultMap.containsKey("Error")) {
                logger.error(EELFLoggerDelegate.errorLogger,"", AppMessages.INCORRECTDATA  ,ErrorSeverity.CRITICAL, ErrorTypes.GENERALSERVICEERROR);
                response.status(Status.BAD_REQUEST);
                return response.entity(new JsonResponse(ResultType.FAILURE).setError(String.valueOf(resultMap.get("Error"))).toMap()).build();
            }
            String keyspaceName = (String) resultMap.get("keyspace");
            EELFLoggerDelegate.mdcPut("keyspace", "( "+keyspaceName+" ) ");
            String who = MusicCore.whoseTurnIsIt(lockName);
            ResultType status = ResultType.SUCCESS;
            String error = "";
            if ( who == null ) {
                status = ResultType.FAILURE; 
                error = "There was a problem getting the lock holder";
                logger.error(EELFLoggerDelegate.errorLogger,"There was a problem getting the lock holder", AppMessages.INCORRECTDATA  ,ErrorSeverity.CRITICAL, ErrorTypes.GENERALSERVICEERROR);
                return response.status(Status.BAD_REQUEST).entity(new JsonResponse(status).setError(error).setLock(lockName).setLockHolder(who).toMap()).build();
            }
            return response.status(Status.OK).entity(new JsonResponse(status).setError(error).setLock(lockName).setLockHolder(who).toMap()).build();
        } finally {
            EELFLoggerDelegate.mdcRemove("keyspace");
        }

    }

    /**
     * 
     * deletes the process from the lock queue
     * 
     * @param lockId
     * @throws Exception 
     */
    @DELETE
    @Path("/release/{lockreference}")
    @ApiOperation(value = "Release Lock",
        notes = "Releases the lock from the lock queue.",
        response = Map.class)
    @Produces(MediaType.APPLICATION_JSON)    
    @ApiResponses(value={
        @ApiResponse(code=200, message = "Success - UNLOCKED = Lock Removed.",examples = @Example( value =  {
            @ExampleProperty(mediaType="application/json",value = 
                "{\"lock\" : {\"lock\" : \"$keyspace.table.rowId$<integer>\"},"
                + "\"lock-status\" : \"UNLOCKED\"},"
                + "\"status\" : \"SUCCESS\"}")
        })),
        @ApiResponse(code=400, message = "Failure",examples = @Example( value =  {
            @ExampleProperty(mediaType="application/json",value = 
                "{\"error\" : \"Unable to aquire lock\","
                + "\"status\" : \"FAILURE\"}") 
        }))
    })  
    public Response unLock(@PathParam("lockreference") String lockId,
            @ApiParam(value = "Minor Version",required = false) @HeaderParam(XMINORVERSION) String minorVersion,
            @ApiParam(value = "Patch Version",required = false) @HeaderParam(XPATCHVERSION) String patchVersion,
            @ApiParam(value = "Authorization", required = true) @HeaderParam(MusicUtil.AUTHORIZATION) String authorization,
            @ApiParam(value = "AID", required = false, hidden = true) @HeaderParam("aid") String aid,
            @ApiParam(value = "Application namespace",
                required = false, hidden = true) @HeaderParam("ns") String ns) throws Exception{
        try {
            ResponseBuilder response = MusicUtil.buildVersionResponse(VERSION, minorVersion, patchVersion);
            Map<String, Object> resultMap = MusicCore.validateLock(lockId);
            if (resultMap.containsKey("Error")) {
                logger.error(EELFLoggerDelegate.errorLogger,"", AppMessages.INCORRECTDATA  ,ErrorSeverity.CRITICAL, ErrorTypes.GENERALSERVICEERROR);
                response.status(Status.BAD_REQUEST);
                return response.entity(new JsonResponse(ResultType.FAILURE).setError(String.valueOf(resultMap.get("Error"))).toMap()).build();
            }

            String keyspaceName = (String) resultMap.get("keyspace");
            EELFLoggerDelegate.mdcPut("keyspace", "( "+keyspaceName+" ) ");
            boolean voluntaryRelease = true; 
            MusicLockState mls = MusicCore.releaseLock(lockId,voluntaryRelease);
            if(mls.getErrorMessage() != null) {
                resultMap.put(ResultType.EXCEPTION.getResult(), mls.getErrorMessage());
                logger.error(EELFLoggerDelegate.errorLogger,"", AppMessages.INCORRECTDATA  ,ErrorSeverity.CRITICAL, ErrorTypes.GENERALSERVICEERROR);
                return response.status(Status.BAD_REQUEST).entity(resultMap).build();
            }
            Map<String,Object> returnMap = null;
            if (mls.getLockStatus() == MusicLockState.LockStatus.UNLOCKED) {
                returnMap = new JsonResponse(ResultType.SUCCESS).setLock(lockId)
                    .setLockStatus(mls.getLockStatus()).toMap();
                response.status(Status.OK);
            }
            if (mls.getLockStatus() == MusicLockState.LockStatus.LOCKED) {
                logger.error(EELFLoggerDelegate.errorLogger,"", AppMessages.LOCKINGERROR  ,ErrorSeverity.CRITICAL, ErrorTypes.GENERALSERVICEERROR);
                returnMap = new JsonResponse(ResultType.FAILURE).setLock(lockId)
                    .setLockStatus(mls.getLockStatus()).toMap();
                response.status(Status.BAD_REQUEST);
            }
            return response.entity(returnMap).build();
        } finally {
            EELFLoggerDelegate.mdcRemove("keyspace");
        }
    }

    /**
     * 
     * @param lockName
     * @throws Exception 
     */
    @Deprecated
    @DELETE
    @Path("/delete/{lockname}")
    @ApiOperation(
        hidden = true,
        value = "-DEPRECATED- Delete Lock", response = Map.class,
        notes = "-DEPRECATED- Delete the lock.")
    @Produces(MediaType.APPLICATION_JSON)    
    @ApiResponses(value={
        @ApiResponse(code=200, message = "Success",examples = @Example( value =  {
            @ExampleProperty(mediaType="application/json",value = 
                "{\"status\" : \"SUCCESS\"}") 
        })),
        @ApiResponse(code=400, message = "Failure",examples = @Example( value =  {
            @ExampleProperty(mediaType="application/json",value = 
                "{\"error\" : \"Error Message if any\","
                + "\"status\" : \"FAILURE\"}") 
        }))
    })
    public Response deleteLock(@PathParam("lockname") String lockName,
            @ApiParam(value = "Minor Version",required = false) @HeaderParam(XMINORVERSION) String minorVersion,
            @ApiParam(value = "Patch Version",required = false) @HeaderParam(XPATCHVERSION) String patchVersion,
            @ApiParam(value = "AID", required = false, hidden = true) @HeaderParam("aid") String aid,
            @ApiParam(value = "Authorization", required = true) @HeaderParam(MusicUtil.AUTHORIZATION) String authorization,
            @ApiParam(value = "Application namespace",
                            required = false, hidden = true) @HeaderParam("ns") String ns) throws Exception{
        try {
            ResponseBuilder response = MusicUtil.buildVersionResponse(VERSION, minorVersion, patchVersion);
            Map<String, Object> resultMap = MusicCore.validateLock(lockName);
            if (resultMap.containsKey("Error")) {
                logger.error(EELFLoggerDelegate.errorLogger,"", AppMessages.UNKNOWNERROR  ,ErrorSeverity.CRITICAL, ErrorTypes.GENERALSERVICEERROR);
                response.status(Status.BAD_REQUEST);
                return response.entity(new JsonResponse(ResultType.FAILURE).setError(String.valueOf(resultMap.get("Error"))).toMap()).build();
            }

            String keyspaceName = (String) resultMap.get("keyspace");
            EELFLoggerDelegate.mdcPut("keyspace", "( " + keyspaceName + " ) ");
            try{
                MusicCore.destroyLockRef(lockName);
            }catch (Exception e) {
                logger.error(EELFLoggerDelegate.errorLogger, e);
                return response.status(Status.BAD_REQUEST).entity(new JsonResponse(ResultType.FAILURE).setError(e.getMessage()).toMap()).build();
            }
            return response.status(Status.OK).entity(new JsonResponse(ResultType.SUCCESS).toMap()).build();
        } finally {
            EELFLoggerDelegate.mdcRemove("keyspace");
        }
    }

    
    /**
     * Puts the requesting process in the q for this lock. The corresponding
     * node will be created if it did not already exist
     * 
     * @param lockName
     * @return
     * @throws Exception 
     */
    @POST
    @Path("/promote/{lockname}")
    @ApiOperation(value = "Attempt to promote the lock for a single row.",
        response = Map.class)
    @Consumes(MediaType.APPLICATION_JSON)
    @Produces(MediaType.APPLICATION_JSON)
    @ApiResponses(value={
        @ApiResponse(code=200, message = "Success",examples = @Example( value =  {
            @ExampleProperty(mediaType="application/json",value = 
                "\"status\" : \"SUCCESS\"}")
        })),
        @ApiResponse(code=400, message = "Failure",examples = @Example( value =  {
            @ExampleProperty(mediaType="application/json",value = 
                "{\"error\" : \"Unable to promote lock\","
                + "\"status\" : \"FAILURE\"}") 
        }))
    })  
    public Response promoteLock(
            @ApiParam(value="Lock Id",required=true) @PathParam("lockId") String lockId,
            @ApiParam(value = "Minor Version",required = false) @HeaderParam(XMINORVERSION) String minorVersion,
            @ApiParam(value = "Patch Version",required = false) @HeaderParam(XPATCHVERSION) String patchVersion,
            @ApiParam(value = "Authorization", required = true) @HeaderParam(MusicUtil.AUTHORIZATION) String authorization)
                    throws Exception {
        try { 
            ResponseBuilder response = MusicUtil.buildVersionResponse(VERSION, minorVersion, patchVersion);
            Map<String, Object> resultMap = MusicCore.validateLock(lockId);
            if (resultMap.containsKey("Error")) {
                logger.error(EELFLoggerDelegate.errorLogger,"", AppMessages.INCORRECTDATA  ,ErrorSeverity.CRITICAL, ErrorTypes.GENERALSERVICEERROR);
                response.status(Status.BAD_REQUEST);
                return response.entity(new JsonResponse(ResultType.FAILURE).setError(String.valueOf(resultMap.get("Error"))).toMap()).build();
            }
            
            String keyspaceName = (String) resultMap.get("keyspace");
            EELFLoggerDelegate.mdcPut("keyspace", "( " + keyspaceName + " ) ");
            
            try {
                ReturnType lockStatus = MusicCore.promoteLock(lockId);
                if ( lockStatus.getResult().equals(ResultType.SUCCESS)) {
                    response.status(Status.OK);
                } else {
                    response.status(Status.BAD_REQUEST);
                }
                return response.entity(new JsonResponse(lockStatus.getResult()).setLock(lockId).setMessage(lockStatus.getMessage()).toMap()).build();
            } catch (Exception e) {
                logger.error(EELFLoggerDelegate.errorLogger,AppMessages.INVALIDLOCK + lockId, ErrorSeverity.CRITICAL,
                    ErrorTypes.LOCKINGERROR, e);
                return response.status(Status.BAD_REQUEST).entity(new JsonResponse(ResultType.FAILURE).setError("Unable to promote lock").toMap()).build();
            }
        } finally {
            EELFLoggerDelegate.mdcRemove("keyspace");
        }
    }
}