2020-01-15 20:42:09 -06:00
|
|
|
import os.path
|
|
|
|
import subprocess
|
|
|
|
import sys
|
|
|
|
import re
|
|
|
|
|
|
|
|
try:
|
|
|
|
from sonic_psu.psu_base import PsuBase
|
|
|
|
except ImportError as e:
|
2020-11-25 12:28:36 -06:00
|
|
|
raise ImportError(str(e) + "- required module not found")
|
|
|
|
|
2020-01-15 20:42:09 -06:00
|
|
|
|
|
|
|
class PsuUtil(PsuBase):
|
|
|
|
"""Platform-specific PSUutil class"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.ipmi_sensor = "ipmitool sensor"
|
|
|
|
PsuBase.__init__(self)
|
|
|
|
|
|
|
|
def run_command(self, command):
|
2020-11-25 12:28:36 -06:00
|
|
|
proc = subprocess.Popen(command, shell=True, universal_newlines=True, stdout=subprocess.PIPE)
|
2020-01-15 20:42:09 -06:00
|
|
|
(out, err) = proc.communicate()
|
|
|
|
|
|
|
|
if proc.returncode != 0:
|
|
|
|
sys.exit(proc.returncode)
|
2020-11-25 12:28:36 -06:00
|
|
|
|
2020-01-15 20:42:09 -06:00
|
|
|
return out
|
2020-11-25 12:28:36 -06:00
|
|
|
|
2020-01-15 20:42:09 -06:00
|
|
|
def find_value(self, grep_string):
|
|
|
|
result = re.search(".+\| (0x\d{2})\d{2}\|.+", grep_string)
|
|
|
|
if result:
|
|
|
|
return result.group(1)
|
|
|
|
else:
|
|
|
|
return result
|
2020-11-25 12:28:36 -06:00
|
|
|
|
2020-01-15 20:42:09 -06:00
|
|
|
def get_num_psus(self):
|
|
|
|
"""
|
|
|
|
Retrieves the number of PSUs available on the device
|
|
|
|
:return: An integer, the number of PSUs available on the device
|
|
|
|
"""
|
|
|
|
return 2
|
|
|
|
|
|
|
|
def get_psu_status(self, index):
|
|
|
|
"""
|
|
|
|
Retrieves the oprational status of power supply unit (PSU) defined
|
|
|
|
by 1-based index <index>
|
|
|
|
:param index: An integer, 1-based index of the PSU of which to query status
|
|
|
|
:return: Boolean, True if PSU is operating properly, False if PSU is faulty
|
|
|
|
"""
|
|
|
|
if index is None:
|
|
|
|
return False
|
|
|
|
|
|
|
|
grep_key = "PSUL_Status" if index == 1 else "PSUR_Status"
|
2020-11-25 12:28:36 -06:00
|
|
|
grep_string = self.run_command(self.ipmi_sensor + ' | grep ' + grep_key)
|
2020-01-15 20:42:09 -06:00
|
|
|
status_byte = self.find_value(grep_string)
|
2020-11-25 12:28:36 -06:00
|
|
|
|
2020-01-15 20:42:09 -06:00
|
|
|
if status_byte is None:
|
|
|
|
return False
|
|
|
|
|
|
|
|
failure_detected = (int(status_byte, 16) >> 1) & 1
|
|
|
|
input_lost = (int(status_byte, 16) >> 3) & 1
|
|
|
|
if failure_detected or input_lost:
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return True
|
|
|
|
|
|
|
|
def get_psu_presence(self, index):
|
|
|
|
"""
|
|
|
|
Retrieves the presence status of power supply unit (PSU) defined
|
|
|
|
by 1-based index <index>
|
|
|
|
:param index: An integer, 1-based index of the PSU of which to query status
|
|
|
|
:return: Boolean, True if PSU is plugged, False if not
|
|
|
|
"""
|
|
|
|
if index is None:
|
|
|
|
return False
|
|
|
|
|
|
|
|
grep_key = "PSUL_Status" if index == 1 else "PSUR_Status"
|
2020-11-25 12:28:36 -06:00
|
|
|
grep_string = self.run_command(self.ipmi_sensor + ' | grep ' + grep_key)
|
2020-01-15 20:42:09 -06:00
|
|
|
status_byte = self.find_value(grep_string)
|
2020-11-25 12:28:36 -06:00
|
|
|
|
2020-01-15 20:42:09 -06:00
|
|
|
if status_byte is None:
|
|
|
|
return False
|
2020-11-25 12:28:36 -06:00
|
|
|
|
|
|
|
presence = (int(status_byte, 16) >> 0) & 1
|
2020-01-15 20:42:09 -06:00
|
|
|
if presence:
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
return False
|