use of com.zsmartsystems.zigbee.zdo.command.NodeDescriptorResponse in project com.zsmartsystems.zigbee by zsmartsystems.
the class ZigBeeNodeServiceDiscoverer method requestNodeDescriptor.
/**
* Get node descriptor
*
* @return true if the message was processed ok
* @throws ExecutionException
* @throws InterruptedException
*/
private boolean requestNodeDescriptor() throws InterruptedException, ExecutionException {
final NodeDescriptorRequest nodeDescriptorRequest = new NodeDescriptorRequest();
nodeDescriptorRequest.setDestinationAddress(new ZigBeeEndpointAddress(node.getNetworkAddress()));
nodeDescriptorRequest.setNwkAddrOfInterest(node.getNetworkAddress());
CommandResult response = networkManager.unicast(nodeDescriptorRequest, nodeDescriptorRequest).get();
final NodeDescriptorResponse nodeDescriptorResponse = (NodeDescriptorResponse) response.getResponse();
logger.debug("{}: Node SVC Discovery NodeDescriptorResponse returned {}", node.getIeeeAddress(), nodeDescriptorResponse);
if (nodeDescriptorResponse == null) {
return false;
}
if (nodeDescriptorResponse.getStatus() == ZdoStatus.SUCCESS) {
node.setNodeDescriptor(nodeDescriptorResponse.getNodeDescriptor());
return true;
}
return false;
}
use of com.zsmartsystems.zigbee.zdo.command.NodeDescriptorResponse in project com.zsmartsystems.zigbee by zsmartsystems.
the class ZigBeeNetworkDiscovererTest method testNormal.
@Ignore
@Test
public void testNormal() {
// Add all the required responses to a list
IeeeAddressResponse ieeeResponse = new IeeeAddressResponse();
ieeeResponse.setStatus(ZdoStatus.SUCCESS);
ieeeResponse.setSourceAddress(new ZigBeeEndpointAddress(0));
ieeeResponse.setDestinationAddress(new ZigBeeEndpointAddress(0));
ieeeResponse.setIeeeAddrRemoteDev(new IeeeAddress("1234567890ABCDEF"));
responses.put(ZdoCommandType.IEEE_ADDRESS_REQUEST.getClusterId(), ieeeResponse);
NodeDescriptorResponse nodeResponse = new NodeDescriptorResponse();
nodeResponse.setStatus(ZdoStatus.SUCCESS);
nodeResponse.setSourceAddress(new ZigBeeEndpointAddress(0));
nodeResponse.setDestinationAddress(new ZigBeeEndpointAddress(0));
nodeResponse.setNwkAddrOfInterest(0);
NodeDescriptor nodeDescriptor = new NodeDescriptor();
nodeResponse.setNodeDescriptor(nodeDescriptor);
responses.put(ZdoCommandType.NODE_DESCRIPTOR_REQUEST.getClusterId(), nodeResponse);
PowerDescriptorResponse powerResponse = new PowerDescriptorResponse();
powerResponse.setStatus(ZdoStatus.SUCCESS);
powerResponse.setSourceAddress(new ZigBeeEndpointAddress(0));
powerResponse.setDestinationAddress(new ZigBeeEndpointAddress(0));
powerResponse.setNwkAddrOfInterest(0);
PowerDescriptor powerDescriptor = new PowerDescriptor();
powerResponse.setPowerDescriptor(powerDescriptor);
responses.put(ZdoCommandType.POWER_DESCRIPTOR_REQUEST.getClusterId(), powerResponse);
ActiveEndpointsResponse endpointsResponse = new ActiveEndpointsResponse();
endpointsResponse.setStatus(ZdoStatus.SUCCESS);
endpointsResponse.setSourceAddress(new ZigBeeEndpointAddress(0));
endpointsResponse.setDestinationAddress(new ZigBeeEndpointAddress(0));
endpointsResponse.setNwkAddrOfInterest(0);
List<Integer> activeEpList = new ArrayList<Integer>();
activeEpList.add(1);
endpointsResponse.setActiveEpList(activeEpList);
responses.put(ZdoCommandType.ACTIVE_ENDPOINTS_REQUEST.getClusterId(), endpointsResponse);
SimpleDescriptorResponse simpleResponse = new SimpleDescriptorResponse();
simpleResponse.setStatus(ZdoStatus.SUCCESS);
simpleResponse.setSourceAddress(new ZigBeeEndpointAddress(0));
simpleResponse.setDestinationAddress(new ZigBeeEndpointAddress(0, 1));
simpleResponse.setNwkAddrOfInterest(0);
SimpleDescriptor simpleDescriptor = new SimpleDescriptor();
simpleDescriptor.setDeviceId(0);
simpleDescriptor.setDeviceVersion(0);
simpleDescriptor.setEndpoint(1);
simpleDescriptor.setProfileId(0x104);
List<Integer> inputClusterList = new ArrayList<Integer>();
List<Integer> outputClusterList = new ArrayList<Integer>();
simpleDescriptor.setInputClusterList(inputClusterList);
simpleDescriptor.setOutputClusterList(outputClusterList);
simpleResponse.setSimpleDescriptor(simpleDescriptor);
responses.put(ZdoCommandType.SIMPLE_DESCRIPTOR_REQUEST.getClusterId(), simpleResponse);
ZigBeeNetworkDiscoverer discoverer = new ZigBeeNetworkDiscoverer(networkManager);
discoverer.setRetryPeriod(1);
discoverer.startup();
// Check that the listener registers for startup notifications
Mockito.verify(networkManager).addNetworkStateListener(discoverer);
// Put the system online so it initialises
discoverer.networkStateUpdated(ZigBeeTransportState.ONLINE);
// Check it registers listeners
Mockito.verify(networkManager).addCommandListener(discoverer);
Mockito.verify(networkManager).addAnnounceListener(discoverer);
// Then wait for the node to be added
Mockito.verify(networkManager, Mockito.timeout(5000).times(1)).addNode(nodeCapture.capture());
ZigBeeNode node = nodeCapture.getValue();
assertNotNull(node);
assertEquals(Integer.valueOf(0), node.getNetworkAddress());
assertEquals(new IeeeAddress("1234567890ABCDEF"), node.getIeeeAddress());
assertEquals(1, node.getEndpoints().size());
}
Aggregations