This repository has been archived by the owner on Dec 21, 2023. It is now read-only.
forked from mengmeet/PowerControl
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
executable file
·154 lines (134 loc) · 4.08 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
import subprocess
import asyncio
import os
import sys
#获取插件路径 加载backend中各个py文件
try:
from helpers import get_homebrew_path,get_home_path,get_user
HOMEBREW_PATH = get_homebrew_path(get_home_path(get_user()))
sys.path.append("{}/plugins/PowerControl/backend".format(HOMEBREW_PATH))
from config import logging
from gpu import gpuManager
from cpu import cpuManager
from sysInfo import sysInfoManager
logging.info("PowerControl main.py")
except Exception as e:
logging.error(e)
class Plugin:
async def _main(self):
while True:
await asyncio.sleep(3)
async def get_hasRyzenadj(self):
try:
return cpuManager.get_hasRyzenadj()
except Exception as e:
logging.error(e)
return False
async def get_cpuMaxNum(self):
try:
return cpuManager.get_cpuMaxNum()
except Exception as e:
logging.error(e)
return 0
async def get_tdpMax(self):
try:
return cpuManager.get_tdpMax()
except Exception as e:
logging.error(e)
return 0
async def get_gpuFreqMax(self):
try:
return gpuManager.get_gpuFreqMax()
except Exception as e:
logging.error(e)
return 0
async def get_gpuFreqMin(self):
try:
return gpuManager.get_gpuFreqMin()
except Exception as e:
logging.error(e)
return 0
async def get_cpu_AvailableFreq(self):
try:
return cpuManager.get_cpu_AvailableFreq()
except Exception as e:
logging.error(e)
return []
async def get_language(self):
try:
return sysInfoManager.get_language()
except Exception as e:
logging.error(e)
return ""
async def get_fanRPM(self):
try:
return sysInfoManager.get_fanRPM()
except Exception as e:
logging.error(e)
return 0
def set_gpuAuto(self, value:bool):
try:
return gpuManager.set_gpuAuto(value)
except Exception as e:
logging.error(e)
return False
def set_gpuAutoMaxFreq(self, value: int):
try:
return gpuManager.set_gpuAutoMaxFreq(value)
except Exception as e:
logging.error(e)
return False
def set_gpuAutoMinFreq(self, value: int):
try:
return gpuManager.set_gpuAutoMinFreq(value)
except Exception as e:
logging.error(e)
return False
def set_gpuFreq(self, value: int):
try:
return gpuManager.set_gpuFreq(value)
except Exception as e:
logging.error(e)
return False
def set_gpuFreqRange(self, value: int, value2: int):
try:
return gpuManager.set_gpuFreqRange(value,value2)
except Exception as e:
logging.error(e)
return False
def set_cpuTDP(self, value: int):
try:
return cpuManager.set_cpuTDP(value)
except Exception as e:
logging.error(e)
return False
def set_cpuOnline(self, value: int):
try:
return cpuManager.set_cpuOnline(value)
except Exception as e:
logging.error(e)
return False
def set_smt(self, value: bool):
try:
return cpuManager.set_smt(value)
except Exception as e:
logging.error(e)
return False
def set_cpuBoost(self, value: bool):
try:
return cpuManager.set_cpuBoost(value)
except Exception as e:
logging.error(e)
return False
def set_cpuFreq(self, value: int):
try:
return cpuManager.set_cpuFreq(value)
except Exception as e:
logging.error(e)
return False
def receive_suspendEvent(self):
try:
return True
except Exception as e:
logging.error(e)
return False