aboutsummaryrefslogtreecommitdiffstats
path: root/dblib/provider/src/main/java/org/onap/ccsdk/sli/core/dblib/DBResourceManager.java
blob: 9acae340bfe02b3401db3db4df97f85b8ae0688c (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
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
/*-
 * ============LICENSE_START=======================================================
 * onap
 * ================================================================================
 * Copyright (C) 2016 - 2017 ONAP
 * ================================================================================
 * 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.ccsdk.sli.core.dblib;

import java.io.PrintWriter;
import java.sql.Connection;
import java.sql.SQLDataException;
import java.sql.SQLException;
import java.sql.SQLFeatureNotSupportedException;
import java.sql.SQLIntegrityConstraintViolationException;
import java.sql.SQLNonTransientConnectionException;
import java.sql.SQLSyntaxErrorException;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashSet;
import java.util.Iterator;
import java.util.Observable;
import java.util.Properties;
import java.util.Set;
import java.util.SortedSet;
import java.util.TimerTask;
import java.util.concurrent.ConcurrentLinkedQueue;
import java.util.concurrent.ConcurrentSkipListSet;

import javax.sql.DataSource;
import javax.sql.rowset.CachedRowSet;

import org.apache.tomcat.jdbc.pool.PoolExhaustedException;
import org.onap.ccsdk.sli.core.dblib.config.DbConfigPool;
import org.onap.ccsdk.sli.core.dblib.config.JDBCConfiguration;
import org.onap.ccsdk.sli.core.dblib.factory.DBConfigFactory;
import org.onap.ccsdk.sli.core.dblib.pm.PollingWorker;
import org.onap.ccsdk.sli.core.dblib.pm.SQLExecutionMonitor;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

/**
 * @version $Revision: 1.15 $
 * Change Log
 * Author         Date     Comments
 * ============== ======== ====================================================
 * Rich Tabedzki
 */
public class DBResourceManager implements DataSource, DataAccessor, DBResourceObserver, DbLibService {
    private static Logger LOGGER = LoggerFactory.getLogger(DBResourceManager.class);

    transient boolean terminating = false;
    transient protected long retryInterval = 10000L;
    transient boolean recoveryMode = true;

    SortedSet<CachedDataSource> dsQueue = new ConcurrentSkipListSet<CachedDataSource>(new DataSourceComparator());
    protected final Set<CachedDataSource> broken = Collections.synchronizedSet(new HashSet<CachedDataSource>());
    protected final Object monitor = new Object();
    protected final Properties configProps;
    protected final Thread worker;

    protected final long terminationTimeOut;
    protected final boolean monitorDbResponse;
    protected final long monitoringInterval;
    protected final long monitoringInitialDelay;
    protected final long expectedCompletionTime;
    protected final long unprocessedFailoverThreshold;

    public DBResourceManager(final DBLIBResourceProvider configuration) {
        this(configuration.getProperties());
    }

    public DBResourceManager(final Properties properties) {
        this.configProps = properties;

        // get retry interval value
        retryInterval = getLongFromProperties(properties, "org.onap.dblib.connection.retry", 10000L);

        // get recovery mode flag
        recoveryMode = getBooleanFromProperties(properties, "org.onap.dblib.connection.recovery", true);
        if(!recoveryMode)
        {
            recoveryMode = false;
            LOGGER.info("Recovery Mode disabled");
        }
        // get time out value for thread cleanup
        terminationTimeOut = getLongFromProperties(properties, "org.onap.dblib.termination.timeout", 300000L);
        // get properties for monitoring
        monitorDbResponse = getBooleanFromProperties(properties, "org.onap.dblib.connection.monitor", false);
        monitoringInterval = getLongFromProperties(properties, "org.onap.dblib.connection.monitor.interval", 1000L);
        monitoringInitialDelay = getLongFromProperties(properties, "org.onap.dblib.connection.monitor.startdelay", 5000L);
        expectedCompletionTime = getLongFromProperties(properties, "org.onap.dblib.connection.monitor.expectedcompletiontime", 5000L);
        unprocessedFailoverThreshold = getLongFromProperties(properties, "org.onap.dblib.connection.monitor.unprocessedfailoverthreshold", 3L);

        // initialize performance monitor
        PollingWorker.createInistance(properties);

        // initialize recovery thread
        worker = new RecoveryMgr();
        worker.setName("DBResourcemanagerWatchThread");
        worker.setDaemon(true);
        worker.start();

        try {
            this.config(properties);
        } catch (final Exception e) {
            // TODO: config throws <code>Exception</code> which is poor practice.  Eliminate this in a separate patch.
            LOGGER.error("Fatal Exception encountered while configuring DBResourceManager", e);
        }
    }

    private void config(Properties configProps) throws Exception {
        final ConcurrentLinkedQueue<CachedDataSource> semaphore = new ConcurrentLinkedQueue<>();
        final DbConfigPool dbConfig = DBConfigFactory.createConfig(configProps);

        long startTime = System.currentTimeMillis();

        try {
            JDBCConfiguration[] config = dbConfig.getJDBCbSourceArray();
            CachedDataSource[] cachedDS = new CachedDataSource[config.length];
            if (cachedDS == null || cachedDS.length == 0) {
                LOGGER.error("Initialization of CachedDataSources failed. No instance was created.");
                throw new Exception("Failed to initialize DB Library. No data source was created.");
            }

            for(int i = 0; i < config.length; i++) {
                cachedDS[i] = CachedDataSourceFactory.createDataSource(config[i]);
                if(cachedDS[i] == null)
                    continue;
                semaphore.add(cachedDS[i]);
                    cachedDS[i].setInterval(monitoringInterval);
                    cachedDS[i].setInitialDelay(monitoringInitialDelay);
                    cachedDS[i].setExpectedCompletionTime(expectedCompletionTime);
                    cachedDS[i].setUnprocessedFailoverThreshold(unprocessedFailoverThreshold);
                cachedDS[i].addObserver(DBResourceManager.this);
            }

            DataSourceTester[] tester = new DataSourceTester[config.length];

            for(int i=0; i<tester.length; i++){
                tester[i] = new DataSourceTester(cachedDS[i], DBResourceManager.this, semaphore);
                tester[i].start();
                }

            // the timeout param is set is seconds.
            long timeout = ((dbConfig.getTimeout() <= 0) ? 60L : dbConfig.getTimeout());
            LOGGER.debug("Timeout set to {} seconds", timeout);
            timeout *= 1000;


            synchronized (semaphore) {
                semaphore.wait(timeout);
            }
        } catch(Exception exc){
            LOGGER.warn("DBResourceManager.initWorker", exc);
        } finally {
            startTime = System.currentTimeMillis() - startTime;
            LOGGER.info("Completed wait with {} active datasource(s) in {} ms", dsQueue.size(), startTime);
        }
    }


    private final class DataSourceComparator implements Comparator<CachedDataSource> {
        @Override
        public int compare(CachedDataSource left, CachedDataSource right) {
            if(LOGGER.isTraceEnabled())
                LOGGER.trace("----------SORTING-------- () : ()", left.getDbConnectionName(), right.getDbConnectionName());
            try {
                if(left == right) {
                    return 0;
                }
                if(left == null){
                    return 1;
                }
                if(right == null){
                    return -1;
                }

                if(!left.isSlave())
                    return -1;
                if(!right.isSlave())
                    return 1;

            } catch (Throwable e) {
                LOGGER.warn("", e);
            }
            return -1;
        }
    }

    class DataSourceTester extends Thread {

        private final CachedDataSource ds;
        private final DBResourceManager manager;
        private final ConcurrentLinkedQueue<CachedDataSource> semaphoreQ;

        public DataSourceTester(CachedDataSource ds, DBResourceManager manager, ConcurrentLinkedQueue<CachedDataSource> semaphore) {
            this.ds = ds;
            this.manager = manager;
            this.semaphoreQ = semaphore;
        }

        @Override
        public void run() {
            manager.setDataSource(ds);
            boolean slave = true;
            if(ds != null) {
                try {
                    slave = ds.isSlave();
                } catch (Exception exc) {
                    LOGGER.warn("", exc);
                }
            }
            if(!slave) {
                LOGGER.info("Adding MASTER {} to active queue", ds.getDbConnectionName());
                try {
                    synchronized (semaphoreQ) {
                        semaphoreQ.notifyAll();
                    }
                } catch(Exception exc) {
                    LOGGER.warn("", exc);
                }
        }
            try {
                synchronized (semaphoreQ) {
                    semaphoreQ.remove(ds);
                }
                if(semaphoreQ.isEmpty()) {
                    synchronized (semaphoreQ) {
                        semaphoreQ.notifyAll();
                    }
                }
            } catch(Exception exc) {
                LOGGER.warn("", exc);
            }
            if(ds != null)
                LOGGER.info("Thread DataSourceTester terminated {} for {}", this.getName(), ds.getDbConnectionName());
        }

    }


    private long getLongFromProperties(Properties props, String property, long defaultValue)
    {
        String value = null;
        long tmpLongValue = defaultValue;
        try {
            value = props.getProperty(property);
            if(value != null)
                tmpLongValue = Long.parseLong(value);

        } catch(NumberFormatException exc) {
            if(LOGGER.isWarnEnabled()){
                LOGGER.warn("'"+property+"'=" + value+" is invalid. It should be a numeric value");
            }
        } catch(Exception exc) {
        }
        return tmpLongValue;

    }

    private boolean getBooleanFromProperties(Properties props, String property, boolean defaultValue)
    {
        boolean tmpValue = defaultValue;
        String value = null;

        try {
            value = props.getProperty(property);
            if(value != null)
                tmpValue = Boolean.parseBoolean(value);

        } catch(NumberFormatException exc) {
            if(LOGGER.isWarnEnabled()){
                LOGGER.warn("'"+property+"'=" + value+" is invalid. It should be a boolean value");
            }
        } catch(Exception exc) {
        }
        return tmpValue;

    }


    @Override
    public void update(Observable observable, Object data) {
        // if observable is active and there is a standby available, switch
        if(observable instanceof SQLExecutionMonitor)
        {
            SQLExecutionMonitor monitor = (SQLExecutionMonitor)observable;
            if(monitor.getParent() instanceof CachedDataSource)
            {
                CachedDataSource dataSource = (CachedDataSource)monitor.getParent();
                if(dataSource == dsQueue.first())
                {
                    if(recoveryMode && dsQueue.size() > 1){
                        handleGetConnectionException(dataSource, new Exception(data.toString()));
                    }
                }
            }
        }
    }

    public void testForceRecovery()
    {
        CachedDataSource active = this.dsQueue.first();
        handleGetConnectionException(active, new Exception("test"));
    }

    class RecoveryMgr extends Thread {

        @Override
        public void run() {
            while(!terminating)
            {
                try {
                    Thread.sleep(retryInterval);
                } catch (InterruptedException e1) {    }
                CachedDataSource brokenSource = null;
                try {
                    if (!broken.isEmpty()) {
                        CachedDataSource[] sourceArray = broken.toArray(new CachedDataSource[0]);
                        for (int i = 0; i < sourceArray.length; i++)
                        {
                            brokenSource = sourceArray[i];
                            if (brokenSource instanceof TerminatingCachedDataSource)
                                break;
                            if (resetConnectionPool(brokenSource)) {
                                broken.remove(brokenSource);
                                brokenSource.blockImmediateOffLine();
                                dsQueue.add(brokenSource);
                                LOGGER.info("DataSource <"
                                        + brokenSource.getDbConnectionName()
                                        + "> recovered.");
                            }
                            brokenSource = null;
                        }
                    }
                } catch (Exception exc) {
                    LOGGER.warn(exc.getMessage());
                    if(brokenSource != null){
                        try {
                            if(!broken.contains(brokenSource))
                                broken.add(brokenSource);
                            brokenSource = null;
                        } catch (Exception e1) {    }
                    }
                }
            }
            LOGGER.info("DBResourceManager.RecoveryMgr <"+this.toString() +"> terminated." );
        }

        private boolean resetConnectionPool(CachedDataSource dataSource){
            try {
                return dataSource.testConnection();
            } catch (Exception exc) {
                LOGGER.info("DataSource <" + dataSource.getDbConnectionName() + "> resetCache failed with error: "+ exc.getMessage());
                return false;
            }
        }
    }

    /* (non-Javadoc)
     * @see org.onap.ccsdk.sli.resource.dblib.DbLibService#getData(java.lang.String, java.util.ArrayList, java.lang.String)
     */
    @Override
    public CachedRowSet getData(String statement, ArrayList<String> arguments, String preferredDS) throws SQLException {
        ArrayList<Object> newList= new ArrayList<>();
        if(arguments != null && !arguments.isEmpty()) {
            newList.addAll(arguments);
        }
        if(recoveryMode)
            return requestDataWithRecovery(statement, newList, preferredDS);
        else
            return requestDataNoRecovery(statement, newList, preferredDS);
    }

    private CachedRowSet requestDataWithRecovery(String statement, ArrayList<Object> arguments, String preferredDS) throws SQLException {
        Throwable lastException = null;

        // test if there are any connection pools available
        if(this.dsQueue.isEmpty()){
            LOGGER.error("Generated alarm: DBResourceManager.getData - No active DB connection pools are available.");
            throw new DBLibException("No active DB connection pools are available in RequestDataWithRecovery call.");
        }

        // loop through available data sources to retrieve data.
        for(int i=0; i< 2; i++)
        {
            CachedDataSource active = this.dsQueue.first();

            long time = System.currentTimeMillis();
            try {
                if(!active.isFabric()) {
                    if(this.dsQueue.size() > 1 && active.isSlave()) {
                    CachedDataSource master = findMaster();
                    if(master != null) {
                        active = master;
                    }
                }
                }

                return active.getData(statement, arguments);
            } catch(SQLDataException | SQLSyntaxErrorException | SQLIntegrityConstraintViolationException exc){
                throw exc;
            } catch(Throwable exc){
                if(exc instanceof SQLException) {
                    SQLException sqlExc = (SQLException)exc;
                    int code = sqlExc.getErrorCode();
                    String state = sqlExc.getSQLState();
                    LOGGER.debug("SQLException code: {} state: {}", code, state);
                    if("07001".equals(sqlExc.getSQLState())) {
                        throw sqlExc;
                    }
                }
                lastException = exc;
                LOGGER.error("Generated alarm: "+active.getDbConnectionName(), exc);
                handleGetConnectionException(active, exc);
            } finally {
                if(LOGGER.isDebugEnabled()){
                    time = System.currentTimeMillis() - time;
                    LOGGER.debug("getData processing time : "+ active.getDbConnectionName()+"  "+time+" miliseconds.");
                }
            }
        }
        if(lastException instanceof SQLException){
            throw (SQLException)lastException;
        }
        // repackage the exception
        // you are here because either you run out of available data sources
        // or the last exception was not of SQLException type.
        // repackage the exception
        if(lastException == null) {
            throw new DBLibException("The operation timed out while waiting to acquire a new connection." );
        } else {
            SQLException exception = new DBLibException(lastException.getMessage());
            exception.setStackTrace(lastException.getStackTrace());
            if(lastException.getCause() instanceof SQLException) {
                throw (SQLException)lastException.getCause();
            }
            throw exception;
        }
    }

    private CachedRowSet requestDataNoRecovery(String statement, ArrayList<Object> arguments, String preferredDS) throws SQLException {
        if(dsQueue.isEmpty()){
            LOGGER.error("Generated alarm: DBResourceManager.getData - No active DB connection pools are available.");
            throw new DBLibException("No active DB connection pools are available in RequestDataNoRecovery call.");
        }
        CachedDataSource active = this.dsQueue.first();
        long time = System.currentTimeMillis();
        try {
            if(!active.isFabric()) {
                if(this.dsQueue.size() > 1 && active.isSlave()) {
                CachedDataSource master = findMaster();
                    if(master != null) {
                    active = master;
            }
                }
            }
            return active.getData(statement, arguments);
//        } catch(SQLDataException exc){
//            throw exc;
        } catch(Throwable exc){
            String message = exc.getMessage();
            if(message == null)
                message = exc.getClass().getName();
            LOGGER.error("Generated alarm: "+active.getDbConnectionName()+" - "+message);
            if(exc instanceof SQLException)
                throw (SQLException)exc;
            else {
                DBLibException excptn = new DBLibException(exc.getMessage());
                excptn.setStackTrace(exc.getStackTrace());
                throw excptn;
            }
        } finally {
            if(LOGGER.isDebugEnabled()){
                time = System.currentTimeMillis() - time;
                LOGGER.debug(">> getData : "+ active.getDbConnectionName()+"  "+time+" miliseconds.");
            }
        }
    }


    /* (non-Javadoc)
     * @see org.onap.ccsdk.sli.resource.dblib.DbLibService#writeData(java.lang.String, java.util.ArrayList, java.lang.String)
     */
    @Override
    public boolean writeData(String statement, ArrayList<String> arguments, String preferredDS) throws SQLException
        {
        ArrayList<Object> newList= new ArrayList<>();
        if(arguments != null && !arguments.isEmpty()) {
            newList.addAll(arguments);
        }

        return writeDataNoRecovery(statement, newList, preferredDS);
    }

    synchronized CachedDataSource findMaster() throws SQLException {
        final CachedDataSource[] clone = this.dsQueue.toArray(new CachedDataSource[0]);

        for(final CachedDataSource  dss : clone) {
            if(!dss.isSlave()) {
                final CachedDataSource first = this.dsQueue.first();
                if(first != dss) {
                    if(LOGGER.isDebugEnabled())
                        LOGGER.debug("----------REODRERING--------");
                    dsQueue.clear();
                    if(!dsQueue.addAll(Arrays.asList(clone))) {
                        LOGGER.error("Failed adding datasources");
                }
                }
                return  dss;
            }
        }
        LOGGER.warn("MASTER not found.");
        return null;
    }


    private boolean writeDataNoRecovery(String statement, ArrayList<Object> arguments, String preferredDS) throws SQLException {
        if(dsQueue.isEmpty()){
            LOGGER.error("Generated alarm: DBResourceManager.getData - No active DB connection pools are available.");
            throw new DBLibException("No active DB connection pools are available in RequestDataNoRecovery call.");
        }

        boolean initialRequest = true;
        boolean retryAllowed = true;
        CachedDataSource active = this.dsQueue.first();
        long time = System.currentTimeMillis();
        while(initialRequest) {
            initialRequest = false;
            try {
                if(!active.isFabric()) {
                    if(this.dsQueue.size() > 1 && active.isSlave()) {
                    CachedDataSource master = findMaster();
                    if(master != null) {
                        active = master;
                    }
                }
                }

                return active.writeData(statement, arguments);
            } catch(Throwable exc){
                String message = exc.getMessage();
                if(message == null)
                    message = exc.getClass().getName();
                LOGGER.error("Generated alarm: "+active.getDbConnectionName()+" - "+message);
                if(exc instanceof SQLException) {
                    SQLException sqlExc = SQLException.class.cast(exc);
                    // handle read-only exception
                    if(sqlExc.getErrorCode() == 1290 && "HY000".equals(sqlExc.getSQLState())) {
                        LOGGER.warn("retrying due to: " + sqlExc.getMessage());
                        this.findMaster();
                        if(retryAllowed){
                            retryAllowed = false;
                            initialRequest = true;
                            continue;
                        }
                    }
                    throw (SQLException)exc;
                } else {
                    DBLibException excptn = new DBLibException(exc.getMessage());
                    excptn.setStackTrace(exc.getStackTrace());
                    throw excptn;
                }
            } finally {
                if(LOGGER.isDebugEnabled()){
                    time = System.currentTimeMillis() - time;
                    LOGGER.debug("writeData processing time : "+ active.getDbConnectionName()+"  "+time+" miliseconds.");
                }
            }
        }
        return true;
    }

    public void setDataSource(CachedDataSource dataSource) {
        if(this.dsQueue.contains(dataSource))
            return;
        if(this.broken.contains(dataSource))
            return;

        if(dataSource.testConnection(true)){
            this.dsQueue.add(dataSource);
        } else {
            this.broken.add(dataSource);
        }
    }

    @Override
    public Connection getConnection() throws SQLException {
        Throwable lastException = null;
        CachedDataSource active = null;

        if(dsQueue.isEmpty()){
            throw new DBLibException("No active DB connection pools are available in GetConnection call.");
        }

        try {
            active = dsQueue.first();

            if(!active.isFabric()) {
                if(this.dsQueue.size() > 1 && active.isSlave()) {
                    CachedDataSource master = findMaster();
                    if(master != null) {
                        active = master;
                    }
                }
            }
            return new DBLibConnection(active.getConnection(), active);
        } catch(javax.sql.rowset.spi.SyncFactoryException exc){
            LOGGER.debug("Free memory (bytes): " + Runtime.getRuntime().freeMemory());
            LOGGER.warn("CLASSPATH issue. Allowing retry", exc);
            lastException = exc;
        } catch(PoolExhaustedException exc) {
            throw new NoAvailableConnectionsException(exc);
        } catch(SQLNonTransientConnectionException exc){
            throw new NoAvailableConnectionsException(exc);
        } catch(Exception exc){
            lastException = exc;
            if(recoveryMode){
                handleGetConnectionException(active, exc);
            } else {
                if(exc instanceof SQLException) {
                    throw (SQLException)exc;
                } else {
                    DBLibException excptn = new DBLibException(exc.getMessage());
                    excptn.setStackTrace(exc.getStackTrace());
                    throw excptn;
                }
            }
        } catch (Throwable trwb) {
            DBLibException excptn = new DBLibException(trwb.getMessage());
            excptn.setStackTrace(trwb.getStackTrace());
            throw excptn;
        } finally {
            if(LOGGER.isDebugEnabled()){
                displayState();
            }
        }

        if(lastException instanceof SQLException){
            throw (SQLException)lastException;
        }
        // repackage the exception
        if(lastException == null) {
            throw new DBLibException("The operation timed out while waiting to acquire a new connection." );
        } else {
            SQLException exception = new DBLibException(lastException.getMessage());
            exception.setStackTrace(lastException.getStackTrace());
            if(lastException.getCause() instanceof SQLException) {
//                exception.setNextException((SQLException)lastException.getCause());
                throw (SQLException)lastException.getCause();
            }
            throw exception;
        }
    }

    @Override
    public Connection getConnection(String username, String password)
    throws SQLException {
        CachedDataSource active = null;

        if(dsQueue.isEmpty()){
            throw new DBLibException("No active DB connection pools are available in GetConnection call.");
        }


        try {
            active = dsQueue.first();
            if(!active.isFabric()) {
                if(this.dsQueue.size() > 1 && active.isSlave()) {
                    CachedDataSource master = findMaster();
                    if(master != null) {
                        active = master;
                    }
                }
            }
            return active.getConnection(username, password);
        } catch(Throwable exc){
            if(recoveryMode){
                handleGetConnectionException(active, exc);
            } else {
                if(exc instanceof SQLException)
                    throw (SQLException)exc;
                else {
                    DBLibException excptn = new DBLibException(exc.getMessage());
                    excptn.setStackTrace(exc.getStackTrace());
                    throw excptn;
                }
            }

        }

        throw new DBLibException("No connections available in DBResourceManager in GetConnection call.");
    }

    private void handleGetConnectionException(final CachedDataSource source, Throwable exc) {
        try {
            if(!source.canTakeOffLine())
            {
                LOGGER.error("Could not switch due to blocking");
                return;
            }

            boolean removed = dsQueue.remove(source);
            if(!broken.contains(source))
            {
                if(broken.add(source))
                {
                    LOGGER.warn("DB Recovery: DataSource <" + source.getDbConnectionName()    + "> put in the recovery mode. Reason : " + exc.getMessage());
                } else {
                    LOGGER.warn("Error putting DataSource <" +source.getDbConnectionName()+  "> in recovery mode.");
                }
            } else {
                LOGGER.info("DB Recovery: DataSource <" + source.getDbConnectionName() + "> already in recovery queue");
            }
            if(removed)
            {
                if(!dsQueue.isEmpty())
                {
                    LOGGER.warn("DB DataSource <" + dsQueue.first().getDbConnectionName()    + "> became active");
                }
            }
        } catch (Exception e) {
            LOGGER.error("", e);
        }
    }

    public void cleanUp() {
        for(Iterator<CachedDataSource> it=dsQueue.iterator();it.hasNext();){
            CachedDataSource cds = it.next();
            it.remove();
            cds.cleanUp();
        }

        try {
            this.terminating = true;
            if(broken != null)
            {
                try {
                    broken.add( new TerminatingCachedDataSource(null));
                } catch(Exception exc){
                    LOGGER.error("Waiting for Worker to stop", exc);
                }
            }
            worker.join(terminationTimeOut);
            LOGGER.info("DBResourceManager.RecoveryMgr <"+worker.toString() +"> termination was successful: " + worker.getState());
        } catch(Exception exc){
            LOGGER.error("Waiting for Worker thread to terminate ", exc);
        }
    }

    @Override
    public PrintWriter getLogWriter() throws SQLException {
        return this.dsQueue.first().getLogWriter();
    }

    @Override
    public int getLoginTimeout() throws SQLException {
        return this.dsQueue.first().getLoginTimeout();
    }

    @Override
    public void setLogWriter(PrintWriter out) throws SQLException {
        this.dsQueue.first().setLogWriter(out);
    }

    @Override
    public void setLoginTimeout(int seconds) throws SQLException {
        this.dsQueue.first().setLoginTimeout(seconds);
    }

    public void displayState(){
        if(LOGGER.isDebugEnabled()){
            LOGGER.debug("POOLS : Active = "+dsQueue.size() + ";\t Broken = "+broken.size());
            CachedDataSource current = dsQueue.first();
            if(current != null) {
                LOGGER.debug("POOL : Active name = \'"+current.getDbConnectionName()+ "\'");
            }
        }
    }

    /* (non-Javadoc)
     * @see org.onap.ccsdk.sli.resource.dblib.DbLibService#isActive()
     */
    @Override
    public boolean isActive() {
        return this.dsQueue.size()>0;
    }

    public String getActiveStatus(){
        return "Connected: " + dsQueue.size()+"\tIn-recovery: "+broken.size();
    }

    public String getDBStatus(boolean htmlFormat) {
        StringBuilder buffer = new StringBuilder();

        ArrayList<CachedDataSource> list = new ArrayList<>();
        list.addAll(dsQueue);
        list.addAll(broken);
        if (htmlFormat)
        {
            buffer.append("<tr class=\"headerRow\"><th id=\"header1\">")
                    .append("Name:").append("</th>");
            for (int i = 0; i < list.size(); i++) {
                buffer.append("<th id=\"header").append(2 + i).append("\">");
                buffer.append(list.get(i).getDbConnectionName()).append("</th>");
            }
            buffer.append("</tr>");

            buffer.append("<tr><td>State:</td>");
            for (int i = 0; i < list.size(); i++) {
                if (broken.contains(list.get(i))) {
                    buffer.append("<td>in recovery</td>");
                }
                if (dsQueue.contains(list.get(i))) {
                    if (dsQueue.first() == list.get(i))
                        buffer.append("<td>active</td>");
                    else
                        buffer.append("<td>standby</td>");
                }
            }
            buffer.append("</tr>");

        } else {
            for (int i = 0; i < list.size(); i++) {
                buffer.append("Name: ").append(list.get(i).getDbConnectionName());
                buffer.append("\tState: ");
                if (broken.contains(list.get(i))) {
                    buffer.append("in recovery");
                } else
                if (dsQueue.contains(list.get(i))) {
                    if (dsQueue.first() == list.get(i))
                        buffer.append("active");
                    else
                        buffer.append("standby");
                }

                buffer.append("\n");

            }
        }
        return buffer.toString();
    }

    @Override
    public boolean isWrapperFor(Class<?> iface) throws SQLException {
        return false;
    }

    @Override
    public <T> T unwrap(Class<T> iface) throws SQLException {
        return null;
    }

    /**
     * @return the monitorDbResponse
     */
    @Override
    public final boolean isMonitorDbResponse() {
        return recoveryMode && monitorDbResponse;
    }

    public void test(){
        CachedDataSource obj = dsQueue.first();
        Exception ption = new Exception();
        try {
            for(int i=0; i<5; i++)
            {
                handleGetConnectionException(obj, ption);
            }
        } catch(Throwable exc){
            LOGGER.warn("", exc);
        }
    }

    @Override
    public java.util.logging.Logger getParentLogger()
            throws SQLFeatureNotSupportedException {
        return null;
    }

    class RemindTask extends TimerTask {
        @Override
        public void run() {
            CachedDataSource ds = dsQueue.first();
            if(ds != null)
                ds.getPoolInfo(false);
        }
    }

    public int poolSize() {
        return dsQueue.size();
    }
}