Try to calculate temperature from raw value
[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" ) + " " + QString::fromUtf8("\302\260") + "C" );
160     else {
161         //read the current system temperature
162         QString tstring = readSysFile( "devices/platform/omap34xx_temp/temp1_input_raw" );
163         if (tstring == "0")
164             return tr( "Unknown" );
165
166         //convert it to an integer and calculate the approx. temperature from the raw value
167         int tint = tstring.toInt();
168         tint = ( 0.65 * tint );
169         tstring.setNum(tint);
170         return QString( tstring + " " + QString::fromUtf8("\302\260") + "C" );
171     }
172 #endif
173     return tr( "Unknown" );
174 }
175
176
177 /**
178   * Returns the maximum CPU frequency
179   */
180 int MainWindow::getMaxFreq()
181 {
182     QString tmp = readSysFile( "devices/system/cpu/cpu0/cpufreq/scaling_max_freq" );
183     return tmp.toInt();
184 }
185
186
187 /**
188   * Returns the minimum CPU frequency
189   */
190 int MainWindow::getMinFreq()
191 {
192     QString tmp = readSysFile( "devices/system/cpu/cpu0/cpufreq/scaling_min_freq" );
193     return tmp.toInt();
194 }
195
196
197 /**
198   * Returns the CPU frequency for the specified scaling step
199   */
200 int MainWindow::getScalingFreq(int step)
201 {
202     QString tmp = readSysFile( "devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies" );
203     QStringList freqs = tmp.split( " " );
204     step = step - 1;
205     if ( step < 0 )
206          step = 0;
207     if ( step > getScalingSteps() )
208         step = getScalingSteps();
209
210     tmp = freqs[ step ];
211     return tmp.toInt();
212 }
213
214
215 /**
216   * Returns the name of the current CPU frequency scaling governor
217   *
218   * \return     name of governor
219   */
220 QString MainWindow::getScalingGovernor()
221 {
222     return readSysFile( "devices/system/cpu/cpu0/cpufreq/scaling_governor" );
223 }
224
225
226 /**
227   * Returns the amount of available scaling steps.
228   */
229 int MainWindow::getScalingSteps()
230 {
231     QString tmp = readSysFile( "devices/system/cpu/cpu0/cpufreq/scaling_available_frequencies" );
232     QStringList freqs = tmp.split( " " );
233     return (freqs.size() - 1);
234 }
235
236
237 /**
238   * Returns the scaling step for the specified frequency.
239   */
240 int MainWindow::getScalingStep( int freq )
241 {
242     for( int i = 1; i <= getScalingSteps(); ++i ) {
243            if ( getScalingFreq(i) == freq )
244                 return i;
245     }
246
247     return 1;
248 }
249
250
251 /**
252   * Returns the SmartReflex(tm) state
253   *
254   * \return     0|1
255   */
256 int MainWindow::getSmartReflexState()
257 {
258 //SmartReflex is only supprted on Maemo5
259 #if defined(Q_WS_MAEMO_5)
260     QString tmp = readSysFile( "power/sr_vdd1_autocomp" );
261
262     if ( tmp == "1" )
263         return 1;
264     else
265         return 0;
266 #else
267     //disable UI checkbox
268     ui->sr_box->setDisabled( true );
269
270     return 0;
271 #endif
272 }
273
274
275 /**
276   * Reads any file in /sys/
277   *
278   * \param      sys_file : full path to sys file - omit "/sys/"
279   * \return     content of sys file
280   */
281 QString MainWindow::readSysFile(QString sys_file)
282 {
283     QFile file( "/sys/"+sys_file );
284
285     //open the file
286     if ( !file.exists() || !file.open( QIODevice::ReadOnly ) ) {
287         QMessageBox::critical(this, tr("QCPUFreq"), tr("Could not get information from /sys!"));
288         return "";
289     }
290
291     //read the file
292     QTextStream in( &file );
293     QString txt = in.readLine();
294
295     //close the file
296     file.close();
297
298     return txt;
299 }
300
301
302 /**
303   * Refreshes all of the values to display
304   */
305 void MainWindow::refresh()
306 {
307     //get the current frequency and calculate the MHz value
308     int freq = ( getMinFreq() / 1000 );
309     QString display;
310     display.setNum( freq );
311     display.append( " MHz" );
312     ui->freq_min->setText( display );
313
314     //do the same thing for the maximum frequency
315     freq = ( getMaxFreq() / 1000 );
316     display.setNum( freq );
317     display.append( " MHz" );
318     ui->freq_max->setText( display );
319
320     //display the current governor
321     ui->freq_governor->setText( getScalingGovernor() );
322
323     //display current temperature
324     ui->cpu_temp->setText( getCPUTemp() );
325
326     //smart reflex button
327     if ( getSmartReflexState() == 1 )
328         ui->sr_box->setCheckState( Qt::Checked );
329     else
330         ui->sr_box->setCheckState( Qt::Unchecked );
331
332
333     //display frequency slider
334     ui->freq_adjust->setMinimum( 1 );
335     ui->freq_adjust->setMaximum( getScalingSteps() );
336     ui->freq_adjust->setInvertedAppearance( true );
337     ui->freq_adjust->setSliderPosition( getScalingStep(getMaxFreq()) );
338
339     //ui->retranslateUi(this);
340 }
341
342
343 /**
344   * Repaints part of the GUI after the device was rotated
345   */
346 void MainWindow::orientationChanged()
347 {
348     QPixmap image;
349
350     //check whether we are using portrait or landscape mode
351     if ( usePortrait() ) {
352         //in portrait mode we want to display the large image
353         image.load( ":/img/chip256" );
354         this->scene->clear();
355         this->scene->addPixmap(  image  );
356
357         ui->graphicsPortrait->setScene( this->scene );
358         ui->graphicsPortrait->setMaximumSize( 256, 256 );
359         ui->graphicsLandscape->setMaximumSize( 0, 0 );
360     } else {
361         image.load( ":/img/chip128" );
362         this->scene->clear();
363         this->scene->addPixmap(  image  );
364
365         ui->graphicsLandscape->setScene( this->scene );
366         ui->graphicsLandscape->setMaximumSize( 128, 128 );
367         ui->graphicsPortrait->setMaximumSize( 0, 0 );
368     }
369 }
370
371
372 /**
373   * Enables the auto-rotation feature of Maemo5 devices
374   */
375 void MainWindow::setAutoRotation()
376 {
377 #if defined(Q_WS_MAEMO_5)
378     setAttribute(Qt::WA_Maemo5AutoOrientation, true);
379 #endif
380 }
381
382
383 /**
384   * SLOT: Enables or disables Smart Reflex(tm) after pressing sr_btn
385   */
386 void MainWindow::setSmartReflex()
387 {
388 //SmartReflex is only supported on Maemo5
389 #if defined(Q_WS_MAEMO_5)
390     if ( getSmartReflexState() == 1 )
391         callHelper( "set_sr", "off");
392     else {
393         QMaemo5InformationBox::information(this, tr( "SmartReflex support is known to be unstable on some devices and may cause random reboots." ), QMaemo5InformationBox::DefaultTimeout);
394         callHelper( "set_sr", "on");
395     }
396
397 #endif
398     //refresh the UI
399     refresh();
400 }
401
402
403 /**
404   * SLOT: display the help window
405   */
406 void MainWindow::showHelp()
407 {
408     helpWindow->show();
409 }
410
411
412 /**
413   * Returns true when the device is in portrait mode
414   */
415 bool MainWindow::usePortrait()
416 {
417     QRect screenGeometry = QApplication::desktop()->screenGeometry();
418     if (screenGeometry.width() > screenGeometry.height())
419         return false;
420     else
421         return true;
422 }