Merge pull request #212 from advaithm/torxed-v2.2.0

added return value for functions in hardware.py plus cpuVendor function
This commit is contained in:
Anton Hvornum 2021-04-07 07:46:36 +00:00 committed by GitHub
commit 5ca64b59a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 20 additions and 9 deletions

View File

@ -1,19 +1,23 @@
import os, subprocess
import os, subprocess, json
from .general import sys_command
from .networking import list_interfaces, enrichIfaceTypes
def hasWifi():
from typing import Optional
def hasWifi()->bool:
return 'WIRELESS' in enrichIfaceTypes(list_interfaces().values()).values()
def hasAMDCPU():
def hasAMDCPU()->bool:
if subprocess.check_output("lscpu | grep AMD", shell=True).strip().decode():
return True
return False
def hasIntelCPU()->bool:
if subprocess.check_output("lscpu | grep Intel", shell=True).strip().decode():
return True
return False
def hasUEFI():
def hasUEFI()->bool:
return os.path.isdir('/sys/firmware/efi')
def graphicsDevices():
def graphicsDevices()->dict:
cards = {}
for line in sys_command(f"lspci"):
if b' VGA ' in line:
@ -21,13 +25,20 @@ def graphicsDevices():
cards[identifier.strip().lower().decode('UTF-8')] = line
return cards
def hasNvidiaGraphics():
def hasNvidiaGraphics()->bool:
return any('nvidia' in x for x in graphicsDevices())
def hasAmdGraphics():
def hasAmdGraphics()->bool:
return any('amd' in x for x in graphicsDevices())
def hasIntelGraphics():
def hasIntelGraphics()->bool:
return any('intel' in x for x in graphicsDevices())
def cpuVendor()-> Optional[str]:
cpu_info = json.loads(subprocess.check_output("lscpu -J", shell=True).decode('utf-8'))['lscpu']
for info in cpu_info:
if info.get('field',None):
if info.get('field',None) == "Vendor ID:":
return info.get('data',None)
# TODO: Add more identifiers