generated from SteamDeckHomebrew/decky-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 23
/
main.py
executable file
·252 lines (214 loc) · 7.18 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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
import sys
import traceback
import decky
from settings import SettingsManager
# 获取插件路径 加载backend中各个py文件
try:
from helpers import get_homebrew_path
HOMEBREW_PATH = get_homebrew_path()
sys.path.append("{}/plugins/PowerControl/backend".format(HOMEBREW_PATH))
from config import logging, CONFIG_KEY
from gpu import gpuManager
from cpu import cpuManager
from fan import fanManager
from sysInfo import sysInfoManager
import update
except Exception as e:
# 堆栈跟踪
logging.error(traceback.format_exc())
logging.error(e)
class Plugin:
async def _main(self):
self.settings = SettingsManager(
name="config", settings_directory=decky.DECKY_PLUGIN_SETTINGS_DIR
)
async def get_settings(self):
return self.settings.getSetting(CONFIG_KEY)
async def set_settings(self, settings):
self.settings.setSetting(CONFIG_KEY, settings)
# logging.info(f"save Settings: {settings}")
return True
async def _unload(self):
gpuManager.unload()
logging.info("End PowerControl")
async def get_hasRyzenadj(self):
try:
return cpuManager.get_hasRyzenadj()
except Exception as e:
logging.error(e, exc_info=True)
return False
async def get_cpuMaxNum(self):
try:
return cpuManager.get_cpuMaxNum()
except Exception as e:
logging.error(e, exc_info=True)
return 0
async def get_isSupportSMT(self):
try:
return cpuManager.get_isSupportSMT()
except Exception as e:
logging.error(e, exc_info=True)
return False
async def get_tdpMax(self):
try:
return cpuManager.get_tdpMax()
except Exception as e:
logging.error(e, exc_info=True)
return 0
async def get_gpuFreqRange(self):
try:
return gpuManager.get_gpuFreqRange()
except Exception as e:
logging.error(e, exc_info=True)
return 0
# 弃用
async def get_cpu_AvailableFreq(self):
try:
return cpuManager.get_cpu_AvailableFreq()
except Exception as e:
logging.error(e, exc_info=True)
return []
async def get_language(self):
try:
return sysInfoManager.get_language()
except Exception as e:
logging.error(e, exc_info=True)
return ""
async def get_fanRPM(self, index):
try:
return fanManager.get_fanRPM(index)
except Exception as e:
logging.error(e, exc_info=True)
return 0
async def get_fanRPMPercent(self, index):
try:
return fanManager.get_fanRPMPercent(index)
except Exception as e:
logging.error(e, exc_info=True)
return 0
async def get_fanTemp(self, index):
try:
return fanManager.get_fanTemp(index)
except Exception as e:
logging.error(e, exc_info=True)
return 0
async def get_fanIsAuto(self, index):
try:
return fanManager.get_fanIsAuto(index)
except Exception as e:
logging.error(e, exc_info=True)
return 0
async def get_fanConfigList(self):
try:
return fanManager.get_fanConfigList()
except Exception as e:
logging.error(e, exc_info=True)
return []
async def set_fanAuto(self, index: int, value: bool):
try:
return fanManager.set_fanAuto(index, value)
except Exception as e:
logging.error(e, exc_info=True)
return False
async def set_fanPercent(self, index: int, value: int):
try:
return fanManager.set_fanPercent(index, value)
except Exception as e:
logging.error(e, exc_info=True)
return False
async def set_gpuAuto(self, value: bool):
try:
return gpuManager.set_gpuAuto(value)
except Exception as e:
logging.error(e, exc_info=True)
return False
async def set_gpuAutoFreqRange(self, min: int, max: int):
try:
return gpuManager.set_gpuAutoFreqRange(min, max)
except Exception as e:
logging.error(e, exc_info=True)
return False
async def set_gpuFreq(self, value: int):
try:
return gpuManager.set_gpuFreqFix(value)
except Exception as e:
logging.error(e, exc_info=True)
return False
async def set_gpuFreqRange(self, value: int, value2: int):
try:
return gpuManager.set_gpuFreqRange(value, value2)
except Exception as e:
logging.error(e, exc_info=True)
return False
async def set_cpuTDP(self, value: int):
try:
return cpuManager.set_cpuTDP(value)
except Exception as e:
logging.error(e, exc_info=True)
return False
async def set_cpuOnline(self, value: int):
try:
return cpuManager.set_cpuOnline(value)
except Exception as e:
logging.error(e, exc_info=True)
return False
async def set_smt(self, value: bool):
try:
return cpuManager.set_smt(value)
except Exception as e:
logging.error(e, exc_info=True)
return False
async def set_cpuBoost(self, value: bool):
try:
return cpuManager.set_cpuBoost(value)
except Exception as e:
logging.error(e, exc_info=True)
return False
async def set_cpuFreq(self, value: int):
try:
return cpuManager.set_cpuFreq(value)
except Exception as e:
logging.error(e, exc_info=True)
return False
async def receive_suspendEvent(self):
try:
return True
except Exception as e:
logging.error(e, exc_info=True)
return False
async def fix_gpuFreqSlider(self):
try:
return gpuManager.fix_gpuFreqSlider()
except Exception as e:
logging.error(e, exc_info=True)
return False
async def update_latest(self):
logging.info("Updating latest")
# return update.update_latest()
try:
return update.update_latest()
except Exception as e:
logging.error(e, exc_info=True)
return False
async def get_version(self):
return update.get_version()
async def get_latest_version(self):
try:
return update.get_latest_version()
except Exception as e:
logging.error(e, exc_info=True)
return ""
async def get_ryzenadj_info(self):
return cpuManager.get_ryzenadj_info()
async def get_max_perf_pct(self):
try:
return cpuManager.get_max_perf_pct()
except Exception as e:
logging.error(e, exc_info=True)
return 0
async def set_max_perf_pct(self, value: int):
try:
return cpuManager.set_max_perf_pct(value)
except Exception as e:
logging.error(e, exc_info=True)
return False