9d43bd0aafdf77432cfb0538f91dc681b7e4119b
[dmaap/datarouter.git] / datarouter-prov / src / main / java / org / onap / dmaap / datarouter / provisioning / beans / NodeClass.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 package org.onap.dmaap.datarouter.provisioning.beans;\r
25 \r
26 import java.sql.Connection;\r
27 import java.sql.PreparedStatement;\r
28 import java.sql.ResultSet;\r
29 import java.sql.SQLException;\r
30 import java.util.Collection;\r
31 import java.util.HashMap;\r
32 import java.util.Map;\r
33 import java.util.Set;\r
34 import java.util.TreeSet;\r
35 import org.apache.log4j.Logger;\r
36 import org.onap.dmaap.datarouter.provisioning.utils.DB;\r
37 \r
38 /**\r
39  * This class is used to aid in the mapping of node names from/to node IDs.\r
40  *\r
41  * @author Robert P. Eby\r
42  * @version $Id: NodeClass.java,v 1.2 2014/01/15 16:08:43 eby Exp $\r
43  */\r
44 public abstract class NodeClass extends Syncable {\r
45 \r
46     private static Map<String, Integer> map;\r
47     private static Logger intLogger = Logger.getLogger("org.onap.dmaap.datarouter.provisioning.internal");\r
48     public NodeClass() {\r
49         // init on first use\r
50         if (map == null) {\r
51             reload();\r
52         }\r
53     }\r
54 \r
55     /**\r
56      * Add nodes to the NODES table, when the NODES parameter value is changed. Nodes are only added to the table, they\r
57      * are never deleted.  The node name is normalized to contain the domain (if missing).\r
58      *\r
59      * @param nodes a pipe separated list of the current nodes\r
60      */\r
61     public static void setNodes(String[] nodes) {\r
62         if (map == null) {\r
63             reload();\r
64         }\r
65         int nextid = 0;\r
66         for (Integer n : map.values()) {\r
67             if (n >= nextid) {\r
68                 nextid = n + 1;\r
69             }\r
70         }\r
71         // take | separated list, add domain if needed.\r
72 \r
73         for (String node : nodes) {\r
74             node = normalizeNodename(node);\r
75             if (!map.containsKey(node)) {\r
76                 intLogger.info("..adding " + node + " to NODES with index " + nextid);\r
77                 map.put(node, nextid);\r
78                 PreparedStatement ps = null;\r
79                 try {\r
80                     DB db = new DB();\r
81                     @SuppressWarnings("resource")\r
82                     Connection conn = db.getConnection();\r
83                     ps = conn.prepareStatement("insert into NODES (NODEID, NAME, ACTIVE) values (?, ?, 1)");\r
84                     ps.setInt(1, nextid);\r
85                     ps.setString(2, node);\r
86                     ps.execute();\r
87                     ps.close();\r
88                     db.release(conn);\r
89                 } catch (SQLException e) {\r
90                     intLogger.error("PROV0005 doInsert: " + e.getMessage(),e);\r
91                 } finally {\r
92                     try {\r
93                         if(ps!=null){\r
94                             ps.close();\r
95                         }\r
96                     } catch (SQLException e) {\r
97                         intLogger.error("Error in closing PreparedStatement: " + e.getMessage(),e);\r
98                     }\r
99                 }\r
100                 nextid++;\r
101             }\r
102         }\r
103     }\r
104 \r
105     public static void reload() {\r
106         Map<String, Integer> m = new HashMap<String, Integer>();\r
107         PreparedStatement ps = null;\r
108 \r
109         try {\r
110             DB db = new DB();\r
111             @SuppressWarnings("resource")\r
112             Connection conn = db.getConnection();\r
113             String sql = "select NODEID, NAME from NODES";\r
114             ps = conn.prepareStatement(sql);\r
115             try(ResultSet rs = ps.executeQuery()) {\r
116                 while (rs.next()) {\r
117                     int id = rs.getInt("NODEID");\r
118                     String name = rs.getString("NAME");\r
119                     m.put(name, id);\r
120                 }\r
121             }\r
122             ps.close();\r
123             db.release(conn);\r
124         } catch (SQLException e) {\r
125             intLogger.error("PROV0005 doInsert: " + e.getMessage(),e);\r
126         } finally {\r
127             try {\r
128                 if(ps!=null){\r
129                     ps.close();\r
130                 }\r
131             } catch (SQLException e) {\r
132                 intLogger.error("PROV0005 doInsert: " + e.getMessage(),e);\r
133             }\r
134         }\r
135         map = m;\r
136     }\r
137 \r
138     public static Integer lookupNodeName(final String name) {\r
139         Integer n = map.get(name);\r
140         if (n == null) {\r
141             throw new IllegalArgumentException("Invalid node name: " + name);\r
142         }\r
143         return n;\r
144     }\r
145 \r
146     public static Collection<String> lookupNodeNames(String patt) {\r
147         Collection<String> coll = new TreeSet<String>();\r
148         final Set<String> keyset = map.keySet();\r
149         for (String s : patt.toLowerCase().split(",")) {\r
150             if (s.endsWith("*")) {\r
151                 s = s.substring(0, s.length() - 1);\r
152                 for (String s2 : keyset) {\r
153                     if (s2.startsWith(s)) {\r
154                         coll.add(s2);\r
155                     }\r
156                 }\r
157             } else if (keyset.contains(s)) {\r
158                 coll.add(s);\r
159             } else if (keyset.contains(normalizeNodename(s))) {\r
160                 coll.add(normalizeNodename(s));\r
161             } else {\r
162                 throw new IllegalArgumentException("Invalid node name: " + s);\r
163             }\r
164         }\r
165         return coll;\r
166     }\r
167 \r
168     public static String normalizeNodename(String s) {\r
169         if (s != null && s.indexOf('.') <= 0) {\r
170             Parameters p = Parameters.getParameter(Parameters.PROV_DOMAIN);\r
171             if (p != null) {\r
172                 String domain = p.getValue();\r
173                 s += "." + domain;\r
174             }\r
175             return s.toLowerCase();\r
176         }\r
177         else{\r
178             return s;\r
179         }\r
180 \r
181     }\r
182 \r
183     protected String lookupNodeID(int n) {\r
184         for (String s : map.keySet()) {\r
185             if (map.get(s) == n) {\r
186                 return s;\r
187             }\r
188         }\r
189         return null;\r
190     }\r
191 }\r