Refresh GUI after applying settings
[qcpufreq] / src / mainwindow.cpp
1 /*
2  * QCPUFreq - a simple cpufreq GUI
3  * Copyright (C) 2010 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.3.99"
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     init();
58
59     //applies the settings from the settings dialog
60     applySettings();
61
62     //initialize orientation
63     orientationChanged();
64
65     //refresh UI every 10 seconds
66     refreshTimer.start( 10000 );
67
68     // initialize stackable help window
69     #if defined(Q_WS_MAEMO_5)
70         helpWindow.setAttribute(Qt::WA_Maemo5StackedWindow);
71     #endif
72     helpWindow.setWindowFlags( windowFlags() | Qt::Window );
73
74     //show errors about the sudo setup only once
75     showSudoError = true;
76
77     //connect signals and slots
78     connect(ui->actionHelp, SIGNAL(triggered()), this, SLOT(showHelp()));
79     connect( ui->actionAbout, SIGNAL(triggered()), this, SLOT(about()) );
80     connect( ui->freq_adjust, SIGNAL(valueChanged(int)), this, SLOT(adjustFreq()) );
81     connect(QApplication::desktop(), SIGNAL(resized(int)), this, SLOT(orientationChanged()));
82     connect(ui->sr_box, SIGNAL(clicked()), this, SLOT(setSmartReflex()));
83     connect(&refreshTimer, SIGNAL(timeout()), this, SLOT(refresh()));
84     connect(ui->actionSettings, SIGNAL(triggered()), this, SLOT(showSettings()));
85     connect(settings, SIGNAL(settingsChanged()), this, SLOT(applySettings()));
86
87 }
88
89 MainWindow::~MainWindow()
90 {
91     delete settings;
92     delete ui;
93 }
94
95
96 /**
97   * SLOT: Displays an about box
98   */
99 void MainWindow::about()
100 {
101     QMessageBox::about(this, APPNAME " " APPVERSION, "<p style=\"align:center;\">&copy; 2010 Daniel Klaffenbach</p>" );
102     refresh();
103 }
104
105
106 /**
107   * SLOT: Adjusts the maximum CPU frequency according to the scaler
108   */
109 void MainWindow::adjustFreq()
110 {
111     int newmax = getScalingFreq( ui->freq_adjust->sliderPosition() );
112
113     if (newmax == getMaxFreq() ) {
114         //we do not need to change anything in this case
115         return;
116     }
117
118     QString max;
119
120     //maxfreq should not be smaller than minfreq, because we do not want to decrease minfreq
121     if (newmax < getMinFreq())
122         newmax = getMinFreq();
123
124     max.setNum( newmax );
125
126     //check for overclocking
127     #if defined(Q_WS_MAEMO_5)
128     if (!settings->useOverclocking() && newmax > 600000) {
129         QMaemo5InformationBox::information(this, tr( "You need to enable overclocking in QCPUFreq's settings in order to set frequencies above 600MHz!"), 0);
130         refresh();
131         return;
132     }
133     #endif
134
135     callHelper( "set_maxfreq", max );
136
137     refresh();
138 }
139
140
141 /**
142   * SLOT: applies the settings from the Settings dialog.
143   */
144 void MainWindow::applySettings()
145 {
146     setAutoRotation();
147     setAdvancedTemperature();
148
149     //refresh the GUI after applying the settings
150     refresh();
151 }
152
153
154 /**
155   * Calls the QCPUFreq helper script with "sudo action param"
156   *
157   * @param  action : the action of the helper script
158   * @param  param : the parameter for the action
159   * @return exit code
160   */
161 int MainWindow::callHelper(QString action, QString param)
162 {
163     QStringList arguments;
164
165     #if defined(Q_WS_MAEMO_5)
166     //On Maemo 5 the helper script resides in /opt/usr/bin, which is usually not in $PATH
167     arguments.append( "/opt/usr/bin/QCPUFreq.helper" );
168     #else
169     arguments.append( "QCPUFreq.helper" );
170     #endif
171
172     arguments.append( action );
173     arguments.append( param );
174
175     helperProcess.start( "sudo", arguments, QIODevice::NotOpen );
176
177     if ( showSudoError && !helperProcess.waitForFinished( 400 )) {
178         //do not show this error again
179         showSudoError = false;
180         QMessageBox::critical(this, tr("QCPUFreq"), tr("There seems to be a problem with your sudo setup!"));
181     }
182
183     return helperProcess.exitCode();
184 }
185
186
187 /**
188   * Returns the current CPU temperature
189   */
190 QString MainWindow::getCPUTemp()
191 {
192 #if defined(Q_WS_MAEMO_5)
193     QFile file( "/sys/class/power_supply/bq27200-0/temp" );
194
195     //check if we can read a more accurate temperature (only for power kernel)
196     if (file.exists())
197         return QString( readSysFile( "class/power_supply/bq27200-0/temp" ) + " " + QString::fromUtf8("\302\260") + "C" );
198     else {
199         /*
200           We actually only need to read the raw temperature, but it appears that by also reading temp1_input
201           the raw temperature (temp1_input_raw) is being updated more frequently.
202         */
203         readSysFile( "devices/platform/omap34xx_temp/temp1_input" );
204
205         //read the current system temperature
206         QString tstring = readSysFile( "devices/platform/omap34xx_temp/temp1_input_raw" );
207         if (tstring == "0")
208             return tr( "Unknown" );
209
210         //convert it to an integer and calculate the approx. temperature from the raw value
211         int tint = tstring.toInt();
212         tint = ( 0.65 * tint );
213         tstring.setNum(tint);
214         return QString( tstring + " " + QString::fromUtf8("\302\260") + "C" );
215     }
216 #endif
217     return tr( "Unknown" );
218 }
219
220
221 /**
222   * Returns the maximum CPU frequency
223   */
224 int MainWindow::getMaxFreq()
225 {
226     QString tmp = readSysFile( "devices/system/cpu/cpu0/cpufreq/scaling_max_freq" );
227     return tmp.toInt();
228 }
229
230
231 /**
232   * Returns the minimum CPU frequency
233   */
234 int MainWindow::getMinFreq()
235 {
236     return this->minFreq;
237 }
238
239
240 /**
241   * Returns the CPU frequency for the specified scaling step
242   */
243 int MainWindow::getScalingFreq(int step)
244 {
245     step = step - 1;
246     if ( step < 0 )
247          step = 0;
248     if ( step > getScalingSteps() - 1 )
249         step = getScalingSteps() - 1;
250
251     return this->scalingFrequencies[ step ].toInt();
252 }
253
254
255 /**
256   * Returns the name of the current CPU frequency scaling governor
257   *
258   * @return     QString - name of governor
259   */
260 QString MainWindow::getScalingGovernor()
261 {
262     return readSysFile( "devices/system/cpu/cpu0/cpufreq/scaling_governor" );
263 }
264
265
266 /**
267   * Returns the amount of available scaling steps.
268   *
269   * @return int
270   */
271 int MainWindow::getScalingSteps()
272 {
273     return this->scalingSteps;
274 }
275
276
277 /**
278   * Returns the scaling step for the specified frequency.
279   *
280   * @return int
281   */
282 int MainWindow::getScalingStep( int freq )
283 {
284     QString tmp;
285     tmp.setNum(freq);
286     return this->scalingFrequencies.indexOf(tmp) + 1;
287 }
288
289
290 /**
291   * Returns the SmartReflex(tm) state
292   *
293   * \return     0|1
294   */
295 int MainWindow::getSmartReflexState()
296 {
297 //SmartReflex is only supprted on Maemo5
298 #if defined(Q_WS_MAEMO_5)
299     QString tmp = readSysFile( "power/sr_vdd1_autocomp" );
300
301     if ( tmp == "1" ) {
302         return 1;
303     } else {
304         return 0;
305     }
306 #else
307     //disable UI checkbox
308     ui->sr_box->setDisabled( true );
309
310     return 0;
311 #endif
312 }
313
314
315 /**
316   * Initializes internal variables, such as:
317   *  - scalingSteps
318   *  - scalingFrequencies
319   *  - minFreq
320   */
321 void MainWindow::init()
322 {
323     this->minFreq = 0;
324     QString freqs = readSysFile( "devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies" );
325     QStringList freqList = freqs.split( " " );
326     //change the order of the QStringList - last element becomes first
327     for (int i=freqList.size() - 1; i>=0; --i) {
328         if (freqList.at(i) != "")
329             this->scalingFrequencies << freqList.at(i);
330     }
331     this->scalingSteps = (this->scalingFrequencies.size());
332
333     //set minFreq and check avoid_frequencies
334     QString min = readSysFile( "devices/system/cpu/cpu0/cpufreq/scaling_min_freq" );
335     //check if avoid file exists (only on power kernel)
336     QFile file( "/sys/devices/system/cpu/cpu0/cpufreq/ondemand/avoid_frequencies" );
337     if (file.exists()) {
338         QString avoid = readSysFile( "devices/system/cpu/cpu0/cpufreq/ondemand/avoid_frequencies" );
339         QStringList avoidList = avoid.split( " " );
340
341         //check if min is in avoid_frequencies
342         for (int i = getScalingStep( min.toInt() ); i <= this->scalingSteps; ++i) {
343             min.setNum( getScalingFreq(i) );
344             if (!avoidList.contains(min)) {
345                 this->minFreq = min.toInt();
346                 break;
347             }
348         }
349     } else {
350         this->minFreq = min.toInt();
351     }
352 }
353
354
355 /**
356   * Reads any file in /sys/
357   *
358   * \param      sys_file : full path to sys file - omit "/sys/"
359   * \return     content of sys file
360   */
361 QString MainWindow::readSysFile(QString sys_file)
362 {
363     QFile file( "/sys/"+sys_file );
364
365     //open the file
366     if ( !file.exists() || !file.open( QIODevice::ReadOnly ) ) {
367         QMessageBox::critical(this, tr("QCPUFreq"), tr("Could not get information from /sys!"));
368         return "";
369     }
370
371     //read the file
372     QTextStream in( &file );
373     QString txt = in.readLine();
374
375     //close the file
376     file.close();
377
378     return txt;
379 }
380
381
382 /**
383   * Refreshes all of the values to display
384   */
385 void MainWindow::refresh()
386 {
387     //get the current frequency and calculate the MHz value
388     int freq = ( getMinFreq() / 1000 );
389     QString display;
390     display.setNum( freq );
391     display.append( " MHz" );
392     ui->freq_min->setText( display );
393
394     //do the same thing for the maximum frequency
395     freq = ( getMaxFreq() / 1000 );
396     display.setNum( freq );
397     display.append( " MHz" );
398     ui->freq_max->setText( display );
399
400     //display the current governor
401     ui->freq_governor->setText( getScalingGovernor() );
402
403     //display current temperature
404     ui->cpu_temp->setText( getCPUTemp() );
405
406     //smart reflex button
407     if ( getSmartReflexState() == 1 )
408         ui->sr_box->setCheckState( Qt::Checked );
409     else
410         ui->sr_box->setCheckState( Qt::Unchecked );
411
412
413     //display frequency slider
414     ui->freq_adjust->setMinimum( 1 );
415     ui->freq_adjust->setMaximum( getScalingSteps() );
416     ui->freq_adjust->setSliderPosition( getScalingStep(getMaxFreq()) );
417 }
418
419
420 /**
421   * Repaints part of the GUI after the device was rotated
422   */
423 void MainWindow::orientationChanged()
424 {
425     QPixmap image;
426
427     //check whether we are using portrait or landscape mode
428     if ( usePortrait() ) {
429         //in portrait mode we want to display the large image
430         image.load( ":/img/chip256" );
431         scene.clear();
432         scene.addPixmap(  image  );
433
434         ui->graphicsPortrait->setScene( &scene );
435         ui->graphicsPortrait->setMaximumSize( 256, 256 );
436         ui->graphicsLandscape->setMaximumSize( 0, 0 );
437     } else {
438         image.load( ":/img/chip128" );
439         scene.clear();
440         scene.addPixmap(  image  );
441
442         ui->graphicsLandscape->setScene( &scene );
443         ui->graphicsLandscape->setMaximumSize( 128, 128 );
444         ui->graphicsPortrait->setMaximumSize( 0, 0 );
445     }
446 }
447
448
449 /**
450   * Checks the settings if the "bq27x00_battery" needs to be loaded.
451   */
452 void MainWindow::setAdvancedTemperature()
453 {
454     if (settings->usePowerKernel() && settings->useAdvancedTemperature()) {
455        callHelper( "load_bq27", "null" );
456     }
457 }
458
459
460 /**
461   * Enables or disables the auto-rotation feature of Maemo5 devices.
462   */
463 void MainWindow::setAutoRotation()
464 {
465 #if defined(Q_WS_MAEMO_5)
466     setAttribute(Qt::WA_Maemo5AutoOrientation, settings->useAutoRotate());
467 #endif
468 }
469
470
471 /**
472   * SLOT: Enables or disables Smart Reflex(tm) after pressing sr_btn
473   */
474 void MainWindow::setSmartReflex()
475 {
476 //SmartReflex is only supported on Maemo5
477 #if defined(Q_WS_MAEMO_5)
478     if ( getSmartReflexState() == 1 )
479         callHelper( "set_sr", "off");
480     else {
481         QMaemo5InformationBox::information(this, tr( "SmartReflex support is known to be unstable on some devices and may cause random reboots." ), 0);
482         callHelper( "set_sr", "on");
483     }
484
485 #endif
486     //refresh the UI
487     refresh();
488 }
489
490
491 /**
492   * SLOT: display the help window
493   */
494 void MainWindow::showHelp()
495 {
496     helpWindow.show();
497 }
498
499
500 /**
501   * SLOT: displays the settings widget
502   */
503 void MainWindow::showSettings()
504 {
505     settings->reset();
506     settings->show();
507 }
508
509
510 /**
511   * Returns true when the device is in portrait mode
512   */
513 bool MainWindow::usePortrait()
514 {
515     QRect screenGeometry = QApplication::desktop()->screenGeometry();
516     if (screenGeometry.width() > screenGeometry.height())
517         return false;
518     else
519         return true;
520 }