38c063c3819e71e222392692e3eb8642289b39dc
[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         private String  schema;
56         
57         public ConnectionFactory() {
58                 Properties p = DmaapConfig.getConfig();
59                 host = p.getProperty("DB.host", "dcae-pstg-write-ftl.domain.notset.com");
60                 dbname = p.getProperty("DB.name", "dmaap");
61                 dbuser = p.getProperty("DB.user", "dmaap_admin");
62                 dbcr = p.getProperty("DB.cred", "test234-ftl");
63                 schema = p.getProperty("DB.schema", "public");
64         }
65         public static ConnectionFactory getDefaultInstance() {
66                 return(instance);
67         }
68         private Connection[] pool = new Connection[5];
69         private int     cur;
70         public Connection get(boolean fresh) throws SQLException {
71                 if (!fresh) {
72                         synchronized(this) {
73                                 if (cur > 0) {
74                                         return(pool[--cur]);
75                                 }
76                         }
77                 }
78                 Properties p = new Properties();
79                 p.put("user", dbuser);
80                 p.put("password", dbcr);
81                 return(DriverManager.getConnection("jdbc:postgresql://" + host + "/" + dbname, p));
82         }
83         public String getSchema() {
84                 return(schema);
85         }
86         public void release(Connection c) {
87                 synchronized(this) {
88                         if (cur < pool.length) {
89                                 pool[cur++] = c;
90                                 return;
91                         }
92                 }
93                 try { c.close(); } catch (Exception e) {}
94         }
95 }