|
|
|
@ -1,17 +1,17 @@
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2014, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
|
|
|
|
|
* Copyright (c) 2015, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* WSO2 Inc. licenses this file to you under the Apache License,
|
|
|
|
|
* Version 2.0 (the "License"); you may not use this file except
|
|
|
|
|
* in compliance with the License.
|
|
|
|
|
* you may obtain a copy of the License at
|
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
|
*
|
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
*
|
|
|
|
|
* Unless required by applicable law or agreed to in writing,
|
|
|
|
|
* software distributed under the License is distributed on an
|
|
|
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
|
|
|
|
|
* KIND, either express or implied. See the License for the
|
|
|
|
|
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
|
|
|
|
|
* either express or implied. See the License for the
|
|
|
|
|
* specific language governing permissions and limitations
|
|
|
|
|
* under the License.
|
|
|
|
|
*/
|
|
|
|
@ -20,7 +20,6 @@ package org.wso2.carbon.policy.mgt.core.dao;
|
|
|
|
|
|
|
|
|
|
import org.apache.commons.logging.Log;
|
|
|
|
|
import org.apache.commons.logging.LogFactory;
|
|
|
|
|
import org.wso2.carbon.device.mgt.core.operation.mgt.dao.OperationManagementDAOException;
|
|
|
|
|
import org.wso2.carbon.policy.mgt.core.config.datasource.DataSourceConfig;
|
|
|
|
|
import org.wso2.carbon.policy.mgt.core.config.datasource.JNDILookupDefinition;
|
|
|
|
|
import org.wso2.carbon.policy.mgt.core.dao.impl.FeatureDAOImpl;
|
|
|
|
@ -81,14 +80,13 @@ public class PolicyManagementDAOFactory {
|
|
|
|
|
private static DataSource resolveDataSource(DataSourceConfig config) {
|
|
|
|
|
DataSource dataSource = null;
|
|
|
|
|
if (config == null) {
|
|
|
|
|
throw new RuntimeException("Device Management Repository data source configuration " +
|
|
|
|
|
"is null and thus, is not initialized");
|
|
|
|
|
throw new RuntimeException("Device Management Repository data source configuration is null and thus," +
|
|
|
|
|
" is not initialized");
|
|
|
|
|
}
|
|
|
|
|
JNDILookupDefinition jndiConfig = config.getJndiLookupDefinition();
|
|
|
|
|
if (jndiConfig != null) {
|
|
|
|
|
if (log.isDebugEnabled()) {
|
|
|
|
|
log.debug("Initializing Device Management Repository data source using the JNDI " +
|
|
|
|
|
"Lookup Definition");
|
|
|
|
|
log.debug("Initializing Device Management Repository data source using the JNDI Lookup Definition");
|
|
|
|
|
}
|
|
|
|
|
List<JNDILookupDefinition.JNDIProperty> jndiPropertyList =
|
|
|
|
|
jndiConfig.getJndiProperties();
|
|
|
|
@ -97,8 +95,7 @@ public class PolicyManagementDAOFactory {
|
|
|
|
|
for (JNDILookupDefinition.JNDIProperty prop : jndiPropertyList) {
|
|
|
|
|
jndiProperties.put(prop.getName(), prop.getValue());
|
|
|
|
|
}
|
|
|
|
|
dataSource =
|
|
|
|
|
PolicyManagementDAOUtil.lookupDataSource(jndiConfig.getJndiName(), jndiProperties);
|
|
|
|
|
dataSource = PolicyManagementDAOUtil.lookupDataSource(jndiConfig.getJndiName(), jndiProperties);
|
|
|
|
|
} else {
|
|
|
|
|
dataSource = PolicyManagementDAOUtil.lookupDataSource(jndiConfig.getJndiName(), null);
|
|
|
|
|
}
|
|
|
|
@ -122,26 +119,14 @@ public class PolicyManagementDAOFactory {
|
|
|
|
|
Connection conn = dataSource.getConnection();
|
|
|
|
|
conn.setAutoCommit(false);
|
|
|
|
|
currentConnection.set(conn);
|
|
|
|
|
|
|
|
|
|
} catch (SQLException e) {
|
|
|
|
|
throw new PolicyManagerDAOException("Error occurred while retrieving data source connection",
|
|
|
|
|
e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// if (log.isDebugEnabled()) {
|
|
|
|
|
// log.debug(" Print the connction : ::::::: " + currentConnection.get().toString());
|
|
|
|
|
// StackTraceElement[] sts = Thread.currentThread().getStackTrace();
|
|
|
|
|
// for (StackTraceElement st: sts) {
|
|
|
|
|
// log.debug(st.getClassName() + " -- " + st.getLineNumber());
|
|
|
|
|
//// break;
|
|
|
|
|
// }
|
|
|
|
|
// log.debug(Thread.currentThread().getStackTrace());
|
|
|
|
|
// }
|
|
|
|
|
throw new PolicyManagerDAOException("Error occurred while retrieving data source connection", e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return currentConnection.get();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void closeConnection() throws PolicyManagerDAOException {
|
|
|
|
|
|
|
|
|
|
Connection con = currentConnection.get();
|
|
|
|
|
try {
|
|
|
|
|
con.close();
|
|
|
|
@ -181,7 +166,7 @@ public class PolicyManagementDAOFactory {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} catch (SQLException e) {
|
|
|
|
|
throw new PolicyManagerDAOException("Error occurred while rollbacking the transaction", e);
|
|
|
|
|
throw new PolicyManagerDAOException("Error occurred while roll-backing the transaction", e);
|
|
|
|
|
} finally {
|
|
|
|
|
closeConnection();
|
|
|
|
|
}
|
|
|
|
|