summaryrefslogtreecommitdiff
path: root/noncore/settings
authortille <tille>2002-10-25 17:42:20 (UTC)
committer tille <tille>2002-10-25 17:42:20 (UTC)
commit1914dcb5988dff9e972ad67eb1eecd7452b88ffa (patch) (unidiff)
tree57b336a964de005ce1f2c4b699de50758bc220ea /noncore/settings
parent8d7cfaf101c780c7b870234de5cc14b51544f6d6 (diff)
downloadopie-1914dcb5988dff9e972ad67eb1eecd7452b88ffa.zip
opie-1914dcb5988dff9e972ad67eb1eecd7452b88ffa.tar.gz
opie-1914dcb5988dff9e972ad67eb1eecd7452b88ffa.tar.bz2
fixed neg lookuptime bug
Diffstat (limited to 'noncore/settings') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/netsystemtime/ntp.cpp228
1 files changed, 115 insertions, 113 deletions
diff --git a/noncore/settings/netsystemtime/ntp.cpp b/noncore/settings/netsystemtime/ntp.cpp
index f60e38d..40805a0 100644
--- a/noncore/settings/netsystemtime/ntp.cpp
+++ b/noncore/settings/netsystemtime/ntp.cpp
@@ -30,5 +30,5 @@
30Ntp::Ntp( QWidget* parent, const char* name, WFlags fl ) 30Ntp::Ntp( QWidget* parent, const char* name, WFlags fl )
31 : SetDateTime( parent, name, fl ) 31 : SetDateTime( parent, name, fl )
32{ 32{
33 Config ntpSrvs(QPEApplication::qpeDir()+"etc/ntpservers",Config::File); 33 Config ntpSrvs(QPEApplication::qpeDir()+"etc/ntpservers",Config::File);
34 ntpSrvs.setGroup("servers"); 34 ntpSrvs.setGroup("servers");
@@ -36,12 +36,12 @@ Ntp::Ntp( QWidget* parent, const char* name, WFlags fl )
36 for (int i = 0; i < srvCount; i++) 36 for (int i = 0; i < srvCount; i++)
37 { 37 {
38 ntpSrvs.setGroup(QString::number(i)); 38 ntpSrvs.setGroup(QString::number(i));
39 ComboNtpSrv->insertItem( ntpSrvs.readEntry("name") ); 39 ComboNtpSrv->insertItem( ntpSrvs.readEntry("name") );
40 } 40 }
41 if ( srvCount==0 ) ComboNtpSrv->insertItem(tr("time.fu-berlin.de")); 41 if ( srvCount==0 ) ComboNtpSrv->insertItem(tr("time.fu-berlin.de"));
42 42
43 Config cfg("ntp",Config::User); 43 Config cfg("ntp",Config::User);
44 cfg.setGroup("settings"); 44 cfg.setGroup("settings");
45 SpinBoxMinLookupDelay->setValue( cfg.readNumEntry("minLookupDiff",720) ); 45 SpinBoxMinLookupDelay->setValue( cfg.readNumEntry("minLookupDiff",720) );
46 SpinBoxNtpDelay->setValue( cfg.readNumEntry("ntpRefreshFreq",1440) ); 46 SpinBoxNtpDelay->setValue( cfg.readNumEntry("ntpRefreshFreq",1440) );
47 ComboNtpSrv->setCurrentItem( cfg.readNumEntry("ntpServer", 0) ); 47 ComboNtpSrv->setCurrentItem( cfg.readNumEntry("ntpServer", 0) );
@@ -58,5 +58,5 @@ Ntp::Ntp( QWidget* parent, const char* name, WFlags fl )
58 58
59 ntpProcess = new OProcess( ); 59 ntpProcess = new OProcess( );
60 connect( SpinBoxNtpDelay, SIGNAL( valueChanged(int) ), 60 connect( SpinBoxNtpDelay, SIGNAL( valueChanged(int) ),
61 SLOT(slotNtpDelayChanged(int)) ); 61 SLOT(slotNtpDelayChanged(int)) );
62 62
@@ -64,3 +64,3 @@ Ntp::Ntp( QWidget* parent, const char* name, WFlags fl )
64 connect( ntpSock, SIGNAL( error(int) ), 64 connect( ntpSock, SIGNAL( error(int) ),
65 SLOT(slotCheckNtp(int)) ); 65 SLOT(slotCheckNtp(int)) );
66 slotProbeNtpServer(); 66 slotProbeNtpServer();
@@ -68,5 +68,5 @@ Ntp::Ntp( QWidget* parent, const char* name, WFlags fl )
68 connect ( ntpProcess, SIGNAL(receivedStdout(OProcess*,char*,int)), 68 connect ( ntpProcess, SIGNAL(receivedStdout(OProcess*,char*,int)),
69 this, SLOT(getNtpOutput(OProcess*,char*,int))); 69 this, SLOT(getNtpOutput(OProcess*,char*,int)));
70 connect ( ntpProcess, SIGNAL(processExited(OProcess*)), 70 connect ( ntpProcess, SIGNAL(processExited(OProcess*)),
71 this, SLOT(ntpFinished(OProcess*))); 71 this, SLOT(ntpFinished(OProcess*)));
72 connect(runNtp, SIGNAL(clicked()), this, SLOT(slotRunNtp())); 72 connect(runNtp, SIGNAL(clicked()), this, SLOT(slotRunNtp()));
@@ -99,6 +99,8 @@ bool Ntp::ntpDelayElapsed()
99{ 99{
100 Config cfg("ntp",Config::User); 100 Config cfg("ntp",Config::User);
101 cfg.setGroup("lookups"); 101 cfg.setGroup("lookups");
102 _lookupDiff = TimeConversion::toUTC(QDateTime::currentDateTime()) - cfg.readNumEntry("time",0); 102 _lookupDiff = TimeConversion::toUTC(QDateTime::currentDateTime()) - cfg.readNumEntry("time",0);
103 return (_lookupDiff - (SpinBoxNtpDelay->value()*60)) > -60; 103 if (_lookupDiff < 0) return true;
104 int i =_lookupDiff - (SpinBoxNtpDelay->value()*60);
105 return i > -60;
104} 106}
@@ -107,3 +109,3 @@ QString Ntp::getNtpServer()
107{ 109{
108 return ComboNtpSrv->currentText(); 110 return ComboNtpSrv->currentText();
109} 111}
@@ -113,24 +115,24 @@ void Ntp::slotRunNtp()
113 if ( !ntpDelayElapsed() ) 115 if ( !ntpDelayElapsed() )
114 { 116 {
115 switch ( 117 switch (
116 QMessageBox::warning(this, tr("Run NTP?"), 118 QMessageBox::warning(this, tr("Run NTP?"),
117 tr("You asked for a delay of ")+SpinBoxNtpDelay->text()+tr(" minutes, but only ")+ 119 tr("You asked for a delay of ")+SpinBoxNtpDelay->text()+tr(" minutes, but only ")+
118 QString::number(_lookupDiff/60)+tr(" minutes elapsed since last lookup.")+ 120 QString::number(_lookupDiff/60)+tr(" minutes elapsed since last lookup.")+
119 "<br>"+tr("Rerun NTP?"), 121 "<br>"+tr("Rerun NTP?"),
120 QMessageBox::Ok,QMessageBox::Cancel) 122 QMessageBox::Ok,QMessageBox::Cancel)
121 ) { 123 ) {
122 case QMessageBox::Ok: break; 124 case QMessageBox::Ok: break;
123 case QMessageBox::Cancel: return; 125 case QMessageBox::Cancel: return;
124 default: return; 126 default: return;
125 } 127 }
126 } 128 }
127 TextLabelStartTime->setText(QDateTime::currentDateTime().toString()); 129 TextLabelStartTime->setText(QDateTime::currentDateTime().toString());
128 ntpOutPut( tr("Running:")+"\nntpdate "+getNtpServer() ); 130 ntpOutPut( tr("Running:")+"\nntpdate "+getNtpServer() );
129 131
130 ntpProcess->clearArguments(); 132 ntpProcess->clearArguments();
131 *ntpProcess << "ntpdate" << getNtpServer(); 133 *ntpProcess << "ntpdate" << getNtpServer();
132 bool ret = ntpProcess->start(OProcess::NotifyOnExit,OProcess::AllOutput); 134 bool ret = ntpProcess->start(OProcess::NotifyOnExit,OProcess::AllOutput);
133 if ( !ret ) { 135 if ( !ret ) {
134 qDebug("Error while executing ntpdate"); 136 qDebug("Error while executing ntpdate");
135 ntpOutPut( tr("Error while executing ntpdate")); 137 ntpOutPut( tr("Error while executing ntpdate"));
136 } 138 }
@@ -144,6 +146,6 @@ void Ntp::getNtpOutput(OProcess *proc, char *buffer, int buflen)
144 if (lineStr!=lineStrOld) 146 if (lineStr!=lineStrOld)
145 { 147 {
146 ntpOutPut(lineStr); 148 ntpOutPut(lineStr);
147 _ntpOutput += lineStr; 149 _ntpOutput += lineStr;
148 } 150 }
149 lineStrOld = lineStr; 151 lineStrOld = lineStr;
@@ -154,7 +156,7 @@ void Ntp::ntpFinished(OProcess *p)
154 //qDebug("p->exitStatus() %i",p->exitStatus()); 156 //qDebug("p->exitStatus() %i",p->exitStatus());
155 if (p->exitStatus()!=0 || !p->normalExit()) 157 if (p->exitStatus()!=0 || !p->normalExit())
156 { 158 {
157 slotProbeNtpServer(); 159 slotProbeNtpServer();
158 return; 160 return;
159 } 161 }
160 162
@@ -166,6 +168,6 @@ void Ntp::ntpFinished(OProcess *p)
166 168
167// QCopEnvelope timeApplet( "QPE/TaskBar", "reloadApplets()" ); 169 // QCopEnvelope timeApplet( "QPE/TaskBar", "reloadApplets()" );
168// timeApplet << ""; 170 // timeApplet << "";
169 171
170 Config cfg("ntp",Config::User); 172 Config cfg("ntp",Config::User);
171 cfg.setGroup("lookups"); 173 cfg.setGroup("lookups");
@@ -179,3 +181,3 @@ void Ntp::ntpFinished(OProcess *p)
179 if (timeShift == 0.0) return; 181 if (timeShift == 0.0) return;
180 int secsSinceLast = time - lastLookup; 182 int secsSinceLast = time - lastLookup;
181 TextLabelNewTime->setText(QDateTime::currentDateTime().toString()); 183 TextLabelNewTime->setText(QDateTime::currentDateTime().toString());
@@ -183,13 +185,13 @@ void Ntp::ntpFinished(OProcess *p)
183 if ( lastNtp && lastLookup > 0 && secsSinceLast > 60* SpinBoxMinLookupDelay->value()) 185 if ( lastNtp && lastLookup > 0 && secsSinceLast > 60* SpinBoxMinLookupDelay->value())
184 { 186 {
185 cfg.setGroup("lookup_"+QString::number(lookupCount)); 187 cfg.setGroup("lookup_"+QString::number(lookupCount));
186 lookupCount++; 188 lookupCount++;
187 _shiftPerSec = timeShift / secsSinceLast; 189 _shiftPerSec = timeShift / secsSinceLast;
188 qDebug("secs since last lookup %i", secsSinceLast);qDebug("timeshift since last lookup %f", timeShift);qDebug("timeshift since per sec %f", _shiftPerSec); 190 qDebug("secs since last lookup %i", secsSinceLast);qDebug("timeshift since last lookup %f", timeShift);qDebug("timeshift since per sec %f", _shiftPerSec);
189 cfg.writeEntry("secsSinceLast",secsSinceLast); 191 cfg.writeEntry("secsSinceLast",secsSinceLast);
190 cfg.writeEntry("timeShift",QString::number(timeShift)); 192 cfg.writeEntry("timeShift",QString::number(timeShift));
191 cfg.setGroup("lookups"); 193 cfg.setGroup("lookups");
192 cfg.writeEntry("count",lookupCount); 194 cfg.writeEntry("count",lookupCount);
193 cfg.writeEntry("lastNtp",true); 195 cfg.writeEntry("lastNtp",true);
194 } 196 }
195} 197}
@@ -199,3 +201,3 @@ float Ntp::getTimeShift()
199{ 201{
200 QString _offset = "offset"; 202 QString _offset = "offset";
201 QString _sec = "sec"; 203 QString _sec = "sec";
@@ -214,3 +216,3 @@ void Ntp::readLookups()
214{ 216{
215 Config cfg("ntp",Config::User); 217 Config cfg("ntp",Config::User);
216 cfg.setGroup("lookups"); 218 cfg.setGroup("lookups");
@@ -231,16 +233,16 @@ void Ntp::readLookups()
231 TableLookups->sortColumn(0, false, true ); 233 TableLookups->sortColumn(0, false, true );
232 // TableLookups->setSorting( true ); 234 // TableLookups->setSorting( true );
233 _shiftPerSec = 0; 235 _shiftPerSec = 0;
234 for (int i=0; i < lookupCount; i++) 236 for (int i=0; i < lookupCount; i++)
235 { 237 {
236 cfg.setGroup("lookup_"+QString::number(i)); 238 cfg.setGroup("lookup_"+QString::number(i));
237 last = cfg.readEntry("secsSinceLast",0).toFloat(); 239 last = cfg.readEntry("secsSinceLast",0).toFloat();
238 shift = QString(cfg.readEntry("timeShift",0)).toFloat(); 240 shift = QString(cfg.readEntry("timeShift",0)).toFloat();
239 shiftPerSec = shift / last; 241 shiftPerSec = shift / last;
240 qDebug("%i shift %f",i,shiftPerSec); 242 qDebug("%i shift %f",i,shiftPerSec);
241 _shiftPerSec += shiftPerSec; 243 _shiftPerSec += shiftPerSec;
242 TableLookups->setText( i,0,QString::number(shiftPerSec*60*60)); 244 TableLookups->setText( i,0,QString::number(shiftPerSec*60*60));
243 TableLookups->setText( i,2,QString::number(shift)); 245 TableLookups->setText( i,2,QString::number(shift));
244 TableLookups->setText( i,1,QString::number(last/(60*60))); 246 TableLookups->setText( i,1,QString::number(last/(60*60)));
245 } 247 }
246 _shiftPerSec /= lookupCount; 248 _shiftPerSec /= lookupCount;
@@ -251,6 +253,6 @@ void Ntp::preditctTime()
251{ 253{
252 Config cfg("ntp",Config::User); 254 Config cfg("ntp",Config::User);
253 cfg.setGroup("lookups"); 255 cfg.setGroup("lookups");
254 int lastTime = cfg.readNumEntry("time",0); 256 int lastTime = cfg.readNumEntry("time",0);
255 cfg.writeEntry("lastNtp",true); 257 cfg.writeEntry("lastNtp",true);
256 setenv( "TZ", tz->currentZone(), 1 ); 258 setenv( "TZ", tz->currentZone(), 1 );
@@ -260,3 +262,3 @@ void Ntp::preditctTime()
260 predictedTime = QDateTime::currentDateTime().addSecs(corr); 262 predictedTime = QDateTime::currentDateTime().addSecs(corr);
261 TextLabelPredTime->setText(predictedTime.toString()); 263 TextLabelPredTime->setText(predictedTime.toString());
262 TextLabelMainPredTime->setText(tr("Predicted time:")+"<br><b>"+predictedTime.toString()+"</b>"); 264 TextLabelMainPredTime->setText(tr("Predicted time:")+"<br><b>"+predictedTime.toString()+"</b>");
@@ -267,3 +269,3 @@ void Ntp::setPredictTime()
267 preditctTime(); 269 preditctTime();
268 setTime( predictedTime ); 270 setTime( predictedTime );
269} 271}
@@ -272,23 +274,23 @@ void Ntp::slotCheckNtp(int i)
272{ 274{
273 if (i == 0) 275 if (i == 0)
274 { 276 {
275 TextLabelMainPredTime->hide(); 277 TextLabelMainPredTime->hide();
276 ButtonSetTime->setText( tr("Get time from network") ); 278 ButtonSetTime->setText( tr("Get time from network") );
277 connect( ButtonSetTime, SIGNAL(clicked()), SLOT(slotRunNtp()) ); 279 connect( ButtonSetTime, SIGNAL(clicked()), SLOT(slotRunNtp()) );
278 if ( ntpDelayElapsed() ) 280 if ( ntpDelayElapsed() )
279 { 281 {
280 slotRunNtp(); 282 slotRunNtp();
281 disconnect(ntpTimer, SIGNAL( timeout() ), this, SLOT(slotProbeNtpServer()) ); 283 disconnect(ntpTimer, SIGNAL( timeout() ), this, SLOT(slotProbeNtpServer()) );
282 connect(ntpTimer, SIGNAL( timeout() ), SLOT(slotRunNtp()) ); 284 connect(ntpTimer, SIGNAL( timeout() ), SLOT(slotRunNtp()) );
283 }else{ 285 }else{
284 disconnect(ntpTimer, SIGNAL( timeout() ), this, SLOT(slotRunNtp()) ); 286 disconnect(ntpTimer, SIGNAL( timeout() ), this, SLOT(slotRunNtp()) );
285 connect(ntpTimer, SIGNAL( timeout() ), SLOT(slotProbeNtpServer()) ); 287 connect(ntpTimer, SIGNAL( timeout() ), SLOT(slotProbeNtpServer()) );
288 }
289 }else{
290 preditctTime();
291 ButtonSetTime->setText( tr("Set predicted time: ")+predictedTime.toString() );
292 if (i>0)ntpOutPut(tr("Could not connect to server ")+getNtpServer());
293 connect( ButtonSetTime, SIGNAL(clicked()), SLOT(setPredictTime()) );
294 connect( ntpTimer, SIGNAL( timeout() ), SLOT(slotProbeNtpServer()) );
286 } 295 }
287 }else{
288 preditctTime();
289 ButtonSetTime->setText( tr("Set predicted time: ")+predictedTime.toString() );
290 if (i>0)ntpOutPut(tr("Could not connect to server ")+getNtpServer());
291 connect( ButtonSetTime, SIGNAL(clicked()), SLOT(setPredictTime()) );
292 connect( ntpTimer, SIGNAL( timeout() ), SLOT(slotProbeNtpServer()) );
293 }
294} 296}
@@ -297,3 +299,3 @@ void Ntp::slotProbeNtpServer()
297{ 299{
298 ntpSock->connectToHost( getNtpServer() ,123); 300 ntpSock->connectToHost( getNtpServer() ,123);
299} 301}
@@ -307,3 +309,3 @@ void Ntp::ntpOutPut(QString out)
307{ 309{
308 MultiLineEditntpOutPut->append(out); 310 MultiLineEditntpOutPut->append(out);
309 MultiLineEditntpOutPut->setCursorPosition(MultiLineEditntpOutPut->numLines() + 1,0,FALSE); 311 MultiLineEditntpOutPut->setCursorPosition(MultiLineEditntpOutPut->numLines() + 1,0,FALSE);
@@ -314,5 +316,5 @@ void Ntp::makeChannel()
314 { 316 {
315 channel = new QCopChannel( "QPE/Application/netsystemtime", this ); 317 channel = new QCopChannel( "QPE/Application/netsystemtime", this );
316 connect( channel, SIGNAL(received(const QCString&, const QByteArray&)), 318 connect( channel, SIGNAL(received(const QCString&, const QByteArray&)),
317 this, SLOT(receive(const QCString&, const QByteArray&)) ); 319 this, SLOT(receive(const QCString&, const QByteArray&)) );
318} 320}
@@ -323,13 +325,13 @@ void Ntp::receive(const QCString &msg, const QByteArray &arg)
323{ 325{
324 qDebug("QCop(Ntp) "+msg+" "+QCString(arg)); 326 qDebug("QCop(Ntp) "+msg+" "+QCString(arg));
325 if ( msg == "ntpLookup(QString)" ) 327 if ( msg == "ntpLookup(QString)" )
326 { 328 {
327 slotRunNtp(); 329 slotRunNtp();
328 } 330 }
329 if ( msg == "setPredictedTime(QString)" ) 331 if ( msg == "setPredictedTime(QString)" )
330 { 332 {
331 setPredictTime(); 333 setPredictTime();
332 }else{ 334 }else{
333 qDebug("Ntp::receive: Huh what do ya want"); 335 qDebug("Ntp::receive: Huh what do ya want");
334 } 336 }
335} 337}