view src/breadcrumbs/src/Utility.py @ 0:0de566f21448 draft default tip

v2
author sagun98
date Thu, 03 Jun 2021 18:13:32 +0000
parents
children
line wrap: on
line source

"""
Author: Timothy Tickle
Description: Utility class for generic functions.
"""

#####################################################################################
#Copyright (C) <2012>
#
#Permission is hereby granted, free of charge, to any person obtaining a copy of
#this software and associated documentation files (the "Software"), to deal in the
#Software without restriction, including without limitation the rights to use, copy,
#modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
#and to permit persons to whom the Software is furnished to do so, subject to
#the following conditions:
#
#The above copyright notice and this permission notice shall be included in all copies
#or substantial portions of the Software.
#
#THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
#INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
#PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
#HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
#OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
#SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#####################################################################################

__author__ = "Timothy Tickle"
__copyright__ = "Copyright 2012"
__credits__ = ["Timothy Tickle"]
__license__ = "MIT"
__maintainer__ = "Timothy Tickle"
__email__ = "ttickle@sph.harvard.edu"
__status__ = "Development"

class Utility():
    """
    Class to perform misc methods.
    """

    #Tested 6
    @staticmethod
    def getIndices(aList, dataElement):
        """
        Returns the index or indicies of the element in the list.

        :param aList: List ot search for element.
        :type List.
        :param dataElement: Element for which to search.
        :type Object of the same type as is found in the list.
        :return: List of indicies indicating where the element occurs in the list. Returns [] when the element is not in the list.
        """

        aretIndices = []
        for dataIndex in xrange(0,len(aList)):
            if(aList[dataIndex] == dataElement):
                aretIndices.append(dataIndex)
        return aretIndices

    #Tested 6
    @staticmethod
    def reduceList(aList, dataIndicies):
        """
        Reduces a list to just the data indicies given.

        :param aList: List to reduce.
        :type List
        :param dataIndicies: list of indicies to keep.
        :type List of integers
        :return: Reduced list.  Returns [] when the and empty index list is given.
        """
        return [aList[dataIndicies[dataIndex]] for dataIndex in xrange(0,len(dataIndicies))]

    #Tested 8
    @staticmethod
    def RGBToHex(adColor):
        """
        Change a RGB float to hex.

        :param adColor: A list of 3 elements which are floats between 0.0 and 1.0
        :type A list of floats
        :return: A string (HEX formatted) representation of the RGB color
        """

        charR = (hex(int(adColor[0]*255)))[2:]
        if(str(charR) == "0"):
            charR = "00"
        charG = (hex(int(adColor[1]*255)))[2:]
        if(str(charG) == "0"):
            charG = "00"
        charB = (hex(int(adColor[2]*255)))[2:]
        if(str(charB) == "0"):
            charB = "00"
        return "".join(["#",charR, charG, charB])