Merge pull request #12448 from AndriiLandiak/edge-attribute-update-improvement
Edge - improve attribute update strategy
This commit is contained in:
commit
6acc85e79f
@ -426,16 +426,11 @@ public class EdgeMsgConstructorUtils {
|
|||||||
.setEntityIdMSB(entityId.getId().getMostSignificantBits())
|
.setEntityIdMSB(entityId.getId().getMostSignificantBits())
|
||||||
.setEntityIdLSB(entityId.getId().getLeastSignificantBits())
|
.setEntityIdLSB(entityId.getId().getLeastSignificantBits())
|
||||||
.setEntityType(entityId.getEntityType().name());
|
.setEntityType(entityId.getEntityType().name());
|
||||||
|
long ts = getTs(entityData.getAsJsonObject());
|
||||||
switch (actionType) {
|
switch (actionType) {
|
||||||
case TIMESERIES_UPDATED:
|
case TIMESERIES_UPDATED:
|
||||||
try {
|
try {
|
||||||
JsonObject data = entityData.getAsJsonObject();
|
JsonObject data = entityData.getAsJsonObject();
|
||||||
long ts;
|
|
||||||
if (data.get("ts") != null && !data.get("ts").isJsonNull()) {
|
|
||||||
ts = data.getAsJsonPrimitive("ts").getAsLong();
|
|
||||||
} else {
|
|
||||||
ts = System.currentTimeMillis();
|
|
||||||
}
|
|
||||||
builder.setPostTelemetryMsg(JsonConverter.convertToTelemetryProto(data.getAsJsonObject("data"), ts));
|
builder.setPostTelemetryMsg(JsonConverter.convertToTelemetryProto(data.getAsJsonObject("data"), ts));
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
log.warn("[{}][{}] Can't convert to telemetry proto, entityData [{}]", tenantId, entityId, entityData, e);
|
log.warn("[{}][{}] Can't convert to telemetry proto, entityData [{}]", tenantId, entityId, entityData, e);
|
||||||
@ -445,8 +440,13 @@ public class EdgeMsgConstructorUtils {
|
|||||||
try {
|
try {
|
||||||
JsonObject data = entityData.getAsJsonObject();
|
JsonObject data = entityData.getAsJsonObject();
|
||||||
TransportProtos.PostAttributeMsg attributesUpdatedMsg = JsonConverter.convertToAttributesProto(data.getAsJsonObject("kv"));
|
TransportProtos.PostAttributeMsg attributesUpdatedMsg = JsonConverter.convertToAttributesProto(data.getAsJsonObject("kv"));
|
||||||
|
if (data.has("isPostAttributes") && data.getAsJsonPrimitive("isPostAttributes").getAsBoolean()) {
|
||||||
|
builder.setPostAttributesMsg(attributesUpdatedMsg);
|
||||||
|
} else {
|
||||||
builder.setAttributesUpdatedMsg(attributesUpdatedMsg);
|
builder.setAttributesUpdatedMsg(attributesUpdatedMsg);
|
||||||
|
}
|
||||||
builder.setPostAttributeScope(getScopeOfDefault(data));
|
builder.setPostAttributeScope(getScopeOfDefault(data));
|
||||||
|
builder.setAttributeTs(ts);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
log.warn("[{}][{}] Can't convert to AttributesUpdatedMsg proto, entityData [{}]", tenantId, entityId, entityData, e);
|
log.warn("[{}][{}] Can't convert to AttributesUpdatedMsg proto, entityData [{}]", tenantId, entityId, entityData, e);
|
||||||
}
|
}
|
||||||
@ -457,6 +457,7 @@ public class EdgeMsgConstructorUtils {
|
|||||||
TransportProtos.PostAttributeMsg postAttributesMsg = JsonConverter.convertToAttributesProto(data.getAsJsonObject("kv"));
|
TransportProtos.PostAttributeMsg postAttributesMsg = JsonConverter.convertToAttributesProto(data.getAsJsonObject("kv"));
|
||||||
builder.setPostAttributesMsg(postAttributesMsg);
|
builder.setPostAttributesMsg(postAttributesMsg);
|
||||||
builder.setPostAttributeScope(getScopeOfDefault(data));
|
builder.setPostAttributeScope(getScopeOfDefault(data));
|
||||||
|
builder.setAttributeTs(ts);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
log.warn("[{}][{}] Can't convert to PostAttributesMsg, entityData [{}]", tenantId, entityId, entityData, e);
|
log.warn("[{}][{}] Can't convert to PostAttributesMsg, entityData [{}]", tenantId, entityId, entityData, e);
|
||||||
}
|
}
|
||||||
@ -478,6 +479,13 @@ public class EdgeMsgConstructorUtils {
|
|||||||
return builder.build();
|
return builder.build();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static long getTs(JsonObject data) {
|
||||||
|
if (data.get("ts") != null && !data.get("ts").isJsonNull()) {
|
||||||
|
return data.getAsJsonPrimitive("ts").getAsLong();
|
||||||
|
}
|
||||||
|
return System.currentTimeMillis();
|
||||||
|
}
|
||||||
|
|
||||||
private static String getScopeOfDefault(JsonObject data) {
|
private static String getScopeOfDefault(JsonObject data) {
|
||||||
JsonPrimitive scope = data.getAsJsonPrimitive("scope");
|
JsonPrimitive scope = data.getAsJsonPrimitive("scope");
|
||||||
String result = DataConstants.SERVER_SCOPE;
|
String result = DataConstants.SERVER_SCOPE;
|
||||||
|
|||||||
@ -54,6 +54,7 @@ import org.thingsboard.server.common.data.id.RuleChainId;
|
|||||||
import org.thingsboard.server.common.data.id.TenantId;
|
import org.thingsboard.server.common.data.id.TenantId;
|
||||||
import org.thingsboard.server.common.data.id.UserId;
|
import org.thingsboard.server.common.data.id.UserId;
|
||||||
import org.thingsboard.server.common.data.kv.AttributeKvEntry;
|
import org.thingsboard.server.common.data.kv.AttributeKvEntry;
|
||||||
|
import org.thingsboard.server.common.data.kv.KvEntry;
|
||||||
import org.thingsboard.server.common.data.msg.TbMsgType;
|
import org.thingsboard.server.common.data.msg.TbMsgType;
|
||||||
import org.thingsboard.server.common.msg.TbMsg;
|
import org.thingsboard.server.common.msg.TbMsg;
|
||||||
import org.thingsboard.server.common.msg.TbMsgMetaData;
|
import org.thingsboard.server.common.msg.TbMsgMetaData;
|
||||||
@ -79,7 +80,10 @@ import org.thingsboard.server.service.telemetry.TelemetrySubscriptionService;
|
|||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Set;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
@Slf4j
|
@Slf4j
|
||||||
public abstract class BaseTelemetryProcessor extends BaseEdgeProcessor {
|
public abstract class BaseTelemetryProcessor extends BaseEdgeProcessor {
|
||||||
@ -111,7 +115,7 @@ public abstract class BaseTelemetryProcessor extends BaseEdgeProcessor {
|
|||||||
|
|
||||||
abstract protected String getMsgSourceKey();
|
abstract protected String getMsgSourceKey();
|
||||||
|
|
||||||
public List<ListenableFuture<Void>> processTelemetryMsg(TenantId tenantId, EntityDataProto entityData) {
|
public List<ListenableFuture<Void>> processTelemetryMsg(TenantId tenantId, EntityDataProto entityData) throws Exception {
|
||||||
log.trace("[{}] processTelemetryMsg [{}]", tenantId, entityData);
|
log.trace("[{}] processTelemetryMsg [{}]", tenantId, entityData);
|
||||||
List<ListenableFuture<Void>> result = new ArrayList<>();
|
List<ListenableFuture<Void>> result = new ArrayList<>();
|
||||||
EntityId entityId = constructEntityId(entityData.getEntityType(), entityData.getEntityIdMSB(), entityData.getEntityIdLSB());
|
EntityId entityId = constructEntityId(entityData.getEntityType(), entityData.getEntityIdMSB(), entityData.getEntityIdLSB());
|
||||||
@ -122,11 +126,14 @@ public abstract class BaseTelemetryProcessor extends BaseEdgeProcessor {
|
|||||||
CustomerId customerId = pair.getValue();
|
CustomerId customerId = pair.getValue();
|
||||||
metaData.putValue(DataConstants.MSG_SOURCE_KEY, getMsgSourceKey());
|
metaData.putValue(DataConstants.MSG_SOURCE_KEY, getMsgSourceKey());
|
||||||
if (entityData.hasPostAttributesMsg()) {
|
if (entityData.hasPostAttributesMsg()) {
|
||||||
result.add(processPostAttributes(tenantId, customerId, entityId, entityData.getPostAttributesMsg(), metaData));
|
metaData.putValue(DataConstants.SCOPE, entityData.getPostAttributeScope());
|
||||||
|
long ts = entityData.hasAttributeTs() ? entityData.getAttributeTs() : System.currentTimeMillis();
|
||||||
|
result.add(processPostAttributes(tenantId, customerId, entityId, entityData.getPostAttributesMsg(), metaData, ts));
|
||||||
}
|
}
|
||||||
if (entityData.hasAttributesUpdatedMsg()) {
|
if (entityData.hasAttributesUpdatedMsg()) {
|
||||||
metaData.putValue("scope", entityData.getPostAttributeScope());
|
metaData.putValue(DataConstants.SCOPE, entityData.getPostAttributeScope());
|
||||||
result.add(processAttributesUpdate(tenantId, customerId, entityId, entityData.getAttributesUpdatedMsg(), metaData));
|
long ts = entityData.hasAttributeTs() ? entityData.getAttributeTs() : System.currentTimeMillis();
|
||||||
|
result.add(processAttributesUpdate(tenantId, customerId, entityId, entityData.getAttributesUpdatedMsg(), metaData, ts));
|
||||||
}
|
}
|
||||||
if (entityData.hasPostTelemetryMsg()) {
|
if (entityData.hasPostTelemetryMsg()) {
|
||||||
result.add(processPostTelemetry(tenantId, customerId, entityId, entityData.getPostTelemetryMsg(), metaData));
|
result.add(processPostTelemetry(tenantId, customerId, entityId, entityData.getPostTelemetryMsg(), metaData));
|
||||||
@ -254,9 +261,17 @@ public abstract class BaseTelemetryProcessor extends BaseEdgeProcessor {
|
|||||||
return new ImmutablePair<>(queueName, ruleChainId);
|
return new ImmutablePair<>(queueName, ruleChainId);
|
||||||
}
|
}
|
||||||
|
|
||||||
private ListenableFuture<Void> processPostAttributes(TenantId tenantId, CustomerId customerId, EntityId entityId, TransportProtos.PostAttributeMsg msg, TbMsgMetaData metaData) {
|
private ListenableFuture<Void> processPostAttributes(TenantId tenantId, CustomerId customerId, EntityId entityId,
|
||||||
|
TransportProtos.PostAttributeMsg msg, TbMsgMetaData metaData, long ts) throws Exception {
|
||||||
SettableFuture<Void> futureToSet = SettableFuture.create();
|
SettableFuture<Void> futureToSet = SettableFuture.create();
|
||||||
JsonObject json = JsonUtils.getJsonObject(msg.getKvList());
|
JsonObject json = JsonUtils.getJsonObject(msg.getKvList());
|
||||||
|
AttributeScope scope = AttributeScope.valueOf(metaData.getValue(DataConstants.SCOPE));
|
||||||
|
List<AttributeKvEntry> attributes = new ArrayList<>(JsonConverter.convertToAttributes(json, ts));
|
||||||
|
ListenableFuture<List<AttributeKvEntry>> future = filterAttributesByTs(tenantId, entityId, scope, attributes);
|
||||||
|
Futures.addCallback(future, new FutureCallback<>() {
|
||||||
|
@Override
|
||||||
|
public void onSuccess(List<AttributeKvEntry> attributesToSave) {
|
||||||
|
JsonObject jsonToSave = filterAttributesFromJson(json, attributesToSave);
|
||||||
var defaultQueueAndRuleChain = getDefaultQueueNameAndRuleChainId(tenantId, entityId);
|
var defaultQueueAndRuleChain = getDefaultQueueNameAndRuleChainId(tenantId, entityId);
|
||||||
TbMsg tbMsg = TbMsg.newMsg()
|
TbMsg tbMsg = TbMsg.newMsg()
|
||||||
.queueName(defaultQueueAndRuleChain.getKey())
|
.queueName(defaultQueueAndRuleChain.getKey())
|
||||||
@ -264,7 +279,7 @@ public abstract class BaseTelemetryProcessor extends BaseEdgeProcessor {
|
|||||||
.originator(entityId)
|
.originator(entityId)
|
||||||
.customerId(customerId)
|
.customerId(customerId)
|
||||||
.copyMetaData(metaData)
|
.copyMetaData(metaData)
|
||||||
.data(gson.toJson(json))
|
.data(gson.toJson(jsonToSave))
|
||||||
.ruleChainId(defaultQueueAndRuleChain.getValue())
|
.ruleChainId(defaultQueueAndRuleChain.getValue())
|
||||||
.build();
|
.build();
|
||||||
edgeCtx.getClusterService().pushMsgToRuleEngine(tenantId, tbMsg.getOriginator(), tbMsg, new TbQueueCallback() {
|
edgeCtx.getClusterService().pushMsgToRuleEngine(tenantId, tbMsg.getOriginator(), tbMsg, new TbQueueCallback() {
|
||||||
@ -279,6 +294,14 @@ public abstract class BaseTelemetryProcessor extends BaseEdgeProcessor {
|
|||||||
futureToSet.setException(t);
|
futureToSet.setException(t);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onFailure(Throwable t) {
|
||||||
|
log.error("[{}] Can't process post attributes [{}]", tenantId, msg, t);
|
||||||
|
futureToSet.setException(t);
|
||||||
|
}
|
||||||
|
}, dbCallbackExecutorService);
|
||||||
return futureToSet;
|
return futureToSet;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -286,16 +309,22 @@ public abstract class BaseTelemetryProcessor extends BaseEdgeProcessor {
|
|||||||
CustomerId customerId,
|
CustomerId customerId,
|
||||||
EntityId entityId,
|
EntityId entityId,
|
||||||
TransportProtos.PostAttributeMsg msg,
|
TransportProtos.PostAttributeMsg msg,
|
||||||
TbMsgMetaData metaData) {
|
TbMsgMetaData metaData,
|
||||||
|
long ts) {
|
||||||
SettableFuture<Void> futureToSet = SettableFuture.create();
|
SettableFuture<Void> futureToSet = SettableFuture.create();
|
||||||
JsonObject json = JsonUtils.getJsonObject(msg.getKvList());
|
JsonObject json = JsonUtils.getJsonObject(msg.getKvList());
|
||||||
List<AttributeKvEntry> attributes = new ArrayList<>(JsonConverter.convertToAttributes(json));
|
AttributeScope scope = AttributeScope.valueOf(metaData.getValue(DataConstants.SCOPE));
|
||||||
String scope = metaData.getValue("scope");
|
List<AttributeKvEntry> attributes = new ArrayList<>(JsonConverter.convertToAttributes(json, ts));
|
||||||
|
ListenableFuture<List<AttributeKvEntry>> future = filterAttributesByTs(tenantId, entityId, scope, attributes);
|
||||||
|
Futures.addCallback(future, new FutureCallback<>() {
|
||||||
|
@Override
|
||||||
|
public void onSuccess(List<AttributeKvEntry> attributesToSave) {
|
||||||
|
JsonObject jsonToSave = filterAttributesFromJson(json, attributesToSave);
|
||||||
tsSubService.saveAttributes(AttributesSaveRequest.builder()
|
tsSubService.saveAttributes(AttributesSaveRequest.builder()
|
||||||
.tenantId(tenantId)
|
.tenantId(tenantId)
|
||||||
.entityId(entityId)
|
.entityId(entityId)
|
||||||
.scope(AttributeScope.valueOf(scope))
|
.scope(scope)
|
||||||
.entries(attributes)
|
.entries(attributesToSave)
|
||||||
.callback(new FutureCallback<>() {
|
.callback(new FutureCallback<>() {
|
||||||
@Override
|
@Override
|
||||||
public void onSuccess(@Nullable Void tmp) {
|
public void onSuccess(@Nullable Void tmp) {
|
||||||
@ -306,7 +335,7 @@ public abstract class BaseTelemetryProcessor extends BaseEdgeProcessor {
|
|||||||
.originator(entityId)
|
.originator(entityId)
|
||||||
.customerId(customerId)
|
.customerId(customerId)
|
||||||
.copyMetaData(metaData)
|
.copyMetaData(metaData)
|
||||||
.data(gson.toJson(json))
|
.data(gson.toJson(jsonToSave))
|
||||||
.ruleChainId(defaultQueueAndRuleChain.getValue())
|
.ruleChainId(defaultQueueAndRuleChain.getValue())
|
||||||
.build();
|
.build();
|
||||||
edgeCtx.getClusterService().pushMsgToRuleEngine(tenantId, tbMsg.getOriginator(), tbMsg, new TbQueueCallback() {
|
edgeCtx.getClusterService().pushMsgToRuleEngine(tenantId, tbMsg.getOriginator(), tbMsg, new TbQueueCallback() {
|
||||||
@ -330,12 +359,26 @@ public abstract class BaseTelemetryProcessor extends BaseEdgeProcessor {
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
.build());
|
.build());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onFailure(Throwable t) {
|
||||||
|
log.error("[{}] Can't process attributes update [{}]", tenantId, msg, t);
|
||||||
|
futureToSet.setException(t);
|
||||||
|
}
|
||||||
|
}, dbCallbackExecutorService);
|
||||||
return futureToSet;
|
return futureToSet;
|
||||||
}
|
}
|
||||||
|
|
||||||
private ListenableFuture<Void> processAttributeDeleteMsg(TenantId tenantId, EntityId entityId, AttributeDeleteMsg attributeDeleteMsg,
|
private JsonObject filterAttributesFromJson(JsonObject json, List<AttributeKvEntry> attributesToSave) {
|
||||||
String entityType) {
|
Set<String> keysToSave = attributesToSave.stream()
|
||||||
|
.map(KvEntry::getKey)
|
||||||
|
.collect(Collectors.toSet());
|
||||||
|
json.keySet().removeIf(key -> !keysToSave.contains(key));
|
||||||
|
return json;
|
||||||
|
}
|
||||||
|
|
||||||
|
private ListenableFuture<Void> processAttributeDeleteMsg(TenantId tenantId, EntityId entityId, AttributeDeleteMsg attributeDeleteMsg, String entityType) {
|
||||||
String scope = attributeDeleteMsg.getScope();
|
String scope = attributeDeleteMsg.getScope();
|
||||||
List<String> attributeKeys = attributeDeleteMsg.getAttributeNamesList();
|
List<String> attributeKeys = attributeDeleteMsg.getAttributeNamesList();
|
||||||
ListenableFuture<List<String>> removeAllFuture = edgeCtx.getAttributesService().removeAll(tenantId, entityId, AttributeScope.valueOf(scope), attributeKeys);
|
ListenableFuture<List<String>> removeAllFuture = edgeCtx.getAttributesService().removeAll(tenantId, entityId, AttributeScope.valueOf(scope), attributeKeys);
|
||||||
@ -386,4 +429,19 @@ public abstract class BaseTelemetryProcessor extends BaseEdgeProcessor {
|
|||||||
return bodyJackson == null ? null : EdgeMsgConstructorUtils.constructEntityDataMsg(tenantId, entityId, actionType, JsonParser.parseString(bodyJackson));
|
return bodyJackson == null ? null : EdgeMsgConstructorUtils.constructEntityDataMsg(tenantId, entityId, actionType, JsonParser.parseString(bodyJackson));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private ListenableFuture<List<AttributeKvEntry>> filterAttributesByTs(TenantId tenantId, EntityId entityId, AttributeScope scope,
|
||||||
|
List<AttributeKvEntry> attributes) {
|
||||||
|
List<String> keys = attributes.stream().map(KvEntry::getKey).toList();
|
||||||
|
ListenableFuture<List<AttributeKvEntry>> future = edgeCtx.getAttributesService().find(tenantId, entityId, scope, keys);
|
||||||
|
return Futures.transform(future, input -> {
|
||||||
|
Map<String, Long> existingAttributesTs = input.stream().collect(Collectors.toMap(KvEntry::getKey, AttributeKvEntry::getLastUpdateTs));
|
||||||
|
return attributes.stream()
|
||||||
|
.filter(attribute -> {
|
||||||
|
String key = attribute.getKey();
|
||||||
|
long incomingTs = attribute.getLastUpdateTs();
|
||||||
|
return incomingTs > existingAttributesTs.getOrDefault(key, 0L);
|
||||||
|
}).toList();
|
||||||
|
}, dbCallbackExecutorService);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -488,6 +488,68 @@ public class DeviceEdgeTest extends AbstractEdgeTest {
|
|||||||
doDelete("/api/plugins/telemetry/DEVICE/" + device.getId().getId() + "/SERVER_SCOPE?keys=" + attributesKey, String.class);
|
doDelete("/api/plugins/telemetry/DEVICE/" + device.getId().getId() + "/SERVER_SCOPE?keys=" + attributesKey, String.class);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testSendOutdatedAttributeToCloud() throws Exception {
|
||||||
|
long ts = System.currentTimeMillis() - TimeUnit.DAYS.toMillis(1);
|
||||||
|
Device device = saveDeviceOnCloudAndVerifyDeliveryToEdge();
|
||||||
|
|
||||||
|
edgeImitator.expectResponsesAmount(1);
|
||||||
|
|
||||||
|
ObjectNode attributesNode = JacksonUtil.newObjectNode();
|
||||||
|
String originalValue = "original_value";
|
||||||
|
attributesNode.put("test_attr", originalValue);
|
||||||
|
doPost("/api/plugins/telemetry/DEVICE/" + device.getId() + "/attributes/SERVER_SCOPE", attributesNode);
|
||||||
|
|
||||||
|
// Wait before device attributes saved to database
|
||||||
|
Awaitility.await()
|
||||||
|
.atMost(10, TimeUnit.SECONDS)
|
||||||
|
.until(() -> {
|
||||||
|
String urlTemplate = "/api/plugins/telemetry/DEVICE/" + device.getId() + "/keys/attributes/" + DataConstants.SERVER_SCOPE;
|
||||||
|
List<String> actualKeys = doGetAsyncTyped(urlTemplate, new TypeReference<>() {});
|
||||||
|
return actualKeys != null && !actualKeys.isEmpty() && actualKeys.contains("test_attr");
|
||||||
|
});
|
||||||
|
|
||||||
|
JsonObject attributesData = new JsonObject();
|
||||||
|
// incorrect msg, will not be saved, because of ts is lower than for already existing
|
||||||
|
String attributesKey = "test_attr";
|
||||||
|
String attributeValueIncorrect = "test_value";
|
||||||
|
// correct msg, will be saved, no ts issue
|
||||||
|
String attributeKey2 = "test_attr2";
|
||||||
|
String attributeValue2Correct = "test_value2";
|
||||||
|
attributesData.addProperty(attributesKey, attributeValueIncorrect);
|
||||||
|
attributesData.addProperty(attributeKey2, attributeValue2Correct);
|
||||||
|
UplinkMsg.Builder uplinkMsgBuilder = UplinkMsg.newBuilder();
|
||||||
|
EntityDataProto.Builder entityDataBuilder = EntityDataProto.newBuilder();
|
||||||
|
entityDataBuilder.setEntityType(device.getId().getEntityType().name());
|
||||||
|
entityDataBuilder.setEntityIdMSB(device.getId().getId().getMostSignificantBits());
|
||||||
|
entityDataBuilder.setEntityIdLSB(device.getId().getId().getLeastSignificantBits());
|
||||||
|
entityDataBuilder.setAttributesUpdatedMsg(JsonConverter.convertToAttributesProto(attributesData));
|
||||||
|
entityDataBuilder.setPostAttributeScope(DataConstants.SERVER_SCOPE);
|
||||||
|
entityDataBuilder.setAttributeTs(ts);
|
||||||
|
|
||||||
|
uplinkMsgBuilder.addEntityData(entityDataBuilder.build());
|
||||||
|
|
||||||
|
edgeImitator.sendUplinkMsg(uplinkMsgBuilder.build());
|
||||||
|
Assert.assertTrue(edgeImitator.waitForResponses());
|
||||||
|
|
||||||
|
String attributeValuesUrl = "/api/plugins/telemetry/DEVICE/" + device.getId() + "/values/attributes/" + DataConstants.SERVER_SCOPE;
|
||||||
|
List<Map<String, String>> attributes = doGetAsyncTyped(attributeValuesUrl, new TypeReference<>() {
|
||||||
|
});
|
||||||
|
|
||||||
|
Optional<Map<String, String>> customAttributeOpt = getAttributeByKey(attributesKey, attributes);
|
||||||
|
Assert.assertTrue(customAttributeOpt.isPresent());
|
||||||
|
Map<String, String> customAttribute = customAttributeOpt.get();
|
||||||
|
Assert.assertNotEquals(attributeValueIncorrect, customAttribute.get("value"));
|
||||||
|
Assert.assertEquals(originalValue, customAttribute.get("value"));
|
||||||
|
|
||||||
|
customAttributeOpt = getAttributeByKey(attributeKey2, attributes);
|
||||||
|
Assert.assertTrue(customAttributeOpt.isPresent());
|
||||||
|
customAttribute = customAttributeOpt.get();
|
||||||
|
Assert.assertEquals(attributeValue2Correct, customAttribute.get("value"));
|
||||||
|
|
||||||
|
doDelete("/api/plugins/telemetry/DEVICE/" + device.getId().getId() + "/SERVER_SCOPE?keys=" + attributesKey, String.class);
|
||||||
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testSendDeviceToCloudWithNameThatAlreadyExistsOnCloud() throws Exception {
|
public void testSendDeviceToCloudWithNameThatAlreadyExistsOnCloud() throws Exception {
|
||||||
String deviceOnCloudName = StringUtils.randomAlphanumeric(15);
|
String deviceOnCloudName = StringUtils.randomAlphanumeric(15);
|
||||||
|
|||||||
@ -131,6 +131,7 @@ message EntityDataProto {
|
|||||||
transport.PostAttributeMsg attributesUpdatedMsg = 6;
|
transport.PostAttributeMsg attributesUpdatedMsg = 6;
|
||||||
string postAttributeScope = 7;
|
string postAttributeScope = 7;
|
||||||
AttributeDeleteMsg attributeDeleteMsg = 8;
|
AttributeDeleteMsg attributeDeleteMsg = 8;
|
||||||
|
optional int64 attributeTs = 9;
|
||||||
}
|
}
|
||||||
|
|
||||||
message AttributeDeleteMsg {
|
message AttributeDeleteMsg {
|
||||||
|
|||||||
@ -63,7 +63,6 @@ import java.util.Map.Entry;
|
|||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.TreeMap;
|
import java.util.TreeMap;
|
||||||
import java.util.function.Consumer;
|
import java.util.function.Consumer;
|
||||||
import java.util.stream.Collectors;
|
|
||||||
|
|
||||||
public class JsonConverter {
|
public class JsonConverter {
|
||||||
|
|
||||||
@ -540,10 +539,12 @@ public class JsonConverter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public static Set<AttributeKvEntry> convertToAttributes(JsonElement element) {
|
public static Set<AttributeKvEntry> convertToAttributes(JsonElement element) {
|
||||||
Set<AttributeKvEntry> result = new HashSet<>();
|
|
||||||
long ts = System.currentTimeMillis();
|
long ts = System.currentTimeMillis();
|
||||||
result.addAll(parseValues(element.getAsJsonObject()).stream().map(kv -> new BaseAttributeKvEntry(kv, ts)).collect(Collectors.toList()));
|
return convertToAttributes(element, ts);
|
||||||
return result;
|
}
|
||||||
|
|
||||||
|
public static Set<AttributeKvEntry> convertToAttributes(JsonElement element, long ts) {
|
||||||
|
return new HashSet<>(parseValues(element.getAsJsonObject()).stream().map(kv -> new BaseAttributeKvEntry(kv, ts)).toList());
|
||||||
}
|
}
|
||||||
|
|
||||||
private static List<KvEntry> parseValues(JsonObject valuesObject) {
|
private static List<KvEntry> parseValues(JsonObject valuesObject) {
|
||||||
@ -702,4 +703,5 @@ public class JsonConverter {
|
|||||||
return "";
|
return "";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -49,6 +49,7 @@ public class JsonUtils {
|
|||||||
}
|
}
|
||||||
return json;
|
return json;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static JsonElement parse(Object value) {
|
public static JsonElement parse(Object value) {
|
||||||
if (value instanceof Integer) {
|
if (value instanceof Integer) {
|
||||||
return new JsonPrimitive((Integer) value);
|
return new JsonPrimitive((Integer) value);
|
||||||
@ -75,4 +76,5 @@ public class JsonUtils {
|
|||||||
|
|
||||||
return jsonObject;
|
return jsonObject;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@ -54,8 +54,6 @@ public abstract class AbstractTbMsgPushNode<T extends BaseTbMsgPushNodeConfigura
|
|||||||
|
|
||||||
protected T config;
|
protected T config;
|
||||||
|
|
||||||
private static final String SCOPE = "scope";
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void init(TbContext ctx, TbNodeConfiguration configuration) throws TbNodeException {
|
public void init(TbContext ctx, TbNodeConfiguration configuration) throws TbNodeException {
|
||||||
this.config = TbNodeUtils.convert(configuration, getConfigClazz());
|
this.config = TbNodeUtils.convert(configuration, getConfigClazz());
|
||||||
@ -89,7 +87,8 @@ public abstract class AbstractTbMsgPushNode<T extends BaseTbMsgPushNodeConfigura
|
|||||||
switch (actionType) {
|
switch (actionType) {
|
||||||
case ATTRIBUTES_UPDATED, POST_ATTRIBUTES -> {
|
case ATTRIBUTES_UPDATED, POST_ATTRIBUTES -> {
|
||||||
entityBody.put("kv", dataJson);
|
entityBody.put("kv", dataJson);
|
||||||
entityBody.put(SCOPE, getScope(metadata));
|
entityBody.put("ts", msg.getMetaDataTs());
|
||||||
|
entityBody.put(DataConstants.SCOPE, getScope(metadata));
|
||||||
if (EdgeEventActionType.POST_ATTRIBUTES.equals(actionType)) {
|
if (EdgeEventActionType.POST_ATTRIBUTES.equals(actionType)) {
|
||||||
entityBody.put("isPostAttributes", true);
|
entityBody.put("isPostAttributes", true);
|
||||||
}
|
}
|
||||||
@ -98,7 +97,7 @@ public abstract class AbstractTbMsgPushNode<T extends BaseTbMsgPushNodeConfigura
|
|||||||
List<String> keys = JacksonUtil.convertValue(dataJson.get("attributes"), new TypeReference<>() {
|
List<String> keys = JacksonUtil.convertValue(dataJson.get("attributes"), new TypeReference<>() {
|
||||||
});
|
});
|
||||||
entityBody.put("keys", keys);
|
entityBody.put("keys", keys);
|
||||||
entityBody.put(SCOPE, getScope(metadata));
|
entityBody.put(DataConstants.SCOPE, getScope(metadata));
|
||||||
}
|
}
|
||||||
case TIMESERIES_UPDATED -> {
|
case TIMESERIES_UPDATED -> {
|
||||||
entityBody.put("data", dataJson);
|
entityBody.put("data", dataJson);
|
||||||
@ -145,7 +144,7 @@ public abstract class AbstractTbMsgPushNode<T extends BaseTbMsgPushNodeConfigura
|
|||||||
}
|
}
|
||||||
|
|
||||||
protected String getScope(Map<String, String> metadata) {
|
protected String getScope(Map<String, String> metadata) {
|
||||||
String scope = metadata.get(SCOPE);
|
String scope = metadata.get(DataConstants.SCOPE);
|
||||||
if (StringUtils.isEmpty(scope)) {
|
if (StringUtils.isEmpty(scope)) {
|
||||||
scope = config.getScope();
|
scope = config.getScope();
|
||||||
}
|
}
|
||||||
@ -163,7 +162,7 @@ public abstract class AbstractTbMsgPushNode<T extends BaseTbMsgPushNodeConfigura
|
|||||||
} else if (msg.isTypeOf(ATTRIBUTES_DELETED)) {
|
} else if (msg.isTypeOf(ATTRIBUTES_DELETED)) {
|
||||||
actionType = EdgeEventActionType.ATTRIBUTES_DELETED;
|
actionType = EdgeEventActionType.ATTRIBUTES_DELETED;
|
||||||
} else if (msg.isTypeOneOf(CONNECT_EVENT, DISCONNECT_EVENT, ACTIVITY_EVENT, INACTIVITY_EVENT)) {
|
} else if (msg.isTypeOneOf(CONNECT_EVENT, DISCONNECT_EVENT, ACTIVITY_EVENT, INACTIVITY_EVENT)) {
|
||||||
String scope = msg.getMetaData().getValue(SCOPE);
|
String scope = msg.getMetaData().getValue(DataConstants.SCOPE);
|
||||||
actionType = StringUtils.isEmpty(scope) ?
|
actionType = StringUtils.isEmpty(scope) ?
|
||||||
EdgeEventActionType.TIMESERIES_UPDATED : EdgeEventActionType.ATTRIBUTES_UPDATED;
|
EdgeEventActionType.TIMESERIES_UPDATED : EdgeEventActionType.ATTRIBUTES_UPDATED;
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user