|
|
|
package com.dji.sdk.mqtt.property;
|
|
|
|
|
|
|
|
import com.dji.sdk.common.Common;
|
|
|
|
import com.dji.sdk.common.PublishBarrier;
|
|
|
|
import com.dji.sdk.mqtt.Chan;
|
|
|
|
import com.dji.sdk.mqtt.ChannelName;
|
|
|
|
import com.fasterxml.jackson.core.type.TypeReference;
|
|
|
|
import com.fasterxml.jackson.databind.JsonNode;
|
|
|
|
import org.springframework.integration.annotation.ServiceActivator;
|
|
|
|
import org.springframework.messaging.Message;
|
|
|
|
import org.springframework.stereotype.Component;
|
|
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
|
import java.io.IOException;
|
|
|
|
import java.util.Objects;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author sean
|
|
|
|
* @version 1.2
|
|
|
|
* @date 2022/9/9
|
|
|
|
*/
|
|
|
|
@Component
|
|
|
|
public class PropertySetReplyHandler {
|
|
|
|
|
|
|
|
@Resource
|
|
|
|
PublishBarrier barrier;
|
|
|
|
|
|
|
|
private static final String RESULT_KEY = "result";
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Handle the reply message from topic "/property/set_reply".
|
|
|
|
* @param message reply message
|
|
|
|
* @throws IOException
|
|
|
|
*/
|
|
|
|
@ServiceActivator(inputChannel = ChannelName.INBOUND_PROPERTY_SET_REPLY)
|
|
|
|
public void propertySetReply(Message<?> message) throws IOException {
|
|
|
|
byte[] payload = (byte[])message.getPayload();
|
|
|
|
|
|
|
|
TopicPropertySetResponse receiver = Common.getObjectMapper().readValue(payload, new TypeReference<TopicPropertySetResponse>() {});
|
|
|
|
//fix: use Barrier instead witcom@2023.09.22
|
|
|
|
//Chan chan = Chan.getInstance(receiver.getTid(), false);
|
|
|
|
// if (Objects.isNull(chan)) {
|
|
|
|
// return;
|
|
|
|
// }
|
|
|
|
if(!barrier.hasIdentity(receiver.getTid())) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
receiver.setData(PropertySetReplyResultEnum.find(
|
|
|
|
Common.getObjectMapper().convertValue(receiver.getData(), JsonNode.class).findValue(RESULT_KEY).intValue()));
|
|
|
|
// Put the message to the chan object.
|
|
|
|
//chan.put(receiver);
|
|
|
|
barrier.put(receiver.getTid(), receiver);
|
|
|
|
}
|
|
|
|
}
|