106 lines
3.1 KiB
Python
106 lines
3.1 KiB
Python
|
try:
|
||
|
from sonic_platform.platform_thrift_client import thrift_try
|
||
|
from sonic_platform_base.fan_base import FanBase
|
||
|
from sonic_py_common import device_info
|
||
|
except ImportError as e:
|
||
|
raise ImportError (str(e) + "- required module not found")
|
||
|
|
||
|
def _fan_info_get(fan_num, cb, default=None):
|
||
|
def get_data(client):
|
||
|
return client.pltfm_mgr.pltfm_mgr_fan_info_get(fan_num)
|
||
|
fan_info = thrift_try(get_data)
|
||
|
if fan_num == fan_info.fan_num:
|
||
|
return cb(fan_info)
|
||
|
if default is None:
|
||
|
raise LookupError
|
||
|
return default
|
||
|
|
||
|
# Fan -> FanBase -> DeviceBase
|
||
|
class Fan(FanBase):
|
||
|
def __init__(self, index, fantrayindex):
|
||
|
self.__index = index
|
||
|
self.__fantrayindex = fantrayindex
|
||
|
|
||
|
# FanBase interface methods:
|
||
|
# returns speed in percents
|
||
|
def get_speed(self):
|
||
|
def cb(info): return info.percent
|
||
|
return _fan_info_get(self.__index, cb, 0)
|
||
|
|
||
|
def set_speed(self, percent):
|
||
|
# Fan tray speed controlled by BMC
|
||
|
return False
|
||
|
|
||
|
# DeviceBase interface methods:
|
||
|
def get_name(self):
|
||
|
return "counter-rotating-fan-{}".format((self.__fantrayindex - 1) * self.__index + self.__index)
|
||
|
|
||
|
def get_presence(self):
|
||
|
return _fan_info_get(self.__index, lambda _: True, False)
|
||
|
|
||
|
def get_position_in_parent(self):
|
||
|
return self.__index
|
||
|
|
||
|
def is_replaceable(self):
|
||
|
return False
|
||
|
|
||
|
def get_status(self):
|
||
|
return (self.get_presence() and self.get_presence() > 0)
|
||
|
|
||
|
def get_model(self):
|
||
|
"""
|
||
|
Retrieves the part number of the fan drawer
|
||
|
Returns:
|
||
|
string: Part number of fan drawer
|
||
|
"""
|
||
|
return 'N/A'
|
||
|
|
||
|
def get_direction(self):
|
||
|
"""
|
||
|
Retrieves the direction of fan
|
||
|
Returns:
|
||
|
A string, either FAN_DIRECTION_INTAKE or FAN_DIRECTION_EXHAUST
|
||
|
depending on fan direction
|
||
|
"""
|
||
|
return 'N/A'
|
||
|
|
||
|
def get_target_speed(self):
|
||
|
"""
|
||
|
Retrieves the target (expected) speed of the fan
|
||
|
Returns:
|
||
|
An integer, the percentage of full fan speed, in the range 0 (off)
|
||
|
to 100 (full speed)
|
||
|
"""
|
||
|
return self.get_speed()
|
||
|
|
||
|
def get_speed_tolerance(self):
|
||
|
"""
|
||
|
Retrieves the speed tolerance of the fan
|
||
|
Returns:
|
||
|
An integer, the percentage of variance from target speed which is
|
||
|
considered tolerable
|
||
|
"""
|
||
|
if device_info.get_platform() in ["x86_64-accton_as9516_32d-r0", "x86_64-accton_as9516bf_32d-r0"]:
|
||
|
return 6
|
||
|
return 3
|
||
|
|
||
|
def get_serial(self):
|
||
|
"""
|
||
|
Retrieves the serial number of the device
|
||
|
Returns:
|
||
|
string: Serial number of device
|
||
|
"""
|
||
|
return 'N/A'
|
||
|
|
||
|
def set_status_led(self, color):
|
||
|
"""
|
||
|
Sets the state of the fan module status LED
|
||
|
Args:
|
||
|
color: A string representing the color with which to set the
|
||
|
fan module status LED
|
||
|
Returns:
|
||
|
bool: True if status LED state is set successfully, False if not
|
||
|
"""
|
||
|
# Fan tray status LED controlled by BMC
|
||
|
return False
|