[DMAAP-BC] Consolidate bus controller repos
[dmaap/buscontroller.git] / dmaap-bc / src / main / java / org / onap / dmaap / dbcapi / database / ConnWrapper.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
25 import com.att.eelf.configuration.EELFLogger;
26 import com.att.eelf.configuration.EELFManager;
27
28
29 public abstract class ConnWrapper<T, U> {
30         EELFLogger logger = EELFManager.getInstance().getLogger( ConnWrapper.class );
31         protected Connection c;
32         protected PreparedStatement ps;
33         protected ResultSet     rs;
34         protected abstract T run(U u) throws Exception;
35         public T protect(ConnectionFactory cf, U u) {
36                 try {
37                         try {
38                                 return(attempt(cf, u, false));
39                         } catch (SQLException sqle) {
40                                 logger.error("Error", sqle);
41                                 return(attempt(cf, u, true));
42                         }
43                 } catch (RuntimeException rte) {
44                         throw rte;
45                 } catch (Exception e) {
46                         throw new DBException(e);
47                 }
48         }
49         private T attempt(ConnectionFactory cf, U u, boolean fresh) throws Exception {
50                 c = null;
51                 ps = null;
52                 rs = null;
53                 try {
54                         c = cf.get(fresh);
55                         T ret = run(u);
56                         cf.release(c);
57                         c = null;
58                         return(ret);
59                 } finally {
60                         if (rs != null) { 
61                                 try { 
62                                         rs.close(); 
63                                 } catch (Exception e) {
64                                         logger.error("Error", e);
65                                 }}
66                         rs = null;
67                         if (ps != null) { 
68                                 try { 
69                                         ps.close(); 
70                                 } catch (Exception e) {
71                                         logger.error("Error", e);
72                                 }}
73                         ps = null;
74                         if (c != null) { 
75                                 try { 
76                                         c.close(); 
77                                 } catch (Exception e) {
78                                         logger.error("Error", e);
79                                 }}
80                         c = null;
81                 }
82         }
83 }