removed code smells
[appc.git] / appc-config / appc-config-generator / provider / src / main / java / org / onap / sdnc / config / generator / tool / DbServiceUtil.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.sdnc.config.generator.tool;
25
26 import com.google.common.collect.Lists;
27 import java.io.File;
28 import java.net.URL;
29 import java.sql.SQLException;
30 import java.util.List;
31 import java.util.Properties;
32 import javax.sql.rowset.CachedRowSet;
33 import org.onap.ccsdk.sli.core.dblib.DBResourceManager;
34 import org.slf4j.Logger;
35 import org.slf4j.LoggerFactory;
36
37 public class DbServiceUtil {
38
39     private static final Logger log = LoggerFactory.getLogger(DbServiceUtil.class);
40
41     private static Properties properties;
42     private static DBResourceManager jdbcDataSource = null;
43
44
45     public static boolean updateDB(String tableName, List<String> inputArgs, String whereClause, String setClause)
46         throws SQLException {
47         String updatePasswordString =
48             "update " + tableName + " set " + setClause + " where " + whereClause;
49
50         return jdbcDataSource.writeData(updatePasswordString, Lists.newArrayList(inputArgs), Constants.SCHEMA_SDNCTL);
51     }
52
53
54     public static CachedRowSet getData(String tableName, List<String> argList, String schema,
55         String getselectData, String getDataClasue) throws SQLException {
56         String selectQuery =
57             "select " + getselectData + "from " + tableName + " where " + getDataClasue;
58         return jdbcDataSource.getData(selectQuery, Lists.newArrayList(argList), schema);
59     }
60
61
62     public static DBResourceManager initDbLibService() throws Exception {
63         properties = new Properties();
64         File file = new File("/opt/onap/appc/data/properties/dblib.properties");
65         URL propURL = file.toURI().toURL();
66         properties.load(propURL.openStream());
67
68         // this is an expected difference in CCSDK
69         jdbcDataSource = new DBResourceManager(properties);
70
71         return jdbcDataSource;
72     }
73 }