mirror of
https://repository.entgra.net/community/device-mgt-core.git
synced 2025-10-06 02:01:45 +00:00
Change event task to implement ntask interface
This commit is contained in:
parent
d7c3002629
commit
bc85a89cf9
@ -72,4 +72,11 @@ public interface EventConfigurationProviderService {
|
|||||||
*/
|
*/
|
||||||
void deleteEvents(List<EventConfig> eventList) throws EventConfigurationException;
|
void deleteEvents(List<EventConfig> eventList) throws EventConfigurationException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create task entry to be executed at the time of event operation task running
|
||||||
|
* @param eventTaskEntry event task entry
|
||||||
|
* @param groupIds group ids of the event task entry assigned
|
||||||
|
* @throws EventConfigurationException error thrown while creating task records
|
||||||
|
*/
|
||||||
|
void createEventOperationTask(EventTaskEntry eventTaskEntry, List<Integer> groupIds) throws EventConfigurationException;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -0,0 +1,98 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2020, Entgra (Pvt) Ltd. (http://www.entgra.io) All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Entgra (Pvt) Ltd. 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.common.event.config;
|
||||||
|
|
||||||
|
public class EventTaskEntry {
|
||||||
|
private int id;
|
||||||
|
private int deviceId;
|
||||||
|
private int groupId;
|
||||||
|
private String operationCode;
|
||||||
|
private String eventSource;
|
||||||
|
private int eventMetaId;
|
||||||
|
private int tenantId;
|
||||||
|
private ExecutionStatus executionStatus;
|
||||||
|
|
||||||
|
public int getId() {
|
||||||
|
return id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setId(int id) {
|
||||||
|
this.id = id;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getDeviceId() {
|
||||||
|
return deviceId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDeviceId(int deviceId) {
|
||||||
|
this.deviceId = deviceId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getGroupId() {
|
||||||
|
return groupId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setGroupId(int groupId) {
|
||||||
|
this.groupId = groupId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getOperationCode() {
|
||||||
|
return operationCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setOperationCode(String operationCode) {
|
||||||
|
this.operationCode = operationCode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public ExecutionStatus getExecutionStatus() {
|
||||||
|
return executionStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setExecutionStatus(ExecutionStatus executionStatus) {
|
||||||
|
this.executionStatus = executionStatus;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getEventSource() {
|
||||||
|
return eventSource;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEventSource(String eventSource) {
|
||||||
|
this.eventSource = eventSource;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getEventMetaId() {
|
||||||
|
return eventMetaId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEventMetaId(int eventMetaId) {
|
||||||
|
this.eventMetaId = eventMetaId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getTenantId() {
|
||||||
|
return tenantId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setTenantId(int tenantId) {
|
||||||
|
this.tenantId = tenantId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public enum ExecutionStatus {
|
||||||
|
CREATED, PENDING, COMPLETED;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -30,8 +30,7 @@ public class GeoFenceEventMeta implements EventMetaData {
|
|||||||
private String geoJson;
|
private String geoJson;
|
||||||
private String fenceShape;
|
private String fenceShape;
|
||||||
|
|
||||||
public GeoFenceEventMeta() {
|
public GeoFenceEventMeta() {}
|
||||||
}
|
|
||||||
|
|
||||||
public GeoFenceEventMeta(GeofenceData geofenceData) {
|
public GeoFenceEventMeta(GeofenceData geofenceData) {
|
||||||
this.id = geofenceData.getId();
|
this.id = geofenceData.getId();
|
||||||
|
|||||||
@ -24,6 +24,7 @@ import org.wso2.carbon.device.mgt.core.config.archival.ArchivalConfiguration;
|
|||||||
import org.wso2.carbon.device.mgt.core.config.cache.CertificateCacheConfiguration;
|
import org.wso2.carbon.device.mgt.core.config.cache.CertificateCacheConfiguration;
|
||||||
import org.wso2.carbon.device.mgt.core.config.cache.DeviceCacheConfiguration;
|
import org.wso2.carbon.device.mgt.core.config.cache.DeviceCacheConfiguration;
|
||||||
import org.wso2.carbon.device.mgt.core.config.cache.GeoFenceCacheConfiguration;
|
import org.wso2.carbon.device.mgt.core.config.cache.GeoFenceCacheConfiguration;
|
||||||
|
import org.wso2.carbon.device.mgt.core.event.config.EventOperationTaskConfiguration;
|
||||||
import org.wso2.carbon.device.mgt.core.config.geo.location.GeoLocationConfiguration;
|
import org.wso2.carbon.device.mgt.core.config.geo.location.GeoLocationConfiguration;
|
||||||
import org.wso2.carbon.device.mgt.core.config.identity.IdentityConfigurations;
|
import org.wso2.carbon.device.mgt.core.config.identity.IdentityConfigurations;
|
||||||
import org.wso2.carbon.device.mgt.core.config.keymanager.KeyManagerConfigurations;
|
import org.wso2.carbon.device.mgt.core.config.keymanager.KeyManagerConfigurations;
|
||||||
@ -56,6 +57,7 @@ public final class DeviceManagementConfig {
|
|||||||
private DeviceStatusTaskConfig deviceStatusTaskConfig;
|
private DeviceStatusTaskConfig deviceStatusTaskConfig;
|
||||||
private DeviceCacheConfiguration deviceCacheConfiguration;
|
private DeviceCacheConfiguration deviceCacheConfiguration;
|
||||||
private GeoFenceCacheConfiguration geoFenceCacheConfiguration;
|
private GeoFenceCacheConfiguration geoFenceCacheConfiguration;
|
||||||
|
private EventOperationTaskConfiguration eventOperationTaskConfiguration;
|
||||||
private CertificateCacheConfiguration certificateCacheConfiguration;
|
private CertificateCacheConfiguration certificateCacheConfiguration;
|
||||||
private OperationAnalyticsConfiguration operationAnalyticsConfiguration;
|
private OperationAnalyticsConfiguration operationAnalyticsConfiguration;
|
||||||
private GeoLocationConfiguration geoLocationConfiguration;
|
private GeoLocationConfiguration geoLocationConfiguration;
|
||||||
@ -165,6 +167,15 @@ public final class DeviceManagementConfig {
|
|||||||
this.geoFenceCacheConfiguration = geoFenceCacheConfiguration;
|
this.geoFenceCacheConfiguration = geoFenceCacheConfiguration;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@XmlElement(name = "EventOperationTaskConfiguration", required = true)
|
||||||
|
public EventOperationTaskConfiguration getEventOperationTaskConfiguration() {
|
||||||
|
return eventOperationTaskConfiguration;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEventOperationTaskConfiguration(EventOperationTaskConfiguration eventOperationTaskConfiguration) {
|
||||||
|
this.eventOperationTaskConfiguration = eventOperationTaskConfiguration;
|
||||||
|
}
|
||||||
|
|
||||||
@XmlElement(name = "CertificateCacheConfiguration", required = true)
|
@XmlElement(name = "CertificateCacheConfiguration", required = true)
|
||||||
public CertificateCacheConfiguration getCertificateCacheConfiguration() {
|
public CertificateCacheConfiguration getCertificateCacheConfiguration() {
|
||||||
return certificateCacheConfiguration;
|
return certificateCacheConfiguration;
|
||||||
|
|||||||
@ -19,8 +19,10 @@
|
|||||||
package org.wso2.carbon.device.mgt.core.dao;
|
package org.wso2.carbon.device.mgt.core.dao;
|
||||||
|
|
||||||
import org.wso2.carbon.device.mgt.common.event.config.EventConfig;
|
import org.wso2.carbon.device.mgt.common.event.config.EventConfig;
|
||||||
|
import org.wso2.carbon.device.mgt.common.event.config.EventTaskEntry;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
public interface EventConfigDAO {
|
public interface EventConfigDAO {
|
||||||
|
|
||||||
@ -112,4 +114,33 @@ public interface EventConfigDAO {
|
|||||||
* @throws EventManagementDAOException thrown errors while retrieving event sources
|
* @throws EventManagementDAOException thrown errors while retrieving event sources
|
||||||
*/
|
*/
|
||||||
List<String> getEventSourcesOfGroups(int groupId, int tenantId) throws EventManagementDAOException;
|
List<String> getEventSourcesOfGroups(int groupId, int tenantId) throws EventManagementDAOException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create record for event creation task which will be executed periodically
|
||||||
|
* @param eventTaskEntry event task object
|
||||||
|
* @param groupIds group ids of the event assigned
|
||||||
|
* @return true if record added successfully
|
||||||
|
* @throws EventManagementDAOException failed while creating the entry record
|
||||||
|
*/
|
||||||
|
boolean createEventTaskEntry(EventTaskEntry eventTaskEntry, List<Integer> groupIds) throws EventManagementDAOException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Retrieve task entries by status of the task
|
||||||
|
* @param status status of the task
|
||||||
|
* @return map of tenant id and event task entries
|
||||||
|
* @throws EventManagementDAOException if errors occurred while retrieving records
|
||||||
|
*/
|
||||||
|
Map<Integer, List<EventTaskEntry>> getAvailableEventTaskEntries(String status) throws EventManagementDAOException;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update event task records of group and set them as COMPLETED
|
||||||
|
* @param code operation code
|
||||||
|
* @param eventSource source of the event to be updated
|
||||||
|
* @param groupIds groupId list of the task entries
|
||||||
|
* @param tenantId tenant of the records
|
||||||
|
* @return true if the update done successfully
|
||||||
|
* @throws EventManagementDAOException if errors occurred while retrieving records
|
||||||
|
*/
|
||||||
|
boolean setEventTaskComplete(String code, String eventSource, List<Integer> groupIds, int tenantId)
|
||||||
|
throws EventManagementDAOException;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -24,14 +24,18 @@ import org.wso2.carbon.device.mgt.common.event.config.EventConfig;
|
|||||||
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOFactory;
|
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOFactory;
|
||||||
import org.wso2.carbon.device.mgt.core.dao.EventConfigDAO;
|
import org.wso2.carbon.device.mgt.core.dao.EventConfigDAO;
|
||||||
import org.wso2.carbon.device.mgt.core.dao.EventManagementDAOException;
|
import org.wso2.carbon.device.mgt.core.dao.EventManagementDAOException;
|
||||||
|
import org.wso2.carbon.device.mgt.common.event.config.EventTaskEntry;
|
||||||
|
|
||||||
import java.sql.Connection;
|
import java.sql.Connection;
|
||||||
import java.sql.PreparedStatement;
|
import java.sql.PreparedStatement;
|
||||||
import java.sql.ResultSet;
|
import java.sql.ResultSet;
|
||||||
import java.sql.SQLException;
|
import java.sql.SQLException;
|
||||||
|
import java.sql.Timestamp;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
|
import java.util.HashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
public abstract class AbstractEventConfigDAO implements EventConfigDAO {
|
public abstract class AbstractEventConfigDAO implements EventConfigDAO {
|
||||||
private static final Log log = LogFactory.getLog(AbstractEventConfigDAO.class);
|
private static final Log log = LogFactory.getLog(AbstractEventConfigDAO.class);
|
||||||
@ -323,6 +327,117 @@ public abstract class AbstractEventConfigDAO implements EventConfigDAO {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean createEventTaskEntry(EventTaskEntry eventTaskEntry, List<Integer> groupIds)
|
||||||
|
throws EventManagementDAOException {
|
||||||
|
try {
|
||||||
|
Connection connection = this.getConnection();
|
||||||
|
String sql = "INSERT INTO DM_EVENT_OPERATION_ASSIGNMENT_TASK(" +
|
||||||
|
"DEVICE_ID, " +
|
||||||
|
"GROUP_ID, " +
|
||||||
|
"OPERATION_CODE, " +
|
||||||
|
"EVENT_SOURCE, " +
|
||||||
|
"EVENT_META_ID, " +
|
||||||
|
"STATUS, " +
|
||||||
|
"TENANT_ID, " +
|
||||||
|
"CREATED_TIMESTAMP) " +
|
||||||
|
"VALUES(?, ?, ?, ?, ?, ?, ?, ?)";
|
||||||
|
try (PreparedStatement stm = connection.prepareStatement(sql)){
|
||||||
|
for (Integer groupId : groupIds) {
|
||||||
|
stm.setInt(1, eventTaskEntry.getDeviceId());
|
||||||
|
stm.setInt(2, groupId);
|
||||||
|
stm.setString(3, eventTaskEntry.getOperationCode());
|
||||||
|
stm.setString(4, eventTaskEntry.getEventSource());
|
||||||
|
stm.setInt(5, eventTaskEntry.getEventMetaId());
|
||||||
|
stm.setString(6, eventTaskEntry.getExecutionStatus().toString());
|
||||||
|
stm.setInt(7, eventTaskEntry.getTenantId());
|
||||||
|
stm.setTimestamp(8, new Timestamp(System.currentTimeMillis()));
|
||||||
|
stm.addBatch();
|
||||||
|
}
|
||||||
|
return stm.executeBatch().length > 0;
|
||||||
|
}
|
||||||
|
} catch (SQLException e) {
|
||||||
|
String msg = "Failed while creating event task entry for event operation " + eventTaskEntry.getOperationCode()
|
||||||
|
+ " of the tenant " + eventTaskEntry.getTenantId();
|
||||||
|
log.error(msg);
|
||||||
|
throw new EventManagementDAOException(msg, e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Map<Integer, List<EventTaskEntry>> getAvailableEventTaskEntries(String status) throws EventManagementDAOException {
|
||||||
|
Map<Integer, List<EventTaskEntry>> eventTaskEntries = new HashMap<>();
|
||||||
|
try {
|
||||||
|
Connection connection = this.getConnection();
|
||||||
|
String sql = "SELECT " +
|
||||||
|
"ID, "+
|
||||||
|
"DEVICE_ID, " +
|
||||||
|
"GROUP_ID, " +
|
||||||
|
"OPERATION_CODE, " +
|
||||||
|
"EVENT_SOURCE, " +
|
||||||
|
"EVENT_META_ID, " +
|
||||||
|
"TENANT_ID " +
|
||||||
|
"FROM DM_EVENT_OPERATION_ASSIGNMENT_TASK " +
|
||||||
|
"WHERE STATUS = ?";
|
||||||
|
try (PreparedStatement stm = connection.prepareStatement(sql)){
|
||||||
|
stm.setString(1, status);
|
||||||
|
ResultSet resultSet = stm.executeQuery();
|
||||||
|
while (resultSet.next()) {
|
||||||
|
int tenantId = resultSet.getInt("TENANT_ID");
|
||||||
|
List<EventTaskEntry> eventsOfTenant = eventTaskEntries.get(tenantId);
|
||||||
|
if (eventsOfTenant == null) {
|
||||||
|
eventsOfTenant = new ArrayList<>();
|
||||||
|
}
|
||||||
|
EventTaskEntry eventTaskEntry = new EventTaskEntry();
|
||||||
|
eventTaskEntry.setId(resultSet.getInt("ID"));
|
||||||
|
eventTaskEntry.setOperationCode(resultSet.getString("OPERATION_CODE"));
|
||||||
|
eventTaskEntry.setGroupId(resultSet.getInt("GROUP_ID"));
|
||||||
|
eventTaskEntry.setEventMetaId(resultSet.getInt("EVENT_META_ID"));
|
||||||
|
eventTaskEntry.setDeviceId(resultSet.getInt("DEVICE_ID"));
|
||||||
|
eventTaskEntry.setTenantId(tenantId);
|
||||||
|
eventTaskEntry.setEventSource(resultSet.getString("EVENT_SOURCE"));
|
||||||
|
eventsOfTenant.add(eventTaskEntry);
|
||||||
|
eventTaskEntries.put(tenantId, eventsOfTenant);
|
||||||
|
}
|
||||||
|
return eventTaskEntries;
|
||||||
|
}
|
||||||
|
} catch (SQLException e) {
|
||||||
|
String msg = "Failed while retrieving event task entries";
|
||||||
|
log.error(msg);
|
||||||
|
throw new EventManagementDAOException(msg, e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean setEventTaskComplete(String code, String eventSource, List<Integer> groupIds, int tenantId)
|
||||||
|
throws EventManagementDAOException {
|
||||||
|
try {
|
||||||
|
Connection connection = this.getConnection();
|
||||||
|
String sql = "UPDATE DM_EVENT_OPERATION_ASSIGNMENT_TASK " +
|
||||||
|
"SET STATUS = ?, "+
|
||||||
|
"COMPLETED_TIMESTAMP = ? " +
|
||||||
|
"WHERE STATUS = ? AND OPERATION_CODE = ? AND EVENT_SOURCE = ? AND GROUP_ID = ? AND TENANT_ID = ?";
|
||||||
|
try (PreparedStatement stm = connection.prepareStatement(sql)){
|
||||||
|
for (Integer groupId : groupIds) {
|
||||||
|
stm.setString(1, EventTaskEntry.ExecutionStatus.COMPLETED.toString());
|
||||||
|
stm.setTimestamp(2, new Timestamp(System.currentTimeMillis()));
|
||||||
|
stm.setString(3, EventTaskEntry.ExecutionStatus.CREATED.toString());
|
||||||
|
stm.setString(4, code);
|
||||||
|
stm.setString(5, eventSource);
|
||||||
|
stm.setInt(6, groupId);
|
||||||
|
stm.setInt(7, tenantId);
|
||||||
|
stm.addBatch();
|
||||||
|
}
|
||||||
|
return stm.executeBatch().length > 0;
|
||||||
|
}
|
||||||
|
} catch (SQLException e) {
|
||||||
|
String msg = "Failed while retrieving event task entries";
|
||||||
|
log.error(msg);
|
||||||
|
throw new EventManagementDAOException(msg, e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private Connection getConnection() throws SQLException {
|
private Connection getConnection() throws SQLException {
|
||||||
return DeviceManagementDAOFactory.getConnection();
|
return DeviceManagementDAOFactory.getConnection();
|
||||||
}
|
}
|
||||||
|
|||||||
@ -22,7 +22,6 @@ import org.apache.commons.logging.Log;
|
|||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
import org.wso2.carbon.device.mgt.common.event.config.EventConfig;
|
import org.wso2.carbon.device.mgt.common.event.config.EventConfig;
|
||||||
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOFactory;
|
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOFactory;
|
||||||
import org.wso2.carbon.device.mgt.core.dao.EventConfigDAO;
|
|
||||||
import org.wso2.carbon.device.mgt.core.dao.EventManagementDAOException;
|
import org.wso2.carbon.device.mgt.core.dao.EventManagementDAOException;
|
||||||
import org.wso2.carbon.device.mgt.core.dao.impl.AbstractEventConfigDAO;
|
import org.wso2.carbon.device.mgt.core.dao.impl.AbstractEventConfigDAO;
|
||||||
|
|
||||||
@ -33,7 +32,6 @@ import java.sql.SQLException;
|
|||||||
import java.sql.Statement;
|
import java.sql.Statement;
|
||||||
import java.sql.Timestamp;
|
import java.sql.Timestamp;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
|||||||
@ -30,6 +30,7 @@ import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOFactory;
|
|||||||
import org.wso2.carbon.device.mgt.core.dao.EventConfigDAO;
|
import org.wso2.carbon.device.mgt.core.dao.EventConfigDAO;
|
||||||
import org.wso2.carbon.device.mgt.core.dao.EventManagementDAOException;
|
import org.wso2.carbon.device.mgt.core.dao.EventManagementDAOException;
|
||||||
import org.wso2.carbon.device.mgt.core.dao.util.DeviceManagementDAOUtil;
|
import org.wso2.carbon.device.mgt.core.dao.util.DeviceManagementDAOUtil;
|
||||||
|
import org.wso2.carbon.device.mgt.common.event.config.EventTaskEntry;
|
||||||
|
|
||||||
import java.sql.SQLException;
|
import java.sql.SQLException;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
@ -236,4 +237,28 @@ public class EventConfigurationProviderServiceImpl implements EventConfiguration
|
|||||||
throw new EventConfigurationException(msg, e);
|
throw new EventConfigurationException(msg, e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void createEventOperationTask(EventTaskEntry eventTaskEntry, List<Integer> groupIds)
|
||||||
|
throws EventConfigurationException {
|
||||||
|
try {
|
||||||
|
DeviceManagementDAOFactory.beginTransaction();
|
||||||
|
eventConfigDAO.createEventTaskEntry(eventTaskEntry, groupIds);
|
||||||
|
DeviceManagementDAOFactory.commitTransaction();
|
||||||
|
} catch (TransactionManagementException e) {
|
||||||
|
String msg = "Failed to start transaction while creating event operation task entries of tenant "
|
||||||
|
+ eventTaskEntry.getTenantId();
|
||||||
|
log.error(msg, e);
|
||||||
|
throw new EventConfigurationException(msg, e);
|
||||||
|
} catch (EventManagementDAOException e) {
|
||||||
|
DeviceManagementDAOFactory.rollbackTransaction();
|
||||||
|
String msg = "Error occurred while creating event task entries for event " + eventTaskEntry
|
||||||
|
.getEventSource() + " with code " + eventTaskEntry.getOperationCode() + " of the tenant "
|
||||||
|
+ eventTaskEntry.getTenantId();
|
||||||
|
log.error(msg, e);
|
||||||
|
throw new EventConfigurationException(msg, e);
|
||||||
|
} finally {
|
||||||
|
DeviceManagementDAOFactory.closeConnection();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -1,230 +0,0 @@
|
|||||||
/*
|
|
||||||
* Copyright (c) 2020, Entgra (Pvt) Ltd. (http://www.entgra.io) All Rights Reserved.
|
|
||||||
*
|
|
||||||
* Entgra (Pvt) Ltd. 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.core.event.config;
|
|
||||||
|
|
||||||
import com.google.gson.Gson;
|
|
||||||
import org.apache.commons.logging.Log;
|
|
||||||
import org.apache.commons.logging.LogFactory;
|
|
||||||
import org.wso2.carbon.context.PrivilegedCarbonContext;
|
|
||||||
import org.wso2.carbon.device.mgt.common.Device;
|
|
||||||
import org.wso2.carbon.device.mgt.common.DeviceIdentifier;
|
|
||||||
import org.wso2.carbon.device.mgt.common.DeviceManagementConstants;
|
|
||||||
import org.wso2.carbon.device.mgt.common.event.config.EventConfig;
|
|
||||||
import org.wso2.carbon.device.mgt.common.event.config.EventConfigurationException;
|
|
||||||
import org.wso2.carbon.device.mgt.common.event.config.EventMetaData;
|
|
||||||
import org.wso2.carbon.device.mgt.common.event.config.EventOperation;
|
|
||||||
import org.wso2.carbon.device.mgt.common.event.config.EventRevokeOperation;
|
|
||||||
import org.wso2.carbon.device.mgt.common.exceptions.InvalidDeviceException;
|
|
||||||
import org.wso2.carbon.device.mgt.common.geo.service.GeoFenceEventMeta;
|
|
||||||
import org.wso2.carbon.device.mgt.common.geo.service.GeoLocationBasedServiceException;
|
|
||||||
import org.wso2.carbon.device.mgt.common.geo.service.GeoLocationProviderService;
|
|
||||||
import org.wso2.carbon.device.mgt.common.group.mgt.DeviceGroup;
|
|
||||||
import org.wso2.carbon.device.mgt.common.group.mgt.GroupManagementException;
|
|
||||||
import org.wso2.carbon.device.mgt.common.operation.mgt.Operation;
|
|
||||||
import org.wso2.carbon.device.mgt.common.operation.mgt.OperationManagementException;
|
|
||||||
import org.wso2.carbon.device.mgt.core.geo.task.EventCreateCallback;
|
|
||||||
import org.wso2.carbon.device.mgt.core.internal.DeviceManagementDataHolder;
|
|
||||||
import org.wso2.carbon.device.mgt.core.operation.mgt.OperationMgtConstants;
|
|
||||||
import org.wso2.carbon.device.mgt.core.operation.mgt.ProfileOperation;
|
|
||||||
import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService;
|
|
||||||
import org.wso2.carbon.device.mgt.core.service.GroupManagementProviderService;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Arrays;
|
|
||||||
import java.util.HashSet;
|
|
||||||
import java.util.List;
|
|
||||||
import java.util.Set;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Event create/revoke operation creation task.
|
|
||||||
* Use at the time of single event create, update, delete
|
|
||||||
*/
|
|
||||||
public class EventOperationExecutor implements Runnable {
|
|
||||||
private static final Log log = LogFactory.getLog(EventOperationExecutor.class);
|
|
||||||
|
|
||||||
private final List<Integer> groupIds;
|
|
||||||
private final String eventSource;
|
|
||||||
private final EventMetaData eventMetaData;
|
|
||||||
private final int tenantId;
|
|
||||||
private final String operationCode;
|
|
||||||
private final GroupManagementProviderService groupManagementService;
|
|
||||||
private EventCreateCallback callback;
|
|
||||||
|
|
||||||
public EventOperationExecutor(EventMetaData eventMetaData, List<Integer> groupIds, int tenantId,
|
|
||||||
String eventSource, String operationCode) {
|
|
||||||
this.eventMetaData = eventMetaData;
|
|
||||||
this.groupIds = groupIds;
|
|
||||||
this.tenantId = tenantId;
|
|
||||||
this.eventSource = eventSource;
|
|
||||||
this.operationCode = operationCode;
|
|
||||||
this.groupManagementService = DeviceManagementDataHolder.getInstance().getGroupManagementProviderService();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void run() {
|
|
||||||
log.info("Starting event operation creation task");
|
|
||||||
if (operationCode == null) {
|
|
||||||
log.error("Failed to start event operation task. Operation code is null");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (log.isDebugEnabled()) {
|
|
||||||
log.info("Starting " + operationCode + " operation creation task for event " + eventSource
|
|
||||||
+ " tenant " + tenantId + " group Ids "+ Arrays.toString(groupIds.toArray()));
|
|
||||||
}
|
|
||||||
PrivilegedCarbonContext.startTenantFlow();
|
|
||||||
PrivilegedCarbonContext.getThreadLocalCarbonContext().setTenantId(tenantId, true);
|
|
||||||
ProfileOperation operation = new ProfileOperation();
|
|
||||||
operation.setType(Operation.Type.PROFILE);
|
|
||||||
try {
|
|
||||||
if (operationCode.equalsIgnoreCase(OperationMgtConstants.OperationCodes.EVENT_CONFIG)) {
|
|
||||||
operation.setCode(OperationMgtConstants.OperationCodes.EVENT_CONFIG);
|
|
||||||
buildEventConfigOperation(operation);
|
|
||||||
} else if (operationCode.equalsIgnoreCase(OperationMgtConstants.OperationCodes.EVENT_REVOKE)){
|
|
||||||
operation.setCode(OperationMgtConstants.OperationCodes.EVENT_REVOKE);
|
|
||||||
buildEventRevokeOperation(operation);
|
|
||||||
}
|
|
||||||
} catch (EventConfigurationException e) {
|
|
||||||
log.error("Event creation failed with message : " + e.getMessage(), e);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
Set<Device> devices = new HashSet<>();
|
|
||||||
for (Integer groupId : groupIds) {
|
|
||||||
DeviceGroup group;
|
|
||||||
try {
|
|
||||||
group = groupManagementService.getGroup(groupId, false);
|
|
||||||
} catch (GroupManagementException e) {
|
|
||||||
log.error("Failed to retrieve group with group ID " + groupId, e);
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
try {
|
|
||||||
if (group != null) {
|
|
||||||
List<Device> allDevicesOfGroup = groupManagementService.getAllDevicesOfGroup(group.getName(), false);
|
|
||||||
if (allDevicesOfGroup == null || allDevicesOfGroup.isEmpty()) {
|
|
||||||
log.warn("No devices found in group " + group.getName());
|
|
||||||
} else {
|
|
||||||
devices.addAll(allDevicesOfGroup);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} catch (GroupManagementException e) {
|
|
||||||
log.error("Failed to retrieve devices of group with ID " + groupId + " and name " + group.getName(), e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (devices.isEmpty()) {
|
|
||||||
log.warn("No devices found for the specified groups " + Arrays.toString(groupIds.toArray()));
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
List<DeviceIdentifier> deviceIdentifiers = new ArrayList<>();
|
|
||||||
for (Device device : devices) {
|
|
||||||
if (device.getType().equalsIgnoreCase("android")) {
|
|
||||||
//TODO introduce a proper mechanism for event handling for each device types
|
|
||||||
deviceIdentifiers.add(new DeviceIdentifier(device.getDeviceIdentifier(), device.getType()));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
DeviceManagementProviderService deviceManagementProvider = DeviceManagementDataHolder
|
|
||||||
.getInstance().getDeviceManagementProvider();
|
|
||||||
try {
|
|
||||||
if (log.isDebugEnabled()) {
|
|
||||||
log.debug("Creating event operations stared for devices" + Arrays.toString(deviceIdentifiers.toArray()));
|
|
||||||
}
|
|
||||||
deviceManagementProvider.addOperation("android", operation, deviceIdentifiers);
|
|
||||||
//TODO introduce a proper mechanism
|
|
||||||
} catch (OperationManagementException e) {
|
|
||||||
log.error("Creating event operation failed with error ", e);
|
|
||||||
return;
|
|
||||||
} catch (InvalidDeviceException e) {
|
|
||||||
log.error("Creating event operation failed.\n" +
|
|
||||||
"Could not found device/devices for the defined device identifiers.", e);
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
log.info("Event operation creation task completed");
|
|
||||||
if (callback != null) {
|
|
||||||
callback.onCompleteEventOperation(null);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Build operation to create EVENT_REVOKE operation.
|
|
||||||
* @param operation Operation object to build
|
|
||||||
*/
|
|
||||||
private void buildEventRevokeOperation(ProfileOperation operation) {
|
|
||||||
if (eventSource.equalsIgnoreCase(DeviceManagementConstants.EventServices.GEOFENCE)) {
|
|
||||||
createGeoFenceRevokeOperation(operation);
|
|
||||||
} //extend with another cases to handle other types of events
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Build operation to create EVENT_CONFIG operation.
|
|
||||||
* @param operation Operation object to build
|
|
||||||
* @throws EventConfigurationException Failed while build the operation object
|
|
||||||
*/
|
|
||||||
private void buildEventConfigOperation(ProfileOperation operation) throws EventConfigurationException {
|
|
||||||
if (eventSource.equalsIgnoreCase(DeviceManagementConstants.EventServices.GEOFENCE)) {
|
|
||||||
createGeoFenceConfigOperation(operation);
|
|
||||||
} //extend with another cases to handle other types of events
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create EVENT_CONFIG operation object and attach payload to configure geo fence events
|
|
||||||
* @param operation operation object to set the payload
|
|
||||||
* @throws EventConfigurationException Failed while retrieving event list of geo fence
|
|
||||||
*/
|
|
||||||
private void createGeoFenceConfigOperation(ProfileOperation operation) throws EventConfigurationException {
|
|
||||||
GeoFenceEventMeta geoFenceMeta = (GeoFenceEventMeta) eventMetaData;
|
|
||||||
try {
|
|
||||||
GeoLocationProviderService geoLocationProviderService = DeviceManagementDataHolder
|
|
||||||
.getInstance().getGeoLocationProviderService();
|
|
||||||
List<EventConfig> eventConfigList = geoLocationProviderService.getEventsOfGeoFence(geoFenceMeta.getId());
|
|
||||||
if (log.isDebugEnabled()) {
|
|
||||||
log.debug("Retrieved event records of Geo Fence " + geoFenceMeta.getId() +
|
|
||||||
". events " + Arrays.toString(eventConfigList.toArray()));
|
|
||||||
}
|
|
||||||
List<EventOperation> eventOperations = new ArrayList<>();
|
|
||||||
EventOperation eventOperation = new EventOperation();
|
|
||||||
eventOperation.setEventDefinition(eventMetaData);
|
|
||||||
eventOperation.setEventSource(eventSource);
|
|
||||||
eventOperation.setEventTriggers(eventConfigList);
|
|
||||||
eventOperations.add(eventOperation);
|
|
||||||
operation.setPayLoad(new Gson().toJson(eventOperations));
|
|
||||||
}catch (GeoLocationBasedServiceException e) {
|
|
||||||
throw new EventConfigurationException("Failed to retrieve event data of Geo fence " + geoFenceMeta.getId()
|
|
||||||
+ " : " + geoFenceMeta.getFenceName(), e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create EVENT_REVOKE operation object and attach payload to configure geo fence events
|
|
||||||
* @param operation operation object to set the payload
|
|
||||||
*/
|
|
||||||
private void createGeoFenceRevokeOperation(ProfileOperation operation) {
|
|
||||||
GeoFenceEventMeta geoFenceMeta = (GeoFenceEventMeta) eventMetaData;
|
|
||||||
EventRevokeOperation eventRevokeOperation = new EventRevokeOperation();
|
|
||||||
eventRevokeOperation.setEventSource(eventSource);
|
|
||||||
eventRevokeOperation.setId(geoFenceMeta.getId());
|
|
||||||
operation.setPayLoad(new Gson().toJson(eventRevokeOperation));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Can be used to set the task callback to call after the task completed successfully
|
|
||||||
* @param callback Event callback object implemented inside the task starting class
|
|
||||||
*/
|
|
||||||
public void setCallback(EventCreateCallback callback) {
|
|
||||||
this.callback = callback;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -0,0 +1,44 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2020, Entgra (Pvt) Ltd. (http://www.entgra.io) All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Entgra (Pvt) Ltd. 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.core.event.config;
|
||||||
|
|
||||||
|
import javax.xml.bind.annotation.XmlElement;
|
||||||
|
|
||||||
|
public class EventOperationTaskConfiguration {
|
||||||
|
private boolean isEnabled;
|
||||||
|
private int frequency;
|
||||||
|
|
||||||
|
@XmlElement(name = "Enable", required = true)
|
||||||
|
public boolean isEnabled() {
|
||||||
|
return isEnabled;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEnabled(boolean enabled) {
|
||||||
|
isEnabled = enabled;
|
||||||
|
}
|
||||||
|
|
||||||
|
@XmlElement(name = "Frequency", required = true)
|
||||||
|
public int getFrequency() {
|
||||||
|
return frequency;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFrequency(int frequency) {
|
||||||
|
this.frequency = frequency;
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,307 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2020, Entgra (Pvt) Ltd. (http://www.entgra.io) All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Entgra (Pvt) Ltd. 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.core.event.config;
|
||||||
|
|
||||||
|
import org.apache.commons.logging.Log;
|
||||||
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
import org.json.JSONArray;
|
||||||
|
import org.json.JSONObject;
|
||||||
|
import org.wso2.carbon.context.PrivilegedCarbonContext;
|
||||||
|
import org.wso2.carbon.device.mgt.common.Device;
|
||||||
|
import org.wso2.carbon.device.mgt.common.DeviceIdentifier;
|
||||||
|
import org.wso2.carbon.device.mgt.common.DeviceManagementConstants;
|
||||||
|
import org.wso2.carbon.device.mgt.common.event.config.EventConfig;
|
||||||
|
import org.wso2.carbon.device.mgt.common.event.config.EventOperation;
|
||||||
|
import org.wso2.carbon.device.mgt.common.event.config.EventRevokeOperation;
|
||||||
|
import org.wso2.carbon.device.mgt.common.event.config.EventTaskEntry;
|
||||||
|
import org.wso2.carbon.device.mgt.common.exceptions.InvalidDeviceException;
|
||||||
|
import org.wso2.carbon.device.mgt.common.geo.service.GeoFenceEventMeta;
|
||||||
|
import org.wso2.carbon.device.mgt.common.geo.service.GeofenceData;
|
||||||
|
import org.wso2.carbon.device.mgt.common.group.mgt.DeviceGroup;
|
||||||
|
import org.wso2.carbon.device.mgt.common.group.mgt.GroupManagementException;
|
||||||
|
import org.wso2.carbon.device.mgt.common.operation.mgt.Operation;
|
||||||
|
import org.wso2.carbon.device.mgt.common.operation.mgt.OperationManagementException;
|
||||||
|
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOException;
|
||||||
|
import org.wso2.carbon.device.mgt.core.dao.DeviceManagementDAOFactory;
|
||||||
|
import org.wso2.carbon.device.mgt.core.dao.EventConfigDAO;
|
||||||
|
import org.wso2.carbon.device.mgt.core.dao.EventManagementDAOException;
|
||||||
|
import org.wso2.carbon.device.mgt.core.dao.GeofenceDAO;
|
||||||
|
import org.wso2.carbon.device.mgt.core.internal.DeviceManagementDataHolder;
|
||||||
|
import org.wso2.carbon.device.mgt.core.operation.mgt.OperationMgtConstants;
|
||||||
|
import org.wso2.carbon.device.mgt.core.operation.mgt.ProfileOperation;
|
||||||
|
import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService;
|
||||||
|
import org.wso2.carbon.device.mgt.core.service.GroupManagementProviderService;
|
||||||
|
import org.wso2.carbon.device.mgt.core.task.impl.RandomlyAssignedScheduleTask;
|
||||||
|
|
||||||
|
import java.sql.SQLException;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.HashSet;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Event create/revoke operation creation task.
|
||||||
|
* Use at the time of single event create, update, delete
|
||||||
|
*/
|
||||||
|
public class GroupEventOperationCreationTask extends RandomlyAssignedScheduleTask {
|
||||||
|
private static final Log log = LogFactory.getLog(GroupEventOperationCreationTask.class);
|
||||||
|
private static final String TASK_NAME = "GROUP_EVENT_CREATE_TASK";
|
||||||
|
|
||||||
|
private GroupManagementProviderService groupManagementService;
|
||||||
|
private EventConfigDAO eventConfigDAO;
|
||||||
|
private GeofenceDAO geofenceDAO;
|
||||||
|
private int tenantId;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void setup() {
|
||||||
|
if (this.groupManagementService == null) {
|
||||||
|
this.groupManagementService = DeviceManagementDataHolder.getInstance().getGroupManagementProviderService();
|
||||||
|
}
|
||||||
|
if (this.eventConfigDAO == null) {
|
||||||
|
this.eventConfigDAO = DeviceManagementDAOFactory.getEventConfigDAO();
|
||||||
|
}
|
||||||
|
if (this.geofenceDAO == null) {
|
||||||
|
this.geofenceDAO = DeviceManagementDAOFactory.getGeofenceDAO();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void executeRandomlyAssignedTask() {
|
||||||
|
if (log.isDebugEnabled()) {
|
||||||
|
log.debug("Starting event operation creation task");
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
DeviceManagementDAOFactory.openConnection();
|
||||||
|
Map<Integer, List<EventTaskEntry>> eventTaskEntries = eventConfigDAO
|
||||||
|
.getAvailableEventTaskEntries(EventTaskEntry.ExecutionStatus.CREATED.toString());
|
||||||
|
DeviceManagementDAOFactory.closeConnection();
|
||||||
|
for (Map.Entry<Integer, List<EventTaskEntry>> eventTaskEntry : eventTaskEntries.entrySet()) {
|
||||||
|
this.tenantId = eventTaskEntry.getKey();
|
||||||
|
PrivilegedCarbonContext.startTenantFlow();
|
||||||
|
PrivilegedCarbonContext.getThreadLocalCarbonContext().setTenantId(this.tenantId, true);
|
||||||
|
this.processEventsOfTenant(eventTaskEntry.getValue());
|
||||||
|
PrivilegedCarbonContext.endTenantFlow();
|
||||||
|
}
|
||||||
|
} catch (EventManagementDAOException e) {
|
||||||
|
log.error("Failed while retrieving event task entries", e);
|
||||||
|
} catch (SQLException e) {
|
||||||
|
log.error("Failed while opening connection", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Process event entries of a particular tenant
|
||||||
|
* @param eventTaskEntries list of geo fence task entries
|
||||||
|
*/
|
||||||
|
private void processEventsOfTenant(List<EventTaskEntry> eventTaskEntries) {
|
||||||
|
Map<String, List<EventTaskEntry>> eventSourceTaskMap = new HashMap<>();
|
||||||
|
for (EventTaskEntry eventTaskEntry : eventTaskEntries) {
|
||||||
|
List<EventTaskEntry> eventsOfSource = eventSourceTaskMap.get(eventTaskEntry.getEventSource());
|
||||||
|
if (eventsOfSource == null) {
|
||||||
|
eventsOfSource = new ArrayList<>();
|
||||||
|
}
|
||||||
|
eventsOfSource.add(eventTaskEntry);
|
||||||
|
eventSourceTaskMap.put(eventTaskEntry.getEventSource(), eventsOfSource);
|
||||||
|
}
|
||||||
|
for (Map.Entry<String, List<EventTaskEntry>> eventEntry : eventSourceTaskMap.entrySet()) {
|
||||||
|
switch (eventEntry.getKey()) {
|
||||||
|
case DeviceManagementConstants.EventServices.GEOFENCE :
|
||||||
|
processGeoFenceEventList(eventEntry.getValue());
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
log.error("Invalid event source" + eventEntry.getKey());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Devide event task entries into configuration entries and revoke entries
|
||||||
|
* @param geoFenceTaskList list of geo fence task entries
|
||||||
|
*/
|
||||||
|
private void processGeoFenceEventList(List<EventTaskEntry> geoFenceTaskList) {
|
||||||
|
Map<Integer, List<Integer>> geoFenceConfigEventMap = new HashMap<>();
|
||||||
|
Map<Integer, List<Integer>> geoFenceRevokeEventMap = new HashMap<>();
|
||||||
|
for (EventTaskEntry geoFenceTask : geoFenceTaskList) {
|
||||||
|
if (geoFenceTask.getOperationCode().equals(OperationMgtConstants.OperationCodes.EVENT_CONFIG)) {
|
||||||
|
List<Integer> groupIdList = geoFenceConfigEventMap.get(geoFenceTask.getEventMetaId());
|
||||||
|
if (groupIdList == null) {
|
||||||
|
groupIdList = new ArrayList<>();
|
||||||
|
}
|
||||||
|
groupIdList.add(geoFenceTask.getGroupId());
|
||||||
|
geoFenceConfigEventMap.put(geoFenceTask.getEventMetaId(), groupIdList);
|
||||||
|
} else if (geoFenceTask.getOperationCode().equals(OperationMgtConstants.OperationCodes.EVENT_REVOKE)) {
|
||||||
|
List<Integer> groupIdList = geoFenceRevokeEventMap.get(geoFenceTask.getEventMetaId());
|
||||||
|
if (groupIdList == null) {
|
||||||
|
groupIdList = new ArrayList<>();
|
||||||
|
}
|
||||||
|
groupIdList.add(geoFenceTask.getGroupId());
|
||||||
|
geoFenceRevokeEventMap.put(geoFenceTask.getEventMetaId(), groupIdList);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (!geoFenceConfigEventMap.isEmpty()) {
|
||||||
|
buildGeoFenceConfigOperation(geoFenceConfigEventMap);
|
||||||
|
}
|
||||||
|
if (!geoFenceRevokeEventMap.isEmpty()) {
|
||||||
|
buildGeoFenceRevokeOperation(geoFenceRevokeEventMap);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Build EVENT_REVOKE operation for geo fence event operation
|
||||||
|
* @param geoFenceRevokeEventMap group Ids mapped with geofence ID
|
||||||
|
*/
|
||||||
|
private void buildGeoFenceRevokeOperation(Map<Integer, List<Integer>> geoFenceRevokeEventMap) {
|
||||||
|
try {
|
||||||
|
DeviceManagementDAOFactory.openConnection();
|
||||||
|
for (Map.Entry<Integer, List<Integer>> eventGroupEntry : geoFenceRevokeEventMap.entrySet()) {
|
||||||
|
ProfileOperation revokeOperation = new ProfileOperation();
|
||||||
|
revokeOperation.setType(Operation.Type.PROFILE);
|
||||||
|
revokeOperation.setCode(OperationMgtConstants.OperationCodes.EVENT_REVOKE);
|
||||||
|
|
||||||
|
GeofenceData geofence = geofenceDAO.getGeofence(eventGroupEntry.getKey());
|
||||||
|
EventRevokeOperation eventRevokeOperation = new EventRevokeOperation();
|
||||||
|
eventRevokeOperation.setEventSource(DeviceManagementConstants.EventServices.GEOFENCE);
|
||||||
|
eventRevokeOperation.setId(geofence.getId());
|
||||||
|
|
||||||
|
JSONArray payloadArray = new JSONArray();
|
||||||
|
payloadArray.put(new JSONObject(eventRevokeOperation));
|
||||||
|
revokeOperation.setPayLoad(payloadArray.toString());
|
||||||
|
createOperationEntryForGroup(revokeOperation, DeviceManagementConstants.EventServices.GEOFENCE,
|
||||||
|
eventGroupEntry.getValue());
|
||||||
|
}
|
||||||
|
DeviceManagementDAOFactory.closeConnection();
|
||||||
|
} catch (SQLException e) {
|
||||||
|
log.error("Failed while opening connection", e);
|
||||||
|
} catch (DeviceManagementDAOException e) {
|
||||||
|
log.error("Error occurred while retrieving geofence data", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Build EVENT_CONFIG operation for geo fence event operation
|
||||||
|
* @param geoFenceConfigEventMap group Ids mapped with geofence ID
|
||||||
|
*/
|
||||||
|
private void buildGeoFenceConfigOperation(Map<Integer, List<Integer>> geoFenceConfigEventMap) {
|
||||||
|
try {
|
||||||
|
DeviceManagementDAOFactory.openConnection();
|
||||||
|
for (Map.Entry<Integer, List<Integer>> eventGroupEntry : geoFenceConfigEventMap.entrySet()) {
|
||||||
|
ProfileOperation configOperation = new ProfileOperation();
|
||||||
|
configOperation.setType(Operation.Type.PROFILE);
|
||||||
|
configOperation.setCode(OperationMgtConstants.OperationCodes.EVENT_CONFIG);
|
||||||
|
|
||||||
|
GeofenceData geofence = geofenceDAO.getGeofence(eventGroupEntry.getKey());
|
||||||
|
List<EventConfig> eventsOfGeoFence = geofenceDAO.getEventsOfGeoFence(geofence.getId());
|
||||||
|
EventOperation eventOperation = new EventOperation();
|
||||||
|
eventOperation.setEventDefinition(new GeoFenceEventMeta(geofence));
|
||||||
|
eventOperation.setEventSource(DeviceManagementConstants.EventServices.GEOFENCE);
|
||||||
|
eventOperation.setEventTriggers(eventsOfGeoFence);
|
||||||
|
JSONArray payloadArray = new JSONArray();
|
||||||
|
payloadArray.put(new JSONObject(eventOperation));
|
||||||
|
configOperation.setPayLoad(payloadArray.toString());
|
||||||
|
createOperationEntryForGroup(configOperation, DeviceManagementConstants.EventServices.GEOFENCE,
|
||||||
|
eventGroupEntry.getValue());
|
||||||
|
}
|
||||||
|
DeviceManagementDAOFactory.closeConnection();
|
||||||
|
} catch (SQLException e) {
|
||||||
|
log.error("Failed while opening connection", e);
|
||||||
|
} catch (DeviceManagementDAOException e) {
|
||||||
|
log.error("Error occurred while retrieving geofence data", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Create event operation of the groups
|
||||||
|
* @param operation creating operation
|
||||||
|
* @param eventSource event source type
|
||||||
|
* @param groupIds group Id list
|
||||||
|
*/
|
||||||
|
private void createOperationEntryForGroup(ProfileOperation operation, String eventSource, List<Integer> groupIds) {
|
||||||
|
Set<Device> devices = new HashSet<>();
|
||||||
|
for (Integer groupId : groupIds) {
|
||||||
|
DeviceGroup group;
|
||||||
|
try {
|
||||||
|
group = groupManagementService.getGroup(groupId, false);
|
||||||
|
} catch (GroupManagementException e) {
|
||||||
|
log.error("Failed to retrieve group with group ID " + groupId, e);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
if (group != null) {
|
||||||
|
List<Device> allDevicesOfGroup = groupManagementService.getAllDevicesOfGroup(group.getName(), false);
|
||||||
|
if (allDevicesOfGroup == null || allDevicesOfGroup.isEmpty()) {
|
||||||
|
log.warn("No devices found in group " + group.getName());
|
||||||
|
} else {
|
||||||
|
devices.addAll(allDevicesOfGroup);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
} catch (GroupManagementException e) {
|
||||||
|
log.error("Failed to retrieve devices of group with ID " + groupId + " and name " + group.getName(), e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (devices.isEmpty()) {
|
||||||
|
log.warn("No devices found for the specified groups " + Arrays.toString(groupIds.toArray()));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
List<DeviceIdentifier> deviceIdentifiers = new ArrayList<>();
|
||||||
|
for (Device device : devices) {
|
||||||
|
if (device.getType().equalsIgnoreCase("android")) {
|
||||||
|
//TODO introduce a proper mechanism for event handling for each device types
|
||||||
|
deviceIdentifiers.add(new DeviceIdentifier(device.getDeviceIdentifier(), device.getType()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
DeviceManagementProviderService deviceManagementProvider = DeviceManagementDataHolder
|
||||||
|
.getInstance().getDeviceManagementProvider();
|
||||||
|
try {
|
||||||
|
if (log.isDebugEnabled()) {
|
||||||
|
log.debug("Creating event operations stared for devices" + Arrays.toString(deviceIdentifiers.toArray()));
|
||||||
|
}
|
||||||
|
deviceManagementProvider.addOperation("android", operation, deviceIdentifiers);
|
||||||
|
//TODO introduce a proper mechanism
|
||||||
|
} catch (OperationManagementException e) {
|
||||||
|
log.error("Creating event operation failed with error ", e);
|
||||||
|
return;
|
||||||
|
} catch (InvalidDeviceException e) {
|
||||||
|
log.error("Creating event operation failed.\n" +
|
||||||
|
"Could not found device/devices for the defined device identifiers.", e);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (log.isDebugEnabled()) {
|
||||||
|
log.debug("Event operation creation task completed");
|
||||||
|
}
|
||||||
|
try {
|
||||||
|
eventConfigDAO.setEventTaskComplete(operation.getCode(), eventSource, groupIds, this.tenantId);
|
||||||
|
} catch (EventManagementDAOException e) {
|
||||||
|
log.error("Failed while updating event task records", e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getTaskName() {
|
||||||
|
return TASK_NAME;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void setProperties(Map<String, String> map) {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -42,6 +42,7 @@ import org.wso2.carbon.device.mgt.common.PaginationRequest;
|
|||||||
import org.wso2.carbon.device.mgt.common.event.config.EventConfig;
|
import org.wso2.carbon.device.mgt.common.event.config.EventConfig;
|
||||||
import org.wso2.carbon.device.mgt.common.event.config.EventConfigurationException;
|
import org.wso2.carbon.device.mgt.common.event.config.EventConfigurationException;
|
||||||
import org.wso2.carbon.device.mgt.common.event.config.EventConfigurationProviderService;
|
import org.wso2.carbon.device.mgt.common.event.config.EventConfigurationProviderService;
|
||||||
|
import org.wso2.carbon.device.mgt.common.event.config.EventTaskEntry;
|
||||||
import org.wso2.carbon.device.mgt.common.exceptions.TransactionManagementException;
|
import org.wso2.carbon.device.mgt.common.exceptions.TransactionManagementException;
|
||||||
import org.wso2.carbon.device.mgt.common.geo.service.Alert;
|
import org.wso2.carbon.device.mgt.common.geo.service.Alert;
|
||||||
import org.wso2.carbon.device.mgt.common.geo.service.GeoFence;
|
import org.wso2.carbon.device.mgt.common.geo.service.GeoFence;
|
||||||
@ -1261,6 +1262,7 @@ public class GeoLocationProviderServiceImpl implements GeoLocationProviderServic
|
|||||||
@Override
|
@Override
|
||||||
public boolean createGeofence(GeofenceData geofenceData) throws GeoLocationBasedServiceException, EventConfigurationException {
|
public boolean createGeofence(GeofenceData geofenceData) throws GeoLocationBasedServiceException, EventConfigurationException {
|
||||||
int tenantId;
|
int tenantId;
|
||||||
|
EventConfigurationProviderService eventConfigService;
|
||||||
try {
|
try {
|
||||||
tenantId = DeviceManagementDAOUtil.getTenantId();
|
tenantId = DeviceManagementDAOUtil.getTenantId();
|
||||||
geofenceData.setTenantId(tenantId);
|
geofenceData.setTenantId(tenantId);
|
||||||
@ -1293,8 +1295,7 @@ public class GeoLocationProviderServiceImpl implements GeoLocationProviderServic
|
|||||||
List<Integer> createdEventIds;
|
List<Integer> createdEventIds;
|
||||||
try {
|
try {
|
||||||
setEventSource(geofenceData.getEventConfig());
|
setEventSource(geofenceData.getEventConfig());
|
||||||
EventConfigurationProviderService eventConfigService = DeviceManagementDataHolder
|
eventConfigService = DeviceManagementDataHolder.getInstance().getEventConfigurationService();
|
||||||
.getInstance().getEventConfigurationService();
|
|
||||||
createdEventIds = eventConfigService.createEventsOfDeviceGroup(geofenceData.getEventConfig(), geofenceData.getGroupIds());
|
createdEventIds = eventConfigService.createEventsOfDeviceGroup(geofenceData.getEventConfig(), geofenceData.getGroupIds());
|
||||||
DeviceManagementDAOFactory.beginTransaction();
|
DeviceManagementDAOFactory.beginTransaction();
|
||||||
geofenceDAO.createGeofenceEventMapping(geofenceData.getId(), createdEventIds);
|
geofenceDAO.createGeofenceEventMapping(geofenceData.getId(), createdEventIds);
|
||||||
@ -1320,37 +1321,19 @@ public class GeoLocationProviderServiceImpl implements GeoLocationProviderServic
|
|||||||
} finally {
|
} finally {
|
||||||
DeviceManagementDAOFactory.closeConnection();
|
DeviceManagementDAOFactory.closeConnection();
|
||||||
}
|
}
|
||||||
createEventTask(OperationMgtConstants.OperationCodes.EVENT_CONFIG, geofenceData, tenantId);
|
|
||||||
|
try {
|
||||||
|
eventConfigService.createEventOperationTask(getEventOperationTask(OperationMgtConstants
|
||||||
|
.OperationCodes.EVENT_CONFIG, geofenceData.getId(), tenantId), geofenceData.getGroupIds());
|
||||||
|
} catch (EventConfigurationException e) {
|
||||||
|
String msg = "Failed while creating EVENT_REVOKE operation creation task entry while updating geo fence "
|
||||||
|
+ geofenceData.getFenceName() + " of the tenant " + tenantId;
|
||||||
|
log.error(msg, e);
|
||||||
|
throw new GeoLocationBasedServiceException(msg, e);
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Create event revoke task at the time of geofence edit.
|
|
||||||
* @param geofenceData updated geofence object
|
|
||||||
* @param tenantId id of the fence owning tenant
|
|
||||||
*/
|
|
||||||
private void createEventRevokeTask(GeofenceData geofenceData, int tenantId) {
|
|
||||||
GeoFenceEventOperationManager eventManager =
|
|
||||||
new GeoFenceEventOperationManager(OperationMgtConstants.OperationCodes.EVENT_REVOKE, tenantId,
|
|
||||||
values -> createEventTask(OperationMgtConstants.OperationCodes.EVENT_CONFIG, geofenceData, tenantId));
|
|
||||||
ScheduledExecutorService eventOperationExecutor = Executors.newSingleThreadScheduledExecutor();
|
|
||||||
eventOperationExecutor.schedule(eventManager
|
|
||||||
.getEventOperationExecutor(geofenceData), 10, TimeUnit.SECONDS);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Create event config operation at the time of geofence edit, geofence delete
|
|
||||||
* @param operationCode code of the creating event (EVENT_CONFIG / EVENT_REVOKE)
|
|
||||||
* @param geofenceData creating/deleting geofence object
|
|
||||||
* @param tenantId id of the fence owning tenant
|
|
||||||
*/
|
|
||||||
private void createEventTask(String operationCode, GeofenceData geofenceData, int tenantId) {
|
|
||||||
GeoFenceEventOperationManager eventManager = new GeoFenceEventOperationManager(operationCode, tenantId, null);
|
|
||||||
ScheduledExecutorService eventOperationExecutor = Executors.newSingleThreadScheduledExecutor();
|
|
||||||
eventOperationExecutor.schedule(eventManager
|
|
||||||
.getEventOperationExecutor(geofenceData), 10, TimeUnit.SECONDS);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set source of the event to GEOFENCE
|
* Set source of the event to GEOFENCE
|
||||||
* @param eventConfig event list to be set event source
|
* @param eventConfig event list to be set event source
|
||||||
@ -1599,6 +1582,7 @@ public class GeoLocationProviderServiceImpl implements GeoLocationProviderServic
|
|||||||
public boolean updateGeoEventConfigurations(GeofenceData geofenceData,
|
public boolean updateGeoEventConfigurations(GeofenceData geofenceData,
|
||||||
List<Integer> removedEventIdList, List<Integer> groupIds, int fenceId)
|
List<Integer> removedEventIdList, List<Integer> groupIds, int fenceId)
|
||||||
throws GeoLocationBasedServiceException {
|
throws GeoLocationBasedServiceException {
|
||||||
|
EventConfigurationProviderService eventConfigService;
|
||||||
if (log.isDebugEnabled()) {
|
if (log.isDebugEnabled()) {
|
||||||
log.debug("Updating event configuration of geofence " + fenceId);
|
log.debug("Updating event configuration of geofence " + fenceId);
|
||||||
}
|
}
|
||||||
@ -1627,8 +1611,7 @@ public class GeoLocationProviderServiceImpl implements GeoLocationProviderServic
|
|||||||
try {
|
try {
|
||||||
tenantId = DeviceManagementDAOUtil.getTenantId();
|
tenantId = DeviceManagementDAOUtil.getTenantId();
|
||||||
setEventSource(geofenceData.getEventConfig());
|
setEventSource(geofenceData.getEventConfig());
|
||||||
EventConfigurationProviderService eventConfigService = DeviceManagementDataHolder
|
eventConfigService = DeviceManagementDataHolder.getInstance().getEventConfigurationService();
|
||||||
.getInstance().getEventConfigurationService();
|
|
||||||
if (eventConfigService == null) {
|
if (eventConfigService == null) {
|
||||||
String msg = "Failed to load EventConfigurationProviderService osgi service of tenant " + tenantId;
|
String msg = "Failed to load EventConfigurationProviderService osgi service of tenant " + tenantId;
|
||||||
log.error(msg);
|
log.error(msg);
|
||||||
@ -1668,7 +1651,15 @@ public class GeoLocationProviderServiceImpl implements GeoLocationProviderServic
|
|||||||
if (log.isDebugEnabled()) {
|
if (log.isDebugEnabled()) {
|
||||||
log.debug("Update geofence event completed.");
|
log.debug("Update geofence event completed.");
|
||||||
}
|
}
|
||||||
createEventRevokeTask(geofenceData, tenantId);
|
try {
|
||||||
|
eventConfigService.createEventOperationTask(getEventOperationTask(OperationMgtConstants
|
||||||
|
.OperationCodes.EVENT_REVOKE, geofenceData.getId(), tenantId), geofenceData.getGroupIds());
|
||||||
|
} catch (EventConfigurationException e) {
|
||||||
|
String msg = "Failed while creating EVENT_REVOKE operation creation task entry while updating geo fence "
|
||||||
|
+ geofenceData.getFenceName() + " of the tenant " + tenantId;
|
||||||
|
log.error(msg, e);
|
||||||
|
throw new GeoLocationBasedServiceException(msg, e);
|
||||||
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1776,7 +1767,8 @@ public class GeoLocationProviderServiceImpl implements GeoLocationProviderServic
|
|||||||
EventConfigurationProviderService eventConfigService = DeviceManagementDataHolder
|
EventConfigurationProviderService eventConfigService = DeviceManagementDataHolder
|
||||||
.getInstance().getEventConfigurationService();
|
.getInstance().getEventConfigurationService();
|
||||||
eventConfigService.deleteEvents(eventList);
|
eventConfigService.deleteEvents(eventList);
|
||||||
createEventTask(OperationMgtConstants.OperationCodes.EVENT_REVOKE, geofenceData, tenantId);
|
eventConfigService.createEventOperationTask(getEventOperationTask(OperationMgtConstants
|
||||||
|
.OperationCodes.EVENT_REVOKE, geofenceData.getId(), tenantId), geofenceData.getGroupIds());
|
||||||
} catch (EventConfigurationException e) {
|
} catch (EventConfigurationException e) {
|
||||||
DeviceManagementDAOFactory.rollbackTransaction();
|
DeviceManagementDAOFactory.rollbackTransaction();
|
||||||
String msg = "Failed to delete Geofence event configurations";
|
String msg = "Failed to delete Geofence event configurations";
|
||||||
@ -1786,4 +1778,14 @@ public class GeoLocationProviderServiceImpl implements GeoLocationProviderServic
|
|||||||
DeviceManagementDAOFactory.closeConnection();
|
DeviceManagementDAOFactory.closeConnection();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private EventTaskEntry getEventOperationTask(String operationCode, int geoFenceId, int tenantId) {
|
||||||
|
EventTaskEntry eventTaskEntry = new EventTaskEntry();
|
||||||
|
eventTaskEntry.setEventSource(DeviceManagementConstants.EventServices.GEOFENCE);
|
||||||
|
eventTaskEntry.setExecutionStatus(EventTaskEntry.ExecutionStatus.CREATED);
|
||||||
|
eventTaskEntry.setOperationCode(operationCode);
|
||||||
|
eventTaskEntry.setEventMetaId(geoFenceId);
|
||||||
|
eventTaskEntry.setTenantId(tenantId);
|
||||||
|
return eventTaskEntry;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -0,0 +1,33 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2020, Entgra (Pvt) Ltd. (http://www.entgra.io) All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Entgra (Pvt) Ltd. 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.core.geo.task;
|
||||||
|
|
||||||
|
public class EventOperationTaskException extends Exception{
|
||||||
|
public EventOperationTaskException(String message) {
|
||||||
|
super(message);
|
||||||
|
}
|
||||||
|
|
||||||
|
public EventOperationTaskException(String message, Throwable cause) {
|
||||||
|
super(message, cause);
|
||||||
|
}
|
||||||
|
|
||||||
|
public EventOperationTaskException(Throwable cause) {
|
||||||
|
super(cause);
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -0,0 +1,82 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2020, Entgra (Pvt) Ltd. (http://www.entgra.io) All Rights Reserved.
|
||||||
|
*
|
||||||
|
* Entgra (Pvt) Ltd. 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.core.geo.task;
|
||||||
|
|
||||||
|
import org.apache.commons.logging.Log;
|
||||||
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
import org.wso2.carbon.device.mgt.core.event.config.EventOperationTaskConfiguration;
|
||||||
|
import org.wso2.carbon.device.mgt.core.event.config.GroupEventOperationCreationTask;
|
||||||
|
import org.wso2.carbon.device.mgt.core.internal.DeviceManagementDataHolder;
|
||||||
|
import org.wso2.carbon.device.mgt.core.status.task.DeviceStatusTaskException;
|
||||||
|
import org.wso2.carbon.ntask.common.TaskException;
|
||||||
|
import org.wso2.carbon.ntask.core.TaskInfo;
|
||||||
|
import org.wso2.carbon.ntask.core.TaskManager;
|
||||||
|
import org.wso2.carbon.ntask.core.service.TaskService;
|
||||||
|
|
||||||
|
public class EventOperationTaskManagerImpl {
|
||||||
|
private static final Log log = LogFactory.getLog(EventOperationTaskManagerImpl.class);
|
||||||
|
|
||||||
|
public static final String GROUP_EVENT_OPERATION_TASK_TYPE = "GROUP_EVENT_CREATION";
|
||||||
|
private static final String TASK_NAME = "GROUP_EVENT_TASK";
|
||||||
|
private static final String TASK_CLASS = GroupEventOperationCreationTask.class.getName();
|
||||||
|
|
||||||
|
public void startGroupEventOperationTask(EventOperationTaskConfiguration eventTaskConfig)
|
||||||
|
throws EventOperationTaskException {
|
||||||
|
try {
|
||||||
|
TaskService taskService = DeviceManagementDataHolder.getInstance().getTaskService();
|
||||||
|
taskService.registerTaskType(GROUP_EVENT_OPERATION_TASK_TYPE);
|
||||||
|
|
||||||
|
if (log.isDebugEnabled()) {
|
||||||
|
log.debug("Group event creation task is started");
|
||||||
|
log.debug(
|
||||||
|
"Group event creation task is at frequency of : " + eventTaskConfig.getFrequency());
|
||||||
|
}
|
||||||
|
TaskManager taskManager = taskService.getTaskManager(GROUP_EVENT_OPERATION_TASK_TYPE);
|
||||||
|
TaskInfo.TriggerInfo triggerInfo = new TaskInfo.TriggerInfo();
|
||||||
|
//Convert to milli seconds
|
||||||
|
triggerInfo.setIntervalMillis(eventTaskConfig.getFrequency());
|
||||||
|
triggerInfo.setRepeatCount(-1);
|
||||||
|
if (!taskManager.isTaskScheduled(GROUP_EVENT_OPERATION_TASK_TYPE)) {
|
||||||
|
TaskInfo taskInfo = new TaskInfo(TASK_NAME, TASK_CLASS, null, triggerInfo);
|
||||||
|
taskManager.registerTask(taskInfo);
|
||||||
|
taskManager.rescheduleTask(taskInfo.getName());
|
||||||
|
} else {
|
||||||
|
String msg = "Group event creation task is already started";
|
||||||
|
log.error(msg);
|
||||||
|
throw new EventOperationTaskException(msg);
|
||||||
|
}
|
||||||
|
} catch (TaskException e) {
|
||||||
|
String msg = "Error occurred while creating the group event operation task";
|
||||||
|
log.error(msg, e);
|
||||||
|
throw new EventOperationTaskException(msg, e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void stopGroupEventOperationTaskTask() throws EventOperationTaskException {
|
||||||
|
try {
|
||||||
|
TaskService taskService = DeviceManagementDataHolder.getInstance().getTaskService();
|
||||||
|
if (taskService != null && taskService.isServerInit()) {
|
||||||
|
TaskManager taskManager = taskService.getTaskManager(GROUP_EVENT_OPERATION_TASK_TYPE);
|
||||||
|
taskManager.deleteTask(TASK_NAME);
|
||||||
|
}
|
||||||
|
} catch (TaskException e) {
|
||||||
|
throw new EventOperationTaskException("Error occurred while stopping the group event operation task");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@ -23,7 +23,6 @@ import org.wso2.carbon.device.mgt.common.DeviceManagementConstants;
|
|||||||
import org.wso2.carbon.device.mgt.common.geo.service.GeoFenceEventMeta;
|
import org.wso2.carbon.device.mgt.common.geo.service.GeoFenceEventMeta;
|
||||||
import org.wso2.carbon.device.mgt.common.geo.service.GeofenceData;
|
import org.wso2.carbon.device.mgt.common.geo.service.GeofenceData;
|
||||||
import org.wso2.carbon.device.mgt.core.event.config.GroupEventOperationExecutor;
|
import org.wso2.carbon.device.mgt.core.event.config.GroupEventOperationExecutor;
|
||||||
import org.wso2.carbon.device.mgt.core.event.config.EventOperationExecutor;
|
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
@ -42,20 +41,6 @@ public class GeoFenceEventOperationManager {
|
|||||||
this.callback = callback;
|
this.callback = callback;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Get executor for create EVENT_CONFIG / EVENT_REVOKE operations at the time of a geofence
|
|
||||||
* created, updated or deleted
|
|
||||||
* @param geofenceData created geofence data object
|
|
||||||
* @return {@link EventOperationExecutor} Created executor to create operations
|
|
||||||
*/
|
|
||||||
public EventOperationExecutor getEventOperationExecutor(GeofenceData geofenceData) {
|
|
||||||
GeoFenceEventMeta geoFenceEventMeta = new GeoFenceEventMeta(geofenceData);
|
|
||||||
EventOperationExecutor executor = new EventOperationExecutor(geoFenceEventMeta, geofenceData.getGroupIds(),
|
|
||||||
tenantId, DeviceManagementConstants.EventServices.GEOFENCE, eventOperationCode);
|
|
||||||
executor.setCallback(callback);
|
|
||||||
return executor;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get executor for create EVENT_CONFIG / EVENT_REVOKE operations at the time of a device/s
|
* Get executor for create EVENT_CONFIG / EVENT_REVOKE operations at the time of a device/s
|
||||||
* assigned into a group or removed from a group
|
* assigned into a group or removed from a group
|
||||||
|
|||||||
@ -33,6 +33,7 @@ import org.wso2.carbon.device.mgt.core.config.license.LicenseConfig;
|
|||||||
import org.wso2.carbon.device.mgt.core.device.details.mgt.DeviceInformationManager;
|
import org.wso2.carbon.device.mgt.core.device.details.mgt.DeviceInformationManager;
|
||||||
import org.wso2.carbon.device.mgt.core.dto.DeviceType;
|
import org.wso2.carbon.device.mgt.core.dto.DeviceType;
|
||||||
import org.wso2.carbon.device.mgt.core.dto.DeviceTypeServiceIdentifier;
|
import org.wso2.carbon.device.mgt.core.dto.DeviceTypeServiceIdentifier;
|
||||||
|
import org.wso2.carbon.device.mgt.core.geo.task.EventOperationTaskManagerImpl;
|
||||||
import org.wso2.carbon.device.mgt.core.privacy.PrivacyComplianceProvider;
|
import org.wso2.carbon.device.mgt.core.privacy.PrivacyComplianceProvider;
|
||||||
import org.wso2.carbon.device.mgt.core.push.notification.mgt.PushNotificationProviderRepository;
|
import org.wso2.carbon.device.mgt.core.push.notification.mgt.PushNotificationProviderRepository;
|
||||||
import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService;
|
import org.wso2.carbon.device.mgt.core.service.DeviceManagementProviderService;
|
||||||
@ -77,6 +78,7 @@ public class DeviceManagementDataHolder {
|
|||||||
private PrivacyComplianceProvider privacyComplianceProvider;
|
private PrivacyComplianceProvider privacyComplianceProvider;
|
||||||
private EventConfigurationProviderService eventConfigurationService;
|
private EventConfigurationProviderService eventConfigurationService;
|
||||||
private GeoLocationProviderService geoLocationProviderService;
|
private GeoLocationProviderService geoLocationProviderService;
|
||||||
|
private EventOperationTaskManagerImpl eventOperationTaskManager;
|
||||||
|
|
||||||
private final Map<DeviceType, DeviceStatusTaskPluginConfig> deviceStatusTaskPluginConfigs = Collections.synchronizedMap(
|
private final Map<DeviceType, DeviceStatusTaskPluginConfig> deviceStatusTaskPluginConfigs = Collections.synchronizedMap(
|
||||||
new HashMap<>());
|
new HashMap<>());
|
||||||
@ -318,4 +320,12 @@ public class DeviceManagementDataHolder {
|
|||||||
public void setGeoLocationProviderService(GeoLocationProviderService geoLocationProviderService) {
|
public void setGeoLocationProviderService(GeoLocationProviderService geoLocationProviderService) {
|
||||||
this.geoLocationProviderService = geoLocationProviderService;
|
this.geoLocationProviderService = geoLocationProviderService;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void setEventOperationTaskManager(EventOperationTaskManagerImpl eventOperationTaskManager) {
|
||||||
|
this.eventOperationTaskManager = eventOperationTaskManager;
|
||||||
|
}
|
||||||
|
|
||||||
|
public EventOperationTaskManagerImpl getEventOperationTaskManager() {
|
||||||
|
return eventOperationTaskManager;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@ -26,7 +26,10 @@ import org.wso2.carbon.device.mgt.common.DeviceStatusTaskPluginConfig;
|
|||||||
import org.wso2.carbon.device.mgt.common.OperationMonitoringTaskConfig;
|
import org.wso2.carbon.device.mgt.common.OperationMonitoringTaskConfig;
|
||||||
import org.wso2.carbon.device.mgt.core.config.DeviceConfigurationManager;
|
import org.wso2.carbon.device.mgt.core.config.DeviceConfigurationManager;
|
||||||
import org.wso2.carbon.device.mgt.core.config.DeviceManagementConfig;
|
import org.wso2.carbon.device.mgt.core.config.DeviceManagementConfig;
|
||||||
|
import org.wso2.carbon.device.mgt.core.event.config.EventOperationTaskConfiguration;
|
||||||
import org.wso2.carbon.device.mgt.core.dto.DeviceType;
|
import org.wso2.carbon.device.mgt.core.dto.DeviceType;
|
||||||
|
import org.wso2.carbon.device.mgt.core.geo.task.EventOperationTaskException;
|
||||||
|
import org.wso2.carbon.device.mgt.core.geo.task.EventOperationTaskManagerImpl;
|
||||||
import org.wso2.carbon.device.mgt.core.status.task.DeviceStatusTaskException;
|
import org.wso2.carbon.device.mgt.core.status.task.DeviceStatusTaskException;
|
||||||
import org.wso2.carbon.device.mgt.core.status.task.DeviceStatusTaskManagerService;
|
import org.wso2.carbon.device.mgt.core.status.task.DeviceStatusTaskManagerService;
|
||||||
import org.wso2.carbon.device.mgt.core.status.task.impl.DeviceStatusTaskManagerServiceImpl;
|
import org.wso2.carbon.device.mgt.core.status.task.impl.DeviceStatusTaskManagerServiceImpl;
|
||||||
@ -60,6 +63,7 @@ public class DeviceTaskManagerServiceComponent {
|
|||||||
log.debug("Initializing device task manager bundle.");
|
log.debug("Initializing device task manager bundle.");
|
||||||
}
|
}
|
||||||
startOperationMonitoringTask(componentContext.getBundleContext());
|
startOperationMonitoringTask(componentContext.getBundleContext());
|
||||||
|
startGroupEventCreationTask(componentContext.getBundleContext());
|
||||||
//Start the DeviceStatusMonitoringTask for registered DeviceTypes
|
//Start the DeviceStatusMonitoringTask for registered DeviceTypes
|
||||||
deviceManagementConfig = DeviceConfigurationManager.getInstance().
|
deviceManagementConfig = DeviceConfigurationManager.getInstance().
|
||||||
getDeviceManagementConfig();
|
getDeviceManagementConfig();
|
||||||
@ -108,6 +112,9 @@ public class DeviceTaskManagerServiceComponent {
|
|||||||
stopOperationMonitoringTask();
|
stopOperationMonitoringTask();
|
||||||
if (deviceManagementConfig != null && deviceManagementConfig.getDeviceStatusTaskConfig().isEnabled()) {
|
if (deviceManagementConfig != null && deviceManagementConfig.getDeviceStatusTaskConfig().isEnabled()) {
|
||||||
stopDeviceStatusMonitoringTask();
|
stopDeviceStatusMonitoringTask();
|
||||||
|
} else if (deviceManagementConfig != null && deviceManagementConfig.getEventOperationTaskConfiguration()
|
||||||
|
.isEnabled()) {
|
||||||
|
stopGroupEventCreationTask();
|
||||||
}
|
}
|
||||||
} catch (Throwable e) {
|
} catch (Throwable e) {
|
||||||
log.error("Error occurred while shutting down device task manager service.", e);
|
log.error("Error occurred while shutting down device task manager service.", e);
|
||||||
@ -143,6 +150,31 @@ public class DeviceTaskManagerServiceComponent {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void startGroupEventCreationTask(BundleContext bundleContext) {
|
||||||
|
DeviceManagementConfig deviceManagementConfig = DeviceConfigurationManager.getInstance().getDeviceManagementConfig();
|
||||||
|
EventOperationTaskConfiguration eventTaskConfig = deviceManagementConfig.getEventOperationTaskConfiguration();
|
||||||
|
if (eventTaskConfig.isEnabled()) {
|
||||||
|
EventOperationTaskManagerImpl eventOperationTaskManager = new EventOperationTaskManagerImpl();
|
||||||
|
DeviceManagementDataHolder.getInstance().setEventOperationTaskManager(eventOperationTaskManager);
|
||||||
|
bundleContext.registerService(EventOperationTaskManagerImpl.class, eventOperationTaskManager, null);
|
||||||
|
try {
|
||||||
|
eventOperationTaskManager.startGroupEventOperationTask(eventTaskConfig);
|
||||||
|
} catch (EventOperationTaskException e) {
|
||||||
|
log.error("Error occurred while creating group event creation task");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void stopGroupEventCreationTask() {
|
||||||
|
EventOperationTaskManagerImpl eventOperationTaskManager = DeviceManagementDataHolder.getInstance()
|
||||||
|
.getEventOperationTaskManager();
|
||||||
|
try {
|
||||||
|
eventOperationTaskManager.stopGroupEventOperationTaskTask();
|
||||||
|
} catch (EventOperationTaskException e) {
|
||||||
|
log.error("Error occurred while stopping group event creation task");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
protected void setTaskService(TaskService taskService) {
|
protected void setTaskService(TaskService taskService) {
|
||||||
if (log.isDebugEnabled()) {
|
if (log.isDebugEnabled()) {
|
||||||
log.debug("Setting the task service.");
|
log.debug("Setting the task service.");
|
||||||
|
|||||||
@ -97,6 +97,10 @@
|
|||||||
server environment-->
|
server environment-->
|
||||||
<Capacity>10000</Capacity>
|
<Capacity>10000</Capacity>
|
||||||
</GeoFenceCacheConfiguration>
|
</GeoFenceCacheConfiguration>
|
||||||
|
<EventOperationTaskConfiguration>
|
||||||
|
<Enable>true</Enable>
|
||||||
|
<Frequency>60000</Frequency>
|
||||||
|
</EventOperationTaskConfiguration>
|
||||||
<CertificateCacheConfiguration>
|
<CertificateCacheConfiguration>
|
||||||
<Enable>true</Enable>
|
<Enable>true</Enable>
|
||||||
<ExpiryTime>86400</ExpiryTime>
|
<ExpiryTime>86400</ExpiryTime>
|
||||||
|
|||||||
@ -786,4 +786,22 @@ CREATE TABLE IF NOT EXISTS DM_GEOFENCE_EVENT_MAPPING (
|
|||||||
DM_DEVICE_EVENT (ID) ON DELETE NO ACTION ON UPDATE NO ACTION
|
DM_DEVICE_EVENT (ID) ON DELETE NO ACTION ON UPDATE NO ACTION
|
||||||
) ENGINE=InnoDB;
|
) ENGINE=InnoDB;
|
||||||
|
|
||||||
-- END OF DM_GEOFENCE_GROUP_MAPPING TABLE--
|
-- END OF DM_GEOFENCE_GROUP_MAPPING TABLE--
|
||||||
|
|
||||||
|
-- DM_GROUP_EVENT_ASSIGNMENT_TASK TABLE--
|
||||||
|
|
||||||
|
CREATE TABLE IF NOT EXISTS DM_EVENT_OPERATION_ASSIGNMENT_TASK (
|
||||||
|
ID INT NOT NULL AUTO_INCREMENT,
|
||||||
|
DEVICE_ID INT DEFAULT NULL,
|
||||||
|
GROUP_ID INT DEFAULT NULL,
|
||||||
|
OPERATION_CODE VARCHAR(100) NOT NULL,
|
||||||
|
EVENT_SOURCE VARCHAR(250) NOT NULL,
|
||||||
|
EVENT_META_ID INT DEFAULT NULL,
|
||||||
|
STATUS VARCHAR(100) NOT NULL,
|
||||||
|
TENANT_ID INT NOT NULL,
|
||||||
|
CREATED_TIMESTAMP TIMESTAMP NOT NULL,
|
||||||
|
COMPLETED_TIMESTAMP TIMESTAMP DEFAULT NULL,
|
||||||
|
PRIMARY KEY (ID)
|
||||||
|
) ENGINE=InnoDB;
|
||||||
|
|
||||||
|
-- END OF DM_GROUP_EVENT_ASSIGNMENT_TASK TABLE--
|
||||||
Loading…
Reference in New Issue
Block a user