1ae60ae0afb07d63afe76975c90b1424e114199b
[qcpufreq] / src / mainwindow.cpp
1 /*
2  * QCPUFreq - a simple cpufreq GUI
3  * Copyright (C) 2010-11 Daniel Klaffenbach <danielklaffenbach@gmail.com>
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #include "mainwindow.h"
20 #include "ui_mainwindow.h"
21
22 #include <QFile>
23 #include <QMessageBox>
24 #include <QTextStream>
25 #include <QDesktopWidget>
26 #if defined(Q_WS_MAEMO_5)
27     #include <QMaemo5InformationBox>
28 #endif
29
30 #define APPNAME "QCPUFreq"
31 #define APPVERSION "0.4.3"
32
33
34 MainWindow::MainWindow(QWidget *parent) :
35     QMainWindow(parent),
36     ui(new Ui::MainWindow),
37     //create helper process
38     helperProcess( this ),
39     //create a new, stackable help window
40     helpWindow( this ),
41     //create UI refresh timer
42     refreshTimer( this ),
43     //create a QGraphicsScene for the little chip icon
44     scene( this )
45 {
46     //this is a stacked window on Maemo 5
47     #if defined(Q_WS_MAEMO_5)
48         setAttribute(Qt::WA_Maemo5StackedWindow);
49     #endif
50
51     ui->setupUi(this);
52
53     //Settings widget
54     settings = new Settings;
55     settings->hide();
56
57     //load preset dialog
58     loadPresetDialog = new LoadPreset;
59     loadPresetDialog->hide();
60
61     //enable save and load option on power kernels
62     if (settings->usePowerKernel() && settings->isKernelConfigInstalled()) {
63         ui->actionSave->setEnabled(true);
64         //loading presets may cause overclocking - only enable it if overclokcing is enabled
65         if (settings->useOverclocking()) {
66             ui->actionLoad->setEnabled(true);
67         }
68     }
69
70     //display the correct minimum frequency
71     calculateMinFreq();
72
73     //applies the settings from the settings dialog
74     applySettings();
75
76     //initialize orientation
77     orientationChanged();
78
79     //refresh UI every 10 seconds
80     refreshTimer.start( 10000 );
81
82     // initialize stackable help window
83     #if defined(Q_WS_MAEMO_5)
84         helpWindow.setAttribute(Qt::WA_Maemo5StackedWindow);
85     #endif
86     helpWindow.setWindowFlags( windowFlags() | Qt::Window );
87
88     //show errors about the sudo setup only once
89     showSudoError = true;
90
91     //connect signals and slots
92     connect(ui->actionHelp, SIGNAL(triggered()), this, SLOT(showHelp()));
93     connect( ui->actionAbout, SIGNAL(triggered()), this, SLOT(about()) );
94     connect( ui->freq_adjust, SIGNAL(sliderReleased()), this, SLOT(adjustFreq()) );
95     connect(ui->freq_adjust, SIGNAL(valueChanged(int)), this, SLOT(showTemporaryMaxFreq()));
96     connect(QApplication::desktop(), SIGNAL(resized(int)), this, SLOT(orientationChanged()));
97     connect(ui->sr_box, SIGNAL(clicked()), this, SLOT(setSmartReflex()));
98     connect(&refreshTimer, SIGNAL(timeout()), this, SLOT(refresh()));
99     connect(ui->actionSave, SIGNAL(triggered()), this, SLOT(save()));
100     connect(ui->actionLoad, SIGNAL(triggered()), loadPresetDialog, SLOT(show()));
101     connect(ui->actionSettings, SIGNAL(triggered()), this, SLOT(showSettings()));
102     connect(settings, SIGNAL(settingsChanged()), this, SLOT(applySettings()));
103     connect(loadPresetDialog, SIGNAL(load(QString)), this, SLOT(loadPreset(QString)));
104
105 }
106
107 MainWindow::~MainWindow()
108 {
109     delete loadPresetDialog;
110     delete settings;
111     delete ui;
112 }
113
114
115 /**
116   * SLOT: Displays an about box
117   */
118 void MainWindow::about()
119 {
120     QMessageBox::about(this, APPNAME " " APPVERSION, "<p style=\"align:center;\">&copy; 2011 Daniel Klaffenbach</p>" );
121     refresh();
122 }
123
124
125 /**
126   * SLOT: Adjusts the maximum CPU frequency according to the scaler
127   */
128 void MainWindow::adjustFreq()
129 {
130     int newmax = getScalingFreq( ui->freq_adjust->sliderPosition() );
131
132     if (newmax == getMaxFreq() ) {
133         //we do not need to change anything in this case
134         return;
135     }
136
137     QString max;
138
139     //maxfreq should not be smaller than minfreq, because we do not want to decrease minfreq
140     if (newmax < getMinFreq())
141         newmax = getMinFreq();
142
143     max.setNum( newmax );
144
145     //check for overclocking
146     #if defined(Q_WS_MAEMO_5)
147     if (!settings->useOverclocking() && newmax > 600000) {
148         QMaemo5InformationBox::information(this, tr( "You need to enable overclocking in QCPUFreq's settings in order to set frequencies above 600MHz!"), 0);
149         refresh();
150         return;
151     }
152     #endif
153
154     //check for 599MHz <-> 600MHz problem on power kernels
155     if (max == "600000" && settings->usePowerKernel()) {
156         //we really need to set the maximum to 599MHz
157         max = "599000";
158     }
159
160     if (settings->useConfirmation()) {
161         QMessageBox box;
162         #if defined(Q_WS_MAEMO_5)
163             box.setAttribute(Qt::WA_Maemo5AutoOrientation, settings->useAutoRotate());
164         #endif
165         box.setStandardButtons(QMessageBox::Apply | QMessageBox::Cancel);
166         box.setDefaultButton(QMessageBox::Apply);
167         box.setIcon(QMessageBox::Question);
168         QString verboseMax;
169         verboseMax.setNum( newmax/1000 );
170         box.setText( tr("Do you really want to use %1 MHz as the new maximum frequency?").arg(verboseMax) );
171         int ret = box.exec();
172
173         if (ret != QMessageBox::Apply) {
174             refresh();
175             return;
176         }
177     }
178
179     callHelper( "set_maxfreq", max );
180     refresh();
181
182 }
183
184
185 /**
186   * SLOT: applies the settings from the Settings dialog.
187   */
188 void MainWindow::applySettings()
189 {
190     setAutoRotation();
191     setAdvancedTemperature();
192
193     //if overclocking is/was enabled we can also enable the "Load preset" option
194     if (settings->useOverclocking() && settings->usePowerKernel() && settings->isKernelConfigInstalled()) {
195         ui->actionLoad->setEnabled(true);
196     } else {
197         ui->actionLoad->setEnabled(false);
198     }
199
200     //refresh the GUI after applying the settings
201     refresh();
202 }
203
204
205 /**
206   * Calculates the minimum frequency according to scaling_min_freq and avoid_frequencies.
207   *
208   * Since this is a somewhat complex calculation it sould only be performed when it is
209   * really necessary (on startup, after loading presets, etc.).
210   */
211 void MainWindow::calculateMinFreq()
212 {
213     this->minFreq = 0;
214     QString freqs = readSysFile( "devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies" );
215     QStringList freqList = freqs.split( " " );
216     //change the order of the QStringList - last element becomes first
217     for (int i=freqList.size() - 1; i>=0; --i) {
218         if (freqList.at(i) != "")
219             this->scalingFrequencies << freqList.at(i);
220     }
221     this->scalingSteps = (this->scalingFrequencies.size());
222
223     //set minFreq and check avoid_frequencies
224     QString min = readSysFile( "devices/system/cpu/cpu0/cpufreq/scaling_min_freq" );
225     //check if avoid file exists (only on power kernel)
226     QFile file( "/sys/devices/system/cpu/cpu0/cpufreq/ondemand/avoid_frequencies" );
227     if (file.exists()) {
228         QString avoid = readSysFile( "devices/system/cpu/cpu0/cpufreq/ondemand/avoid_frequencies" );
229         QStringList avoidList = avoid.split( " " );
230
231         //check if min is in avoid_frequencies
232         for (int i = getScalingStep( min.toInt() ); i <= this->scalingSteps; ++i) {
233             min.setNum( getScalingFreq(i) );
234             if (!avoidList.contains(min)) {
235                 this->minFreq = min.toInt();
236                 break;
237             }
238         }
239     } else {
240         this->minFreq = min.toInt();
241     }
242     file.close();
243 }
244
245
246 /**
247   * Calls the QCPUFreq helper script with "sudo action param"
248   *
249   * @param  action : the action of the helper script
250   * @param  param : the parameter for the action
251   * @return exit code
252   */
253 int MainWindow::callHelper(QString action, QString param)
254 {
255     QStringList arguments;
256
257     #if defined(Q_WS_MAEMO_5)
258     //On Maemo 5 the helper script resides in /opt/usr/bin, which is usually not in $PATH
259     arguments.append( "/opt/usr/bin/QCPUFreq.helper" );
260     #else
261     arguments.append( "QCPUFreq.helper" );
262     #endif
263
264     arguments.append( action );
265     arguments.append( param );
266
267     helperProcess.start( "sudo", arguments, QIODevice::NotOpen );
268
269     if ( showSudoError && !helperProcess.waitForFinished( 2000 )) {
270         //do not show this error again
271         showSudoError = false;
272         QMessageBox::critical(this, tr("QCPUFreq"), tr("There seems to be a problem with your sudo setup!"));
273     }
274
275     return helperProcess.exitCode();
276 }
277
278
279 /**
280   * Returns the current CPU temperature
281   */
282 QString MainWindow::getCPUTemp()
283 {
284 #if defined(Q_WS_MAEMO_5)
285     QFile file( "/sys/class/power_supply/bq27200-0/temp" );
286
287     //check if we can read a more accurate temperature (only for power kernel)
288     if (file.exists())
289         return QString( readSysFile( "class/power_supply/bq27200-0/temp" ) + " " + QString::fromUtf8("\302\260") + "C" );
290     else {
291         /*
292           We actually only need to read the raw temperature, but it appears that by also reading temp1_input
293           the raw temperature (temp1_input_raw) is being updated more frequently.
294         */
295         readSysFile( "devices/platform/omap34xx_temp/temp1_input" );
296
297         //read the current system temperature
298         QString tstring = readSysFile( "devices/platform/omap34xx_temp/temp1_input_raw" );
299         if (tstring == "0")
300             return tr( "Unknown" );
301
302         //convert it to an integer and calculate the approx. temperature from the raw value
303         int tint = tstring.toInt();
304         tint = ( 0.65 * tint );
305         tstring.setNum(tint);
306         return QString( tstring + " " + QString::fromUtf8("\302\260") + "C" );
307     }
308 #endif
309     return tr( "Unknown" );
310 }
311
312
313 /**
314   * Returns the maximum CPU frequency
315   */
316 int MainWindow::getMaxFreq()
317 {
318     QString tmp = readSysFile( "devices/system/cpu/cpu0/cpufreq/scaling_max_freq" );
319     return tmp.toInt();
320 }
321
322
323 /**
324   * Returns the minimum CPU frequency
325   */
326 int MainWindow::getMinFreq()
327 {
328     return this->minFreq;
329 }
330
331
332 /**
333   * Returns the CPU frequency for the specified scaling step
334   */
335 int MainWindow::getScalingFreq(int step)
336 {
337     step = step - 1;
338     if ( step < 0 )
339          step = 0;
340     if ( step > getScalingSteps() - 1 )
341         step = getScalingSteps() - 1;
342
343     return this->scalingFrequencies[ step ].toInt();
344 }
345
346
347 /**
348   * Returns the name of the current CPU frequency scaling governor
349   *
350   * @return     QString - name of governor
351   */
352 QString MainWindow::getScalingGovernor()
353 {
354     return readSysFile( "devices/system/cpu/cpu0/cpufreq/scaling_governor" );
355 }
356
357
358 /**
359   * Returns the amount of available scaling steps.
360   *
361   * @return int
362   */
363 int MainWindow::getScalingSteps()
364 {
365     return this->scalingSteps;
366 }
367
368
369 /**
370   * Returns the scaling step for the specified frequency.
371   *
372   * @return int
373   */
374 int MainWindow::getScalingStep( int freq )
375 {
376     QString tmp;
377     tmp.setNum(freq);
378     return this->scalingFrequencies.indexOf(tmp) + 1;
379 }
380
381
382 /**
383   * Returns the SmartReflex(tm) state
384   *
385   * \return     0|1
386   */
387 int MainWindow::getSmartReflexState()
388 {
389 //SmartReflex is only supprted on Maemo5
390 #if defined(Q_WS_MAEMO_5)
391     QString tmp = readSysFile( "power/sr_vdd1_autocomp" );
392
393     if ( tmp == "1" ) {
394         return 1;
395     } else {
396         return 0;
397     }
398 #else
399     //disable UI checkbox
400     ui->sr_box->setDisabled( true );
401
402     return 0;
403 #endif
404 }
405
406
407 /**
408   * Loads a voltage preset by calling kernel-config.
409   *
410   * Available presets are:
411   *  - default
412   *  - ideal
413   *  - lv
414   *  - ulv
415   *  - xlv
416   *  - custom -> any preset named "custom"
417   */
418 void MainWindow::loadPreset(QString presetName)
419 {
420     #if defined(Q_WS_MAEMO_5)
421         callHelper("loadpreset", presetName);
422         calculateMinFreq();
423         QMaemo5InformationBox::information(this, tr( "The preset was loaded." ), QMaemo5InformationBox::DefaultTimeout);
424         refresh();
425     #endif
426 }
427
428
429 /**
430   * Reads any file in /sys/
431   *
432   * \param      sys_file : full path to sys file - omit "/sys/"
433   * \return     content of sys file
434   */
435 QString MainWindow::readSysFile(QString sys_file)
436 {
437     QFile file( "/sys/"+sys_file );
438
439     //open the file
440     if ( !file.exists() || !file.open( QIODevice::ReadOnly ) ) {
441         QMessageBox::critical(this, tr("QCPUFreq"), tr("Could not get information from /sys!"));
442         return "";
443     }
444
445     //read the file
446     QTextStream in( &file );
447     QString txt = in.readLine();
448
449     //close the file
450     file.close();
451
452     return txt;
453 }
454
455
456 /**
457   * Refreshes all of the values to display
458   */
459 void MainWindow::refresh()
460 {
461     //get the current frequency and calculate the MHz value
462     int freq = ( getMinFreq() / 1000 );
463     QString display;
464     display.setNum( freq );
465     display.append( " MHz" );
466     ui->freq_min->setText( display );
467
468     //do the same thing for the maximum frequency
469     freq = ( getMaxFreq() / 1000 );
470     display.setNum( freq );
471     display.append( " MHz" );
472     ui->freq_max->setText( display );
473
474     //display the current governor
475     ui->freq_governor->setText( getScalingGovernor() );
476
477     //display current temperature
478     ui->cpu_temp->setText( getCPUTemp() );
479
480     //smart reflex button
481     if ( getSmartReflexState() == 1 )
482         ui->sr_box->setCheckState( Qt::Checked );
483     else
484         ui->sr_box->setCheckState( Qt::Unchecked );
485
486
487     //display frequency slider
488     ui->freq_adjust->setMinimum( 1 );
489     ui->freq_adjust->setMaximum( getScalingSteps() );
490     ui->freq_adjust->setSliderPosition( getScalingStep(getMaxFreq()) );
491 }
492
493
494 /**
495   * Repaints part of the GUI after the device was rotated
496   */
497 void MainWindow::orientationChanged()
498 {
499     QPixmap image;
500
501     //check whether we are using portrait or landscape mode
502     if ( usePortrait() ) {
503         //in portrait mode we want to display the large image
504         image.load( ":/img/chip256" );
505         scene.clear();
506         scene.addPixmap(  image  );
507
508         ui->graphicsPortrait->setScene( &scene );
509         ui->graphicsPortrait->setMaximumSize( 256, 256 );
510         ui->graphicsLandscape->setMaximumSize( 0, 0 );
511     } else {
512         image.load( ":/img/chip128" );
513         scene.clear();
514         scene.addPixmap(  image  );
515
516         ui->graphicsLandscape->setScene( &scene );
517         ui->graphicsLandscape->setMaximumSize( 128, 128 );
518         ui->graphicsPortrait->setMaximumSize( 0, 0 );
519     }
520 }
521
522
523 /**
524   * Saves the current maximim frequency as default (only on power kernel).
525   */
526 void MainWindow::save()
527 {
528     if (settings->usePowerKernel()) {
529         callHelper( "save", "null" );
530         #if defined(Q_WS_MAEMO_5)
531             QMaemo5InformationBox::information(this, tr( "The current frequency settings have been saved as default." ), QMaemo5InformationBox::DefaultTimeout);
532         #endif
533     }
534 }
535
536
537 /**
538   * Checks the settings if the "bq27x00_battery" needs to be loaded.
539   */
540 void MainWindow::setAdvancedTemperature()
541 {
542     if (settings->usePowerKernel() && settings->useAdvancedTemperature()) {
543        callHelper( "load_bq27", "null" );
544     }
545 }
546
547
548 /**
549   * Enables or disables the auto-rotation feature of Maemo5 devices.
550   */
551 void MainWindow::setAutoRotation()
552 {
553 #if defined(Q_WS_MAEMO_5)
554     setAttribute(Qt::WA_Maemo5AutoOrientation, settings->useAutoRotate());
555     loadPresetDialog->setAttribute(Qt::WA_Maemo5AutoOrientation, settings->useAutoRotate());
556     settings->setAttribute(Qt::WA_Maemo5AutoOrientation, settings->useAutoRotate());
557 #endif
558 }
559
560
561 /**
562   * SLOT: Enables or disables Smart Reflex(tm) after pressing sr_btn
563   */
564 void MainWindow::setSmartReflex()
565 {
566 //SmartReflex is only supported on Maemo5
567 #if defined(Q_WS_MAEMO_5)
568     if ( getSmartReflexState() == 1 )
569         callHelper( "set_sr", "off");
570     else {
571         QMaemo5InformationBox::information(this, tr( "SmartReflex support is known to be unstable on some devices and may cause random reboots." ), 0);
572         callHelper( "set_sr", "on");
573     }
574
575 #endif
576     //refresh the UI
577     refresh();
578 }
579
580
581 /**
582   * SLOT: display the help window
583   */
584 void MainWindow::showHelp()
585 {
586     helpWindow.show();
587 }
588
589
590 /**
591   * SLOT: displays the settings widget
592   */
593 void MainWindow::showSettings()
594 {
595     settings->reset();
596     settings->show();
597 }
598
599
600 /**
601   * SLOT: This temporarily updates the maximum frequency while using the
602   * maxFreq slider.
603   */
604 void MainWindow::showTemporaryMaxFreq()
605 {
606     //calulate frequency from slider position
607     int newmax = getScalingFreq( ui->freq_adjust->sliderPosition() ) / 1000;
608     //convert it to a string and display it in the UI
609     QString display;
610     display.setNum( newmax );
611     display.append( " MHz" );
612     ui->freq_max->setText( display );
613 }
614
615
616 /**
617   * Returns true when the device is in portrait mode
618   */
619 bool MainWindow::usePortrait()
620 {
621     QRect screenGeometry = QApplication::desktop()->screenGeometry();
622     if (screenGeometry.width() > screenGeometry.height())
623         return false;
624     else
625         return true;
626 }