summaryrefslogtreecommitdiffabout
path: root/libkdepim/ksyncmanager.cpp
Unidiff
Diffstat (limited to 'libkdepim/ksyncmanager.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libkdepim/ksyncmanager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libkdepim/ksyncmanager.cpp b/libkdepim/ksyncmanager.cpp
index 17e6c75..9857e3e 100644
--- a/libkdepim/ksyncmanager.cpp
+++ b/libkdepim/ksyncmanager.cpp
@@ -1,1428 +1,1428 @@
1/* 1/*
2 This file is part of KDE-Pim/Pi. 2 This file is part of KDE-Pim/Pi.
3 Copyright (c) 2004 Ulf Schenk 3 Copyright (c) 2004 Ulf Schenk
4 4
5 This library is free software; you can redistribute it and/or 5 This library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public 6 modify it under the terms of the GNU Library General Public
7 License as published by the Free Software Foundation; either 7 License as published by the Free Software Foundation; either
8 version 2 of the License, or (at your option) any later version. 8 version 2 of the License, or (at your option) any later version.
9 9
10 This library is distributed in the hope that it will be useful, 10 This library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of 11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details. 13 Library General Public License for more details.
14 14
15 You should have received a copy of the GNU Library General Public License 15 You should have received a copy of the GNU Library General Public License
16 along with this library; see the file COPYING.LIB. If not, write to 16 along with this library; see the file COPYING.LIB. If not, write to
17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. 18 Boston, MA 02111-1307, USA.
19*/ 19*/
20 20
21// $Id$ 21// $Id$
22 22
23#include "ksyncmanager.h" 23#include "ksyncmanager.h"
24 24
25#include <stdlib.h> 25#include <stdlib.h>
26 26
27#ifndef _WIN32_ 27#ifndef _WIN32_
28#include <unistd.h> 28#include <unistd.h>
29#endif 29#endif
30 30
31 31
32#include "ksyncprofile.h" 32#include "ksyncprofile.h"
33#include "ksyncprefsdialog.h" 33#include "ksyncprefsdialog.h"
34#include "kpimprefs.h" 34#include "kpimprefs.h"
35#include <kmessagebox.h> 35#include <kmessagebox.h>
36 36
37#include <qdir.h> 37#include <qdir.h>
38#include <qprogressbar.h> 38#include <qprogressbar.h>
39#include <qpopupmenu.h> 39#include <qpopupmenu.h>
40#include <qpushbutton.h> 40#include <qpushbutton.h>
41#include <qradiobutton.h> 41#include <qradiobutton.h>
42#include <qbuttongroup.h> 42#include <qbuttongroup.h>
43#include <qtimer.h> 43#include <qtimer.h>
44#include <qmessagebox.h> 44#include <qmessagebox.h>
45#include <qapplication.h> 45#include <qapplication.h>
46#include <qlineedit.h> 46#include <qlineedit.h>
47#include <qdialog.h> 47#include <qdialog.h>
48#include <qlayout.h> 48#include <qlayout.h>
49#include <qtextcodec.h> 49#include <qtextcodec.h>
50#include <qlabel.h> 50#include <qlabel.h>
51#include <qcheckbox.h> 51#include <qcheckbox.h>
52 52
53#include <klocale.h> 53#include <klocale.h>
54#include <kglobal.h> 54#include <kglobal.h>
55#include <kconfig.h> 55#include <kconfig.h>
56#include <kfiledialog.h> 56#include <kfiledialog.h>
57 57
58QDateTime KSyncManager::mRequestedSyncEvent; 58QDateTime KSyncManager::mRequestedSyncEvent;
59 59
60 60
61KSyncManager::KSyncManager(QWidget* parent, KSyncInterface* implementation, TargetApp ta, KPimPrefs* prefs, QPopupMenu* syncmenu) 61KSyncManager::KSyncManager(QWidget* parent, KSyncInterface* implementation, TargetApp ta, KPimPrefs* prefs, QPopupMenu* syncmenu)
62 : QObject(), mParent(parent), mImplementation(implementation), mTargetApp(ta), mPrefs(prefs ),mSyncMenu(syncmenu) 62 : QObject(), mParent(parent), mImplementation(implementation), mTargetApp(ta), mPrefs(prefs ),mSyncMenu(syncmenu)
63{ 63{
64 mServerSocket = 0; 64 mServerSocket = 0;
65 bar = new QProgressBar ( 1, 0 ); 65 bar = new QProgressBar ( 1, 0 );
66 bar->setCaption (""); 66 bar->setCaption ("");
67 67
68 int w = 300; 68 int w = 300;
69 if ( QApplication::desktop()->width() < 320 ) 69 if ( QApplication::desktop()->width() < 320 )
70 w = 220; 70 w = 220;
71 int h = bar->sizeHint().height() ; 71 int h = bar->sizeHint().height() ;
72 int dw = QApplication::desktop()->width(); 72 int dw = QApplication::desktop()->width();
73 int dh = QApplication::desktop()->height(); 73 int dh = QApplication::desktop()->height();
74 bar->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h ); 74 bar->setGeometry( (dw-w)/2, (dh - h )/2 ,w,h );
75 if ( mPrefs->mPassiveSyncAutoStart ) 75 if ( mPrefs->mPassiveSyncAutoStart )
76 enableQuick( false ); 76 enableQuick( false );
77 77
78} 78}
79 79
80KSyncManager::~KSyncManager() 80KSyncManager::~KSyncManager()
81{ 81{
82 delete bar; 82 delete bar;
83} 83}
84 84
85 85
86void KSyncManager::fillSyncMenu() 86void KSyncManager::fillSyncMenu()
87{ 87{
88 if ( mSyncMenu->count() ) 88 if ( mSyncMenu->count() )
89 mSyncMenu->clear(); 89 mSyncMenu->clear();
90 90
91 mSyncMenu->insertItem( i18n("Configure..."), 0 ); 91 mSyncMenu->insertItem( i18n("Configure..."), 0 );
92 mSyncMenu->insertSeparator(); 92 mSyncMenu->insertSeparator();
93 QPopupMenu *clearMenu = new QPopupMenu ( mSyncMenu ); 93 QPopupMenu *clearMenu = new QPopupMenu ( mSyncMenu );
94 mSyncMenu->insertItem( i18n("Remove sync info"),clearMenu, 5000 ); 94 mSyncMenu->insertItem( i18n("Remove sync info"),clearMenu, 5000 );
95 clearMenu->insertItem( i18n("For all profiles"), 1 ); 95 clearMenu->insertItem( i18n("For all profiles"), 1 );
96 clearMenu->insertSeparator(); 96 clearMenu->insertSeparator();
97 connect ( clearMenu, SIGNAL( activated ( int ) ), this, SLOT (slotClearMenu( int ) ) ); 97 connect ( clearMenu, SIGNAL( activated ( int ) ), this, SLOT (slotClearMenu( int ) ) );
98 mSyncMenu->insertSeparator(); 98 mSyncMenu->insertSeparator();
99 if ( mServerSocket == 0 ) { 99 if ( mServerSocket == 0 ) {
100 mSyncMenu->insertItem( i18n("Enable Pi-Sync"), 2 ); 100 mSyncMenu->insertItem( i18n("Enable Pi-Sync"), 2 );
101 } else { 101 } else {
102 mSyncMenu->insertItem( i18n("Disable Pi-Sync"), 3 ); 102 mSyncMenu->insertItem( i18n("Disable Pi-Sync"), 3 );
103 } 103 }
104 mSyncMenu->insertSeparator(); 104 mSyncMenu->insertSeparator();
105 mSyncMenu->insertItem( i18n("Multiple sync"), 1 ); 105 mSyncMenu->insertItem( i18n("Multiple sync"), 1 );
106 mSyncMenu->insertSeparator(); 106 mSyncMenu->insertSeparator();
107 KConfig config ( locateLocal( "config","ksyncprofilesrc" ) ); 107 KConfig config ( locateLocal( "config","ksyncprofilesrc" ) );
108 config.setGroup("General"); 108 config.setGroup("General");
109 QStringList prof = config.readListEntry("SyncProfileNames"); 109 QStringList prof = config.readListEntry("SyncProfileNames");
110 mLocalMachineName = config.readEntry("LocalMachineName","undefined"); 110 mLocalMachineName = config.readEntry("LocalMachineName","undefined");
111 if ( prof.count() < 2 ) { 111 if ( prof.count() < 2 ) {
112 prof.clear(); 112 prof.clear();
113 QString externalName; 113 QString externalName;
114#ifdef DESKTOP_VERSION 114#ifdef DESKTOP_VERSION
115#ifdef _WIN32_ 115#ifdef _WIN32_
116 externalName = "OutLook(not_implemented)"; 116 externalName = "OutLook(not_implemented)";
117#else 117#else
118 externalName = "KDE_Desktop"; 118 externalName = "KDE_Desktop";
119#endif 119#endif
120#else 120#else
121 externalName = "Sharp_DTM"; 121 externalName = "Sharp_DTM";
122#endif 122#endif
123 prof << externalName; 123 prof << externalName;
124 prof << i18n("Local_file"); 124 prof << i18n("Local_file");
125 prof << i18n("Last_file"); 125 prof << i18n("Last_file");
126 KSyncProfile* temp = new KSyncProfile (); 126 KSyncProfile* temp = new KSyncProfile ();
127 temp->setName( prof[0] ); 127 temp->setName( prof[0] );
128 temp->writeConfig(&config); 128 temp->writeConfig(&config);
129 temp->setName( prof[1] ); 129 temp->setName( prof[1] );
130 temp->writeConfig(&config); 130 temp->writeConfig(&config);
131 temp->setName( prof[2] ); 131 temp->setName( prof[2] );
132 temp->writeConfig(&config); 132 temp->writeConfig(&config);
133 config.setGroup("General"); 133 config.setGroup("General");
134 config.writeEntry("SyncProfileNames",prof); 134 config.writeEntry("SyncProfileNames",prof);
135 config.writeEntry("ExternSyncProfiles",externalName); 135 config.writeEntry("ExternSyncProfiles",externalName);
136 config.sync(); 136 config.sync();
137 delete temp; 137 delete temp;
138 } 138 }
139 mExternSyncProfiles = config.readListEntry("ExternSyncProfiles"); 139 mExternSyncProfiles = config.readListEntry("ExternSyncProfiles");
140 mSyncProfileNames = prof; 140 mSyncProfileNames = prof;
141 unsigned int i; 141 unsigned int i;
142 for ( i = 0; i < prof.count(); ++i ) { 142 for ( i = 0; i < prof.count(); ++i ) {
143 mSyncMenu->insertItem( prof[i], 1000+i ); 143 mSyncMenu->insertItem( prof[i], 1000+i );
144 clearMenu->insertItem( prof[i], 1000+i ); 144 clearMenu->insertItem( prof[i], 1000+i );
145 if ( i == 2 ) 145 if ( i == 2 )
146 mSyncMenu->insertSeparator(); 146 mSyncMenu->insertSeparator();
147 } 147 }
148 QDir app_dir; 148 QDir app_dir;
149 //US do not display SharpDTM if app is pwmpi, or no sharpfiles available 149 //US do not display SharpDTM if app is pwmpi, or no sharpfiles available
150 if ( mTargetApp == PWMPI) { 150 if ( mTargetApp == PWMPI) {
151 mSyncMenu->removeItem( 1000 ); 151 mSyncMenu->removeItem( 1000 );
152 clearMenu->removeItem( 1000 ); 152 clearMenu->removeItem( 1000 );
153 } 153 }
154#ifndef DESKTOP_VERSION 154#ifndef DESKTOP_VERSION
155 else if (!app_dir.exists(QDir::homeDirPath()+"/Applications/dtm" ) ) { 155 else if (!app_dir.exists(QDir::homeDirPath()+"/Applications/dtm" ) ) {
156 mSyncMenu->removeItem( 1000 ); 156 mSyncMenu->removeItem( 1000 );
157 clearMenu->removeItem( 1000 ); 157 clearMenu->removeItem( 1000 );
158 } 158 }
159#endif 159#endif
160 mSyncMenu->removeItem( 1002 ); 160 mSyncMenu->removeItem( 1002 );
161 clearMenu->removeItem( 1002 ); 161 clearMenu->removeItem( 1002 );
162} 162}
163void KSyncManager::slotClearMenu( int action ) 163void KSyncManager::slotClearMenu( int action )
164{ 164{
165 QString syncDevice; 165 QString syncDevice;
166 if ( action > 999 ) { 166 if ( action > 999 ) {
167 syncDevice = mSyncProfileNames[action - 1000] ; 167 syncDevice = mSyncProfileNames[action - 1000] ;
168 } 168 }
169 169
170 170
171 171
172 int result = 0; 172 int result = 0;
173 QString sd; 173 QString sd;
174 if ( syncDevice.isEmpty() ) 174 if ( syncDevice.isEmpty() )
175 sd = i18n("Do you want to\nclear all sync info\nof all profiles?"); 175 sd = i18n("Do you want to\nclear all sync info\nof all profiles?");
176 else 176 else
177 sd = i18n("Do you want to\nclear the sync\ninfo of profile\n%1?\n"). arg( syncDevice ); 177 sd = i18n("Do you want to\nclear the sync\ninfo of profile\n%1?\n"). arg( syncDevice );
178 178
179 result = QMessageBox::warning( mParent, i18n("Warning!"),sd,i18n("OK"), i18n("Cancel"), 0, 179 result = QMessageBox::warning( mParent, i18n("Warning!"),sd,i18n("OK"), i18n("Cancel"), 0,
180 0, 1 ); 180 0, 1 );
181 if ( result ) 181 if ( result )
182 return; 182 return;
183 mImplementation->removeSyncInfo( syncDevice ); 183 mImplementation->removeSyncInfo( syncDevice );
184} 184}
185void KSyncManager::slotSyncMenu( int action ) 185void KSyncManager::slotSyncMenu( int action )
186{ 186{
187 qDebug("syncaction %d ", action); 187 qDebug("syncaction %d ", action);
188 if ( action == 5000 ) 188 if ( action == 5000 )
189 return; 189 return;
190 mSyncWithDesktop = false; 190 mSyncWithDesktop = false;
191 if ( action == 0 ) { 191 if ( action == 0 ) {
192 192
193 // seems to be a Qt2 event handling bug 193 // seems to be a Qt2 event handling bug
194 // syncmenu.clear causes a segfault at first time 194 // syncmenu.clear causes a segfault at first time
195 // when we call it after the main event loop, it is ok 195 // when we call it after the main event loop, it is ok
196 // same behaviour when calling OM/Pi via QCOP for the first time 196 // same behaviour when calling OM/Pi via QCOP for the first time
197 QTimer::singleShot ( 1, this, SLOT ( confSync() ) ); 197 QTimer::singleShot ( 1, this, SLOT ( confSync() ) );
198 //confSync(); 198 //confSync();
199 199
200 return; 200 return;
201 } 201 }
202 if ( action == 1 ) { 202 if ( action == 1 ) {
203 multiSync( true ); 203 multiSync( true );
204 return; 204 return;
205 } 205 }
206 if ( action == 2 ) { 206 if ( action == 2 ) {
207 enableQuick(); 207 enableQuick();
208 QTimer::singleShot ( 1, this, SLOT ( fillSyncMenu() ) ); 208 QTimer::singleShot ( 1, this, SLOT ( fillSyncMenu() ) );
209 return; 209 return;
210 } 210 }
211 if ( action == 3 ) { 211 if ( action == 3 ) {
212 delete mServerSocket; 212 delete mServerSocket;
213 mServerSocket = 0; 213 mServerSocket = 0;
214 QTimer::singleShot ( 1, this, SLOT ( fillSyncMenu() ) ); 214 QTimer::singleShot ( 1, this, SLOT ( fillSyncMenu() ) );
215 return; 215 return;
216 } 216 }
217 217
218 if (blockSave()) 218 if (blockSave())
219 return; 219 return;
220 220
221 setBlockSave(true); 221 setBlockSave(true);
222 bool silent = false; 222 bool silent = false;
223 if ( action == 999 ) { 223 if ( action == 999 ) {
224 //special mode for silent syncing 224 //special mode for silent syncing
225 action = 1000; 225 action = 1000;
226 silent = true; 226 silent = true;
227 } 227 }
228 228
229 mCurrentSyncProfile = action - 1000 ; 229 mCurrentSyncProfile = action - 1000 ;
230 mCurrentSyncDevice = mSyncProfileNames[mCurrentSyncProfile] ; 230 mCurrentSyncDevice = mSyncProfileNames[mCurrentSyncProfile] ;
231 mCurrentSyncName = mLocalMachineName ; 231 mCurrentSyncName = mLocalMachineName ;
232 KConfig config ( locateLocal( "config","ksyncprofilesrc" ) ); 232 KConfig config ( locateLocal( "config","ksyncprofilesrc" ) );
233 KSyncProfile* temp = new KSyncProfile (); 233 KSyncProfile* temp = new KSyncProfile ();
234 temp->setName(mSyncProfileNames[mCurrentSyncProfile]); 234 temp->setName(mSyncProfileNames[mCurrentSyncProfile]);
235 temp->readConfig(&config); 235 temp->readConfig(&config);
236 if (silent) { 236 if (silent) {
237 mAskForPreferences = false; 237 mAskForPreferences = false;
238 mShowSyncSummary = false; 238 mShowSyncSummary = false;
239 mWriteBackFile = true; 239 mWriteBackFile = true;
240 mSyncAlgoPrefs = 2;// take newest 240 mSyncAlgoPrefs = 2;// take newest
241 } 241 }
242 else { 242 else {
243 mAskForPreferences = temp->getAskForPreferences(); 243 mAskForPreferences = temp->getAskForPreferences();
244 mShowSyncSummary = temp->getShowSummaryAfterSync(); 244 mShowSyncSummary = temp->getShowSummaryAfterSync();
245 mWriteBackFile = temp->getWriteBackFile(); 245 mWriteBackFile = temp->getWriteBackFile();
246 mSyncAlgoPrefs = temp->getSyncPrefs(); 246 mSyncAlgoPrefs = temp->getSyncPrefs();
247 } 247 }
248 mWriteBackExistingOnly = temp->getWriteBackExisting(); 248 mWriteBackExistingOnly = temp->getWriteBackExisting();
249 mIsKapiFile = temp->getIsKapiFile(); 249 mIsKapiFile = temp->getIsKapiFile();
250 mWriteBackInFuture = 0; 250 mWriteBackInFuture = 0;
251 if ( temp->getWriteBackFuture() ) 251 if ( temp->getWriteBackFuture() )
252 mWriteBackInFuture = temp->getWriteBackFutureWeeks( ); 252 mWriteBackInFuture = temp->getWriteBackFutureWeeks( );
253 253
254 if ( action == 1000 ) { 254 if ( action == 1000 ) {
255 mIsKapiFile = false; 255 mIsKapiFile = false;
256#ifdef DESKTOP_VERSION 256#ifdef DESKTOP_VERSION
257 syncKDE(); 257 syncKDE();
258#else 258#else
259 syncSharp(); 259 syncSharp();
260#endif 260#endif
261 261
262 } else if ( action == 1001 ) { 262 } else if ( action == 1001 ) {
263 syncLocalFile(); 263 syncLocalFile();
264 264
265 } else if ( action == 1002 ) { 265 } else if ( action == 1002 ) {
266 mWriteBackFile = false; 266 mWriteBackFile = false;
267 mAskForPreferences = false; 267 mAskForPreferences = false;
268 mShowSyncSummary = false; 268 mShowSyncSummary = false;
269 mSyncAlgoPrefs = 3; 269 mSyncAlgoPrefs = 3;
270 quickSyncLocalFile(); 270 quickSyncLocalFile();
271 271
272 } else if ( action >= 1003 ) { 272 } else if ( action >= 1003 ) {
273 if ( temp->getIsLocalFileSync() ) { 273 if ( temp->getIsLocalFileSync() ) {
274 switch(mTargetApp) 274 switch(mTargetApp)
275 { 275 {
276 case (KAPI): 276 case (KAPI):
277 if ( syncWithFile( temp->getRemoteFileNameAB( ), false ) ) 277 if ( syncWithFile( temp->getRemoteFileNameAB( ), false ) )
278 mPrefs->mLastSyncedLocalFile = temp->getRemoteFileNameAB(); 278 mPrefs->mLastSyncedLocalFile = temp->getRemoteFileNameAB();
279 break; 279 break;
280 case (KOPI): 280 case (KOPI):
281 if ( syncWithFile( temp->getRemoteFileName( ), false ) ) 281 if ( syncWithFile( temp->getRemoteFileName( ), false ) )
282 mPrefs->mLastSyncedLocalFile = temp->getRemoteFileName(); 282 mPrefs->mLastSyncedLocalFile = temp->getRemoteFileName();
283 break; 283 break;
284 case (PWMPI): 284 case (PWMPI):
285 if ( syncWithFile( temp->getRemoteFileNamePWM( ), false ) ) 285 if ( syncWithFile( temp->getRemoteFileNamePWM( ), false ) )
286 mPrefs->mLastSyncedLocalFile = temp->getRemoteFileNamePWM(); 286 mPrefs->mLastSyncedLocalFile = temp->getRemoteFileNamePWM();
287 break; 287 break;
288 default: 288 default:
289 qDebug("KSyncManager::slotSyncMenu: invalid apptype selected"); 289 qDebug("KSyncManager::slotSyncMenu: invalid apptype selected");
290 break; 290 break;
291 291
292 } 292 }
293 } else { 293 } else {
294 if ( temp->getIsPhoneSync() ) { 294 if ( temp->getIsPhoneSync() ) {
295 mPhoneDevice = temp->getPhoneDevice( ) ; 295 mPhoneDevice = temp->getPhoneDevice( ) ;
296 mPhoneConnection = temp->getPhoneConnection( ); 296 mPhoneConnection = temp->getPhoneConnection( );
297 mPhoneModel = temp->getPhoneModel( ); 297 mPhoneModel = temp->getPhoneModel( );
298 syncPhone(); 298 syncPhone();
299 } else if ( temp->getIsPiSync() ) { 299 } else if ( temp->getIsPiSync() ) {
300 if ( mTargetApp == KAPI ) { 300 if ( mTargetApp == KAPI ) {
301 mPassWordPiSync = temp->getRemotePwAB(); 301 mPassWordPiSync = temp->getRemotePwAB();
302 mActiveSyncPort = temp->getRemotePortAB(); 302 mActiveSyncPort = temp->getRemotePortAB();
303 mActiveSyncIP = temp->getRemoteIPAB(); 303 mActiveSyncIP = temp->getRemoteIPAB();
304 } else if ( mTargetApp == KOPI ) { 304 } else if ( mTargetApp == KOPI ) {
305 mPassWordPiSync = temp->getRemotePw(); 305 mPassWordPiSync = temp->getRemotePw();
306 mActiveSyncPort = temp->getRemotePort(); 306 mActiveSyncPort = temp->getRemotePort();
307 mActiveSyncIP = temp->getRemoteIP(); 307 mActiveSyncIP = temp->getRemoteIP();
308 } else { 308 } else {
309 mPassWordPiSync = temp->getRemotePwPWM(); 309 mPassWordPiSync = temp->getRemotePwPWM();
310 mActiveSyncPort = temp->getRemotePortPWM(); 310 mActiveSyncPort = temp->getRemotePortPWM();
311 mActiveSyncIP = temp->getRemoteIPPWM(); 311 mActiveSyncIP = temp->getRemoteIPPWM();
312 } 312 }
313 syncPi(); 313 syncPi();
314 while ( !mPisyncFinished ) { 314 while ( !mPisyncFinished ) {
315 //qDebug("waiting "); 315 //qDebug("waiting ");
316 qApp->processEvents(); 316 qApp->processEvents();
317 } 317 }
318 } else 318 } else
319 syncRemote( temp ); 319 syncRemote( temp );
320 320
321 } 321 }
322 } 322 }
323 delete temp; 323 delete temp;
324 setBlockSave(false); 324 setBlockSave(false);
325} 325}
326 326
327void KSyncManager::enableQuick( bool ask ) 327void KSyncManager::enableQuick( bool ask )
328{ 328{
329 bool autoStart; 329 bool autoStart;
330 bool changed = false; 330 bool changed = false;
331 if ( ask ) { 331 if ( ask ) {
332 QDialog dia ( 0, "input-dialog", true ); 332 QDialog dia ( 0, "input-dialog", true );
333 QLineEdit lab ( &dia ); 333 QLineEdit lab ( &dia );
334 QVBoxLayout lay( &dia ); 334 QVBoxLayout lay( &dia );
335 lab.setText( mPrefs->mPassiveSyncPort ); 335 lab.setText( mPrefs->mPassiveSyncPort );
336 lay.setMargin(7); 336 lay.setMargin(7);
337 lay.setSpacing(7); 337 lay.setSpacing(7);
338 int po = 9197+mTargetApp; 338 int po = 9197+mTargetApp;
339 QLabel label ( i18n("Port number (Default: %1)").arg(po), &dia ); 339 QLabel label ( i18n("Port number (Default: %1)").arg(po), &dia );
340 lay.addWidget( &label); 340 lay.addWidget( &label);
341 lay.addWidget( &lab); 341 lay.addWidget( &lab);
342 342
343 QLineEdit lepw ( &dia ); 343 QLineEdit lepw ( &dia );
344 lepw.setText( mPrefs->mPassiveSyncPw ); 344 lepw.setText( mPrefs->mPassiveSyncPw );
345 QLabel label2 ( i18n("Password to enable\naccess from remote:"), &dia ); 345 QLabel label2 ( i18n("Password to enable\naccess from remote:"), &dia );
346 lay.addWidget( &label2); 346 lay.addWidget( &label2);
347 lay.addWidget( &lepw); 347 lay.addWidget( &lepw);
348 QCheckBox autostart(i18n("Automatically start\nat application startup"), &dia ); 348 QCheckBox autostart(i18n("Automatically start\nat application startup"), &dia );
349 lay.addWidget( &autostart); 349 lay.addWidget( &autostart);
350 autostart.setChecked( mPrefs->mPassiveSyncAutoStart ); 350 autostart.setChecked( mPrefs->mPassiveSyncAutoStart );
351#ifdef DESKTOP_VERSION 351#ifdef DESKTOP_VERSION
352#ifdef _WIN32_ 352#ifdef _WIN32_
353 QCheckBox syncdesktop( i18n("Automatically sync with Outlook\nwhen receiving sync request"),&dia ); 353 QCheckBox syncdesktop( i18n("Automatically sync with Outlook\nwhen receiving sync request"),&dia );
354#else 354#else
355 QCheckBox syncdesktop( i18n("Automatically sync with KDE-Desktop\nwhen receiving sync request"),&dia ); 355 QCheckBox syncdesktop( i18n("Automatically sync with KDE-Desktop\nwhen receiving sync request"),&dia );
356#endif 356#endif
357 lay.addWidget( &syncdesktop); 357 lay.addWidget( &syncdesktop);
358#else 358#else
359 mPrefs->mPassiveSyncWithDesktop = false; 359 mPrefs->mPassiveSyncWithDesktop = false;
360 QCheckBox syncdesktop( i18n("Automatically sync\nwith KDE-Desktop"),&dia ); 360 QCheckBox syncdesktop( i18n("Automatically sync\nwith KDE-Desktop"),&dia );
361 syncdesktop.hide(); 361 syncdesktop.hide();
362#endif 362#endif
363 syncdesktop.setChecked( mPrefs->mPassiveSyncWithDesktop ); 363 syncdesktop.setChecked( mPrefs->mPassiveSyncWithDesktop );
364 364
365 dia.setFixedSize( 230,120 ); 365 dia.setFixedSize( 230,120 );
366 dia.setCaption( i18n("Enter port for Pi-Sync") ); 366 dia.setCaption( i18n("Enter port for Pi-Sync") );
367 QPushButton pb ( "OK", &dia); 367 QPushButton pb ( "OK", &dia);
368 lay.addWidget( &pb ); 368 lay.addWidget( &pb );
369 connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); 369 connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) );
370 dia.show(); 370 dia.show();
371 if ( ! dia.exec() ) 371 if ( ! dia.exec() )
372 return; 372 return;
373 dia.hide(); 373 dia.hide();
374 qApp->processEvents(); 374 qApp->processEvents();
375 if ( mPrefs->mPassiveSyncPw != lepw.text() ) { 375 if ( mPrefs->mPassiveSyncPw != lepw.text() ) {
376 changed = true; 376 changed = true;
377 mPrefs->mPassiveSyncPw = lepw.text(); 377 mPrefs->mPassiveSyncPw = lepw.text();
378 } 378 }
379 if ( mPrefs->mPassiveSyncPort != lab.text() ) { 379 if ( mPrefs->mPassiveSyncPort != lab.text() ) {
380 mPrefs->mPassiveSyncPort = lab.text(); 380 mPrefs->mPassiveSyncPort = lab.text();
381 changed = true; 381 changed = true;
382 } 382 }
383 autoStart = autostart.isChecked(); 383 autoStart = autostart.isChecked();
384 if (mPrefs->mPassiveSyncWithDesktop != syncdesktop.isChecked() ) { 384 if (mPrefs->mPassiveSyncWithDesktop != syncdesktop.isChecked() ) {
385 changed = true; 385 changed = true;
386 mPrefs->mPassiveSyncWithDesktop = syncdesktop.isChecked(); 386 mPrefs->mPassiveSyncWithDesktop = syncdesktop.isChecked();
387 } 387 }
388 } 388 }
389 else 389 else
390 autoStart = mPrefs->mPassiveSyncAutoStart; 390 autoStart = mPrefs->mPassiveSyncAutoStart;
391 if ( autoStart != mPrefs->mPassiveSyncAutoStart ) 391 if ( autoStart != mPrefs->mPassiveSyncAutoStart )
392 changed = true; 392 changed = true;
393 bool ok; 393 bool ok;
394 mPrefs->mPassiveSyncAutoStart = false; 394 mPrefs->mPassiveSyncAutoStart = false;
395 Q_UINT16 port = mPrefs->mPassiveSyncPort.toUInt(&ok); 395 Q_UINT16 port = mPrefs->mPassiveSyncPort.toUInt(&ok);
396 if ( ! ok ) { 396 if ( ! ok ) {
397 KMessageBox::information( 0, i18n("No valid port")); 397 KMessageBox::information( 0, i18n("No valid port"));
398 return; 398 return;
399 } 399 }
400 //qDebug("port %d ", port); 400 //qDebug("port %d ", port);
401 mServerSocket = new KServerSocket ( mPrefs->mPassiveSyncPw, port ,1 ); 401 mServerSocket = new KServerSocket ( mPrefs->mPassiveSyncPw, port ,1 );
402 mServerSocket->setFileName( defaultFileName() ); 402 mServerSocket->setFileName( defaultFileName() );
403 //qDebug("connected "); 403 //qDebug("connected ");
404 if ( !mServerSocket->ok() ) { 404 if ( !mServerSocket->ok() ) {
405 KMessageBox::information( 0, i18n("Failed to bind or\nlisten to the port!")); 405 KMessageBox::information( 0, i18n("Failed to bind or\nlisten to the port!"));
406 delete mServerSocket; 406 delete mServerSocket;
407 mServerSocket = 0; 407 mServerSocket = 0;
408 return; 408 return;
409 } 409 }
410 mPrefs->mPassiveSyncAutoStart = autoStart; 410 mPrefs->mPassiveSyncAutoStart = autoStart;
411 if ( changed ) { 411 if ( changed ) {
412 mPrefs->writeConfig(); 412 mPrefs->writeConfig();
413 } 413 }
414 connect( mServerSocket, SIGNAL ( request_file() ),this, SIGNAL ( request_file() ) ); 414 connect( mServerSocket, SIGNAL ( request_file() ),this, SIGNAL ( request_file() ) );
415 connect( mServerSocket, SIGNAL ( file_received( bool ) ), this, SIGNAL ( getFile( bool ) ) ); 415 connect( mServerSocket, SIGNAL ( file_received( bool ) ), this, SIGNAL ( getFile( bool ) ) );
416} 416}
417 417
418void KSyncManager::syncLocalFile() 418void KSyncManager::syncLocalFile()
419{ 419{
420 420
421 QString fn =mPrefs->mLastSyncedLocalFile; 421 QString fn =mPrefs->mLastSyncedLocalFile;
422 QString ext; 422 QString ext;
423 423
424 switch(mTargetApp) 424 switch(mTargetApp)
425 { 425 {
426 case (KAPI): 426 case (KAPI):
427 ext = "(*.vcf)"; 427 ext = "(*.vcf)";
428 break; 428 break;
429 case (KOPI): 429 case (KOPI):
430 ext = "(*.ics/*.vcs)"; 430 ext = "(*.ics/*.vcs)";
431 break; 431 break;
432 case (PWMPI): 432 case (PWMPI):
433 ext = "(*.pwm)"; 433 ext = "(*.pwm)";
434 break; 434 break;
435 default: 435 default:
436 qDebug("KSyncManager::syncLocalFile: invalid apptype selected"); 436 qDebug("KSyncManager::syncLocalFile: invalid apptype selected");
437 break; 437 break;
438 438
439 } 439 }
440 440
441 fn =KFileDialog:: getOpenFileName( fn, i18n("Sync filename"+ext), mParent ); 441 fn =KFileDialog:: getOpenFileName( fn, i18n("Sync filename"+ext), mParent );
442 if ( fn == "" ) 442 if ( fn == "" )
443 return; 443 return;
444 if ( syncWithFile( fn, false ) ) { 444 if ( syncWithFile( fn, false ) ) {
445 qDebug("syncLocalFile() successful "); 445 qDebug("syncLocalFile() successful ");
446 } 446 }
447 447
448} 448}
449 449
450bool KSyncManager::syncWithFile( QString fn , bool quick ) 450bool KSyncManager::syncWithFile( QString fn , bool quick )
451{ 451{
452 bool ret = false; 452 bool ret = false;
453 QFileInfo info; 453 QFileInfo info;
454 info.setFile( fn ); 454 info.setFile( fn );
455 QString mess; 455 QString mess;
456 bool loadbup = true; 456 bool loadbup = true;
457 if ( !info. exists() ) { 457 if ( !info. exists() ) {
458 mess = i18n( "Sync file \n...%1\ndoes not exist!\nNothing synced!\n").arg(fn.right( 30) ); 458 mess = i18n( "Sync file \n...%1\ndoes not exist!\nNothing synced!\n").arg(fn.right( 30) );
459 int result = QMessageBox::warning( mParent, i18n("Warning!"), 459 int result = QMessageBox::warning( mParent, i18n("Warning!"),
460 mess ); 460 mess );
461 return ret; 461 return ret;
462 } 462 }
463 int result = 0; 463 int result = 0;
464 if ( !quick ) { 464 if ( !quick ) {
465 mess = i18n("Sync with file \n...%1\nfrom:\n%2\n").arg(fn.right( 25)).arg(KGlobal::locale()->formatDateTime(info.lastModified (), true, false )); 465 mess = i18n("Sync with file \n...%1\nfrom:\n%2\n").arg(fn.right( 25)).arg(KGlobal::locale()->formatDateTime(info.lastModified (), true, false ));
466 result = QMessageBox::warning( mParent, i18n("Warning!"), 466 result = QMessageBox::warning( mParent, i18n("Warning!"),
467 mess, 467 mess,
468 i18n("Sync"), i18n("Cancel"), 0, 468 i18n("Sync"), i18n("Cancel"), 0,
469 0, 1 ); 469 0, 1 );
470 if ( result ) 470 if ( result )
471 return false; 471 return false;
472 } 472 }
473 if ( mAskForPreferences ) 473 if ( mAskForPreferences )
474 if ( !edit_sync_options()) { 474 if ( !edit_sync_options()) {
475 mParent->topLevelWidget()->setCaption( i18n("Syncing aborted. Nothing synced.") ); 475 mParent->topLevelWidget()->setCaption( i18n("Syncing aborted. Nothing synced.") );
476 return false; 476 return false;
477 } 477 }
478 if ( result == 0 ) { 478 if ( result == 0 ) {
479 //qDebug("Now sycing ... "); 479 //qDebug("Now sycing ... ");
480 if ( ret = mImplementation->sync( this, fn, mSyncAlgoPrefs ) ) 480 if ( ret = mImplementation->sync( this, fn, mSyncAlgoPrefs ) )
481 mParent->topLevelWidget()->setCaption( i18n("Synchronization successful") ); 481 mParent->topLevelWidget()->setCaption( i18n("Synchronization successful") );
482 else 482 else
483 mParent->topLevelWidget()->setCaption( i18n("Sync cancelled or failed. Nothing synced.") ); 483 mParent->topLevelWidget()->setCaption( i18n("Sync cancelled or failed.") );
484 if ( ! quick ) 484 if ( ! quick )
485 mPrefs->mLastSyncedLocalFile = fn; 485 mPrefs->mLastSyncedLocalFile = fn;
486 } 486 }
487 return ret; 487 return ret;
488} 488}
489 489
490void KSyncManager::quickSyncLocalFile() 490void KSyncManager::quickSyncLocalFile()
491{ 491{
492 492
493 if ( syncWithFile( mPrefs->mLastSyncedLocalFile, true ) ) { 493 if ( syncWithFile( mPrefs->mLastSyncedLocalFile, true ) ) {
494 qDebug("quick syncLocalFile() successful "); 494 qDebug("quick syncLocalFile() successful ");
495 495
496 } 496 }
497} 497}
498 498
499void KSyncManager::multiSync( bool askforPrefs ) 499void KSyncManager::multiSync( bool askforPrefs )
500{ 500{
501 if (blockSave()) 501 if (blockSave())
502 return; 502 return;
503 setBlockSave(true); 503 setBlockSave(true);
504 QString question = i18n("Do you really want\nto multiple sync\nwith all checked profiles?\nSyncing takes some\ntime - all profiles\nare synced twice!"); 504 QString question = i18n("Do you really want\nto multiple sync\nwith all checked profiles?\nSyncing takes some\ntime - all profiles\nare synced twice!");
505 if ( QMessageBox::information( mParent, i18n("KDE-Pim Sync"), 505 if ( QMessageBox::information( mParent, i18n("KDE-Pim Sync"),
506 question, 506 question,
507 i18n("Yes"), i18n("No"), 507 i18n("Yes"), i18n("No"),
508 0, 0 ) != 0 ) { 508 0, 0 ) != 0 ) {
509 setBlockSave(false); 509 setBlockSave(false);
510 mParent->topLevelWidget()->setCaption(i18n("Aborted! Nothing synced!")); 510 mParent->topLevelWidget()->setCaption(i18n("Aborted! Nothing synced!"));
511 return; 511 return;
512 } 512 }
513 mCurrentSyncDevice = i18n("Multiple profiles") ; 513 mCurrentSyncDevice = i18n("Multiple profiles") ;
514 mSyncAlgoPrefs = mPrefs->mRingSyncAlgoPrefs; 514 mSyncAlgoPrefs = mPrefs->mRingSyncAlgoPrefs;
515 if ( askforPrefs ) { 515 if ( askforPrefs ) {
516 if ( !edit_sync_options()) { 516 if ( !edit_sync_options()) {
517 mParent->topLevelWidget()->setCaption( i18n("Syncing aborted. Nothing synced.") ); 517 mParent->topLevelWidget()->setCaption( i18n("Syncing aborted.") );
518 return; 518 return;
519 } 519 }
520 mPrefs->mRingSyncAlgoPrefs = mSyncAlgoPrefs; 520 mPrefs->mRingSyncAlgoPrefs = mSyncAlgoPrefs;
521 } 521 }
522 mParent->topLevelWidget()->setCaption(i18n("Multiple sync started.") ); 522 mParent->topLevelWidget()->setCaption(i18n("Multiple sync started.") );
523 qApp->processEvents(); 523 qApp->processEvents();
524 int num = ringSync() ; 524 int num = ringSync() ;
525 if ( num > 1 ) 525 if ( num > 1 )
526 ringSync(); 526 ringSync();
527 setBlockSave(false); 527 setBlockSave(false);
528 if ( num ) 528 if ( num )
529 emit save(); 529 emit save();
530 if ( num ) 530 if ( num )
531 mParent->topLevelWidget()->setCaption(i18n("%1 profiles synced. Multiple sync complete!").arg(num) ); 531 mParent->topLevelWidget()->setCaption(i18n("%1 profiles synced. Multiple sync complete!").arg(num) );
532 else 532 else
533 mParent->topLevelWidget()->setCaption(i18n("Nothing synced! No profiles defined for multisync!")); 533 mParent->topLevelWidget()->setCaption(i18n("Nothing synced! No profiles defined for multisync!"));
534 return; 534 return;
535} 535}
536 536
537int KSyncManager::ringSync() 537int KSyncManager::ringSync()
538{ 538{
539 int syncedProfiles = 0; 539 int syncedProfiles = 0;
540 unsigned int i; 540 unsigned int i;
541 QTime timer; 541 QTime timer;
542 KConfig config ( locateLocal( "config","ksyncprofilesrc" ) ); 542 KConfig config ( locateLocal( "config","ksyncprofilesrc" ) );
543 QStringList syncProfileNames = mSyncProfileNames; 543 QStringList syncProfileNames = mSyncProfileNames;
544 KSyncProfile* temp = new KSyncProfile (); 544 KSyncProfile* temp = new KSyncProfile ();
545 mAskForPreferences = false; 545 mAskForPreferences = false;
546 for ( i = 0; i < syncProfileNames.count(); ++i ) { 546 for ( i = 0; i < syncProfileNames.count(); ++i ) {
547 mCurrentSyncProfile = i; 547 mCurrentSyncProfile = i;
548 temp->setName(syncProfileNames[mCurrentSyncProfile]); 548 temp->setName(syncProfileNames[mCurrentSyncProfile]);
549 temp->readConfig(&config); 549 temp->readConfig(&config);
550 550
551 bool includeInRingSync; 551 bool includeInRingSync;
552 switch(mTargetApp) 552 switch(mTargetApp)
553 { 553 {
554 case (KAPI): 554 case (KAPI):
555 includeInRingSync = temp->getIncludeInRingSyncAB(); 555 includeInRingSync = temp->getIncludeInRingSyncAB();
556 break; 556 break;
557 case (KOPI): 557 case (KOPI):
558 includeInRingSync = temp->getIncludeInRingSync(); 558 includeInRingSync = temp->getIncludeInRingSync();
559 break; 559 break;
560 case (PWMPI): 560 case (PWMPI):
561 includeInRingSync = temp->getIncludeInRingSyncPWM(); 561 includeInRingSync = temp->getIncludeInRingSyncPWM();
562 break; 562 break;
563 default: 563 default:
564 qDebug("KSyncManager::ringSync: invalid apptype selected"); 564 qDebug("KSyncManager::ringSync: invalid apptype selected");
565 break; 565 break;
566 566
567 } 567 }
568 568
569 569
570 if ( includeInRingSync && ( i < 1 || i > 2 )) { 570 if ( includeInRingSync && ( i < 1 || i > 2 )) {
571 mParent->topLevelWidget()->setCaption(i18n("Profile ")+syncProfileNames[mCurrentSyncProfile]+ i18n(" is synced ... ")); 571 mParent->topLevelWidget()->setCaption(i18n("Profile ")+syncProfileNames[mCurrentSyncProfile]+ i18n(" is synced ... "));
572 ++syncedProfiles; 572 ++syncedProfiles;
573 // mAskForPreferences = temp->getAskForPreferences(); 573 // mAskForPreferences = temp->getAskForPreferences();
574 mWriteBackFile = temp->getWriteBackFile(); 574 mWriteBackFile = temp->getWriteBackFile();
575 mWriteBackExistingOnly = temp->getWriteBackExisting(); 575 mWriteBackExistingOnly = temp->getWriteBackExisting();
576 mWriteBackInFuture = 0; 576 mWriteBackInFuture = 0;
577 if ( temp->getWriteBackFuture() ) 577 if ( temp->getWriteBackFuture() )
578 mWriteBackInFuture = temp->getWriteBackFutureWeeks( ); 578 mWriteBackInFuture = temp->getWriteBackFutureWeeks( );
579 mShowSyncSummary = false; 579 mShowSyncSummary = false;
580 mCurrentSyncDevice = syncProfileNames[i] ; 580 mCurrentSyncDevice = syncProfileNames[i] ;
581 mCurrentSyncName = mLocalMachineName; 581 mCurrentSyncName = mLocalMachineName;
582 if ( i == 0 ) { 582 if ( i == 0 ) {
583#ifdef DESKTOP_VERSION 583#ifdef DESKTOP_VERSION
584 syncKDE(); 584 syncKDE();
585#else 585#else
586 syncSharp(); 586 syncSharp();
587#endif 587#endif
588 } else { 588 } else {
589 if ( temp->getIsLocalFileSync() ) { 589 if ( temp->getIsLocalFileSync() ) {
590 switch(mTargetApp) 590 switch(mTargetApp)
591 { 591 {
592 case (KAPI): 592 case (KAPI):
593 if ( syncWithFile( temp->getRemoteFileNameAB( ), false ) ) 593 if ( syncWithFile( temp->getRemoteFileNameAB( ), false ) )
594 mPrefs->mLastSyncedLocalFile = temp->getRemoteFileNameAB(); 594 mPrefs->mLastSyncedLocalFile = temp->getRemoteFileNameAB();
595 break; 595 break;
596 case (KOPI): 596 case (KOPI):
597 if ( syncWithFile( temp->getRemoteFileName( ), false ) ) 597 if ( syncWithFile( temp->getRemoteFileName( ), false ) )
598 mPrefs->mLastSyncedLocalFile = temp->getRemoteFileName(); 598 mPrefs->mLastSyncedLocalFile = temp->getRemoteFileName();
599 break; 599 break;
600 case (PWMPI): 600 case (PWMPI):
601 if ( syncWithFile( temp->getRemoteFileNamePWM( ), false ) ) 601 if ( syncWithFile( temp->getRemoteFileNamePWM( ), false ) )
602 mPrefs->mLastSyncedLocalFile = temp->getRemoteFileNamePWM(); 602 mPrefs->mLastSyncedLocalFile = temp->getRemoteFileNamePWM();
603 break; 603 break;
604 default: 604 default:
605 qDebug("KSyncManager::slotSyncMenu: invalid apptype selected"); 605 qDebug("KSyncManager::slotSyncMenu: invalid apptype selected");
606 break; 606 break;
607 } 607 }
608 } else { 608 } else {
609 if ( temp->getIsPhoneSync() ) { 609 if ( temp->getIsPhoneSync() ) {
610 mPhoneDevice = temp->getPhoneDevice( ) ; 610 mPhoneDevice = temp->getPhoneDevice( ) ;
611 mPhoneConnection = temp->getPhoneConnection( ); 611 mPhoneConnection = temp->getPhoneConnection( );
612 mPhoneModel = temp->getPhoneModel( ); 612 mPhoneModel = temp->getPhoneModel( );
613 syncPhone(); 613 syncPhone();
614 } else if ( temp->getIsPiSync() ) { 614 } else if ( temp->getIsPiSync() ) {
615 if ( mTargetApp == KAPI ) { 615 if ( mTargetApp == KAPI ) {
616 mPassWordPiSync = temp->getRemotePwAB(); 616 mPassWordPiSync = temp->getRemotePwAB();
617 mActiveSyncPort = temp->getRemotePortAB(); 617 mActiveSyncPort = temp->getRemotePortAB();
618 mActiveSyncIP = temp->getRemoteIPAB(); 618 mActiveSyncIP = temp->getRemoteIPAB();
619 } else if ( mTargetApp == KOPI ) { 619 } else if ( mTargetApp == KOPI ) {
620 mPassWordPiSync = temp->getRemotePw(); 620 mPassWordPiSync = temp->getRemotePw();
621 mActiveSyncPort = temp->getRemotePort(); 621 mActiveSyncPort = temp->getRemotePort();
622 mActiveSyncIP = temp->getRemoteIP(); 622 mActiveSyncIP = temp->getRemoteIP();
623 } else { 623 } else {
624 mPassWordPiSync = temp->getRemotePwPWM(); 624 mPassWordPiSync = temp->getRemotePwPWM();
625 mActiveSyncPort = temp->getRemotePortPWM(); 625 mActiveSyncPort = temp->getRemotePortPWM();
626 mActiveSyncIP = temp->getRemoteIPPWM(); 626 mActiveSyncIP = temp->getRemoteIPPWM();
627 } 627 }
628 syncPi(); 628 syncPi();
629 while ( !mPisyncFinished ) { 629 while ( !mPisyncFinished ) {
630 //qDebug("waiting "); 630 //qDebug("waiting ");
631 qApp->processEvents(); 631 qApp->processEvents();
632 } 632 }
633 timer.start(); 633 timer.start();
634 while ( timer.elapsed () < 2000 ) { 634 while ( timer.elapsed () < 2000 ) {
635 qApp->processEvents(); 635 qApp->processEvents();
636 } 636 }
637 } else 637 } else
638 syncRemote( temp, false ); 638 syncRemote( temp, false );
639 639
640 } 640 }
641 } 641 }
642 timer.start(); 642 timer.start();
643 mParent->topLevelWidget()->setCaption(i18n("Multiple sync in progress ... please wait!") ); 643 mParent->topLevelWidget()->setCaption(i18n("Multiple sync in progress ... please wait!") );
644 while ( timer.elapsed () < 2000 ) { 644 while ( timer.elapsed () < 2000 ) {
645 qApp->processEvents(); 645 qApp->processEvents();
646#ifndef _WIN32_ 646#ifndef _WIN32_
647 sleep (1); 647 sleep (1);
648#endif 648#endif
649 } 649 }
650 650
651 } 651 }
652 652
653 } 653 }
654 delete temp; 654 delete temp;
655 return syncedProfiles; 655 return syncedProfiles;
656} 656}
657 657
658void KSyncManager::syncRemote( KSyncProfile* prof, bool ask) 658void KSyncManager::syncRemote( KSyncProfile* prof, bool ask)
659{ 659{
660 QString question; 660 QString question;
661 if ( ask ) { 661 if ( ask ) {
662 question = i18n("Do you really want\nto remote sync\nwith profile \n")+ prof->getName()+" ?\n"; 662 question = i18n("Do you really want\nto remote sync\nwith profile \n")+ prof->getName()+" ?\n";
663 if ( QMessageBox::information( mParent, i18n("Sync"), 663 if ( QMessageBox::information( mParent, i18n("Sync"),
664 question, 664 question,
665 i18n("Yes"), i18n("No"), 665 i18n("Yes"), i18n("No"),
666 0, 0 ) != 0 ) 666 0, 0 ) != 0 )
667 return; 667 return;
668 } 668 }
669 669
670 QString preCommand; 670 QString preCommand;
671 QString localTempFile; 671 QString localTempFile;
672 QString postCommand; 672 QString postCommand;
673 673
674 switch(mTargetApp) 674 switch(mTargetApp)
675 { 675 {
676 case (KAPI): 676 case (KAPI):
677 preCommand = prof->getPreSyncCommandAB(); 677 preCommand = prof->getPreSyncCommandAB();
678 postCommand = prof->getPostSyncCommandAB(); 678 postCommand = prof->getPostSyncCommandAB();
679 localTempFile = prof->getLocalTempFileAB(); 679 localTempFile = prof->getLocalTempFileAB();
680 break; 680 break;
681 case (KOPI): 681 case (KOPI):
682 preCommand = prof->getPreSyncCommand(); 682 preCommand = prof->getPreSyncCommand();
683 postCommand = prof->getPostSyncCommand(); 683 postCommand = prof->getPostSyncCommand();
684 localTempFile = prof->getLocalTempFile(); 684 localTempFile = prof->getLocalTempFile();
685 break; 685 break;
686 case (PWMPI): 686 case (PWMPI):
687 preCommand = prof->getPreSyncCommandPWM(); 687 preCommand = prof->getPreSyncCommandPWM();
688 postCommand = prof->getPostSyncCommandPWM(); 688 postCommand = prof->getPostSyncCommandPWM();
689 localTempFile = prof->getLocalTempFilePWM(); 689 localTempFile = prof->getLocalTempFilePWM();
690 break; 690 break;
691 default: 691 default:
692 qDebug("KSyncManager::syncRemote: invalid apptype selected"); 692 qDebug("KSyncManager::syncRemote: invalid apptype selected");
693 break; 693 break;
694 } 694 }
695 695
696 696
697 int fi; 697 int fi;
698 if ( (fi = preCommand.find("$PWD$")) > 0 ) { 698 if ( (fi = preCommand.find("$PWD$")) > 0 ) {
699 QString pwd = getPassword(); 699 QString pwd = getPassword();
700 preCommand = preCommand.left( fi )+ pwd + preCommand.mid( fi+5 ); 700 preCommand = preCommand.left( fi )+ pwd + preCommand.mid( fi+5 );
701 701
702 } 702 }
703 int maxlen = 30; 703 int maxlen = 30;
704 if ( QApplication::desktop()->width() > 320 ) 704 if ( QApplication::desktop()->width() > 320 )
705 maxlen += 25; 705 maxlen += 25;
706 mParent->topLevelWidget()->setCaption ( i18n( "Copy remote file to local machine..." ) ); 706 mParent->topLevelWidget()->setCaption ( i18n( "Copy remote file to local machine..." ) );
707 int fileSize = 0; 707 int fileSize = 0;
708 int result = system ( preCommand ); 708 int result = system ( preCommand );
709 // 0 : okay 709 // 0 : okay
710 // 256: no such file or dir 710 // 256: no such file or dir
711 // 711 //
712 qDebug("Sync: Remote copy result(0 = okay): %d ",result ); 712 qDebug("Sync: Remote copy result(0 = okay): %d ",result );
713 if ( result != 0 ) { 713 if ( result != 0 ) {
714 unsigned int len = maxlen; 714 unsigned int len = maxlen;
715 while ( len < preCommand.length() ) { 715 while ( len < preCommand.length() ) {
716 preCommand.insert( len , "\n" ); 716 preCommand.insert( len , "\n" );
717 len += maxlen +2; 717 len += maxlen +2;
718 } 718 }
719 question = i18n("Sorry, the copy command failed!\nCommand was:\n%1\n \nTry command on console to get more\ndetailed info about the reason.\n").arg (preCommand) ; 719 question = i18n("Sorry, the copy command failed!\nCommand was:\n%1\n \nTry command on console to get more\ndetailed info about the reason.\n").arg (preCommand) ;
720 QMessageBox::information( mParent, i18n("Sync - ERROR"), 720 QMessageBox::information( mParent, i18n("Sync - ERROR"),
721 question, 721 question,
722 i18n("Okay!")) ; 722 i18n("Okay!")) ;
723 mParent->topLevelWidget()->setCaption ("KDE-Pim"); 723 mParent->topLevelWidget()->setCaption ("KDE-Pim");
724 return; 724 return;
725 } 725 }
726 mParent->topLevelWidget()->setCaption ( i18n( "Copying succeed." ) ); 726 mParent->topLevelWidget()->setCaption ( i18n( "Copying succeed." ) );
727 //qDebug(" file **%s** ",prof->getLocalTempFile().latin1() ); 727 //qDebug(" file **%s** ",prof->getLocalTempFile().latin1() );
728 728
729 if ( syncWithFile( localTempFile, true ) ) { 729 if ( syncWithFile( localTempFile, true ) ) {
730 730
731 if ( mWriteBackFile ) { 731 if ( mWriteBackFile ) {
732 int fi; 732 int fi;
733 if ( (fi = postCommand.find("$PWD$")) > 0 ) { 733 if ( (fi = postCommand.find("$PWD$")) > 0 ) {
734 QString pwd = getPassword(); 734 QString pwd = getPassword();
735 postCommand = postCommand.left( fi )+ pwd + postCommand.mid( fi+5 ); 735 postCommand = postCommand.left( fi )+ pwd + postCommand.mid( fi+5 );
736 736
737 } 737 }
738 mParent->topLevelWidget()->setCaption ( i18n( "Writing back file ..." ) ); 738 mParent->topLevelWidget()->setCaption ( i18n( "Writing back file ..." ) );
739 result = system ( postCommand ); 739 result = system ( postCommand );
740 qDebug("Sync:Writing back file result: %d ", result); 740 qDebug("Sync:Writing back file result: %d ", result);
741 if ( result != 0 ) { 741 if ( result != 0 ) {
742 mParent->topLevelWidget()->setCaption ( i18n( "Writing back file result: " )+QString::number( result ) ); 742 mParent->topLevelWidget()->setCaption ( i18n( "Writing back file result: " )+QString::number( result ) );
743 return; 743 return;
744 } else { 744 } else {
745 mParent->topLevelWidget()->setCaption ( i18n( "Syncronization sucessfully completed" ) ); 745 mParent->topLevelWidget()->setCaption ( i18n( "Syncronization sucessfully completed" ) );
746 } 746 }
747 } 747 }
748 } 748 }
749 return; 749 return;
750} 750}
751bool KSyncManager::edit_pisync_options() 751bool KSyncManager::edit_pisync_options()
752{ 752{
753 QDialog dia( mParent, "dia", true ); 753 QDialog dia( mParent, "dia", true );
754 dia.setCaption( i18n("Pi-Sync options for device: " ) +mCurrentSyncDevice ); 754 dia.setCaption( i18n("Pi-Sync options for device: " ) +mCurrentSyncDevice );
755 QVBoxLayout lay ( &dia ); 755 QVBoxLayout lay ( &dia );
756 lay.setSpacing( 5 ); 756 lay.setSpacing( 5 );
757 lay.setMargin( 3 ); 757 lay.setMargin( 3 );
758 QLabel lab1 ( i18n("Password for remote access:"), &dia); 758 QLabel lab1 ( i18n("Password for remote access:"), &dia);
759 lay.addWidget( &lab1 ); 759 lay.addWidget( &lab1 );
760 QLineEdit le1 (&dia ); 760 QLineEdit le1 (&dia );
761 lay.addWidget( &le1 ); 761 lay.addWidget( &le1 );
762 QLabel lab2 ( i18n("Remote IP address:"), &dia); 762 QLabel lab2 ( i18n("Remote IP address:"), &dia);
763 lay.addWidget( &lab2 ); 763 lay.addWidget( &lab2 );
764 QLineEdit le2 (&dia ); 764 QLineEdit le2 (&dia );
765 lay.addWidget( &le2 ); 765 lay.addWidget( &le2 );
766 QLabel lab3 ( i18n("Remote port number:"), &dia); 766 QLabel lab3 ( i18n("Remote port number:"), &dia);
767 lay.addWidget( &lab3 ); 767 lay.addWidget( &lab3 );
768 QLineEdit le3 (&dia ); 768 QLineEdit le3 (&dia );
769 lay.addWidget( &le3 ); 769 lay.addWidget( &le3 );
770 QPushButton pb ( "OK", &dia); 770 QPushButton pb ( "OK", &dia);
771 lay.addWidget( &pb ); 771 lay.addWidget( &pb );
772 connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); 772 connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) );
773 le1.setText( mPassWordPiSync ); 773 le1.setText( mPassWordPiSync );
774 le2.setText( mActiveSyncIP ); 774 le2.setText( mActiveSyncIP );
775 le3.setText( mActiveSyncPort ); 775 le3.setText( mActiveSyncPort );
776 if ( dia.exec() ) { 776 if ( dia.exec() ) {
777 mPassWordPiSync = le1.text(); 777 mPassWordPiSync = le1.text();
778 mActiveSyncPort = le3.text(); 778 mActiveSyncPort = le3.text();
779 mActiveSyncIP = le2.text(); 779 mActiveSyncIP = le2.text();
780 return true; 780 return true;
781 } 781 }
782 return false; 782 return false;
783} 783}
784bool KSyncManager::edit_sync_options() 784bool KSyncManager::edit_sync_options()
785{ 785{
786 786
787 QDialog dia( mParent, "dia", true ); 787 QDialog dia( mParent, "dia", true );
788 dia.setCaption( i18n("Device: " ) +mCurrentSyncDevice ); 788 dia.setCaption( i18n("Device: " ) +mCurrentSyncDevice );
789 QButtonGroup gr ( 1, Qt::Horizontal, i18n("Sync preferences"), &dia); 789 QButtonGroup gr ( 1, Qt::Horizontal, i18n("Sync preferences"), &dia);
790 QVBoxLayout lay ( &dia ); 790 QVBoxLayout lay ( &dia );
791 lay.setSpacing( 2 ); 791 lay.setSpacing( 2 );
792 lay.setMargin( 3 ); 792 lay.setMargin( 3 );
793 lay.addWidget(&gr); 793 lay.addWidget(&gr);
794 QRadioButton loc ( i18n("Take local entry on conflict"), &gr ); 794 QRadioButton loc ( i18n("Take local entry on conflict"), &gr );
795 QRadioButton rem ( i18n("Take remote entry on conflict"), &gr ); 795 QRadioButton rem ( i18n("Take remote entry on conflict"), &gr );
796 QRadioButton newest( i18n("Take newest entry on conflict"), &gr ); 796 QRadioButton newest( i18n("Take newest entry on conflict"), &gr );
797 QRadioButton ask( i18n("Ask for every entry on conflict"), &gr ); 797 QRadioButton ask( i18n("Ask for every entry on conflict"), &gr );
798 QRadioButton f_loc( i18n("Force: Take local entry always"), &gr ); 798 QRadioButton f_loc( i18n("Force: Take local entry always"), &gr );
799 QRadioButton f_rem( i18n("Force: Take remote entry always"), &gr ); 799 QRadioButton f_rem( i18n("Force: Take remote entry always"), &gr );
800 //QRadioButton both( i18n("Take both on conflict"), &gr ); 800 //QRadioButton both( i18n("Take both on conflict"), &gr );
801 QPushButton pb ( "OK", &dia); 801 QPushButton pb ( "OK", &dia);
802 lay.addWidget( &pb ); 802 lay.addWidget( &pb );
803 connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); 803 connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) );
804 switch ( mSyncAlgoPrefs ) { 804 switch ( mSyncAlgoPrefs ) {
805 case 0: 805 case 0:
806 loc.setChecked( true); 806 loc.setChecked( true);
807 break; 807 break;
808 case 1: 808 case 1:
809 rem.setChecked( true ); 809 rem.setChecked( true );
810 break; 810 break;
811 case 2: 811 case 2:
812 newest.setChecked( true); 812 newest.setChecked( true);
813 break; 813 break;
814 case 3: 814 case 3:
815 ask.setChecked( true); 815 ask.setChecked( true);
816 break; 816 break;
817 case 4: 817 case 4:
818 f_loc.setChecked( true); 818 f_loc.setChecked( true);
819 break; 819 break;
820 case 5: 820 case 5:
821 f_rem.setChecked( true); 821 f_rem.setChecked( true);
822 break; 822 break;
823 case 6: 823 case 6:
824 // both.setChecked( true); 824 // both.setChecked( true);
825 break; 825 break;
826 default: 826 default:
827 break; 827 break;
828 } 828 }
829 if ( dia.exec() ) { 829 if ( dia.exec() ) {
830 mSyncAlgoPrefs = rem.isChecked()*1+newest.isChecked()*2+ ask.isChecked()*3+ f_loc.isChecked()*4+ f_rem.isChecked()*5;//+ both.isChecked()*6 ; 830 mSyncAlgoPrefs = rem.isChecked()*1+newest.isChecked()*2+ ask.isChecked()*3+ f_loc.isChecked()*4+ f_rem.isChecked()*5;//+ both.isChecked()*6 ;
831 return true; 831 return true;
832 } 832 }
833 return false; 833 return false;
834} 834}
835 835
836QString KSyncManager::getPassword( ) 836QString KSyncManager::getPassword( )
837{ 837{
838 QString retfile = ""; 838 QString retfile = "";
839 QDialog dia ( mParent, "input-dialog", true ); 839 QDialog dia ( mParent, "input-dialog", true );
840 QLineEdit lab ( &dia ); 840 QLineEdit lab ( &dia );
841 lab.setEchoMode( QLineEdit::Password ); 841 lab.setEchoMode( QLineEdit::Password );
842 QVBoxLayout lay( &dia ); 842 QVBoxLayout lay( &dia );
843 lay.setMargin(7); 843 lay.setMargin(7);
844 lay.setSpacing(7); 844 lay.setSpacing(7);
845 lay.addWidget( &lab); 845 lay.addWidget( &lab);
846 dia.setFixedSize( 230,50 ); 846 dia.setFixedSize( 230,50 );
847 dia.setCaption( i18n("Enter password") ); 847 dia.setCaption( i18n("Enter password") );
848 QPushButton pb ( "OK", &dia); 848 QPushButton pb ( "OK", &dia);
849 lay.addWidget( &pb ); 849 lay.addWidget( &pb );
850 connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); 850 connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) );
851 dia.show(); 851 dia.show();
852 int res = dia.exec(); 852 int res = dia.exec();
853 if ( res ) 853 if ( res )
854 retfile = lab.text(); 854 retfile = lab.text();
855 dia.hide(); 855 dia.hide();
856 qApp->processEvents(); 856 qApp->processEvents();
857 return retfile; 857 return retfile;
858 858
859} 859}
860 860
861 861
862void KSyncManager::confSync() 862void KSyncManager::confSync()
863{ 863{
864 static KSyncPrefsDialog* sp = 0; 864 static KSyncPrefsDialog* sp = 0;
865 if ( ! sp ) { 865 if ( ! sp ) {
866 sp = new KSyncPrefsDialog( mParent, "syncprefs", true ); 866 sp = new KSyncPrefsDialog( mParent, "syncprefs", true );
867 } 867 }
868 sp->usrReadConfig(); 868 sp->usrReadConfig();
869#ifndef DESKTOP_VERSION 869#ifndef DESKTOP_VERSION
870 sp->showMaximized(); 870 sp->showMaximized();
871#else 871#else
872 sp->show(); 872 sp->show();
873#endif 873#endif
874 sp->exec(); 874 sp->exec();
875 QStringList oldSyncProfileNames = mSyncProfileNames; 875 QStringList oldSyncProfileNames = mSyncProfileNames;
876 mSyncProfileNames = sp->getSyncProfileNames(); 876 mSyncProfileNames = sp->getSyncProfileNames();
877 mLocalMachineName = sp->getLocalMachineName (); 877 mLocalMachineName = sp->getLocalMachineName ();
878 int ii; 878 int ii;
879 for ( ii = 0; ii < oldSyncProfileNames.count(); ++ii ) { 879 for ( ii = 0; ii < oldSyncProfileNames.count(); ++ii ) {
880 if ( ! mSyncProfileNames.contains( oldSyncProfileNames[ii] ) ) 880 if ( ! mSyncProfileNames.contains( oldSyncProfileNames[ii] ) )
881 mImplementation->removeSyncInfo( oldSyncProfileNames[ii] ); 881 mImplementation->removeSyncInfo( oldSyncProfileNames[ii] );
882 } 882 }
883 QTimer::singleShot ( 1, this, SLOT ( fillSyncMenu() ) ); 883 QTimer::singleShot ( 1, this, SLOT ( fillSyncMenu() ) );
884} 884}
885void KSyncManager::syncKDE() 885void KSyncManager::syncKDE()
886{ 886{
887 mSyncWithDesktop = true; 887 mSyncWithDesktop = true;
888 emit save(); 888 emit save();
889 switch(mTargetApp) 889 switch(mTargetApp)
890 { 890 {
891 case (KAPI): 891 case (KAPI):
892 { 892 {
893#ifdef DESKTOP_VERSION 893#ifdef DESKTOP_VERSION
894 QString command = qApp->applicationDirPath () + "/kdeabdump"; 894 QString command = qApp->applicationDirPath () + "/kdeabdump";
895#else 895#else
896 QString command = "kdeabdump"; 896 QString command = "kdeabdump";
897#endif 897#endif
898 if ( ! QFile::exists ( command ) ) 898 if ( ! QFile::exists ( command ) )
899 command = "kdeabdump"; 899 command = "kdeabdump";
900 QString fileName = QDir::homeDirPath ()+"/.kdeaddressbookdump.vcf"; 900 QString fileName = QDir::homeDirPath ()+"/.kdeaddressbookdump.vcf";
901 system ( command.latin1()); 901 system ( command.latin1());
902 if ( syncWithFile( fileName,true ) ) { 902 if ( syncWithFile( fileName,true ) ) {
903 if ( mWriteBackFile ) { 903 if ( mWriteBackFile ) {
904 command += " --read"; 904 command += " --read";
905 system ( command.latin1()); 905 system ( command.latin1());
906 } 906 }
907 } 907 }
908 908
909 } 909 }
910 break; 910 break;
911 case (KOPI): 911 case (KOPI):
912 { 912 {
913#ifdef DESKTOP_VERSION 913#ifdef DESKTOP_VERSION
914 QString command = qApp->applicationDirPath () + "/kdecaldump"; 914 QString command = qApp->applicationDirPath () + "/kdecaldump";
915#else 915#else
916 QString command = "kdecaldump"; 916 QString command = "kdecaldump";
917#endif 917#endif
918 if ( ! QFile::exists ( command ) ) 918 if ( ! QFile::exists ( command ) )
919 command = "kdecaldump"; 919 command = "kdecaldump";
920 QString fileName = QDir::homeDirPath ()+"/.kdecalendardump.ics"; 920 QString fileName = QDir::homeDirPath ()+"/.kdecalendardump.ics";
921 system ( command.latin1()); 921 system ( command.latin1());
922 if ( syncWithFile( fileName,true ) ) { 922 if ( syncWithFile( fileName,true ) ) {
923 if ( mWriteBackFile ) { 923 if ( mWriteBackFile ) {
924 command += " --read"; 924 command += " --read";
925 system ( command.latin1()); 925 system ( command.latin1());
926 } 926 }
927 } 927 }
928 928
929 } 929 }
930 break; 930 break;
931 case (PWMPI): 931 case (PWMPI):
932 932
933 break; 933 break;
934 default: 934 default:
935 qDebug("KSyncManager::slotSyncMenu: invalid apptype selected"); 935 qDebug("KSyncManager::slotSyncMenu: invalid apptype selected");
936 break; 936 break;
937 937
938 } 938 }
939} 939}
940 940
941void KSyncManager::syncSharp() 941void KSyncManager::syncSharp()
942{ 942{
943 943
944 if ( ! syncExternalApplication("sharp") ) 944 if ( ! syncExternalApplication("sharp") )
945 qDebug("ERROR sync sharp "); 945 qDebug("ERROR sync sharp ");
946} 946}
947 947
948bool KSyncManager::syncExternalApplication(QString resource) 948bool KSyncManager::syncExternalApplication(QString resource)
949{ 949{
950 950
951 emit save(); 951 emit save();
952 952
953 if ( mAskForPreferences ) 953 if ( mAskForPreferences )
954 if ( !edit_sync_options()) { 954 if ( !edit_sync_options()) {
955 mParent->topLevelWidget()->setCaption( i18n("Syncing aborted. Nothing synced.") ); 955 mParent->topLevelWidget()->setCaption( i18n("Syncing aborted. Nothing synced.") );
956 return false; 956 return false;
957 } 957 }
958 958
959 qDebug("Sync extern %s", resource.latin1()); 959 qDebug("Sync extern %s", resource.latin1());
960 960
961 bool syncOK = mImplementation->syncExternal(this, resource); 961 bool syncOK = mImplementation->syncExternal(this, resource);
962 962
963 return syncOK; 963 return syncOK;
964 964
965} 965}
966 966
967void KSyncManager::syncPhone() 967void KSyncManager::syncPhone()
968{ 968{
969 969
970 syncExternalApplication("phone"); 970 syncExternalApplication("phone");
971 971
972} 972}
973 973
974void KSyncManager::showProgressBar(int percentage, QString caption, int total) 974void KSyncManager::showProgressBar(int percentage, QString caption, int total)
975{ 975{
976 if (!bar->isVisible()) 976 if (!bar->isVisible())
977 { 977 {
978 bar->setCaption (caption); 978 bar->setCaption (caption);
979 bar->setTotalSteps ( total ) ; 979 bar->setTotalSteps ( total ) ;
980 980
981 bar->show(); 981 bar->show();
982 } 982 }
983 983
984 bar->setProgress( percentage ); 984 bar->setProgress( percentage );
985} 985}
986 986
987void KSyncManager::hideProgressBar() 987void KSyncManager::hideProgressBar()
988{ 988{
989 bar->hide(); 989 bar->hide();
990} 990}
991 991
992bool KSyncManager::isProgressBarCanceled() 992bool KSyncManager::isProgressBarCanceled()
993{ 993{
994 return !bar->isVisible(); 994 return !bar->isVisible();
995} 995}
996 996
997QString KSyncManager::syncFileName() 997QString KSyncManager::syncFileName()
998{ 998{
999 999
1000 QString fn = "tempfile"; 1000 QString fn = "tempfile";
1001 switch(mTargetApp) 1001 switch(mTargetApp)
1002 { 1002 {
1003 case (KAPI): 1003 case (KAPI):
1004 fn = "tempsyncab.vcf"; 1004 fn = "tempsyncab.vcf";
1005 break; 1005 break;
1006 case (KOPI): 1006 case (KOPI):
1007 fn = "tempsynccal.ics"; 1007 fn = "tempsynccal.ics";
1008 break; 1008 break;
1009 case (PWMPI): 1009 case (PWMPI):
1010 fn = "tempsyncpw.pwm"; 1010 fn = "tempsyncpw.pwm";
1011 break; 1011 break;
1012 default: 1012 default:
1013 break; 1013 break;
1014 } 1014 }
1015#ifdef _WIN32_ 1015#ifdef _WIN32_
1016 return locateLocal( "tmp", fn ); 1016 return locateLocal( "tmp", fn );
1017#else 1017#else
1018 return (QString( "/tmp/" )+ fn ); 1018 return (QString( "/tmp/" )+ fn );
1019#endif 1019#endif
1020} 1020}
1021 1021
1022void KSyncManager::syncPi() 1022void KSyncManager::syncPi()
1023{ 1023{
1024 mPisyncFinished = false; 1024 mPisyncFinished = false;
1025 qApp->processEvents(); 1025 qApp->processEvents();
1026 if ( mAskForPreferences ) 1026 if ( mAskForPreferences )
1027 if ( !edit_pisync_options()) { 1027 if ( !edit_pisync_options()) {
1028 mParent->topLevelWidget()->setCaption( i18n("Syncing aborted. Nothing synced.") ); 1028 mParent->topLevelWidget()->setCaption( i18n("Syncing aborted. Nothing synced.") );
1029 return; 1029 return;
1030 } 1030 }
1031 bool ok; 1031 bool ok;
1032 Q_UINT16 port = mActiveSyncPort.toUInt(&ok); 1032 Q_UINT16 port = mActiveSyncPort.toUInt(&ok);
1033 if ( ! ok ) { 1033 if ( ! ok ) {
1034 mParent->topLevelWidget()->setCaption( i18n("Sorry, no valid port.Syncing cancelled.") ); 1034 mParent->topLevelWidget()->setCaption( i18n("Sorry, no valid port.Syncing cancelled.") );
1035 return; 1035 return;
1036 } 1036 }
1037 KCommandSocket* commandSocket = new KCommandSocket( mPassWordPiSync, port, mActiveSyncIP, this ); 1037 KCommandSocket* commandSocket = new KCommandSocket( mPassWordPiSync, port, mActiveSyncIP, this );
1038 connect( commandSocket, SIGNAL(commandFinished( KCommandSocket*, int )), this, SLOT(deleteCommandSocket(KCommandSocket*, int)) ); 1038 connect( commandSocket, SIGNAL(commandFinished( KCommandSocket*, int )), this, SLOT(deleteCommandSocket(KCommandSocket*, int)) );
1039 mParent->topLevelWidget()->setCaption( i18n("Sending request for remote file ...") ); 1039 mParent->topLevelWidget()->setCaption( i18n("Sending request for remote file ...") );
1040 commandSocket->readFile( syncFileName() ); 1040 commandSocket->readFile( syncFileName() );
1041} 1041}
1042 1042
1043void KSyncManager::deleteCommandSocket(KCommandSocket*s, int state) 1043void KSyncManager::deleteCommandSocket(KCommandSocket*s, int state)
1044{ 1044{
1045 //enum { success, errorW, errorR, quiet }; 1045 //enum { success, errorW, errorR, quiet };
1046 if ( state == KCommandSocket::errorR ||state == KCommandSocket::errorTO ) { 1046 if ( state == KCommandSocket::errorR ||state == KCommandSocket::errorTO ) {
1047 mParent->topLevelWidget()->setCaption( i18n("ERROR: Receiving remote file failed.") ); 1047 mParent->topLevelWidget()->setCaption( i18n("ERROR: Receiving remote file failed.") );
1048 delete s; 1048 delete s;
1049 if ( state == KCommandSocket::errorR ) { 1049 if ( state == KCommandSocket::errorR ) {
1050 KCommandSocket* commandSocket = new KCommandSocket( mPassWordPiSync, mActiveSyncPort.toUInt(), mActiveSyncIP, this ); 1050 KCommandSocket* commandSocket = new KCommandSocket( mPassWordPiSync, mActiveSyncPort.toUInt(), mActiveSyncIP, this );
1051 connect( commandSocket, SIGNAL(commandFinished( KCommandSocket*, int)), this, SLOT(deleteCommandSocket(KCommandSocket*, int )) ); 1051 connect( commandSocket, SIGNAL(commandFinished( KCommandSocket*, int)), this, SLOT(deleteCommandSocket(KCommandSocket*, int )) );
1052 commandSocket->sendStop(); 1052 commandSocket->sendStop();
1053 } 1053 }
1054 mPisyncFinished = true; 1054 mPisyncFinished = true;
1055 return; 1055 return;
1056 1056
1057 } else if ( state == KCommandSocket::errorW ) { 1057 } else if ( state == KCommandSocket::errorW ) {
1058 mParent->topLevelWidget()->setCaption( i18n("ERROR:Writing back file failed.") ); 1058 mParent->topLevelWidget()->setCaption( i18n("ERROR:Writing back file failed.") );
1059 mPisyncFinished = true; 1059 mPisyncFinished = true;
1060 1060
1061 } else if ( state == KCommandSocket::successR ) { 1061 } else if ( state == KCommandSocket::successR ) {
1062 QTimer::singleShot( 1, this , SLOT ( readFileFromSocket())); 1062 QTimer::singleShot( 1, this , SLOT ( readFileFromSocket()));
1063 1063
1064 } else if ( state == KCommandSocket::successW ) { 1064 } else if ( state == KCommandSocket::successW ) {
1065 mParent->topLevelWidget()->setCaption( i18n("Pi-Sync succesful!") ); 1065 mParent->topLevelWidget()->setCaption( i18n("Pi-Sync succesful!") );
1066 mPisyncFinished = true; 1066 mPisyncFinished = true;
1067 } 1067 }
1068 1068
1069 delete s; 1069 delete s;
1070} 1070}
1071 1071
1072void KSyncManager::readFileFromSocket() 1072void KSyncManager::readFileFromSocket()
1073{ 1073{
1074 QString fileName = syncFileName(); 1074 QString fileName = syncFileName();
1075 mParent->topLevelWidget()->setCaption( i18n("Remote file saved to temp file.") ); 1075 mParent->topLevelWidget()->setCaption( i18n("Remote file saved to temp file.") );
1076 if ( ! syncWithFile( fileName , true ) ) { 1076 if ( ! syncWithFile( fileName , true ) ) {
1077 mParent->topLevelWidget()->setCaption( i18n("Syncing failed.") ); 1077 mParent->topLevelWidget()->setCaption( i18n("Syncing failed.") );
1078 mPisyncFinished = true; 1078 mPisyncFinished = true;
1079 return; 1079 return;
1080 } 1080 }
1081 KCommandSocket* commandSocket = new KCommandSocket( mPassWordPiSync, mActiveSyncPort.toUInt(), mActiveSyncIP, this ); 1081 KCommandSocket* commandSocket = new KCommandSocket( mPassWordPiSync, mActiveSyncPort.toUInt(), mActiveSyncIP, this );
1082 connect( commandSocket, SIGNAL(commandFinished( KCommandSocket*, int)), this, SLOT(deleteCommandSocket(KCommandSocket*, int )) ); 1082 connect( commandSocket, SIGNAL(commandFinished( KCommandSocket*, int)), this, SLOT(deleteCommandSocket(KCommandSocket*, int )) );
1083 if ( mWriteBackFile ) 1083 if ( mWriteBackFile )
1084 commandSocket->writeFile( fileName ); 1084 commandSocket->writeFile( fileName );
1085 else { 1085 else {
1086 commandSocket->sendStop(); 1086 commandSocket->sendStop();
1087 mParent->topLevelWidget()->setCaption( i18n("Pi-Sync succesful!") ); 1087 mParent->topLevelWidget()->setCaption( i18n("Pi-Sync succesful!") );
1088 mPisyncFinished = true; 1088 mPisyncFinished = true;
1089 } 1089 }
1090} 1090}
1091 1091
1092KServerSocket:: KServerSocket ( QString pw, Q_UINT16 port, int backlog, QObject * parent, const char * name ) : QServerSocket( port, backlog, parent, name ) 1092KServerSocket:: KServerSocket ( QString pw, Q_UINT16 port, int backlog, QObject * parent, const char * name ) : QServerSocket( port, backlog, parent, name )
1093{ 1093{
1094 mPassWord = pw; 1094 mPassWord = pw;
1095 mSocket = 0; 1095 mSocket = 0;
1096 mSyncActionDialog = 0; 1096 mSyncActionDialog = 0;
1097 blockRC = false; 1097 blockRC = false;
1098}; 1098};
1099 1099
1100void KServerSocket::newConnection ( int socket ) 1100void KServerSocket::newConnection ( int socket )
1101{ 1101{
1102 // qDebug("KServerSocket:New connection %d ", socket); 1102 // qDebug("KServerSocket:New connection %d ", socket);
1103 if ( mSocket ) { 1103 if ( mSocket ) {
1104 qDebug("KServerSocket::newConnection Socket deleted! "); 1104 qDebug("KServerSocket::newConnection Socket deleted! ");
1105 delete mSocket; 1105 delete mSocket;
1106 mSocket = 0; 1106 mSocket = 0;
1107 } 1107 }
1108 mSocket = new QSocket( this ); 1108 mSocket = new QSocket( this );
1109 connect( mSocket , SIGNAL(readyRead()), this, SLOT(readClient()) ); 1109 connect( mSocket , SIGNAL(readyRead()), this, SLOT(readClient()) );
1110 connect( mSocket , SIGNAL(delayedCloseFinished()), this, SLOT(discardClient()) ); 1110 connect( mSocket , SIGNAL(delayedCloseFinished()), this, SLOT(discardClient()) );
1111 mSocket->setSocket( socket ); 1111 mSocket->setSocket( socket );
1112} 1112}
1113 1113
1114void KServerSocket::discardClient() 1114void KServerSocket::discardClient()
1115{ 1115{
1116 //qDebug(" KServerSocket::discardClient()"); 1116 //qDebug(" KServerSocket::discardClient()");
1117 if ( mSocket ) { 1117 if ( mSocket ) {
1118 delete mSocket; 1118 delete mSocket;
1119 mSocket = 0; 1119 mSocket = 0;
1120 } 1120 }
1121 //emit endConnect(); 1121 //emit endConnect();
1122} 1122}
1123void KServerSocket::readClient() 1123void KServerSocket::readClient()
1124{ 1124{
1125 if ( blockRC ) 1125 if ( blockRC )
1126 return; 1126 return;
1127 if ( mSocket == 0 ) { 1127 if ( mSocket == 0 ) {
1128 qDebug("ERROR::KServerSocket::readClient(): mSocket == 0 "); 1128 qDebug("ERROR::KServerSocket::readClient(): mSocket == 0 ");
1129 return; 1129 return;
1130 } 1130 }
1131 //qDebug("KServerSocket::readClient()"); 1131 //qDebug("KServerSocket::readClient()");
1132 if ( mSocket->canReadLine() ) { 1132 if ( mSocket->canReadLine() ) {
1133 QString line = mSocket->readLine(); 1133 QString line = mSocket->readLine();
1134 //qDebug("KServerSocket readline: %s ", line.latin1()); 1134 //qDebug("KServerSocket readline: %s ", line.latin1());
1135 QStringList tokens = QStringList::split( QRegExp("[ \r\n][ \r\n]*"), line ); 1135 QStringList tokens = QStringList::split( QRegExp("[ \r\n][ \r\n]*"), line );
1136 if ( tokens[0] == "GET" ) { 1136 if ( tokens[0] == "GET" ) {
1137 if ( tokens[1] == mPassWord ) { 1137 if ( tokens[1] == mPassWord ) {
1138 //emit sendFile( mSocket ); 1138 //emit sendFile( mSocket );
1139 bool ok = false; 1139 bool ok = false;
1140 QDateTime dt = KGlobal::locale()->readDateTime( tokens[2], KLocale::ISODate, &ok); 1140 QDateTime dt = KGlobal::locale()->readDateTime( tokens[2], KLocale::ISODate, &ok);
1141 if ( ok ) 1141 if ( ok )
1142 KSyncManager::mRequestedSyncEvent = dt; 1142 KSyncManager::mRequestedSyncEvent = dt;
1143 else 1143 else
1144 KSyncManager::mRequestedSyncEvent = QDateTime(); 1144 KSyncManager::mRequestedSyncEvent = QDateTime();
1145 send_file(); 1145 send_file();
1146 } 1146 }
1147 else { 1147 else {
1148 KMessageBox::error( 0, i18n("Got send file request\nwith invalid password")); 1148 KMessageBox::error( 0, i18n("Got send file request\nwith invalid password"));
1149 //qDebug("password %s, invalid password %s ",mPassWord.latin1(), tokens[1].latin1() ); 1149 //qDebug("password %s, invalid password %s ",mPassWord.latin1(), tokens[1].latin1() );
1150 } 1150 }
1151 } 1151 }
1152 if ( tokens[0] == "PUT" ) { 1152 if ( tokens[0] == "PUT" ) {
1153 if ( tokens[1] == mPassWord ) { 1153 if ( tokens[1] == mPassWord ) {
1154 //emit getFile( mSocket ); 1154 //emit getFile( mSocket );
1155 blockRC = true; 1155 blockRC = true;
1156 get_file(); 1156 get_file();
1157 } 1157 }
1158 else { 1158 else {
1159 KMessageBox::error( 0, i18n("Got receive file request\nwith invalid password")); 1159 KMessageBox::error( 0, i18n("Got receive file request\nwith invalid password"));
1160 //qDebug("password %s, invalid password %s ",mPassWord.latin1(), tokens[1].latin1() ); 1160 //qDebug("password %s, invalid password %s ",mPassWord.latin1(), tokens[1].latin1() );
1161 } 1161 }
1162 } 1162 }
1163 if ( tokens[0] == "STOP" ) { 1163 if ( tokens[0] == "STOP" ) {
1164 //emit endConnect(); 1164 //emit endConnect();
1165 end_connect(); 1165 end_connect();
1166 } 1166 }
1167 } 1167 }
1168} 1168}
1169void KServerSocket::end_connect() 1169void KServerSocket::end_connect()
1170{ 1170{
1171 delete mSyncActionDialog; 1171 delete mSyncActionDialog;
1172 mSyncActionDialog = 0; 1172 mSyncActionDialog = 0;
1173} 1173}
1174void KServerSocket::send_file() 1174void KServerSocket::send_file()
1175{ 1175{
1176 //qDebug("MainWindow::sendFile(QSocket* s) "); 1176 //qDebug("MainWindow::sendFile(QSocket* s) ");
1177 if ( mSyncActionDialog ) 1177 if ( mSyncActionDialog )
1178 delete mSyncActionDialog; 1178 delete mSyncActionDialog;
1179 mSyncActionDialog = new QDialog ( 0, "input-dialog", true ); 1179 mSyncActionDialog = new QDialog ( 0, "input-dialog", true );
1180 mSyncActionDialog->setCaption(i18n("Received sync request")); 1180 mSyncActionDialog->setCaption(i18n("Received sync request"));
1181 QLabel* label = new QLabel( i18n("Synchronizing from remote ...\n\nDo not use this application!\n\nIf syncing fails\nyou can close this dialog."), mSyncActionDialog ); 1181 QLabel* label = new QLabel( i18n("Synchronizing from remote ...\n\nDo not use this application!\n\nIf syncing fails\nyou can close this dialog."), mSyncActionDialog );
1182 QVBoxLayout* lay = new QVBoxLayout( mSyncActionDialog ); 1182 QVBoxLayout* lay = new QVBoxLayout( mSyncActionDialog );
1183 lay->addWidget( label); 1183 lay->addWidget( label);
1184 lay->setMargin(7); 1184 lay->setMargin(7);
1185 lay->setSpacing(7); 1185 lay->setSpacing(7);
1186 mSyncActionDialog->setFixedSize( 230, 120); 1186 mSyncActionDialog->setFixedSize( 230, 120);
1187 mSyncActionDialog->show(); 1187 mSyncActionDialog->show();
1188 mSyncActionDialog->raise(); 1188 mSyncActionDialog->raise();
1189 emit request_file(); 1189 emit request_file();
1190 qApp->processEvents(); 1190 qApp->processEvents();
1191 QString fileName = mFileName; 1191 QString fileName = mFileName;
1192 QFile file( fileName ); 1192 QFile file( fileName );
1193 if (!file.open( IO_ReadOnly ) ) { 1193 if (!file.open( IO_ReadOnly ) ) {
1194 delete mSyncActionDialog; 1194 delete mSyncActionDialog;
1195 mSyncActionDialog = 0; 1195 mSyncActionDialog = 0;
1196 qDebug("KSS::error open file "); 1196 qDebug("KSS::error open file ");
1197 mSocket->close(); 1197 mSocket->close();
1198 if ( mSocket->state() == QSocket::Idle ) 1198 if ( mSocket->state() == QSocket::Idle )
1199 QTimer::singleShot( 10, this , SLOT ( discardClient())); 1199 QTimer::singleShot( 10, this , SLOT ( discardClient()));
1200 return ; 1200 return ;
1201 1201
1202 } 1202 }
1203 mSyncActionDialog->setCaption( i18n("Sending file...") ); 1203 mSyncActionDialog->setCaption( i18n("Sending file...") );
1204 QTextStream ts( &file ); 1204 QTextStream ts( &file );
1205 ts.setEncoding( QTextStream::Latin1 ); 1205 ts.setEncoding( QTextStream::Latin1 );
1206 1206
1207 QTextStream os( mSocket ); 1207 QTextStream os( mSocket );
1208 os.setEncoding( QTextStream::Latin1 ); 1208 os.setEncoding( QTextStream::Latin1 );
1209 while ( ! ts.atEnd() ) { 1209 while ( ! ts.atEnd() ) {
1210 os << ts.readLine() << "\r\n"; 1210 os << ts.readLine() << "\r\n";
1211 } 1211 }
1212 //os << ts.read(); 1212 //os << ts.read();
1213 file.close(); 1213 file.close();
1214 mSyncActionDialog->setCaption( i18n("Waiting for synced file...") ); 1214 mSyncActionDialog->setCaption( i18n("Waiting for synced file...") );
1215 mSocket->close(); 1215 mSocket->close();
1216 if ( mSocket->state() == QSocket::Idle ) 1216 if ( mSocket->state() == QSocket::Idle )
1217 QTimer::singleShot( 10, this , SLOT ( discardClient())); 1217 QTimer::singleShot( 10, this , SLOT ( discardClient()));
1218} 1218}
1219void KServerSocket::get_file() 1219void KServerSocket::get_file()
1220{ 1220{
1221 mSyncActionDialog->setCaption( i18n("Receiving synced file...") ); 1221 mSyncActionDialog->setCaption( i18n("Receiving synced file...") );
1222 1222
1223 piTime.start(); 1223 piTime.start();
1224 piFileString = ""; 1224 piFileString = "";
1225 QTimer::singleShot( 1, this , SLOT (readBackFileFromSocket( ) )); 1225 QTimer::singleShot( 1, this , SLOT (readBackFileFromSocket( ) ));
1226} 1226}
1227 1227
1228 1228
1229void KServerSocket::readBackFileFromSocket() 1229void KServerSocket::readBackFileFromSocket()
1230{ 1230{
1231 //qDebug("readBackFileFromSocket() %d ", piTime.elapsed ()); 1231 //qDebug("readBackFileFromSocket() %d ", piTime.elapsed ());
1232 while ( mSocket->canReadLine () ) { 1232 while ( mSocket->canReadLine () ) {
1233 piTime.restart(); 1233 piTime.restart();
1234 QString line = mSocket->readLine (); 1234 QString line = mSocket->readLine ();
1235 piFileString += line; 1235 piFileString += line;
1236 //qDebug("readline: %s ", line.latin1()); 1236 //qDebug("readline: %s ", line.latin1());
1237 mSyncActionDialog->setCaption( i18n("Received %1 bytes").arg( piFileString.length() ) ); 1237 mSyncActionDialog->setCaption( i18n("Received %1 bytes").arg( piFileString.length() ) );
1238 1238
1239 } 1239 }
1240 if ( piTime.elapsed () < 3000 ) { 1240 if ( piTime.elapsed () < 3000 ) {
1241 // wait for more 1241 // wait for more
1242 //qDebug("waitformore "); 1242 //qDebug("waitformore ");
1243 QTimer::singleShot( 100, this , SLOT (readBackFileFromSocket( ) )); 1243 QTimer::singleShot( 100, this , SLOT (readBackFileFromSocket( ) ));
1244 return; 1244 return;
1245 } 1245 }
1246 QString fileName = mFileName; 1246 QString fileName = mFileName;
1247 QFile file ( fileName ); 1247 QFile file ( fileName );
1248 if (!file.open( IO_WriteOnly ) ) { 1248 if (!file.open( IO_WriteOnly ) ) {
1249 delete mSyncActionDialog; 1249 delete mSyncActionDialog;
1250 mSyncActionDialog = 0; 1250 mSyncActionDialog = 0;
1251 qDebug("KSS:Error open read back file "); 1251 qDebug("KSS:Error open read back file ");
1252 piFileString = ""; 1252 piFileString = "";
1253 emit file_received( false ); 1253 emit file_received( false );
1254 blockRC = false; 1254 blockRC = false;
1255 return ; 1255 return ;
1256 1256
1257 } 1257 }
1258 1258
1259 // mView->setLoadedFileVersion(QDateTime::currentDateTime().addSecs( -1)); 1259 // mView->setLoadedFileVersion(QDateTime::currentDateTime().addSecs( -1));
1260 QTextStream ts ( &file ); 1260 QTextStream ts ( &file );
1261 ts.setEncoding( QTextStream::Latin1 ); 1261 ts.setEncoding( QTextStream::Latin1 );
1262 mSyncActionDialog->setCaption( i18n("Writing file to disk...") ); 1262 mSyncActionDialog->setCaption( i18n("Writing file to disk...") );
1263 ts << piFileString; 1263 ts << piFileString;
1264 mSocket->close(); 1264 mSocket->close();
1265 if ( mSocket->state() == QSocket::Idle ) 1265 if ( mSocket->state() == QSocket::Idle )
1266 QTimer::singleShot( 10, this , SLOT ( discardClient())); 1266 QTimer::singleShot( 10, this , SLOT ( discardClient()));
1267 file.close(); 1267 file.close();
1268 piFileString = ""; 1268 piFileString = "";
1269 emit file_received( true ); 1269 emit file_received( true );
1270 delete mSyncActionDialog; 1270 delete mSyncActionDialog;
1271 mSyncActionDialog = 0; 1271 mSyncActionDialog = 0;
1272 blockRC = false; 1272 blockRC = false;
1273 1273
1274} 1274}
1275 1275
1276KCommandSocket::KCommandSocket ( QString password, Q_UINT16 port, QString host, QObject * parent, const char * name ): QObject( parent, name ) 1276KCommandSocket::KCommandSocket ( QString password, Q_UINT16 port, QString host, QObject * parent, const char * name ): QObject( parent, name )
1277{ 1277{
1278 mPassWord = password; 1278 mPassWord = password;
1279 mSocket = 0; 1279 mSocket = 0;
1280 mPort = port; 1280 mPort = port;
1281 mHost = host; 1281 mHost = host;
1282 1282
1283 mRetVal = quiet; 1283 mRetVal = quiet;
1284 mTimerSocket = new QTimer ( this ); 1284 mTimerSocket = new QTimer ( this );
1285 connect( mTimerSocket, SIGNAL ( timeout () ), this, SLOT ( deleteSocket() ) ); 1285 connect( mTimerSocket, SIGNAL ( timeout () ), this, SLOT ( deleteSocket() ) );
1286} 1286}
1287void KCommandSocket::readFile( QString fn ) 1287void KCommandSocket::readFile( QString fn )
1288{ 1288{
1289 if ( !mSocket ) { 1289 if ( !mSocket ) {
1290 mSocket = new QSocket( this ); 1290 mSocket = new QSocket( this );
1291 connect( mSocket, SIGNAL(readyRead()), this, SLOT(startReadFileFromSocket()) ); 1291 connect( mSocket, SIGNAL(readyRead()), this, SLOT(startReadFileFromSocket()) );
1292 connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) ); 1292 connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) );
1293 } 1293 }
1294 mFileString = ""; 1294 mFileString = "";
1295 mFileName = fn; 1295 mFileName = fn;
1296 mFirst = true; 1296 mFirst = true;
1297 mSocket->connectToHost( mHost, mPort ); 1297 mSocket->connectToHost( mHost, mPort );
1298 QTextStream os( mSocket ); 1298 QTextStream os( mSocket );
1299 os.setEncoding( QTextStream::Latin1 ); 1299 os.setEncoding( QTextStream::Latin1 );
1300 1300
1301 QString curDt = KGlobal::locale()->formatDateTime(QDateTime::currentDateTime().addSecs(-1),true, true,KLocale::ISODate ); 1301 QString curDt = KGlobal::locale()->formatDateTime(QDateTime::currentDateTime().addSecs(-1),true, true,KLocale::ISODate );
1302 os << "GET " << mPassWord << curDt <<"\r\n"; 1302 os << "GET " << mPassWord << curDt <<"\r\n";
1303 mTimerSocket->start( 20000 ); 1303 mTimerSocket->start( 20000 );
1304} 1304}
1305 1305
1306void KCommandSocket::writeFile( QString fileName ) 1306void KCommandSocket::writeFile( QString fileName )
1307{ 1307{
1308 if ( !mSocket ) { 1308 if ( !mSocket ) {
1309 mSocket = new QSocket( this ); 1309 mSocket = new QSocket( this );
1310 connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) ); 1310 connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) );
1311 connect( mSocket, SIGNAL(connected ()), this, SLOT(writeFileToSocket()) ); 1311 connect( mSocket, SIGNAL(connected ()), this, SLOT(writeFileToSocket()) );
1312 } 1312 }
1313 mFileName = fileName ; 1313 mFileName = fileName ;
1314 mSocket->connectToHost( mHost, mPort ); 1314 mSocket->connectToHost( mHost, mPort );
1315} 1315}
1316void KCommandSocket::writeFileToSocket() 1316void KCommandSocket::writeFileToSocket()
1317{ 1317{
1318 QFile file2( mFileName ); 1318 QFile file2( mFileName );
1319 if (!file2.open( IO_ReadOnly ) ) { 1319 if (!file2.open( IO_ReadOnly ) ) {
1320 mRetVal= errorW; 1320 mRetVal= errorW;
1321 mSocket->close(); 1321 mSocket->close();
1322 if ( mSocket->state() == QSocket::Idle ) 1322 if ( mSocket->state() == QSocket::Idle )
1323 QTimer::singleShot( 10, this , SLOT ( deleteSocket())); 1323 QTimer::singleShot( 10, this , SLOT ( deleteSocket()));
1324 return ; 1324 return ;
1325 } 1325 }
1326 QTextStream ts2( &file2 ); 1326 QTextStream ts2( &file2 );
1327 ts2.setEncoding( QTextStream::Latin1 ); 1327 ts2.setEncoding( QTextStream::Latin1 );
1328 QTextStream os2( mSocket ); 1328 QTextStream os2( mSocket );
1329 os2.setEncoding( QTextStream::Latin1 ); 1329 os2.setEncoding( QTextStream::Latin1 );
1330 os2 << "PUT " << mPassWord << "\r\n";; 1330 os2 << "PUT " << mPassWord << "\r\n";;
1331 while ( ! ts2.atEnd() ) { 1331 while ( ! ts2.atEnd() ) {
1332 os2 << ts2.readLine() << "\r\n"; 1332 os2 << ts2.readLine() << "\r\n";
1333 } 1333 }
1334 mRetVal= successW; 1334 mRetVal= successW;
1335 file2.close(); 1335 file2.close();
1336 mSocket->close(); 1336 mSocket->close();
1337 if ( mSocket->state() == QSocket::Idle ) 1337 if ( mSocket->state() == QSocket::Idle )
1338 QTimer::singleShot( 10, this , SLOT ( deleteSocket())); 1338 QTimer::singleShot( 10, this , SLOT ( deleteSocket()));
1339} 1339}
1340void KCommandSocket::sendStop() 1340void KCommandSocket::sendStop()
1341{ 1341{
1342 if ( !mSocket ) { 1342 if ( !mSocket ) {
1343 mSocket = new QSocket( this ); 1343 mSocket = new QSocket( this );
1344 connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) ); 1344 connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) );
1345 } 1345 }
1346 mSocket->connectToHost( mHost, mPort ); 1346 mSocket->connectToHost( mHost, mPort );
1347 QTextStream os2( mSocket ); 1347 QTextStream os2( mSocket );
1348 os2.setEncoding( QTextStream::Latin1 ); 1348 os2.setEncoding( QTextStream::Latin1 );
1349 os2 << "STOP\r\n"; 1349 os2 << "STOP\r\n";
1350 mSocket->close(); 1350 mSocket->close();
1351 if ( mSocket->state() == QSocket::Idle ) 1351 if ( mSocket->state() == QSocket::Idle )
1352 QTimer::singleShot( 10, this , SLOT ( deleteSocket())); 1352 QTimer::singleShot( 10, this , SLOT ( deleteSocket()));
1353} 1353}
1354 1354
1355void KCommandSocket::startReadFileFromSocket() 1355void KCommandSocket::startReadFileFromSocket()
1356{ 1356{
1357 if ( ! mFirst ) 1357 if ( ! mFirst )
1358 return; 1358 return;
1359 mFirst = false; 1359 mFirst = false;
1360 mTimerSocket->stop(); 1360 mTimerSocket->stop();
1361 mFileString = ""; 1361 mFileString = "";
1362 mTime.start(); 1362 mTime.start();
1363 QTimer::singleShot( 1, this , SLOT (readFileFromSocket( ) )); 1363 QTimer::singleShot( 1, this , SLOT (readFileFromSocket( ) ));
1364 1364
1365} 1365}
1366void KCommandSocket::readFileFromSocket() 1366void KCommandSocket::readFileFromSocket()
1367{ 1367{
1368 //qDebug("readBackFileFromSocket() %d ", mTime.elapsed ()); 1368 //qDebug("readBackFileFromSocket() %d ", mTime.elapsed ());
1369 while ( mSocket->canReadLine () ) { 1369 while ( mSocket->canReadLine () ) {
1370 mTime.restart(); 1370 mTime.restart();
1371 QString line = mSocket->readLine (); 1371 QString line = mSocket->readLine ();
1372 mFileString += line; 1372 mFileString += line;
1373 //qDebug("readline: %s ", line.latin1()); 1373 //qDebug("readline: %s ", line.latin1());
1374 } 1374 }
1375 if ( mTime.elapsed () < 3000 ) { 1375 if ( mTime.elapsed () < 3000 ) {
1376 // wait for more 1376 // wait for more
1377 //qDebug("waitformore "); 1377 //qDebug("waitformore ");
1378 QTimer::singleShot( 100, this , SLOT (readFileFromSocket( ) )); 1378 QTimer::singleShot( 100, this , SLOT (readFileFromSocket( ) ));
1379 return; 1379 return;
1380 } 1380 }
1381 QString fileName = mFileName; 1381 QString fileName = mFileName;
1382 QFile file ( fileName ); 1382 QFile file ( fileName );
1383 if (!file.open( IO_WriteOnly ) ) { 1383 if (!file.open( IO_WriteOnly ) ) {
1384 mFileString = ""; 1384 mFileString = "";
1385 mRetVal = errorR; 1385 mRetVal = errorR;
1386 qDebug("KSS:Error open temp sync file for writing: %s",fileName.latin1() ); 1386 qDebug("KSS:Error open temp sync file for writing: %s",fileName.latin1() );
1387 deleteSocket(); 1387 deleteSocket();
1388 return ; 1388 return ;
1389 1389
1390 } 1390 }
1391 // mView->setLoadedFileVersion(QDateTime::currentDateTime().addSecs( -1)); 1391 // mView->setLoadedFileVersion(QDateTime::currentDateTime().addSecs( -1));
1392 QTextStream ts ( &file ); 1392 QTextStream ts ( &file );
1393 ts.setEncoding( QTextStream::Latin1 ); 1393 ts.setEncoding( QTextStream::Latin1 );
1394 ts << mFileString; 1394 ts << mFileString;
1395 file.close(); 1395 file.close();
1396 mFileString = ""; 1396 mFileString = "";
1397 mRetVal = successR; 1397 mRetVal = successR;
1398 mSocket->close(); 1398 mSocket->close();
1399 // if state is not idle, deleteSocket(); is called via 1399 // if state is not idle, deleteSocket(); is called via
1400 // connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) ); 1400 // connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) );
1401 if ( mSocket->state() == QSocket::Idle ) 1401 if ( mSocket->state() == QSocket::Idle )
1402 deleteSocket(); 1402 deleteSocket();
1403} 1403}
1404 1404
1405void KCommandSocket::deleteSocket() 1405void KCommandSocket::deleteSocket()
1406{ 1406{
1407 //qDebug("KCommandSocket::deleteSocket() "); 1407 //qDebug("KCommandSocket::deleteSocket() ");
1408 if ( mTimerSocket->isActive () ) { 1408 if ( mTimerSocket->isActive () ) {
1409 mTimerSocket->stop(); 1409 mTimerSocket->stop();
1410 mRetVal = errorTO; 1410 mRetVal = errorTO;
1411 qDebug("Connection to remote host timed out"); 1411 qDebug("Connection to remote host timed out");
1412 if ( mSocket ) { 1412 if ( mSocket ) {
1413 mSocket->close(); 1413 mSocket->close();
1414 //if ( mSocket->state() == QSocket::Idle ) 1414 //if ( mSocket->state() == QSocket::Idle )
1415 // deleteSocket(); 1415 // deleteSocket();
1416 delete mSocket; 1416 delete mSocket;
1417 mSocket = 0; 1417 mSocket = 0;
1418 } 1418 }
1419 KMessageBox::error( 0, i18n("Connection to remote\nhost timed out!\nDid you forgot to enable\nsyncing on remote host? ")); 1419 KMessageBox::error( 0, i18n("Connection to remote\nhost timed out!\nDid you forgot to enable\nsyncing on remote host? "));
1420 emit commandFinished( this, mRetVal ); 1420 emit commandFinished( this, mRetVal );
1421 return; 1421 return;
1422 } 1422 }
1423 //qDebug("KCommandSocket::deleteSocket() %d", mRetVal ); 1423 //qDebug("KCommandSocket::deleteSocket() %d", mRetVal );
1424 if ( mSocket) 1424 if ( mSocket)
1425 delete mSocket; 1425 delete mSocket;
1426 mSocket = 0; 1426 mSocket = 0;
1427 emit commandFinished( this, mRetVal ); 1427 emit commandFinished( this, mRetVal );
1428} 1428}