Read more accurate temperature on power kernels
[qcpufreq] / src / mainwindow.cpp
1 /*
2  * QCPUFreq - a simple cpufreq GUI
3  * Copyright (C) 2010 Daniel Klaffenbach <daniel.klaffenbach@cs.tu-chemnitz.de>
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
31 #define APPNAME "QCPUFreq"
32 #define APPVERSION "0.3"
33
34 MainWindow::MainWindow(QWidget *parent) :
35     QMainWindow(parent),
36     ui(new Ui::MainWindow)
37 {
38     //this is a stacked window on Maemo 5
39     #if defined(Q_WS_MAEMO_5)
40         setAttribute(Qt::WA_Maemo5StackedWindow);
41     #endif
42
43     ui->setupUi(this);
44
45     refresh();
46
47     // enable auto rotation
48     setAutoRotation();
49
50     //create a QGraphicsScene for the little chip icon
51     scene = new QGraphicsScene();
52     orientationChanged();
53
54     //create the refresh timer
55     refreshTimer = new QTimer();
56     //refresh UI every 10 seconds
57     refreshTimer->start( 10000 );
58
59     //create helper process
60     helperProcess = new QProcess;
61
62     //create a new, stackable help window
63     helpWindow = new HelpWindow( this );
64     #if defined(Q_WS_MAEMO_5)
65         helpWindow->setAttribute(Qt::WA_Maemo5StackedWindow);
66     #endif
67     helpWindow->setWindowFlags( windowFlags() | Qt::Window );
68
69     //show errors about the sudo setup only once
70     showSudoError = true;
71
72     //connect signals and slots
73     connect(ui->actionHelp, SIGNAL(triggered()), this, SLOT(showHelp()));
74     connect( ui->actionAbout, SIGNAL(triggered()), this, SLOT(about()) );
75     connect( ui->freq_adjust, SIGNAL(valueChanged(int)), this, SLOT(adjustFreq()) );
76     connect(QApplication::desktop(), SIGNAL(resized(int)), this, SLOT(orientationChanged()));
77     connect(ui->sr_box, SIGNAL(clicked()), this, SLOT(setSmartReflex()));
78     connect(refreshTimer, SIGNAL(timeout()), this, SLOT(refresh()));
79
80 }
81
82 MainWindow::~MainWindow()
83 {
84     delete helpWindow;
85     delete refreshTimer;
86     delete scene;
87     delete ui;
88 }
89
90
91 /**
92   * SLOT: Displays an about box
93   */
94 void MainWindow::about()
95 {
96     QMessageBox::about(this, APPNAME " " APPVERSION, "<p style=\"align:center;\">&copy; 2010 Daniel Klaffenbach</p>" );
97     refresh();
98 }
99
100
101 /**
102   * SLOT: Adjusts the maximum CPU frequency according to the scaler
103   */
104 void MainWindow::adjustFreq()
105 {
106     int newmax = getScalingFreq( ui->freq_adjust->sliderPosition() );
107     QString max;
108     max.setNum( newmax );
109
110     callHelper( "set_maxfreq", max );
111
112     refresh();
113 }
114
115
116 /**
117   * Calls the QCPUFreq helper script with "sudo action param"
118   *
119   * @param  action : the action of the helper script
120   * @param  param : the parameter for the action
121   * @return exit code
122   */
123 int MainWindow::callHelper(QString action, QString param)
124 {
125     QStringList arguments;
126
127     #if defined(Q_WS_MAEMO_5)
128         //On Maemo 5 the helper script resides in /opt/usr/bin, which us usually not in $PATH
129         arguments.append( "/opt/usr/bin/QCPUFreq.helper" );
130     #else
131         arguments.append( "QCPUFreq.helper" );
132     #endif
133
134     arguments.append( action );
135     arguments.append( param );
136
137     helperProcess->start( "sudo", arguments, QIODevice::NotOpen );
138
139     if ( showSudoError && !helperProcess->waitForFinished( 200 )) {
140         //do not show this error again
141         showSudoError = false;
142         QMessageBox::critical(this, tr("QCPUFreq"), tr("There seems to be a problem with your sudo setup!"));
143     }
144
145     return helperProcess->exitCode();
146 }
147
148
149 /**
150   * Returns the current CPU temperature
151   */
152 QString MainWindow::getCPUTemp()
153 {
154 #if defined(Q_WS_MAEMO_5)
155     QFile file( "/sys/class/power_supply/bq27200-0/temp" );
156
157     //check if we can read a more accurate temperature (only for power kernel)
158     if (file.exists())
159         return QString( readSysFile( "class/power_supply/bq27200-0/temp" ) + " °C" );
160     else
161         return readSysFile( "devices/platform/omap34xx_temp/temp1_input_raw" );
162 #endif
163     return tr( "Unknown" );
164 }
165
166
167 /**
168   * Returns the maximum CPU frequency
169   */
170 int MainWindow::getMaxFreq()
171 {
172     QString tmp = readSysFile( "devices/system/cpu/cpu0/cpufreq/scaling_max_freq" );
173     return tmp.toInt();
174 }
175
176
177 /**
178   * Returns the minimum CPU frequency
179   */
180 int MainWindow::getMinFreq()
181 {
182     QString tmp = readSysFile( "devices/system/cpu/cpu0/cpufreq/scaling_min_freq" );
183     return tmp.toInt();
184 }
185
186
187 /**
188   * Returns the CPU frequency for the specified scaling step
189   */
190 int MainWindow::getScalingFreq(int step)
191 {
192     QString tmp = readSysFile( "devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies" );
193     QStringList freqs = tmp.split( " " );
194     step = step - 1;
195     if ( step < 0 )
196          step = 0;
197     if ( step > getScalingSteps() )
198         step = getScalingSteps();
199
200     tmp = freqs[ step ];
201     return tmp.toInt();
202 }
203
204
205 /**
206   * Returns the name of the current CPU frequency scaling governor
207   *
208   * \return     name of governor
209   */
210 QString MainWindow::getScalingGovernor()
211 {
212     return readSysFile( "devices/system/cpu/cpu0/cpufreq/scaling_governor" );
213 }
214
215
216 /**
217   * Returns the amount of available scaling steps.
218   */
219 int MainWindow::getScalingSteps()
220 {
221     QString tmp = readSysFile( "devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies" );
222     QStringList freqs = tmp.split( " " );
223     return (freqs.size() - 1);
224 }
225
226
227 /**
228   * Returns the scaling step for the specified frequency.
229   */
230 int MainWindow::getScalingStep( int freq )
231 {
232     for( int i = 1; i <= getScalingSteps(); ++i ) {
233            if ( getScalingFreq(i) == freq )
234                 return i;
235     }
236
237     return 1;
238 }
239
240
241 /**
242   * Returns the SmartReflex(tm) state
243   *
244   * \return     0|1
245   */
246 int MainWindow::getSmartReflexState()
247 {
248 //SmartReflex is only supprted on Maemo5
249 #if defined(Q_WS_MAEMO_5)
250     QString tmp = readSysFile( "power/sr_vdd1_autocomp" );
251
252     if ( tmp == "1" )
253         return 1;
254     else
255         return 0;
256 #else
257     //disable UI checkbox
258     ui->sr_box->setDisabled( true );
259
260     return 0;
261 #endif
262 }
263
264
265 /**
266   * Reads any file in /sys/
267   *
268   * \param      sys_file : full path to sys file - omit "/sys/"
269   * \return     content of sys file
270   */
271 QString MainWindow::readSysFile(QString sys_file)
272 {
273     QFile file( "/sys/"+sys_file );
274
275     //open the file
276     if ( !file.exists() || !file.open( QIODevice::ReadOnly ) ) {
277         QMessageBox::critical(this, tr("QCPUFreq"), tr("Could not get information from /sys!"));
278         return "";
279     }
280
281     //read the file
282     QTextStream in( &file );
283     QString txt = in.readLine();
284
285     //close the file
286     file.close();
287
288     return txt;
289 }
290
291
292 /**
293   * Refreshes all of the values to display
294   */
295 void MainWindow::refresh()
296 {
297     //get the current frequency and calculate the MHz value
298     int freq = ( getMinFreq() / 1000 );
299     QString display;
300     display.setNum( freq );
301     display.append( " MHz" );
302     ui->freq_min->setText( display );
303
304     //do the same thing for the maximum frequency
305     freq = ( getMaxFreq() / 1000 );
306     display.setNum( freq );
307     display.append( " MHz" );
308     ui->freq_max->setText( display );
309
310     //display the current governor
311     ui->freq_governor->setText( getScalingGovernor() );
312
313     //display current temperature
314     ui->cpu_temp->setText( getCPUTemp() );
315
316     //smart reflex button
317     if ( getSmartReflexState() == 1 )
318         ui->sr_box->setCheckState( Qt::Checked );
319     else
320         ui->sr_box->setCheckState( Qt::Unchecked );
321
322
323     //display frequency slider
324     ui->freq_adjust->setMinimum( 1 );
325     ui->freq_adjust->setMaximum( getScalingSteps() );
326     ui->freq_adjust->setInvertedAppearance( true );
327     ui->freq_adjust->setSliderPosition( getScalingStep(getMaxFreq()) );
328
329     //ui->retranslateUi(this);
330 }
331
332
333 /**
334   * Repaints part of the GUI after the device was rotated
335   */
336 void MainWindow::orientationChanged()
337 {
338     QPixmap image;
339
340     //check whether we are using portrait or landscape mode
341     if ( usePortrait() ) {
342         //in portrait mode we want to display the large image
343         image.load( ":/img/chip256" );
344         this->scene->clear();
345         this->scene->addPixmap(  image  );
346
347         ui->graphicsPortrait->setScene( this->scene );
348         ui->graphicsPortrait->setMaximumSize( 256, 256 );
349         ui->graphicsLandscape->setMaximumSize( 0, 0 );
350     } else {
351         image.load( ":/img/chip128" );
352         this->scene->clear();
353         this->scene->addPixmap(  image  );
354
355         ui->graphicsLandscape->setScene( this->scene );
356         ui->graphicsLandscape->setMaximumSize( 128, 128 );
357         ui->graphicsPortrait->setMaximumSize( 0, 0 );
358     }
359 }
360
361
362 /**
363   * Enables the auto-rotation feature of Maemo5 devices
364   */
365 void MainWindow::setAutoRotation()
366 {
367 #if defined(Q_WS_MAEMO_5)
368     setAttribute(Qt::WA_Maemo5AutoOrientation, true);
369 #endif
370 }
371
372
373 /**
374   * SLOT: Enables or disables Smart Reflex(tm) after pressing sr_btn
375   */
376 void MainWindow::setSmartReflex()
377 {
378 //SmartReflex is only supported on Maemo5
379 #if defined(Q_WS_MAEMO_5)
380     if ( getSmartReflexState() == 1 )
381         callHelper( "set_sr", "off");
382     else {
383         QMaemo5InformationBox::information(this, tr( "SmartReflex support is known to be unstable on some devices and may cause random reboots." ), QMaemo5InformationBox::DefaultTimeout);
384         callHelper( "set_sr", "on");
385     }
386
387 #endif
388     //refresh the UI
389     refresh();
390 }
391
392
393 /**
394   * SLOT: display the help window
395   */
396 void MainWindow::showHelp()
397 {
398     helpWindow->show();
399 }
400
401
402 /**
403   * Returns true when the device is in portrait mode
404   */
405 bool MainWindow::usePortrait()
406 {
407     QRect screenGeometry = QApplication::desktop()->screenGeometry();
408     if (screenGeometry.width() > screenGeometry.height())
409         return false;
410     else
411         return true;
412 }