-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathInterface.java
More file actions
321 lines (258 loc) · 9.54 KB
/
Interface.java
File metadata and controls
321 lines (258 loc) · 9.54 KB
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
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
import javax.imageio.ImageIO;
import javax.swing.*;
import javax.swing.event.ChangeEvent;
import javax.swing.event.ChangeListener;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.io.Console;
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.net.URL;
import java.util.Date;
import java.util.HashMap;
public class Interface {
private JFrame frame;
private JPanel MainPanel;
private JSlider analogioSlider;
private JSlider uncoreSlider;
private JSlider cacheSlider;
private JSlider gpuSlider;
private JSlider coreSlider;
private JButton applybutton;
private JLabel valueCore;
private JLabel valueGpu;
private JLabel valueCache;
private JLabel valueUncore;
private JLabel valueAnalogio;
private JButton faqbutton;
private JButton resetbutton;
private JButton buttonLoad;
private JButton buttonSave;
private int coreSliderValue;
private int gpuSliderValue;
private int cacheSliderValue;
private int uncoreSliderValue;
private int analogioSliderValue;
private Config configs = new Config();
private Profile profile = new Profile(frame);
private UndervoltValue value = new UndervoltValue();
private Stresstest stresstest = new Stresstest();
// Set the listener and the actual params
public Interface(){
//LISTENER
//Cpu voltage
coreSlider.addChangeListener(new ChangeListener() {
@Override
public void stateChanged(ChangeEvent changeEvent) {
//Set the value from the slider
coreSliderValue = coreSlider.getValue();
//Set te label for the slider
setLabel(coreSliderValue, valueCore);
}
});
//Gpu voltage
gpuSlider.addChangeListener(new ChangeListener() {
@Override
public void stateChanged(ChangeEvent changeEvent) {
//Set the value from the slider
gpuSliderValue = gpuSlider.getValue();
//Set te label for the slider
setLabel(gpuSliderValue, valueGpu);
}
});
//Cache voltage
cacheSlider.addChangeListener(new ChangeListener() {
@Override
public void stateChanged(ChangeEvent changeEvent) {
//Set the value from the slider
cacheSliderValue = cacheSlider.getValue();
//Set te label for the slider
setLabel(cacheSliderValue, valueCache);
}
});
//Cache uncore
uncoreSlider.addChangeListener(new ChangeListener() {
@Override
public void stateChanged(ChangeEvent changeEvent) {
//Set the value from the slider
uncoreSliderValue = uncoreSlider.getValue();
//Set te label for the slider
setLabel(uncoreSliderValue, valueUncore);
}
});
//Cache analogio
analogioSlider.addChangeListener(new ChangeListener() {
@Override
public void stateChanged(ChangeEvent changeEvent) {
//Set the value from the slider
analogioSliderValue = analogioSlider.getValue();
//Set te label for the slider
setLabel(analogioSliderValue, valueAnalogio);
}
});
//Button listener
applybutton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent actionEvent) {
set();
}
});
resetbutton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent actionEvent) {
reset();
}
});
faqbutton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent actionEvent) {
Faq faq = new Faq();
faq.createUi();
}
});
buttonLoad.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent actionEvent) {
read();
}
});
buttonSave.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent actionEvent) {
save();
}
});
//Set actual value when application start
setUiValue();
//END LISTENER
}
// Ask to read the profile
private void read() {
HashMap<String, Double> prof = profile.read();
if(!prof.containsKey("errors")){
setSliderValue(prof);
}
}
// Save the profile
private void save() {
profile.save(coreSliderValue, gpuSliderValue, cacheSliderValue, uncoreSliderValue, analogioSliderValue);
}
//Set actual slider value as undervolt
private void set() {
//First i disable the ui
applybutton.setText("Applying change, please wait...");
setEnableUi(false);
//Set value
boolean correct = value.setValue(coreSliderValue, gpuSliderValue, cacheSliderValue, uncoreSliderValue, analogioSliderValue);
if(correct){
//Refresh ui value
setUiValue();
try {
//Stress to see if it stable
stresstest.setStressMaxCore(10000);
stresstest.startStress();
//Wait for the stress test ending
Thread.sleep(11000);
} catch (InterruptedException e) {
System.out.println("Stress test skipped");
}
//Re enable all ui
applybutton.setText("Applied!");
setEnableUi(true);
}else{
generateError(2);
}
}
// Set 0 to all value
private void reset() {
//First i disable the ui
applybutton.setText("Applying change, please wait...");
setEnableUi(false);
//Set value
boolean correct = value.setValue(0, 0, 0, 0, 0);
if(correct){
//Refresh ui value
setUiValue();
//Re enable all ui
applybutton.setText("Restored!");
setEnableUi(true);
}else{
generateError(2);
}
}
//ONLY FOR FIRST INSTANCE
public void createUi(){
UIManager.getDefaults().put("Button.disabledText",Color.decode("#EAB23B"));
frame = new JFrame("Undervolt");
frame.setContentPane(new Interface().MainPanel);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
try {
frame.setIconImage(ImageIO.read(new File(configs.getImage_path()+"icoover.png")));
} catch (IOException e) {
System.out.println("No icon found");
}
frame.pack();
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
//END INSTANZE
//Enable and disable de ui minus faq button
private void setEnableUi(boolean enable){
coreSlider.setEnabled(enable);
gpuSlider.setEnabled(enable);
cacheSlider.setEnabled(enable);
uncoreSlider.setEnabled(enable);
analogioSlider.setEnabled(enable);
applybutton.setEnabled(enable);
resetbutton.setEnabled(enable);
}
//Called after set value
private void setUiValue() {
//Get the data from undervolt.py
HashMap<String, Double> valueHashmap = value.getValue();
setSliderValue(valueHashmap);
}
//Set the value from the hashmap to the ui
private void setSliderValue( HashMap<String, Double> valueHashmap){
if(valueHashmap.containsKey("errors")){
//If there is something wrong with the readings
generateError(valueHashmap.get("errors").intValue());
}else{
//Set actual core value
coreSlider.setValue(valueHashmap.get("core").intValue());
setLabel(valueHashmap.get("core").intValue(), valueCore);
//Set actual gpu value
gpuSlider.setValue(valueHashmap.get("gpu").intValue());
setLabel(valueHashmap.get("gpu").intValue(), valueGpu);
//Set actual cache value
cacheSlider.setValue(valueHashmap.get("cache").intValue());
setLabel(valueHashmap.get("cache").intValue(), valueCache);
//Set actual uncore value
uncoreSlider.setValue(valueHashmap.get("uncore").intValue());
setLabel(valueHashmap.get("uncore").intValue(), valueUncore);
//Set actual analogio value
analogioSlider.setValue(valueHashmap.get("analogio").intValue());
setLabel(valueHashmap.get("analogio").intValue(), valueAnalogio);
}
}
//Create the label from the value
private void setLabel(int value, JLabel label){
String labeltext = Integer.toString(value) + " mV";
if(value>0){
labeltext = '+'+labeltext;
}
label.setText(labeltext);
}
//Show error
public void generateError(int errorCode){
//Error reference:
// Code: 1.0 --> Class: Undervolt.java --> Method: runScript
// Solution: Application start with no sudo permission or something is wrong with undervolt.py file
// Code: 2.0 --> Class: Undervolt.java --> Method: setValue
// Solution: Error during setting voltage, pc not compatible or something is wrong with undervolt.py file
setEnableUi(false);
applybutton.setText("Error code: " + errorCode);
}
}