aboutsummaryrefslogtreecommitdiffstats
path: root/music-core/src/main/java/org/onap/music/main/MusicUtil.java
blob: 4b8b1059c906f25453954412166ec9053dfe37bf (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
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
/*
 * ============LICENSE_START==========================================
 * org.onap.music
 * ===================================================================
 *  Copyright (c) 2017 AT&T Intellectual Property
 * ===================================================================
 *  Modifications Copyright (c) 2019 IBM.
 *  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.main;

import com.datastax.driver.core.ColumnDefinitions;
import com.datastax.driver.core.ColumnDefinitions.Definition;
import com.datastax.driver.core.ResultSet;
import com.datastax.driver.core.Row;
import java.io.File;
import java.io.FileNotFoundException;
import java.math.BigInteger;
import java.nio.ByteBuffer;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map;
import java.util.Scanner;
import java.util.Set;
import java.util.UUID;

import javax.ws.rs.core.Response;
import javax.ws.rs.core.Response.ResponseBuilder;
import org.onap.music.datastore.MusicDataStoreHandle;
import org.onap.music.datastore.PreparedQueryObject;
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.MusicQueryException;
import org.onap.music.exceptions.MusicServiceException;
import org.onap.music.service.MusicCoreService;
import org.onap.music.service.impl.MusicCassaCore;

import com.datastax.driver.core.ConsistencyLevel;
import com.datastax.driver.core.DataType;

/**
 * @author nelson24
 *
 *         Properties This will take Properties and load them into MusicUtil.
 *         This is a hack for now. Eventually it would bebest to do this in
 *         another way.
 *
 */
public class MusicUtil {
    private static EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(MusicUtil.class);

    // Consistancy Constants
    public static final String ATOMIC = "atomic";
    public static final String EVENTUAL = "eventual";
    public static final String CRITICAL = "critical";
    public static final String EVENTUAL_NB = "eventual_nb";
    public static final String ALL = "all";
    public static final String QUORUM = "quorum";
    public static final String LOCAL_QUORUM = "local_quorum";
    public static final String ONE = "one";
    public static final String ATOMICDELETELOCK = "atomic_delete_lock";

    // Header Constants
    private static final String XLATESTVERSION = "X-latestVersion";
    private static final String XMINORVERSION = "X-minorVersion";
    private static final String XPATCHVERSION = "X-patchVersion";
    public static final String AUTHORIZATION = "Authorization";

    // CQL Constants
    public static final String SELECT = "select";
    public static final String INSERT = "insert";
    public static final String UPDATE = "update";
    public static final String UPSERT = "upsert";
    public static final String USERID = "userId";
    public static final String PASSWORD = "";
    public static final String CASSANDRA = "cassandra";

    private static final String LOCALHOST = "localhost";
    private static final String PROPERTIES_FILE = "/opt/app/music/etc/music.properties";
    public static final String DEFAULTKEYSPACENAME = "TBD";

    private static long defaultLockLeasePeriod = 6000;
    // Amount of times to retry to delete a lock in atomic.
    private static int retryCount = 3;
    private static String lockUsing = MusicUtil.CASSANDRA;
    // Cadi OnOff
    private static boolean isCadi = false;
    // Keyspace Creation on/off
    private static boolean isKeyspaceActive = false;
    private static boolean debug = true;
    private static String version = "0.0.0";
    private static String build = "";
    private static long lockDaemonSleepms = 1000;
    private static Set<String> keyspacesToCleanLocks = new HashSet<>();

    private static String musicPropertiesFilePath = PROPERTIES_FILE;
    // private static final String[] propKeys = new String[] { MusicUtil.class.getDeclaredMethod(arg0, )"build","cassandra.host", "debug",
    //     "version", "music.properties", "lock.lease.period", "cassandra.user", 
    //     "cassandra.password", "aaf.endpoint.url","admin.username","admin.password",
    //     "music.namespace","admin.aaf.role","cassandra.port","lock.using","retry.count",
    //     "transId.header.required","conversation.header.required","clientId.header.required",
    //     "messageId.header.required","transId.header.prefix","conversation.header.prefix",
    //     "clientId.header.prefix","messageId.header.prefix"};
    // Consistency Constants and variables. 
    private static final String[] cosistencyLevel = new String[] {
            "ALL","EACH_QUORUM","QUORUM","LOCAL_QUORUM","ONE","TWO",
            "THREE","LOCAL_ONE","ANY","SERIAL","LOCAL_SERIAL"};
    private static final Map<String,ConsistencyLevel> consistencyName = new HashMap<>();
    static {
        consistencyName.put("ONE",ConsistencyLevel.ONE);
        consistencyName.put("TWO",ConsistencyLevel.TWO);
        consistencyName.put("THREE",ConsistencyLevel.THREE);
        consistencyName.put("SERIAL",ConsistencyLevel.SERIAL);
        consistencyName.put("ALL",ConsistencyLevel.ALL);
        consistencyName.put("EACH_QUORUM",ConsistencyLevel.EACH_QUORUM);
        consistencyName.put("QUORUM",ConsistencyLevel.QUORUM);
        consistencyName.put("LOCAL_QUORUM",ConsistencyLevel.LOCAL_QUORUM);
        consistencyName.put("LOCAL_ONE",ConsistencyLevel.LOCAL_ONE);
        consistencyName.put("LOCAL_SERIAL",ConsistencyLevel.LOCAL_SERIAL);
    }

    // Cassandra Values
    private static String cassName = "cassandra";
    private static String cassPwd;
    private static String myCassaHost = LOCALHOST;
    private static int cassandraPort = 9042;
    private static int cassandraConnectTimeOutMS; 
    private static int cassandraReadTimeOutMS;

    // AAF
    private static String musicAafNs = "org.onap.music.cadi";

    // Locking
    public static final long MusicEternityEpochMillis = 1533081600000L; // Wednesday, August 1, 2018 12:00:00 AM
    public static final long MaxLockReferenceTimePart = 1000000000000L; // millis after eternity (eq sometime in 2050)
    public static final long MaxCriticalSectionDurationMillis = 1L * 24 * 60 * 60 * 1000; // 1 day

    // Response/Request tracking headers
    private static String transIdPrefix = "false";
    private static String conversationIdPrefix = "false";
    private static String clientIdPrefix = "false";
    private static String messageIdPrefix = "false";
    private static Boolean transIdRequired = false;
    private static Boolean conversationIdRequired = false;
    private static Boolean clientIdRequired = false;
    private static Boolean messageIdRequired = false;
    private static String cipherEncKey = "";
    
    private static long createLockWaitPeriod = 300;
    private static int createLockWaitIncrement = 50;
    
    public static long getCreateLockWaitPeriod() {
        return createLockWaitPeriod;
    }
    
    public static void setCreateLockWaitPeriod(long createLockWaitPeriod) {
        MusicUtil.createLockWaitPeriod = createLockWaitPeriod;
    }

    public static int getCreateLockWaitIncrement() {
        return createLockWaitIncrement;
    }
    
    public static void setCreateLockWaitIncrement(int createLockWaitIncrement) {
        MusicUtil.createLockWaitIncrement = createLockWaitIncrement;
    }
    
    public MusicUtil() {
        throw new IllegalStateException("Utility Class");
    }

    public static String getLockUsing() {
        return lockUsing;
    }

    public static void setLockUsing(String lockUsing) {
        MusicUtil.lockUsing = lockUsing;
    }

    /**
     *
     * @return cassandra port
     */
    public static int getCassandraPort() {
        return cassandraPort;
    }

    /**
     * set cassandra port
     * @param cassandraPort
     */
    public static void setCassandraPort(int cassandraPort) {
        MusicUtil.cassandraPort = cassandraPort;
    }
    /**
     * @return the cassName
     */
    public static String getCassName() {
        return cassName;
    }

    /**
     * @return the cassPwd
     */
    public static String getCassPwd() {
        return cassPwd;
    }

    public static int getCassandraConnectTimeOutMS() {
        return cassandraConnectTimeOutMS;
    }

    public static void setCassandraConnectTimeOutMS(int cassandraConnectTimeOutMS) {
        MusicUtil.cassandraConnectTimeOutMS = cassandraConnectTimeOutMS;
    }

    public static int getCassandraReadTimeOutMS() {
        return cassandraReadTimeOutMS;
    }

    public static void setCassandraReadTimeOutMS(int cassandraReadTimeOutMS) {
        MusicUtil.cassandraReadTimeOutMS = cassandraReadTimeOutMS;
    }

    /**
     * Returns An array of property names that should be in the Properties
     * files.
     *
//     * @return
//     */
    //    public static String[] getPropkeys() {
    //        return propKeys.clone();
    //    }

    /**
     * Get MusicPropertiesFilePath - Default = /opt/music/music.properties
     * property file value - music.properties
     *
     * @return
     */
    public static String getMusicPropertiesFilePath() {
        return musicPropertiesFilePath;
    }

    /**
     * Set MusicPropertiesFilePath
     *
     * @param musicPropertiesFilePath
     */
    public static void setMusicPropertiesFilePath(String musicPropertiesFilePath) {
        MusicUtil.musicPropertiesFilePath = musicPropertiesFilePath;
    }

    /**
     * Get DefaultLockLeasePeriod - Default = 6000 property file value -
     * lock.lease.period
     *
     * @return
     */
    public static long getDefaultLockLeasePeriod() {
        return defaultLockLeasePeriod;
    }

    /**
     * Set DefaultLockLeasePeriod
     *
     * @param defaultLockLeasePeriod
     */
    public static void setDefaultLockLeasePeriod(long defaultLockLeasePeriod) {
        MusicUtil.defaultLockLeasePeriod = defaultLockLeasePeriod;
    }

    /**
     * Set Debug
     *
     * @param debug
     */
    public static void setDebug(boolean debug) {
        MusicUtil.debug = debug;
    }

    /**
     * Is Debug - Default = true property file value - debug
     *
     * @return
     */
    public static boolean isDebug() {
        return debug;
    }

    /**
     * Set Version
     *
     * @param version
     */
    public static void setVersion(String version) {
        MusicUtil.version = version;
    }

    /**
     * Return the version property file value - version.
     *
     * @return
     */
    public static String getVersion() {
        return version;
    }

    /**
     * Set the build of project which is a combination of the 
     * version and the date.
     * 
     * @param build - version-date.
     */
    public static void setBuild(String build) {
        MusicUtil.build = build;
    }

    /**
     * Return the build version-date.
     */
    public static String getBuild() {
        return build;
    }

    /**
     * Get MyCassHost - Cassandra Hostname - Default = localhost property file
     * value - cassandra.host
     *
     * @return
     */
    public static String getMyCassaHost() {
        return myCassaHost;
    }

    /**
     * Set MyCassHost - Cassandra Hostname
     *
     * @param myCassaHost .
     */
    public static void setMyCassaHost(String myCassaHost) {
        MusicUtil.myCassaHost = myCassaHost;
    }

    /**
     * Gey default retry count
     * @return
     */
    public static int getRetryCount() {
        return retryCount;
    }

    /**
     * Set retry count
     * @param retryCount .
     */
    public static void setRetryCount(int retryCount) {
        MusicUtil.retryCount = retryCount;
    }


    /**
     * This is used to turn keyspace creation api on/off.
     * 
     */
    public static void setKeyspaceActive(Boolean keyspaceActive) {
        MusicUtil.isKeyspaceActive = keyspaceActive;
    }

    /**
     * This is used to turn keyspace creation api on/off.
     * @return boolean isKeyspaceActive
     */
    public static boolean isKeyspaceActive() {
        return isKeyspaceActive;
    }

    /**
     * This method depricated as its not used or needed.
     * 
     * @return String
     */
    @Deprecated
    public static String getTestType() {
        String testType = "";
        try {
            Scanner fileScanner = new Scanner(new File(""));
            testType = fileScanner.next();// ignore the my id line
            @SuppressWarnings("unused")
            String batchSize = fileScanner.next();// ignore the my public ip line
            fileScanner.close();
        } catch (FileNotFoundException e) {
            logger.error(EELFLoggerDelegate.errorLogger, e.getMessage(), e);
        }
        return testType;

    }

    /**
     * Method to do a Thread Sleep.
     * Used for adding a delay. 
     * 
     * @param time
     */
    public static void sleep(long time) {
        try {
            Thread.sleep(time);
        } catch (InterruptedException e) {
            logger.error(EELFLoggerDelegate.errorLogger, e.getMessage(), e);
            Thread.currentThread().interrupt();
        }
    }

    /**
     * Utility function to check if the query object is valid.
     *
     * @param withparams
     * @param queryObject
     * @return
     */
    public static boolean isValidQueryObject(boolean withparams, PreparedQueryObject queryObject) {
        if (withparams) {
            int noOfValues = queryObject.getValues().size();
            int noOfParams = 0;
            char[] temp = queryObject.getQuery().toCharArray();
            for (int i = 0; i < temp.length; i++) {
                if (temp[i] == '?')
                    noOfParams++;
            }
            return (noOfValues == noOfParams);
        } else {
            return !queryObject.getQuery().isEmpty();
        }

    }

    public static void setCassName(String cassName) {
        MusicUtil.cassName = cassName;
    }

    public static void setCassPwd(String cassPwd) {
        MusicUtil.cassPwd = cassPwd;
    }

    @SuppressWarnings("unchecked")
    public static String convertToCQLDataType(DataType type, Object valueObj) throws Exception {

        String value = "";
        switch (type.getName()) {
            case UUID:
                value = valueObj + "";
                break;
            case TEXT:
            case VARCHAR:
                String valueString = valueObj + "";
                valueString = valueString.replace("'", "''");
                value = "'" + valueString + "'";
                break;
            case MAP: {
                Map<String, Object> otMap = (Map<String, Object>) valueObj;
                value = "{" + jsonMaptoSqlString(otMap, ",") + "}";
                break;
            }
            default:
                value = valueObj + "";
                break;
        }
        return value;
    }

    /**
     *
     * @param colType
     * @param valueObj
     * @return
     * @throws MusicTypeConversionException
     * @throws Exception
     */
    @SuppressWarnings("unchecked")
    public static Object convertToActualDataType(DataType colType, Object valueObj) throws Exception {
        String valueObjString = valueObj + "";
        switch (colType.getName()) {
            case UUID:
                return UUID.fromString(valueObjString);
            case VARINT:
                return BigInteger.valueOf(Long.parseLong(valueObjString));
            case BIGINT:
                return Long.parseLong(valueObjString);
            case INT:
                return Integer.parseInt(valueObjString);
            case FLOAT:
                return Float.parseFloat(valueObjString);
            case DOUBLE:
                return Double.parseDouble(valueObjString);
            case BOOLEAN:
                return Boolean.parseBoolean(valueObjString);
            case MAP:
                return (Map<String, Object>) valueObj;
            case LIST:
                return valueObj;
            case BLOB:

            default:
                return valueObjString;
        }
    }

    public static ByteBuffer convertToActualDataType(DataType colType, byte[] valueObj) {
    	
        return ByteBuffer.wrap(valueObj);
    }

    /**
     *
     * Utility function to parse json map into sql like string
     *
     * @param jMap
     * @param lineDelimiter
     * @return
     */

    public static String jsonMaptoSqlString(Map<String, Object> jMap, String lineDelimiter) throws Exception{
        StringBuilder sqlString = new StringBuilder();
        int counter = 0;
        for (Map.Entry<String, Object> entry : jMap.entrySet()) {
            Object ot = entry.getValue();
            String value = ot + "";
            if (ot instanceof String) {
                value = "'" + value.replace("'", "''") + "'";
            }
            sqlString.append("'" + entry.getKey() + "':" + value);
            if (counter != jMap.size() - 1)
                sqlString.append(lineDelimiter);
            counter = counter + 1;
        }
        return sqlString.toString();
    }

    @SuppressWarnings("unused")
    public static String buildVersion(String major, String minor, String patch) {
        if (minor != null) {
            major += "." + minor;
            if (patch != null) {
                major += "." + patch;
            }
        }
        return major;
    }

    /**
     * Currently this will build a header with X-latestVersion, X-minorVersion and X-pathcVersion
     * X-latestVerstion will be equal to the latest full version.
     * X-minorVersion - will be equal to the latest minor version.
     * X-pathVersion - will be equal to the latest patch version.
     * Future plans will change this.
     * @param response
     * @param major
     * @param minor
     * @param patch
     * @return
     */
    public static ResponseBuilder buildVersionResponse(String major, String minor, String patch) {
        ResponseBuilder response = Response.noContent();
        String versionIn = buildVersion(major,minor,patch);
        String version = MusicUtil.getVersion();
        String[] verArray = version.split("\\.",3);
        if ( minor != null ) {
            response.header(XMINORVERSION,minor);
        } else {
            response.header(XMINORVERSION,verArray[1]);
        }
        if ( patch != null ) {
            response.header(XPATCHVERSION,patch);
        } else {
            response.header(XPATCHVERSION,verArray[2]);
        }
        response.header(XLATESTVERSION,version);
        logger.info(EELFLoggerDelegate.auditLogger,"Version In:" + versionIn);
        return response;
    }

    public static boolean isValidConsistency(String consistency) {
        for (String string : cosistencyLevel) {
            if (string.equalsIgnoreCase(consistency))
                return true;
        }
        return false;

    }

    public static ConsistencyLevel getConsistencyLevel(String consistency) {
        return consistencyName.get(consistency.toUpperCase());
    }

    /**
     * Given the time of write for an update in a critical section, this method provides a transformed timestamp
     * that ensures that a previous lock holder who is still alive can never corrupt a later critical section.
     * The main idea is to us the lock reference to clearly demarcate the timestamps across critical sections.
     * @param the UUID lock reference associated with the write.
     * @param the long timeOfWrite which is the actual time at which the write took place
     * @throws MusicServiceException
     * @throws MusicQueryException
     */
    public static long v2sTimeStampInMicroseconds(long ordinal, long timeOfWrite) throws MusicServiceException, MusicQueryException{
        // TODO: use acquire time instead of music eternity epoch
        return ordinal * MaxLockReferenceTimePart + (timeOfWrite - MusicEternityEpochMillis);
    }

    public static MusicCoreService  getMusicCoreService() {
        if(getLockUsing().equals(MusicUtil.CASSANDRA))
            return MusicCassaCore.getInstance();
        else
            return MusicCassaCore.getInstance();
    }

    /**
     * @param lockName
     * @return
     */
    public static Map<String, Object> validateLock(String lockName) {
        Map<String, Object> resultMap = new HashMap<>();
        String[] locks = lockName.split("\\.");
        if(locks.length < 3) {
            resultMap.put("Error", "Invalid lock. Please make sure lock is of the type keyspaceName.tableName.primaryKey");
            return resultMap;
        }
        String keyspace= locks[0];
        if(keyspace.startsWith("$"))
            keyspace = keyspace.substring(1);
        resultMap.put("keyspace",keyspace);
        return resultMap;
    }


    public static void setIsCadi(boolean isCadi) {
        MusicUtil.isCadi = isCadi;
    }

    public static void writeBackToQuorum(PreparedQueryObject selectQuery, String primaryKeyName,
            PreparedQueryObject updateQuery, String keyspace, String table,
            Object cqlFormattedPrimaryKeyValue)
                    throws Exception {
        try {
            ResultSet results = MusicDataStoreHandle.getDSHandle().executeQuorumConsistencyGet(selectQuery);
            // write it back to a quorum
            Row row = results.one();
            ColumnDefinitions colInfo = row.getColumnDefinitions();
            int totalColumns = colInfo.size();
            int counter = 1;
            StringBuilder fieldValueString = new StringBuilder("");
            for (Definition definition : colInfo) {
                String colName = definition.getName();
                if (colName.equals(primaryKeyName))
                    continue;
                DataType colType = definition.getType();
                Object valueObj = MusicDataStoreHandle.getDSHandle().getColValue(row, colName, colType);
                Object valueString = MusicUtil.convertToActualDataType(colType, valueObj);
                fieldValueString.append(colName + " = ?");
                updateQuery.addValue(valueString);
                if (counter != (totalColumns - 1))
                    fieldValueString.append(",");
                counter = counter + 1;
            }
            updateQuery.appendQueryString("UPDATE " + keyspace + "." + table + " SET "
                    + fieldValueString + " WHERE " + primaryKeyName + "= ? " + ";");
            updateQuery.addValue(cqlFormattedPrimaryKeyValue);

            MusicDataStoreHandle.getDSHandle().executePut(updateQuery, "critical");
        } catch (MusicServiceException | MusicQueryException e) {
            logger.error(EELFLoggerDelegate.errorLogger,e.getMessage(), AppMessages.QUERYERROR +""+updateQuery ,
                    ErrorSeverity.MAJOR, ErrorTypes.QUERYERROR, e);
        }
    }

    public static boolean getIsCadi() {
        return MusicUtil.isCadi;
    }


    /**
     * @return a random uuid
     */
    public static String generateUUID() {
        String uuid = UUID.randomUUID().toString();
        logger.info(EELFLoggerDelegate.applicationLogger,"New AID generated: "+uuid);
        return uuid;
    }

    private static String checkPrefix(String prefix){
        if (prefix == null || "".equals(prefix) || prefix.endsWith("-")) {
            return prefix;
        } else {
            return prefix + "-";
        }
    }

    /**
     * @return the transIdPrefix
     */
    public static String getTransIdPrefix() {
        return transIdPrefix;
    }

    /**
     * @param transIdPrefix the transIdPrefix to set
     */
    public static void setTransIdPrefix(String transIdPrefix) {
        MusicUtil.transIdPrefix = checkPrefix(transIdPrefix);
    }

    /**
     * @return the conversationIdPrefix
     */
    public static String getConversationIdPrefix() {
        return conversationIdPrefix;
    }

    /**
     * @param conversationIdPrefix the conversationIdPrefix to set
     */
    public static void setConversationIdPrefix(String conversationIdPrefix) {
        MusicUtil.conversationIdPrefix = checkPrefix(conversationIdPrefix);
    }

    /**
     * @return the clientIdPrefix
     */
    public static String getClientIdPrefix() {
        return clientIdPrefix;
    }

    /**
     * @param clientIdPrefix the clientIdPrefix to set
     */
    public static void setClientIdPrefix(String clientIdPrefix) {
        MusicUtil.clientIdPrefix = checkPrefix(clientIdPrefix);
    }

    /**
     * @return the messageIdPrefix
     */
    public static String getMessageIdPrefix() {
        return messageIdPrefix;
    }

    /**
     * @param messageIdPrefix the messageIdPrefix to set
     */
    public static void setMessageIdPrefix(String messageIdPrefix) {
        MusicUtil.messageIdPrefix = checkPrefix(messageIdPrefix);
    }

    /**
     * @return the transIdRequired
     */
    public static Boolean getTransIdRequired() {
        return transIdRequired;
    }


    /**
     * @param transIdRequired the transIdRequired to set
     */
    public static void setTransIdRequired(Boolean transIdRequired) {
        MusicUtil.transIdRequired = transIdRequired;
    }


    /**
     * @return the conversationIdRequired
     */
    public static Boolean getConversationIdRequired() {
        return conversationIdRequired;
    }


    /**
     * @param conversationIdRequired the conversationIdRequired to set
     */
    public static void setConversationIdRequired(Boolean conversationIdRequired) {
        MusicUtil.conversationIdRequired = conversationIdRequired;
    }


    /**
     * @return the clientIdRequired
     */
    public static Boolean getClientIdRequired() {
        return clientIdRequired;
    }


    /**
     * @param clientIdRequired the clientIdRequired to set
     */
    public static void setClientIdRequired(Boolean clientIdRequired) {
        MusicUtil.clientIdRequired = clientIdRequired;
    }


    /**
     * @return the messageIdRequired
     */
    public static Boolean getMessageIdRequired() {
        return messageIdRequired;
    }

    /**
     * @param messageIdRequired the messageIdRequired to set
     */
    public static void setMessageIdRequired(Boolean messageIdRequired) {
        MusicUtil.messageIdRequired = messageIdRequired;
    }

    /**
    *  @return the sleep time, in milliseconds, for the lock cleanup daemon
    */
    public static long getLockDaemonSleepTimeMs() {
        return lockDaemonSleepms;
    }
    
    /**
    * set the sleep time, in milliseconds, for the lock cleanup daemon
    */
    public static void setLockDaemonSleepTimeMs(long timeoutms) {
        MusicUtil.lockDaemonSleepms = timeoutms;
    }

    public static Set<String> getKeyspacesToCleanLocks() {
        return keyspacesToCleanLocks;
    }

    public static void setKeyspacesToCleanLocks(Set<String> keyspaces) {
        MusicUtil.keyspacesToCleanLocks = keyspaces;
    }

    public static String getCipherEncKey() {
        return MusicUtil.cipherEncKey;
    }


    public static void setCipherEncKey(String cipherEncKey) {
        MusicUtil.cipherEncKey = cipherEncKey;
        if ( null == cipherEncKey || cipherEncKey.equals("") || 
                cipherEncKey.equals("nothing to see here")) {
            logger.error(EELFLoggerDelegate.errorLogger, "Missing Cipher Encryption Key.");
        }
    }

    public static String getMusicAafNs() {
        return MusicUtil.musicAafNs;
    }


    public static void setMusicAafNs(String musicAafNs) {
        MusicUtil.musicAafNs = musicAafNs;
    }



}