Refactor code to support no AAF requests
[dmaap/dbcapi.git] / src / main / java / org / onap / dmaap / dbcapi / database / ConnectionFactory.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * org.onap.dmaap
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.dmaap.dbcapi.database;
22
23 import java.sql.*;
24 import java.util.*;
25
26 import org.apache.log4j.Logger;
27
28 import com.att.eelf.configuration.EELFLogger;
29 import com.att.eelf.configuration.EELFManager;
30
31 import org.onap.dmaap.dbcapi.logging.DmaapbcLogMessageEnum;
32 import org.onap.dmaap.dbcapi.util.DmaapConfig;
33
34 public class ConnectionFactory  {
35          static final EELFLogger logger = EELFManager.getInstance().getLogger( ConnectionFactory.class );
36          static final EELFLogger appLogger = EELFManager.getInstance().getApplicationLogger();
37          static final EELFLogger auditLogger = EELFManager.getInstance().getAuditLogger();
38          static final EELFLogger debugLogger = EELFManager.getInstance().getDebugLogger();
39          static final EELFLogger errorLogger = EELFManager.getInstance().getErrorLogger();
40          static final EELFLogger metricsLogger = EELFManager.getInstance().getMetricsLogger();
41          static final EELFLogger serverLogger = EELFManager.getInstance().getServerLogger();
42
43         static {
44                 try {
45                         Class.forName("org.postgresql.Driver");
46                 } catch (Exception e) {
47                         logger.error("Unable to load postgres driver " + e, e);
48                 }
49         }
50         private static ConnectionFactory instance = new ConnectionFactory();
51         private String  host;
52         private String  dbname;
53         private String  dbuser;
54         private String  dbcr;
55         public ConnectionFactory() {
56                 Properties p = DmaapConfig.getConfig();
57                 host = p.getProperty("DB.host", "dcae-pstg-write-ftl.domain.notset.com");
58                 dbname = p.getProperty("DB.name", "dmaap");
59                 dbuser = p.getProperty("DB.user", "dmaap_admin");
60                 dbcr = p.getProperty("DB.cred", "test234-ftl");
61         }
62         public static ConnectionFactory getDefaultInstance() {
63                 return(instance);
64         }
65         private Connection[] pool = new Connection[5];
66         private int     cur;
67         public Connection get(boolean fresh) throws SQLException {
68                 if (!fresh) {
69                         synchronized(this) {
70                                 if (cur > 0) {
71                                         return(pool[--cur]);
72                                 }
73                         }
74                 }
75                 Properties p = new Properties();
76                 p.put("user", dbuser);
77                 p.put("password", dbcr);
78                 return(DriverManager.getConnection("jdbc:postgresql://" + host + "/" + dbname, p));
79         }
80         public void release(Connection c) {
81                 synchronized(this) {
82                         if (cur < pool.length) {
83                                 pool[cur++] = c;
84                                 return;
85                         }
86                 }
87                 try { c.close(); } catch (Exception e) {}
88         }
89 }