Merge pull request #4 from ShvaykaD/feature/delete_attributes_node
refactor entity action methods in TbContext & fix device profile node exception
This commit is contained in:
commit
64c343f750
@ -331,18 +331,11 @@ class DefaultTbContext implements TbContext {
|
||||
}
|
||||
|
||||
public TbMsg deviceCreatedMsg(Device device, RuleNodeId ruleNodeId) {
|
||||
RuleChainId ruleChainId = null;
|
||||
String queueName = null;
|
||||
DeviceProfile deviceProfile = null;
|
||||
if (device.getDeviceProfileId() != null) {
|
||||
DeviceProfile deviceProfile = mainCtx.getDeviceProfileCache().find(device.getDeviceProfileId());
|
||||
if (deviceProfile == null) {
|
||||
log.warn("[{}] Device profile is null!", device.getDeviceProfileId());
|
||||
} else {
|
||||
ruleChainId = deviceProfile.getDefaultRuleChainId();
|
||||
queueName = deviceProfile.getDefaultQueueName();
|
||||
}
|
||||
deviceProfile = mainCtx.getDeviceProfileCache().find(device.getDeviceProfileId());
|
||||
}
|
||||
return entityActionMsg(device, device.getId(), ruleNodeId, DataConstants.ENTITY_CREATED, queueName, ruleChainId);
|
||||
return entityActionMsg(device, device.getId(), ruleNodeId, DataConstants.ENTITY_CREATED, deviceProfile);
|
||||
}
|
||||
|
||||
public TbMsg assetCreatedMsg(Asset asset, RuleNodeId ruleNodeId) {
|
||||
@ -350,19 +343,12 @@ class DefaultTbContext implements TbContext {
|
||||
}
|
||||
|
||||
public TbMsg alarmActionMsg(Alarm alarm, RuleNodeId ruleNodeId, String action) {
|
||||
RuleChainId ruleChainId = null;
|
||||
String queueName = null;
|
||||
DeviceProfile deviceProfile = null;
|
||||
if (EntityType.DEVICE.equals(alarm.getOriginator().getEntityType())) {
|
||||
DeviceId deviceId = new DeviceId(alarm.getOriginator().getId());
|
||||
DeviceProfile deviceProfile = mainCtx.getDeviceProfileCache().get(getTenantId(), deviceId);
|
||||
if (deviceProfile == null) {
|
||||
log.warn("[{}] Device profile is null!", deviceId);
|
||||
} else {
|
||||
ruleChainId = deviceProfile.getDefaultRuleChainId();
|
||||
queueName = deviceProfile.getDefaultQueueName();
|
||||
}
|
||||
deviceProfile = mainCtx.getDeviceProfileCache().get(getTenantId(), deviceId);
|
||||
}
|
||||
return entityActionMsg(alarm, alarm.getId(), ruleNodeId, action, queueName, ruleChainId);
|
||||
return entityActionMsg(alarm, alarm.getOriginator(), ruleNodeId, action, deviceProfile);
|
||||
}
|
||||
|
||||
public TbMsg attributesUpdatedActionMsg(EntityId originator, RuleNodeId ruleNodeId, String scope, List<AttributeKvEntry> attributes) {
|
||||
@ -383,21 +369,14 @@ class DefaultTbContext implements TbContext {
|
||||
}
|
||||
|
||||
private TbMsg attributesActionMsg(EntityId originator, RuleNodeId ruleNodeId, String scope, String action, String msgData) {
|
||||
RuleChainId ruleChainId = null;
|
||||
String queueName = null;
|
||||
DeviceProfile deviceProfile = null;
|
||||
if (EntityType.DEVICE.equals(originator.getEntityType())) {
|
||||
DeviceId deviceId = new DeviceId(originator.getId());
|
||||
DeviceProfile deviceProfile = mainCtx.getDeviceProfileCache().get(getTenantId(), deviceId);
|
||||
if (deviceProfile == null) {
|
||||
log.warn("[{}] Device profile is null!", deviceId);
|
||||
} else {
|
||||
ruleChainId = deviceProfile.getDefaultRuleChainId();
|
||||
queueName = deviceProfile.getDefaultQueueName();
|
||||
}
|
||||
deviceProfile = mainCtx.getDeviceProfileCache().get(getTenantId(), deviceId);
|
||||
}
|
||||
TbMsgMetaData tbMsgMetaData = getActionMetaData(ruleNodeId);
|
||||
tbMsgMetaData.putValue("scope", scope);
|
||||
return entityActionMsg(originator, tbMsgMetaData, msgData, action, queueName, ruleChainId);
|
||||
return entityActionMsg(originator, tbMsgMetaData, msgData, action, deviceProfile);
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -406,18 +385,26 @@ class DefaultTbContext implements TbContext {
|
||||
}
|
||||
|
||||
public <E, I extends EntityId> TbMsg entityActionMsg(E entity, I id, RuleNodeId ruleNodeId, String action) {
|
||||
return entityActionMsg(entity, id, ruleNodeId, action, null, null);
|
||||
return entityActionMsg(entity, id, ruleNodeId, action, null);
|
||||
}
|
||||
|
||||
public <E, I extends EntityId> TbMsg entityActionMsg(E entity, I id, RuleNodeId ruleNodeId, String action, String queueName, RuleChainId ruleChainId) {
|
||||
public <E, I extends EntityId> TbMsg entityActionMsg(E entity, I id, RuleNodeId ruleNodeId, String action, DeviceProfile deviceProfile) {
|
||||
try {
|
||||
return entityActionMsg(id, getActionMetaData(ruleNodeId), mapper.writeValueAsString(mapper.valueToTree(entity)), action, queueName, ruleChainId);
|
||||
return entityActionMsg(id, getActionMetaData(ruleNodeId), mapper.writeValueAsString(mapper.valueToTree(entity)), action, deviceProfile);
|
||||
} catch (JsonProcessingException | IllegalArgumentException e) {
|
||||
throw new RuntimeException("Failed to process " + id.getEntityType().name().toLowerCase() + " " + action + " msg: " + e);
|
||||
}
|
||||
}
|
||||
|
||||
public <I extends EntityId> TbMsg entityActionMsg(I id, TbMsgMetaData msgMetaData, String msgData, String action, String queueName, RuleChainId ruleChainId) {
|
||||
public <I extends EntityId> TbMsg entityActionMsg(I id, TbMsgMetaData msgMetaData, String msgData, String action, DeviceProfile deviceProfile) {
|
||||
RuleChainId ruleChainId = null;
|
||||
String queueName = null;
|
||||
if (deviceProfile == null) {
|
||||
log.warn("Device profile is null!");
|
||||
} else {
|
||||
ruleChainId = deviceProfile.getDefaultRuleChainId();
|
||||
queueName = deviceProfile.getDefaultQueueName();
|
||||
}
|
||||
return TbMsg.newMsg(queueName, action, id, msgMetaData, msgData, ruleChainId, null);
|
||||
}
|
||||
|
||||
|
||||
@ -210,9 +210,13 @@ public class TbDeviceProfileNode implements TbNode {
|
||||
DeviceState deviceState = deviceStates.get(deviceId);
|
||||
if (deviceState != null) {
|
||||
DeviceProfileId currentProfileId = deviceState.getProfileId();
|
||||
Device device = JacksonUtil.fromString(deviceJson, Device.class);
|
||||
if (!currentProfileId.equals(device.getDeviceProfileId())) {
|
||||
removeDeviceState(deviceId);
|
||||
try {
|
||||
Device device = JacksonUtil.fromString(deviceJson, Device.class);
|
||||
if (!currentProfileId.equals(device.getDeviceProfileId())) {
|
||||
removeDeviceState(deviceId);
|
||||
}
|
||||
} catch (IllegalArgumentException ex) {
|
||||
log.trace("[{}] Received device update notification with non-device msg body: [{}][{}]", ctx.getSelfId(), deviceId, ex.getMessage());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user