Refactor Prov DB handling
[dmaap/datarouter.git] / datarouter-prov / src / main / java / org / onap / dmaap / datarouter / provisioning / beans / EgressRoute.java
1 /*******************************************************************************\r
2  * ============LICENSE_START==================================================\r
3  * * org.onap.dmaap\r
4  * * ===========================================================================\r
5  * * Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * * ===========================================================================\r
7  * * Licensed under the Apache License, Version 2.0 (the "License");\r
8  * * you may not use this file except in compliance with the License.\r
9  * * You may obtain a copy of the License at\r
10  * *\r
11  *  *      http://www.apache.org/licenses/LICENSE-2.0\r
12  * *\r
13  *  * Unless required by applicable law or agreed to in writing, software\r
14  * * distributed under the License is distributed on an "AS IS" BASIS,\r
15  * * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  * * See the License for the specific language governing permissions and\r
17  * * limitations under the License.\r
18  * * ============LICENSE_END====================================================\r
19  * *\r
20  * * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
21  * *\r
22  ******************************************************************************/\r
23 \r
24 \r
25 package org.onap.dmaap.datarouter.provisioning.beans;\r
26 \r
27 import com.att.eelf.configuration.EELFLogger;\r
28 import com.att.eelf.configuration.EELFManager;\r
29 import java.sql.Connection;\r
30 import java.sql.PreparedStatement;\r
31 import java.sql.ResultSet;\r
32 import java.sql.SQLException;\r
33 import java.sql.Statement;\r
34 import java.util.Objects;\r
35 import java.util.SortedSet;\r
36 import java.util.TreeSet;\r
37 import org.json.JSONObject;\r
38 import org.onap.dmaap.datarouter.provisioning.utils.ProvDbUtils;\r
39 \r
40 /**\r
41  * The representation of one route in the Egress Route Table.\r
42  *\r
43  * @author Robert P. Eby\r
44  * @version $Id: EgressRoute.java,v 1.3 2013/12/16 20:30:23 eby Exp $\r
45  */\r
46 public class EgressRoute extends NodeClass implements Comparable<EgressRoute> {\r
47 \r
48     private static EELFLogger intlogger = EELFManager.getInstance().getLogger("InternalLog");\r
49     private final int subid;\r
50     private final int nodeid;\r
51 \r
52     /**\r
53      * EgressRoute constructor.\r
54      * @param subid subscription id\r
55      * @param nodeid node id\r
56      */\r
57     public EgressRoute(int subid, int nodeid) {\r
58         this.subid = subid;\r
59         this.nodeid = nodeid;\r
60     }\r
61 \r
62     public EgressRoute(int subid, String node) {\r
63         this(subid, lookupNodeName(node));\r
64     }\r
65 \r
66     /**\r
67      * Get a set of all Egress Routes in the DB.  The set is sorted according to the natural sorting order of the routes\r
68      * (based on the subscription ID in each route).\r
69      *\r
70      * @return the sorted set\r
71      */\r
72     public static SortedSet<EgressRoute> getAllEgressRoutes() {\r
73         SortedSet<EgressRoute> set = new TreeSet<>();\r
74         try (Connection conn = ProvDbUtils.getInstance().getConnection();\r
75             Statement stmt = conn.createStatement();\r
76             ResultSet rs = stmt.executeQuery("select SUBID, NODEID from EGRESS_ROUTES")) {\r
77             addEgressRouteToSet(set, rs);\r
78         } catch (SQLException e) {\r
79             intlogger.error("PROV0008 EgressRoute.getAllEgressRoutes: " + e.getMessage(), e);\r
80         }\r
81         return set;\r
82     }\r
83 \r
84     private static void addEgressRouteToSet(SortedSet<EgressRoute> set, ResultSet rs) throws SQLException {\r
85         while (rs.next()) {\r
86             int subid = rs.getInt("SUBID");\r
87             int nodeid = rs.getInt("NODEID");\r
88             set.add(new EgressRoute(subid, nodeid));\r
89         }\r
90     }\r
91 \r
92     /**\r
93      * Get a single Egress Route for the subscription <i>sub</i>.\r
94      *\r
95      * @param sub the subscription to lookup\r
96      * @return an EgressRoute, or null if there is no route for this subscription\r
97      */\r
98     public static EgressRoute getEgressRoute(int sub) {\r
99         EgressRoute er = null;\r
100         try (Connection conn = ProvDbUtils.getInstance().getConnection();\r
101             PreparedStatement ps = conn.prepareStatement("select NODEID from EGRESS_ROUTES where SUBID = ?")) {\r
102             ps.setInt(1, sub);\r
103             ResultSet rs = ps.executeQuery();\r
104             if (rs.next()) {\r
105                 int node = rs.getInt("NODEID");\r
106                 er = new EgressRoute(sub, node);\r
107             }\r
108         } catch (SQLException e) {\r
109             intlogger.error("PROV0009 EgressRoute.getEgressRoute: " + e.getMessage(), e);\r
110         }\r
111         return er;\r
112     }\r
113 \r
114     @Override\r
115     public boolean doDelete(Connection conn) {\r
116         boolean rv = true;\r
117         try (PreparedStatement ps = conn.prepareStatement("delete from EGRESS_ROUTES where SUBID = ?")) {\r
118             ps.setInt(1, subid);\r
119             ps.execute();\r
120         } catch (SQLException e) {\r
121             rv = false;\r
122             intlogger.error("PROV0007 doDelete: " + e.getMessage(), e);\r
123         }\r
124         return rv;\r
125     }\r
126 \r
127     @Override\r
128     public boolean doInsert(Connection conn) {\r
129         boolean rv = false;\r
130         try (PreparedStatement ps = conn.prepareStatement("insert into EGRESS_ROUTES (SUBID, NODEID) values (?, ?)")) {\r
131             ps.setInt(1, this.subid);\r
132             ps.setInt(2, this.nodeid);\r
133             ps.execute();\r
134             rv = true;\r
135         } catch (SQLException e) {\r
136             intlogger.warn("PROV0005 doInsert: " + e.getMessage(), e);\r
137         }\r
138         return rv;\r
139     }\r
140 \r
141     @Override\r
142     public boolean doUpdate(Connection conn) {\r
143         boolean rv = true;\r
144         try (PreparedStatement ps = conn.prepareStatement("update EGRESS_ROUTES set NODEID = ? where SUBID = ?")) {\r
145             ps.setInt(1, nodeid);\r
146             ps.setInt(2, subid);\r
147             ps.executeUpdate();\r
148         } catch (SQLException e) {\r
149             rv = false;\r
150             intlogger.warn("PROV0006 doUpdate: " + e.getMessage(), e);\r
151         }\r
152         return rv;\r
153     }\r
154 \r
155     @Override\r
156     public JSONObject asJSONObject() {\r
157         JSONObject jo = new JSONObject();\r
158         jo.put("" + subid, lookupNodeID(nodeid));\r
159         return jo;\r
160     }\r
161 \r
162     @Override\r
163     public String getKey() {\r
164         return "" + subid;\r
165     }\r
166 \r
167     @Override\r
168     public boolean equals(Object obj) {\r
169         if (!(obj instanceof EgressRoute)) {\r
170             return false;\r
171         }\r
172         EgressRoute on = (EgressRoute) obj;\r
173         return (subid == on.subid) && (nodeid == on.nodeid);\r
174     }\r
175 \r
176     @Override\r
177     public int compareTo(EgressRoute er) {\r
178         return this.subid - er.subid;\r
179     }\r
180 \r
181     @Override\r
182     public String toString() {\r
183         return String.format("EGRESS: sub=%d, node=%d", subid, nodeid);\r
184     }\r
185 \r
186     @Override\r
187     public int hashCode() {\r
188         return Objects.hash(subid, nodeid);\r
189     }\r
190 }\r