-rw-r--r-- | noncore/settings/netsystemtime/ntp.cpp | 228 |
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 | |||
@@ -1,370 +1,372 @@ | |||
1 | #include "ntp.h" | 1 | #include "ntp.h" |
2 | #include <qpushbutton.h> | 2 | #include <qpushbutton.h> |
3 | #include <qregexp.h> | 3 | #include <qregexp.h> |
4 | #include <qtimer.h> | 4 | #include <qtimer.h> |
5 | #include <qtable.h> | 5 | #include <qtable.h> |
6 | #include <qlabel.h> | 6 | #include <qlabel.h> |
7 | #include <qsocket.h> | 7 | #include <qsocket.h> |
8 | #include <qlineedit.h> | 8 | #include <qlineedit.h> |
9 | #include <qspinbox.h> | 9 | #include <qspinbox.h> |
10 | #include <qcheckbox.h> | 10 | #include <qcheckbox.h> |
11 | #include <qtabwidget.h> | 11 | #include <qtabwidget.h> |
12 | #include <qlayout.h> | 12 | #include <qlayout.h> |
13 | #include <qmessagebox.h> | 13 | #include <qmessagebox.h> |
14 | #include <qmultilineedit.h> | 14 | #include <qmultilineedit.h> |
15 | #include <opie/oprocess.h> | 15 | #include <opie/oprocess.h> |
16 | #include <qpe/qpeapplication.h> | 16 | #include <qpe/qpeapplication.h> |
17 | #include <qpe/config.h> | 17 | #include <qpe/config.h> |
18 | #include <qpe/global.h> | 18 | #include <qpe/global.h> |
19 | #include <qpe/timeconversion.h> | 19 | #include <qpe/timeconversion.h> |
20 | #include <qpe/tzselect.h> | 20 | #include <qpe/tzselect.h> |
21 | #include <qpe/timestring.h> | 21 | #include <qpe/timestring.h> |
22 | #include <qpe/qpedialog.h> | 22 | #include <qpe/qpedialog.h> |
23 | #include <qpe/datebookdb.h> | 23 | #include <qpe/datebookdb.h> |
24 | #include <qpe/qcopenvelope_qws.h> | 24 | #include <qpe/qcopenvelope_qws.h> |
25 | #include <sys/time.h> | 25 | #include <sys/time.h> |
26 | #include <time.h> | 26 | #include <time.h> |
27 | #include <stdlib.h> | 27 | #include <stdlib.h> |
28 | 28 | ||
29 | 29 | ||
30 | Ntp::Ntp( QWidget* parent, const char* name, WFlags fl ) | 30 | Ntp::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"); |
35 | int srvCount = ntpSrvs.readNumEntry("count", 0 ); | 35 | int srvCount = ntpSrvs.readNumEntry("count", 0 ); |
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) ); |
48 | 48 | ||
49 | bool advMode = cfg.readBoolEntry("advancedFeatures", false ); | 49 | bool advMode = cfg.readBoolEntry("advancedFeatures", false ); |
50 | showAdvancedFeatures(advMode); | 50 | showAdvancedFeatures(advMode); |
51 | CheckBoxAdvSettings->setChecked( advMode ); | 51 | CheckBoxAdvSettings->setChecked( advMode ); |
52 | connect( CheckBoxAdvSettings, SIGNAL( toggled( bool ) ), | 52 | connect( CheckBoxAdvSettings, SIGNAL( toggled( bool ) ), |
53 | SLOT( showAdvancedFeatures( bool ) ) ); | 53 | SLOT( showAdvancedFeatures( bool ) ) ); |
54 | 54 | ||
55 | makeChannel(); | 55 | makeChannel(); |
56 | 56 | ||
57 | ntpTimer = new QTimer(this); | 57 | ntpTimer = new QTimer(this); |
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 | ||
63 | ntpSock = new QSocket( this ); | 63 | ntpSock = new QSocket( this ); |
64 | connect( ntpSock, SIGNAL( error(int) ), | 64 | connect( ntpSock, SIGNAL( error(int) ), |
65 | SLOT(slotCheckNtp(int)) ); | 65 | SLOT(slotCheckNtp(int)) ); |
66 | slotProbeNtpServer(); | 66 | slotProbeNtpServer(); |
67 | 67 | ||
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())); |
73 | connect(PushButtonPredict, SIGNAL(clicked()), this, SLOT(preditctTime())); | 73 | connect(PushButtonPredict, SIGNAL(clicked()), this, SLOT(preditctTime())); |
74 | connect(PushButtonSetPredTime, SIGNAL(clicked()), this, SLOT(setPredictTime())); | 74 | connect(PushButtonSetPredTime, SIGNAL(clicked()), this, SLOT(setPredictTime())); |
75 | slotCheckNtp(-1); | 75 | slotCheckNtp(-1); |
76 | readLookups(); | 76 | readLookups(); |
77 | } | 77 | } |
78 | 78 | ||
79 | Ntp::~Ntp() | 79 | Ntp::~Ntp() |
80 | { | 80 | { |
81 | delete ntpProcess; | 81 | delete ntpProcess; |
82 | Config ntpSrvs("/etc/ntpservers",Config::File); | 82 | Config ntpSrvs("/etc/ntpservers",Config::File); |
83 | ntpSrvs.setGroup("servers"); | 83 | ntpSrvs.setGroup("servers"); |
84 | int srvCount = ComboNtpSrv->count(); | 84 | int srvCount = ComboNtpSrv->count(); |
85 | ntpSrvs.writeEntry("count", srvCount); | 85 | ntpSrvs.writeEntry("count", srvCount); |
86 | for (int i = 0; i < srvCount; i++){ | 86 | for (int i = 0; i < srvCount; i++){ |
87 | ntpSrvs.setGroup(QString::number(i)); | 87 | ntpSrvs.setGroup(QString::number(i)); |
88 | ntpSrvs.writeEntry( "name", ComboNtpSrv->text(i) ); | 88 | ntpSrvs.writeEntry( "name", ComboNtpSrv->text(i) ); |
89 | } | 89 | } |
90 | Config cfg("ntp",Config::User); | 90 | Config cfg("ntp",Config::User); |
91 | cfg.setGroup("settings"); | 91 | cfg.setGroup("settings"); |
92 | cfg.writeEntry("ntpServer", ComboNtpSrv->currentItem()); | 92 | cfg.writeEntry("ntpServer", ComboNtpSrv->currentItem()); |
93 | cfg.writeEntry( "minLookupDiff", SpinBoxMinLookupDelay->value() ); | 93 | cfg.writeEntry( "minLookupDiff", SpinBoxMinLookupDelay->value() ); |
94 | cfg.writeEntry( "ntpRefreshFreq", SpinBoxNtpDelay->value() ); | 94 | cfg.writeEntry( "ntpRefreshFreq", SpinBoxNtpDelay->value() ); |
95 | cfg.writeEntry( "advancedFeatures", CheckBoxAdvSettings->isChecked() ); | 95 | cfg.writeEntry( "advancedFeatures", CheckBoxAdvSettings->isChecked() ); |
96 | } | 96 | } |
97 | 97 | ||
98 | bool Ntp::ntpDelayElapsed() | 98 | 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 | } |
105 | 107 | ||
106 | QString Ntp::getNtpServer() | 108 | QString Ntp::getNtpServer() |
107 | { | 109 | { |
108 | return ComboNtpSrv->currentText(); | 110 | return ComboNtpSrv->currentText(); |
109 | } | 111 | } |
110 | 112 | ||
111 | void Ntp::slotRunNtp() | 113 | void Ntp::slotRunNtp() |
112 | { | 114 | { |
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 | } |
137 | } | 139 | } |
138 | 140 | ||
139 | void Ntp::getNtpOutput(OProcess *proc, char *buffer, int buflen) | 141 | void Ntp::getNtpOutput(OProcess *proc, char *buffer, int buflen) |
140 | { | 142 | { |
141 | QString lineStr, lineStrOld; | 143 | QString lineStr, lineStrOld; |
142 | lineStr = buffer; | 144 | lineStr = buffer; |
143 | lineStr=lineStr.left(buflen); | 145 | lineStr=lineStr.left(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; |
150 | } | 152 | } |
151 | 153 | ||
152 | void Ntp::ntpFinished(OProcess *p) | 154 | void Ntp::ntpFinished(OProcess *p) |
153 | { | 155 | { |
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 | ||
161 | Global::writeHWClock(); | 163 | Global::writeHWClock(); |
162 | // since time has changed quickly load in the datebookdb | 164 | // since time has changed quickly load in the datebookdb |
163 | // to allow the alarm server to get a better grip on itself | 165 | // to allow the alarm server to get a better grip on itself |
164 | // (example re-trigger alarms for when we travel back in time) | 166 | // (example re-trigger alarms for when we travel back in time) |
165 | DateBookDB db; | 167 | DateBookDB db; |
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"); |
172 | int lastLookup = cfg.readNumEntry("time",0); | 174 | int lastLookup = cfg.readNumEntry("time",0); |
173 | int lookupCount = cfg.readNumEntry("count",0); | 175 | int lookupCount = cfg.readNumEntry("count",0); |
174 | bool lastNtp = cfg.readBoolEntry("lastNtp",false); | 176 | bool lastNtp = cfg.readBoolEntry("lastNtp",false); |
175 | int time = TimeConversion::toUTC( QDateTime::currentDateTime() ); | 177 | int time = TimeConversion::toUTC( QDateTime::currentDateTime() ); |
176 | cfg.writeEntry("time", time); | 178 | cfg.writeEntry("time", time); |
177 | 179 | ||
178 | float timeShift = getTimeShift(); | 180 | float timeShift = getTimeShift(); |
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()); |
182 | TextLabelTimeShift->setText(QString::number(timeShift)+tr(" seconds")); | 184 | TextLabelTimeShift->setText(QString::number(timeShift)+tr(" seconds")); |
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 | } |
196 | 198 | ||
197 | 199 | ||
198 | float Ntp::getTimeShift() | 200 | float Ntp::getTimeShift() |
199 | { | 201 | { |
200 | QString _offset = "offset"; | 202 | QString _offset = "offset"; |
201 | QString _sec = "sec"; | 203 | QString _sec = "sec"; |
202 | QRegExp _reOffset = QRegExp(_offset); | 204 | QRegExp _reOffset = QRegExp(_offset); |
203 | QRegExp _reEndOffset = QRegExp(_sec); | 205 | QRegExp _reEndOffset = QRegExp(_sec); |
204 | int posOffset = _reOffset.match( _ntpOutput ); | 206 | int posOffset = _reOffset.match( _ntpOutput ); |
205 | int posEndOffset = _reEndOffset.match( _ntpOutput, posOffset ); | 207 | int posEndOffset = _reEndOffset.match( _ntpOutput, posOffset ); |
206 | posOffset += _offset.length() + 1; | 208 | posOffset += _offset.length() + 1; |
207 | QString diff = _ntpOutput.mid(posOffset, posEndOffset-posOffset-1); | 209 | QString diff = _ntpOutput.mid(posOffset, posEndOffset-posOffset-1); |
208 | qDebug("%s", _ntpOutput.latin1()); | 210 | qDebug("%s", _ntpOutput.latin1()); |
209 | qDebug("diff = >%s<",diff.latin1()); | 211 | qDebug("diff = >%s<",diff.latin1()); |
210 | return diff.toFloat(); | 212 | return diff.toFloat(); |
211 | } | 213 | } |
212 | 214 | ||
213 | void Ntp::readLookups() | 215 | 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"); |
217 | int lookupCount = cfg.readNumEntry("count",0); | 219 | int lookupCount = cfg.readNumEntry("count",0); |
218 | float last, shift, shiftPerSec; | 220 | float last, shift, shiftPerSec; |
219 | qDebug("lookupCount = %i",lookupCount); | 221 | qDebug("lookupCount = %i",lookupCount); |
220 | TableLookups->setNumCols( 3 ); | 222 | TableLookups->setNumCols( 3 ); |
221 | TableLookups->setNumRows( lookupCount); | 223 | TableLookups->setNumRows( lookupCount); |
222 | TableLookups->horizontalHeader()->setLabel(1,tr("last [h]")); | 224 | TableLookups->horizontalHeader()->setLabel(1,tr("last [h]")); |
223 | TableLookups->horizontalHeader()->setLabel(2,tr("offset [s]")); | 225 | TableLookups->horizontalHeader()->setLabel(2,tr("offset [s]")); |
224 | TableLookups->horizontalHeader()->setLabel(0,tr("shift [s/h]")); | 226 | TableLookups->horizontalHeader()->setLabel(0,tr("shift [s/h]")); |
225 | int cw = TableLookups->width()/4; | 227 | int cw = TableLookups->width()/4; |
226 | qDebug("column width %i",cw); | 228 | qDebug("column width %i",cw); |
227 | cw = 50; | 229 | cw = 50; |
228 | TableLookups->setColumnWidth( 0, cw+30 ); | 230 | TableLookups->setColumnWidth( 0, cw+30 ); |
229 | TableLookups->setColumnWidth( 1, cw ); | 231 | TableLookups->setColumnWidth( 1, cw ); |
230 | TableLookups->setColumnWidth( 2, cw ); | 232 | TableLookups->setColumnWidth( 2, cw ); |
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; |
247 | TextLabelShift->setText(QString::number(_shiftPerSec*60*60)+tr(" s/h")); | 249 | TextLabelShift->setText(QString::number(_shiftPerSec*60*60)+tr(" s/h")); |
248 | } | 250 | } |
249 | 251 | ||
250 | void Ntp::preditctTime() | 252 | 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 ); |
257 | int now = TimeConversion::toUTC( QDateTime::currentDateTime() ); | 259 | int now = TimeConversion::toUTC( QDateTime::currentDateTime() ); |
258 | int corr = int((now - lastTime) * _shiftPerSec); | 260 | int corr = int((now - lastTime) * _shiftPerSec); |
259 | TextLabelEstimatedShift->setText(QString::number(corr)+tr(" seconds")); | 261 | TextLabelEstimatedShift->setText(QString::number(corr)+tr(" seconds")); |
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>"); |
263 | } | 265 | } |
264 | 266 | ||
265 | void Ntp::setPredictTime() | 267 | void Ntp::setPredictTime() |
266 | { | 268 | { |
267 | preditctTime(); | 269 | preditctTime(); |
268 | setTime( predictedTime ); | 270 | setTime( predictedTime ); |
269 | } | 271 | } |
270 | 272 | ||
271 | void Ntp::slotCheckNtp(int i) | 273 | 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 | } |
295 | 297 | ||
296 | void Ntp::slotProbeNtpServer() | 298 | void Ntp::slotProbeNtpServer() |
297 | { | 299 | { |
298 | ntpSock->connectToHost( getNtpServer() ,123); | 300 | ntpSock->connectToHost( getNtpServer() ,123); |
299 | } | 301 | } |
300 | 302 | ||
301 | void Ntp::slotNtpDelayChanged(int delay) | 303 | void Ntp::slotNtpDelayChanged(int delay) |
302 | { | 304 | { |
303 | ntpTimer->changeInterval( delay*1000*60 ); | 305 | ntpTimer->changeInterval( delay*1000*60 ); |
304 | } | 306 | } |
305 | 307 | ||
306 | void Ntp::ntpOutPut(QString out) | 308 | 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); |
310 | } | 312 | } |
311 | 313 | ||
312 | 314 | ||
313 | void Ntp::makeChannel() | 315 | 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 | } |
319 | 321 | ||
320 | 322 | ||
321 | 323 | ||
322 | void Ntp::receive(const QCString &msg, const QByteArray &arg) | 324 | 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 | } |
336 | 338 | ||
337 | void Ntp::setDocument(const QString &fileName) | 339 | void Ntp::setDocument(const QString &fileName) |
338 | { | 340 | { |
339 | 341 | ||
340 | } | 342 | } |
341 | 343 | ||
342 | void Ntp::showAdvancedFeatures(bool advMode) | 344 | void Ntp::showAdvancedFeatures(bool advMode) |
343 | { | 345 | { |
344 | if (advMode) { | 346 | if (advMode) { |
345 | TabWidgetMain->addTab( tabPredict, tr( "Predict" ) ); | 347 | TabWidgetMain->addTab( tabPredict, tr( "Predict" ) ); |
346 | TabWidgetMain->addTab( tabNtp, tr( "NTP" ) ); | 348 | TabWidgetMain->addTab( tabNtp, tr( "NTP" ) ); |
347 | TextLabel1_2_2->show(); | 349 | TextLabel1_2_2->show(); |
348 | TextLabel2_3->show(); | 350 | TextLabel2_3->show(); |
349 | TextLabel3_3_2->show(); | 351 | TextLabel3_3_2->show(); |
350 | TextLabel1_2->show(); | 352 | TextLabel1_2->show(); |
351 | SpinBoxMinLookupDelay->show(); | 353 | SpinBoxMinLookupDelay->show(); |
352 | TextLabel2->show(); | 354 | TextLabel2->show(); |
353 | TextLabel3_3->show(); | 355 | TextLabel3_3->show(); |
354 | SpinBoxNtpDelay->show(); | 356 | SpinBoxNtpDelay->show(); |
355 | Line1->show(); | 357 | Line1->show(); |
356 | }else{ | 358 | }else{ |
357 | TabWidgetMain->removePage( tabPredict ); | 359 | TabWidgetMain->removePage( tabPredict ); |
358 | TabWidgetMain->removePage( tabNtp ); | 360 | TabWidgetMain->removePage( tabNtp ); |
359 | TextLabel1_2_2->hide(); | 361 | TextLabel1_2_2->hide(); |
360 | TextLabel2_3->hide(); | 362 | TextLabel2_3->hide(); |
361 | TextLabel3_3_2->hide(); | 363 | TextLabel3_3_2->hide(); |
362 | TextLabel1_2->hide(); | 364 | TextLabel1_2->hide(); |
363 | SpinBoxMinLookupDelay->hide(); | 365 | SpinBoxMinLookupDelay->hide(); |
364 | TextLabel2->hide(); | 366 | TextLabel2->hide(); |
365 | TextLabel3_3->hide(); | 367 | TextLabel3_3->hide(); |
366 | SpinBoxNtpDelay->hide(); | 368 | SpinBoxNtpDelay->hide(); |
367 | Line1->hide(); | 369 | Line1->hide(); |
368 | }; | 370 | }; |
369 | TabWidgetMain->show(); | 371 | TabWidgetMain->show(); |
370 | } | 372 | } |