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