Source code for wolk.interface.message_factory

"""Create messages from data that conform to device's specified protocol."""
#   Copyright 2020 WolkAbout Technology s.r.o.
#
#   Licensed under the Apache License, Version 2.0 (the "License");
#   you may not use this file except in compliance with the License.
#   You may obtain a copy of the License at
#
#       http://www.apache.org/licenses/LICENSE-2.0
#
#   Unless required by applicable law or agreed to in writing, software
#   distributed under the License 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.
from abc import ABC
from abc import abstractmethod
from typing import Dict
from typing import List
from typing import Optional
from typing import Tuple
from typing import Union

from wolk.model.data_type import DataType
from wolk.model.feed_type import FeedType
from wolk.model.file_management_status import FileManagementStatus
from wolk.model.firmware_update_status import FirmwareUpdateStatus
from wolk.model.message import Message
from wolk.model.unit import Unit

OutgoingDataTypes = Union[bool, int, float, str]
Reading = Tuple[str, OutgoingDataTypes]


[docs]class MessageFactory(ABC): """Serialize messages to be sent to WolkAbout IoT Platform."""
[docs] @abstractmethod def make_from_feed_value( self, reading: Union[Reading, List[Reading]], timestamp: Optional[int], ) -> Message: """ Serialize feed value data. :param reading: Feed value data as (reference, value) or list of tuple :type reading: Union[Reading, List[Reading]] :param timestamp: Unix timestamp in ms. Default to current time if None :returns: message :rtype: Message """ raise NotImplementedError()
[docs] @abstractmethod def make_from_feed_values_collected( self, collected_readings: Dict[int, Dict[str, OutgoingDataTypes]] ) -> Message: """ Serialize feed values collected and organized by timestamp. :param collected_readings: Feed values, organized by timestamp, and then by reference. :type collected_readings: Dict[int, Dict[str, OutgoingDataTypes]] :return: The message containing all the data :rtype: Message """ raise NotImplementedError()
[docs] @abstractmethod def make_pull_feed_values(self) -> Message: """ Serialize message requesting any pending inbound feed values. :returns: message :rtype: Message """ raise NotImplementedError()
[docs] @abstractmethod def make_time_request(self) -> Message: """ Serialize message requesting platform timestamp. :returns: message :rtype: Message """ raise NotImplementedError()
[docs] @abstractmethod def make_from_parameters( self, parameters: Dict[str, Union[bool, int, float, str]] ) -> Message: """ Serialize device parameters to be sent to the Platform. :param parameters: Device parameters :type parameters: Dict[str, Union[bool, int, float, str]] :returns: message :rtype: Message """ raise NotImplementedError()
[docs] @abstractmethod def make_pull_parameters(self) -> Message: """ Serialize request to pull device parameters from the Platform. :returns: message :rtype: Message """ raise NotImplementedError()
[docs] @abstractmethod def make_feed_registration( self, name: str, reference: str, feed_type: FeedType, unit: Union[Unit, str], ) -> Message: """ Serialize request to register a feed for the device on the Platform. :param name: Feed name :type name: str :param reference: Unique identifier :type reference: str :param feed_type: Is the feed one or two-way communication :type feed_type: FeedType :param unit: Unit used to measure this feed :type unit: Union[Unit, str] :returns: message :rtype: Message """ raise NotImplementedError()
[docs] @abstractmethod def make_feed_removal(self, reference: str) -> Message: """ Serialize request to remove a feed from the device on the Platform. :param reference: Unique identifier :type reference: str :returns: message :rtype: Message """ raise NotImplementedError()
[docs] @abstractmethod def make_attribute_registration( self, name: str, data_type: DataType, value: str ) -> Message: """ Serialize request to register an attribute for the device. :param name: Unique identifier :type name: str :param data_type: Type of data this attribute holds :type data_type: DataType :param value: Value of the attribute :type value: str :returns: message :rtype: Message """ raise NotImplementedError()
[docs] @abstractmethod def make_from_firmware_update_status( self, firmware_update_status: FirmwareUpdateStatus ) -> Message: """ Report the current status of the firmware update process. :param firmware_update_status: Status of the firmware update process :type firmware_update_status: FirmwareUpdateStatus :returns: message :rtype: Message """ raise NotImplementedError()
[docs] @abstractmethod def make_from_package_request( self, file_name: str, chunk_index: int ) -> Message: """ Request a package of the file from WolkAbout IoT Platform. :param file_name: Name of the file that contains the requested package :type file_name: str :param chunk_index: Index of the requested package :type chunk_index: int :returns: message :rtype: Message """ raise NotImplementedError()
[docs] @abstractmethod def make_from_file_list( self, file_list: List[Dict[str, Union[str, int]]] ) -> Message: """ Serialize list of files present on device. :param file_list: Files present on device :type file_list: List[Dict[str, Union[str, int]]] :returns: message :rtype: Message """ raise NotImplementedError()
[docs] @abstractmethod def make_from_file_management_status( self, status: FileManagementStatus, file_name: str ) -> Message: """ Serialize device's current file management status. :param status: Current file management status :type status: FileManagementStatus :param file_name: Name of file being transferred :type file_name: str :returns: message :rtype: Message """
[docs] @abstractmethod def make_from_file_url_status( self, file_url: str, status: FileManagementStatus, file_name: Optional[str] = None, ) -> Message: """ Serialize device's current file URL download status. :param file_url: URL from where the file is to be downloaded :type file_url: str :param status: Current file management status :type status: FileManagementStatus :param file_name: Only present when download of file is completed :type file_name: Optional[str] """ raise NotImplementedError()