forked from mengmeet/PowerControl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
executable file
·214 lines (186 loc) · 5.68 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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
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 fan import fanManager
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_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 fanManager.get_fanRPM()
except Exception as e:
logging.error(e)
return 0
async def get_fanRPMPercent(self):
try:
return fanManager.get_fanRPMPercent()
except Exception as e:
logging.error(e)
return 0
async def get_fanTemp(self):
try:
gpuTemp = sysInfoManager.get_gpuTemp()
if gpuTemp!=-1:
return gpuTemp
return sysInfoManager.get_cpuTemp()
except Exception as e:
logging.error(e)
return 0
async def get_fanIsAuto(self):
try:
return fanManager.get_fanIsAuto()
except Exception as e:
logging.error(e)
return 0
async def get_fanMAXRPM(self):
try:
return fanManager.get_fanMAXRPM()
except Exception as e:
logging.error(e)
return 0
async def get_fanIsAdapted(self):
try:
return fanManager.get_fanIsAdapted()
except Exception as e:
logging.error(e)
return 0
def set_fanAuto(self, value:bool):
try:
return fanManager.set_fanAuto(value)
except Exception as e:
logging.error(e)
return False
def set_fanPercent(self, value:int):
try:
return fanManager.set_fanPercent(value)
except Exception as e:
logging.error(e)
return False
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