Source code for cerebralcortex.core.data_manager.raw.storage_blueprint

# Copyright (c) 2019, MD2K Center of Excellence
# - Nasir Ali <nasir.ali08@gmail.com>
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice, this
# list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above copyright notice,
# this list of conditions and the following disclaimer in the documentation
# and/or other materials provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.


import uuid
from typing import List

from cerebralcortex.core.datatypes import DataStream


[docs]class BlueprintStorage(): """ This is a sample reference class. If you want to add another storage layer then the class must have following methods in it. read_file() write_file() """ def __init__(self, obj): self.obj = obj ################################################################### ################## GET DATA METHODS ############################### ###################################################################
[docs] def read_file(self, stream_name:str, version:str="all")->object: """ Get stream data from storage system. Data would be return as pyspark DataFrame object Args: stream_name (str): name of a stream version (str): version of a stream. Acceptable parameters are all, latest, or a specific version of a stream (e.g., 2.0) (Default="all") Returns: object: pyspark DataFrame object Raises: Exception: if stream name does not exist. """ # TODO: implement your own storage layer to read data pass
################################################################### ################## STORE DATA METHODS ############################# ###################################################################
[docs] def write_file(self, stream_name:str, data:DataStream) -> bool: """ Write pyspark DataFrame to a data storage system Args: stream_name (str): name of the stream data (object): pyspark DataFrame object Returns: bool: True if data is stored successfully or throws an Exception. Raises: Exception: if DataFrame write operation fails """ # TODO: implement your own storage layer to write data pass
[docs] def is_stream(self, stream_name: str) -> bool: """ Returns true if provided stream exists. Args: stream_name (str): name of a stream Returns: bool: True if stream_name exist False otherwise Examples: >>> CC.is_stream("ACCELEROMETER--org.md2k.motionsense--MOTION_SENSE_HRV--RIGHT_WRIST") >>> True """ pass
[docs] def get_stream_versions(self, stream_name: str) -> list: """ Returns a list of versions available for a stream Args: stream_name (str): name of a stream Returns: list: list of int Raises: ValueError: if stream_name is empty or None Examples: >>> CC.get_stream_versions("ACCELEROMETER--org.md2k.motionsense--MOTION_SENSE_HRV--RIGHT_WRIST") >>> [1, 2, 4] """ pass
[docs] def get_stream_name(self, metadata_hash: uuid) -> str: """ metadata_hash are unique to each stream version. This reverse look can return the stream name of a metadata_hash. Args: metadata_hash (uuid): This could be an actual uuid object or a string form of uuid. Returns: str: name of a stream Examples: >>> CC.get_stream_name("00ab666c-afb8-476e-9872-6472b4e66b68") >>> ACCELEROMETER--org.md2k.motionsense--MOTION_SENSE_HRV--RIGHT_WRIST """ pass
[docs] def get_stream_metadata_hash(self, stream_name: str) -> list: """ Get all the metadata_hash associated with a stream name. Args: stream_name (str): name of a stream Returns: list[str]: list of all the metadata hashes Examples: >>> CC.get_stream_metadata_hash("ACCELEROMETER--org.md2k.motionsense--MOTION_SENSE_HRV--RIGHT_WRIST") >>> ["00ab666c-afb8-476e-9872-6472b4e66b68", "15cc444c-dfb8-676e-3872-8472b4e66b12"] """ pass
[docs] def list_streams(self)->List[str]: """ Get all the available stream names with metadata Returns: List[str]: list of available streams metadata Examples: >>> CC = Kernel("/directory/path/of/configs/") >>> CC.list_streams() """ pass
[docs] def search_stream(self, stream_name): """ Find all the stream names similar to stream_name arg. For example, passing "location" argument will return all stream names that contain the word location Returns: List[str]: list of stream names similar to stream_name arg Examples: >>> CC.search_stream("battery") >>> ["BATTERY--org.md2k.motionsense--MOTION_SENSE_HRV--LEFT_WRIST", "BATTERY--org.md2k.phonesensor--PHONE".....] """ pass