forked from community/device-mgt-core
parent
0e9bb7caf6
commit
ea6afee772
@ -0,0 +1,76 @@
|
|||||||
|
|
||||||
|
package org.wso2.carbon.device.mgt.extensions.device.type.deployer.config;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessType;
|
||||||
|
import javax.xml.bind.annotation.XmlAccessorType;
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
import javax.xml.bind.annotation.XmlType;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* <p>Java class for Properties complex type.
|
||||||
|
*
|
||||||
|
* <p>The following schema fragment specifies the expected content contained within this class.
|
||||||
|
*
|
||||||
|
* <pre>
|
||||||
|
* <complexType name="Properties">
|
||||||
|
* <complexContent>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||||
|
* <sequence>
|
||||||
|
* <element name="Property" maxOccurs="unbounded" minOccurs="0">
|
||||||
|
* <simpleType>
|
||||||
|
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||||
|
* <enumeration value="attr1"/>
|
||||||
|
* <enumeration value="attr2"/>
|
||||||
|
* </restriction>
|
||||||
|
* </simpleType>
|
||||||
|
* </element>
|
||||||
|
* </sequence>
|
||||||
|
* </restriction>
|
||||||
|
* </complexContent>
|
||||||
|
* </complexType>
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@XmlAccessorType(XmlAccessType.FIELD)
|
||||||
|
@XmlType(name = "Properties", propOrder = {
|
||||||
|
"property"
|
||||||
|
})
|
||||||
|
public class Properties {
|
||||||
|
|
||||||
|
@XmlElement(name = "Property")
|
||||||
|
protected List<String> property;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the value of the property property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* This accessor method returns a reference to the live list,
|
||||||
|
* not a snapshot. Therefore any modification you make to the
|
||||||
|
* returned list will be present inside the JAXB object.
|
||||||
|
* This is why there is not a <CODE>set</CODE> method for the property property.
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* For example, to add a new item, do as follows:
|
||||||
|
* <pre>
|
||||||
|
* getProperty().add(newItem);
|
||||||
|
* </pre>
|
||||||
|
*
|
||||||
|
*
|
||||||
|
* <p>
|
||||||
|
* Objects of the following type(s) are allowed in the list
|
||||||
|
* {@link String }
|
||||||
|
*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public List<String> getProperty() {
|
||||||
|
if (property == null) {
|
||||||
|
property = new ArrayList<String>();
|
||||||
|
}
|
||||||
|
return this.property;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
6
components/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.device.type.deployer/src/main/java/org/wso2/carbon/device/mgt/extensions/device/type/deployer/template/dao/DeviceTypePluginDAO.java → components/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.device.type.deployer/src/main/java/org/wso2/carbon/device/mgt/extensions/device/type/deployer/template/dao/PerDeviceTypePluginDAOImpl.java
6
components/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.device.type.deployer/src/main/java/org/wso2/carbon/device/mgt/extensions/device/type/deployer/template/dao/DeviceTypePluginDAO.java → components/device-mgt-extensions/org.wso2.carbon.device.mgt.extensions.device.type.deployer/src/main/java/org/wso2/carbon/device/mgt/extensions/device/type/deployer/template/dao/PerDeviceTypePluginDAOImpl.java
@ -0,0 +1,36 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2017, 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
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
* specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.wso2.carbon.device.mgt.extensions.device.type.deployer.template.dao;
|
||||||
|
|
||||||
|
import org.wso2.carbon.device.mgt.common.Device;
|
||||||
|
import org.wso2.carbon.device.mgt.extensions.device.type.deployer.exception.DeviceTypeMgtPluginException;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
public interface PluginDAO {
|
||||||
|
|
||||||
|
Device getDevice(String deviceId) throws DeviceTypeMgtPluginException;
|
||||||
|
|
||||||
|
boolean addDevice(Device device) throws DeviceTypeMgtPluginException;
|
||||||
|
|
||||||
|
boolean updateDevice(Device device) throws DeviceTypeMgtPluginException;
|
||||||
|
|
||||||
|
boolean deleteDevice(String deviceId) throws DeviceTypeMgtPluginException;
|
||||||
|
|
||||||
|
List<Device> getAllDevices() throws DeviceTypeMgtPluginException;
|
||||||
|
}
|
@ -0,0 +1,239 @@
|
|||||||
|
/*
|
||||||
|
* 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
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
* specific language governing permissions and limitations
|
||||||
|
* under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package org.wso2.carbon.device.mgt.extensions.device.type.deployer.template.dao;
|
||||||
|
|
||||||
|
import org.apache.commons.logging.Log;
|
||||||
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
import org.wso2.carbon.device.mgt.common.Device;
|
||||||
|
import org.wso2.carbon.device.mgt.extensions.device.type.deployer.config.DeviceDetails;
|
||||||
|
import org.wso2.carbon.device.mgt.extensions.device.type.deployer.exception.DeviceTypeMgtPluginException;
|
||||||
|
import org.wso2.carbon.device.mgt.extensions.device.type.deployer.template.util.DeviceTypeUtils;
|
||||||
|
|
||||||
|
import java.sql.Connection;
|
||||||
|
import java.sql.PreparedStatement;
|
||||||
|
import java.sql.ResultSet;
|
||||||
|
import java.sql.SQLException;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Implements CRUD for Devices. This holds the generic implementation. An instance of this will be created for
|
||||||
|
* each device type.
|
||||||
|
*/
|
||||||
|
public class PropertyBasedPluginDAOImpl implements PluginDAO {
|
||||||
|
|
||||||
|
private static final Log log = LogFactory.getLog(PropertyBasedPluginDAOImpl.class);
|
||||||
|
private DeviceTypeDAOHandler deviceTypeDAOHandler;
|
||||||
|
private List<String> deviceProps;
|
||||||
|
private String deviceType;
|
||||||
|
private static final String PROPERTY_KEY_COLUMN_NAME = "PROPERTY_NAME";
|
||||||
|
private static final String PROPERTY_VALUE_COLUMN_NAME = "PROPERTY_VALUE";
|
||||||
|
|
||||||
|
public PropertyBasedPluginDAOImpl(DeviceDetails deviceDetails,
|
||||||
|
DeviceTypeDAOHandler deviceTypeDAOHandler, String deviceType) {
|
||||||
|
this.deviceTypeDAOHandler = deviceTypeDAOHandler;
|
||||||
|
this.deviceProps = deviceDetails.getProperties().getProperty();
|
||||||
|
this.deviceType = deviceType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Device getDevice(String deviceId) throws DeviceTypeMgtPluginException {
|
||||||
|
Connection conn = null;
|
||||||
|
PreparedStatement stmt = null;
|
||||||
|
Device device = null;
|
||||||
|
ResultSet resultSet = null;
|
||||||
|
try {
|
||||||
|
conn = deviceTypeDAOHandler.getConnection();
|
||||||
|
stmt = conn.prepareStatement(
|
||||||
|
"SELECT * FROM DM_DEVICE_PROPERTIES WHERE DEVICE_TYPE_NAME = ? AND DEVICE_IDENTIFICATION = ?");
|
||||||
|
stmt.setString(1, deviceType);
|
||||||
|
stmt.setString(2, deviceId);
|
||||||
|
resultSet = stmt.executeQuery();
|
||||||
|
device = new Device();
|
||||||
|
device.setDeviceIdentifier(deviceId);
|
||||||
|
device.setType(deviceType);
|
||||||
|
List<Device.Property> properties = new ArrayList<>();
|
||||||
|
while (resultSet.next()) {
|
||||||
|
Device.Property property = new Device.Property();
|
||||||
|
property.setName(resultSet.getString(PROPERTY_KEY_COLUMN_NAME));
|
||||||
|
property.setValue(resultSet.getString(PROPERTY_VALUE_COLUMN_NAME));
|
||||||
|
properties.add(property);
|
||||||
|
}
|
||||||
|
device.setProperties(properties);
|
||||||
|
} catch (SQLException e) {
|
||||||
|
String msg = "Error occurred while fetching device : '" + deviceId + "' type " + deviceType;
|
||||||
|
log.error(msg, e);
|
||||||
|
throw new DeviceTypeMgtPluginException(msg, e);
|
||||||
|
} finally {
|
||||||
|
DeviceTypeUtils.cleanupResources(stmt, resultSet);
|
||||||
|
deviceTypeDAOHandler.closeConnection();
|
||||||
|
}
|
||||||
|
|
||||||
|
return device;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean addDevice(Device device) throws DeviceTypeMgtPluginException {
|
||||||
|
boolean status = false;
|
||||||
|
Connection conn = null;
|
||||||
|
PreparedStatement stmt = null;
|
||||||
|
try {
|
||||||
|
conn = deviceTypeDAOHandler.getConnection();
|
||||||
|
stmt = conn.prepareStatement(
|
||||||
|
"INSERT INTO DM_DEVICE_PROPERTIES(DEVICE_TYPE_NAME, DEVICE_IDENTIFICATION, PROPERTY_NAME, " +
|
||||||
|
"PROPERTY_VALUE) VALUES (?, ?, ?, ?)");
|
||||||
|
for (String propertyKey : deviceProps) {
|
||||||
|
stmt.setString(1, deviceType);
|
||||||
|
stmt.setString(2, device.getDeviceIdentifier());
|
||||||
|
stmt.setString(3, propertyKey);
|
||||||
|
stmt.setString(4, getPropertyValue(device.getProperties(), propertyKey));
|
||||||
|
stmt.addBatch();
|
||||||
|
}
|
||||||
|
stmt.executeBatch();
|
||||||
|
status = true;
|
||||||
|
} catch (SQLException e) {
|
||||||
|
String msg = "Error occurred while adding the device '" +
|
||||||
|
device.getDeviceIdentifier() + "' to the type " + deviceType + " db.";
|
||||||
|
log.error(msg, e);
|
||||||
|
throw new DeviceTypeMgtPluginException(msg, e);
|
||||||
|
} finally {
|
||||||
|
DeviceTypeUtils.cleanupResources(stmt, null);
|
||||||
|
}
|
||||||
|
return status;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean updateDevice(Device device) throws DeviceTypeMgtPluginException {
|
||||||
|
boolean status = false;
|
||||||
|
Connection conn = null;
|
||||||
|
PreparedStatement stmt = null;
|
||||||
|
try {
|
||||||
|
conn = deviceTypeDAOHandler.getConnection();
|
||||||
|
stmt = conn.prepareStatement(
|
||||||
|
"UPDATE DM_DEVICE_PROPERTIES SET PROPERTY_VALUE = ? WHERE DEVICE_TYPE_NAME = ? AND " +
|
||||||
|
"DEVICE_IDENTIFICATION = ? AND PROPERTY_NAME = ?");
|
||||||
|
|
||||||
|
for (Device.Property property : device.getProperties()) {
|
||||||
|
stmt.setString(1, getPropertyValue(device.getProperties(), property.getValue()));
|
||||||
|
stmt.setString(1, deviceType);
|
||||||
|
stmt.setString(2, device.getDeviceIdentifier());
|
||||||
|
stmt.setString(3, property.getName());
|
||||||
|
stmt.addBatch();
|
||||||
|
}
|
||||||
|
stmt.executeBatch();
|
||||||
|
int rows = stmt.executeUpdate();
|
||||||
|
if (rows > 0) {
|
||||||
|
status = true;
|
||||||
|
if (log.isDebugEnabled()) {
|
||||||
|
log.debug("device " + device.getDeviceIdentifier() + " data has been modified.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (SQLException e) {
|
||||||
|
String msg = "Error occurred while modifying the device '" +
|
||||||
|
device.getDeviceIdentifier() + "' data on" + deviceType;
|
||||||
|
log.error(msg, e);
|
||||||
|
throw new DeviceTypeMgtPluginException(msg, e);
|
||||||
|
} finally {
|
||||||
|
DeviceTypeUtils.cleanupResources(stmt, null);
|
||||||
|
}
|
||||||
|
return status;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean deleteDevice(String deviceId) throws DeviceTypeMgtPluginException {
|
||||||
|
boolean status = false;
|
||||||
|
Connection conn = null;
|
||||||
|
PreparedStatement stmt = null;
|
||||||
|
try {
|
||||||
|
conn = deviceTypeDAOHandler.getConnection();
|
||||||
|
stmt = conn.prepareStatement("DELETE FROM DM_DEVICE_PROPERTIES WHERE DEVICE_TYPE_NAME = ? " +
|
||||||
|
"AND DEVICE_IDENTIFICATION = ?");
|
||||||
|
stmt.setString(1, deviceType);
|
||||||
|
stmt.setString(2, deviceId);
|
||||||
|
int rows = stmt.executeUpdate();
|
||||||
|
if (rows > 0) {
|
||||||
|
status = true;
|
||||||
|
if (log.isDebugEnabled()) {
|
||||||
|
log.debug("device " + deviceId + " data has deleted from the " +
|
||||||
|
deviceType + " table.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (SQLException e) {
|
||||||
|
String msg =
|
||||||
|
"Error occurred while deleting " + deviceType + " device " + deviceId;
|
||||||
|
log.error(msg, e);
|
||||||
|
throw new DeviceTypeMgtPluginException(msg, e);
|
||||||
|
} finally {
|
||||||
|
DeviceTypeUtils.cleanupResources(stmt, null);
|
||||||
|
}
|
||||||
|
return status;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<Device> getAllDevices() throws DeviceTypeMgtPluginException {
|
||||||
|
Connection conn;
|
||||||
|
PreparedStatement stmt = null;
|
||||||
|
ResultSet resultSet = null;
|
||||||
|
Map<String, Device> deviceMap = new HashMap<>();
|
||||||
|
try {
|
||||||
|
conn = deviceTypeDAOHandler.getConnection();
|
||||||
|
stmt = conn.prepareStatement("SELECT DEVICE_IDENTIFICATION, PROPERTY_NAME" +
|
||||||
|
", PROPERTY_VALUE FROM DM_DEVICE_PROPERTIES WHERE DEVICE_TYPE_NAME = ?");
|
||||||
|
stmt.setString(1, deviceType);
|
||||||
|
resultSet = stmt.executeQuery();
|
||||||
|
while (resultSet.next()) {
|
||||||
|
String deviceId = resultSet.getString("DEVICE_IDENTIFICATION");
|
||||||
|
Device deviceInMap = deviceMap.get(deviceId);
|
||||||
|
if (deviceInMap == null) {
|
||||||
|
deviceInMap = new Device();
|
||||||
|
deviceInMap.setDeviceIdentifier(deviceId);
|
||||||
|
deviceInMap.setType(deviceType);
|
||||||
|
List<Device.Property> properties = new ArrayList<>();
|
||||||
|
deviceInMap.setProperties(properties);
|
||||||
|
deviceMap.put(deviceId, deviceInMap);
|
||||||
|
}
|
||||||
|
Device.Property prop = new Device.Property();
|
||||||
|
prop.setName(resultSet.getString(PROPERTY_KEY_COLUMN_NAME));
|
||||||
|
prop.setName(resultSet.getString(PROPERTY_VALUE_COLUMN_NAME));
|
||||||
|
deviceInMap.getProperties().add(prop);
|
||||||
|
}
|
||||||
|
if (log.isDebugEnabled()) {
|
||||||
|
log.debug(
|
||||||
|
"All device details have fetched from " + deviceType + " table.");
|
||||||
|
}
|
||||||
|
return Arrays.asList((Device[])deviceMap.values().toArray());
|
||||||
|
} catch (SQLException e) {
|
||||||
|
String msg =
|
||||||
|
"Error occurred while fetching all " + deviceType + " device data'";
|
||||||
|
log.error(msg, e);
|
||||||
|
throw new DeviceTypeMgtPluginException(msg, e);
|
||||||
|
} finally {
|
||||||
|
DeviceTypeUtils.cleanupResources(stmt, resultSet);
|
||||||
|
deviceTypeDAOHandler.closeConnection();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private String getPropertyValue(List<Device.Property> properties, String propertyName) {
|
||||||
|
for (Device.Property property : properties) {
|
||||||
|
if (property.getName() != null && property.getName().equals(propertyName)) {
|
||||||
|
return property.getValue();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in new issue