''' /* * Copyright 2010-2016 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file 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. */ ''' import AWSIoTCommand from core.exception.AWSIoTExceptions import unsubscribeError from core.exception.AWSIoTExceptions import unsubscribeTimeoutException class commandShadowUnregisterDeltaCallback(AWSIoTCommand.AWSIoTCommand): # Target API: deviceShadow.shadowUnregisterDeltaCallback() # Parameters: deviceShadowName def __init__(self, srcParameterList, srcSerialCommuteServer, srcShadowRegistrationTable, srcShadowSubscribeRecord): self._commandProtocolName = "s_ud" self._parameterList = srcParameterList self._serialCommServerHandler = srcSerialCommuteServer # To get the corresponding registered deviceShadow instance self._shadowRegistrationTable = srcShadowRegistrationTable # To get update the sketch slot information self._shadowSubscribeRecord = srcShadowSubscribeRecord self._desiredNumberOfParameters = 1 def _validateCommand(self): isNumberOfParameterMatched = AWSIoTCommand.AWSIoTCommand._validateCommand(self) isDataStructureExist = self._shadowRegistrationTable is not None and self._serialCommServerHandler is not None isDeviceShadowNameRegistered = False if isNumberOfParameterMatched and isDataStructureExist: isDeviceShadowNameRegistered = self._shadowRegistrationTable.get(self._parameterList[0]) is not None return isNumberOfParameterMatched and isDataStructureExist and isDeviceShadowNameRegistered def execute(self): returnMessage = "S_UD T" if not self._validateCommand(): returnMessage = "S_UD1F: " + "No shadow init." else: try: returnMessage = "S_UD " + str(self._shadowSubscribeRecord[self._parameterList[0]]) currentDeviceShadow = self._shadowRegistrationTable.get(self._parameterList[0]) # By this time, currentDeviceShadow should never be None # Real shadow unregister delta callback currentDeviceShadow.shadowUnregisterDeltaCallback() # Update sketch subscribe slot number, using deviceShadow name del self._shadowSubscribeRecord[self._parameterList[0]] except TypeError as e: returnMessage = "S_UD2F: " + str(e.message) # One unsubscription except unsubscribeError as e: returnMessage = "S_UD3F: " + str(e.message) except unsubscribeTimeoutException as e: returnMessage = "S_UD4F: " + str(e.message) except Exception as e: returnMessage = "S_UDFF: " + "Unknown error." self._serialCommServerHandler.writeToInternalProtocol(returnMessage)