summaryrefslogtreecommitdiffabout
path: root/libkdepim/ksyncmanager.cpp
Unidiff
Diffstat (limited to 'libkdepim/ksyncmanager.cpp') (more/less context) (ignore whitespace changes)
-rw-r--r--libkdepim/ksyncmanager.cpp22
1 files changed, 16 insertions, 6 deletions
diff --git a/libkdepim/ksyncmanager.cpp b/libkdepim/ksyncmanager.cpp
index 47d00a4..d59f4a4 100644
--- a/libkdepim/ksyncmanager.cpp
+++ b/libkdepim/ksyncmanager.cpp
@@ -949,637 +949,647 @@ void KSyncManager::syncKDE()
949 system ( command.latin1()); 949 system ( command.latin1());
950 } 950 }
951 } 951 }
952 952
953 } 953 }
954 break; 954 break;
955 case (PWMPI): 955 case (PWMPI):
956 956
957 break; 957 break;
958 default: 958 default:
959 qDebug("KSM::slotSyncMenu: invalid apptype selected"); 959 qDebug("KSM::slotSyncMenu: invalid apptype selected");
960 break; 960 break;
961 961
962 } 962 }
963} 963}
964 964
965void KSyncManager::syncSharp() 965void KSyncManager::syncSharp()
966{ 966{
967 967
968 if ( ! syncExternalApplication("sharp") ) 968 if ( ! syncExternalApplication("sharp") )
969 qDebug("KSM::ERROR sync sharp "); 969 qDebug("KSM::ERROR sync sharp ");
970} 970}
971 971
972bool KSyncManager::syncExternalApplication(QString resource) 972bool KSyncManager::syncExternalApplication(QString resource)
973{ 973{
974 974
975 emit save(); 975 emit save();
976 976
977 if ( mAskForPreferences ) 977 if ( mAskForPreferences )
978 if ( !edit_sync_options()) { 978 if ( !edit_sync_options()) {
979 mParent->topLevelWidget()->setCaption( i18n("Syncing aborted. Nothing synced.") ); 979 mParent->topLevelWidget()->setCaption( i18n("Syncing aborted. Nothing synced.") );
980 return false; 980 return false;
981 } 981 }
982 982
983 qDebug("KSM::Sync extern %s", resource.latin1()); 983 qDebug("KSM::Sync extern %s", resource.latin1());
984 984
985 bool syncOK = mImplementation->syncExternal(this, resource); 985 bool syncOK = mImplementation->syncExternal(this, resource);
986 986
987 return syncOK; 987 return syncOK;
988 988
989} 989}
990 990
991void KSyncManager::syncPhone() 991void KSyncManager::syncPhone()
992{ 992{
993 993
994 syncExternalApplication("phone"); 994 syncExternalApplication("phone");
995 995
996} 996}
997 997
998void KSyncManager::showProgressBar(int percentage, QString caption, int total) 998void KSyncManager::showProgressBar(int percentage, QString caption, int total)
999{ 999{
1000 if (!bar->isVisible()) 1000 if (!bar->isVisible())
1001 { 1001 {
1002 bar->setCaption (caption); 1002 bar->setCaption (caption);
1003 bar->setTotalSteps ( total ) ; 1003 bar->setTotalSteps ( total ) ;
1004 bar->show(); 1004 bar->show();
1005 } 1005 }
1006 bar->raise(); 1006 bar->raise();
1007 bar->setProgress( percentage ); 1007 bar->setProgress( percentage );
1008 qApp->processEvents(); 1008 qApp->processEvents();
1009} 1009}
1010 1010
1011void KSyncManager::hideProgressBar() 1011void KSyncManager::hideProgressBar()
1012{ 1012{
1013 bar->hide(); 1013 bar->hide();
1014 qApp->processEvents(); 1014 qApp->processEvents();
1015} 1015}
1016 1016
1017bool KSyncManager::isProgressBarCanceled() 1017bool KSyncManager::isProgressBarCanceled()
1018{ 1018{
1019 return !bar->isVisible(); 1019 return !bar->isVisible();
1020} 1020}
1021 1021
1022QString KSyncManager::syncFileName() 1022QString KSyncManager::syncFileName()
1023{ 1023{
1024 1024
1025 QString fn = "tempfile"; 1025 QString fn = "tempfile";
1026 switch(mTargetApp) 1026 switch(mTargetApp)
1027 { 1027 {
1028 case (KAPI): 1028 case (KAPI):
1029 fn = "tempsyncab.vcf"; 1029 fn = "tempsyncab.vcf";
1030 break; 1030 break;
1031 case (KOPI): 1031 case (KOPI):
1032 fn = "tempsynccal.ics"; 1032 fn = "tempsynccal.ics";
1033 break; 1033 break;
1034 case (PWMPI): 1034 case (PWMPI):
1035 fn = "tempsyncpw.pwm"; 1035 fn = "tempsyncpw.pwm";
1036 break; 1036 break;
1037 default: 1037 default:
1038 break; 1038 break;
1039 } 1039 }
1040#ifdef _WIN32_ 1040#ifdef _WIN32_
1041 return locateLocal( "tmp", fn ); 1041 return locateLocal( "tmp", fn );
1042#else 1042#else
1043 return (QString( "/tmp/" )+ fn ); 1043 return (QString( "/tmp/" )+ fn );
1044#endif 1044#endif
1045} 1045}
1046 1046
1047void KSyncManager::syncPi() 1047void KSyncManager::syncPi()
1048{ 1048{
1049 mIsKapiFile = true; 1049 mIsKapiFile = true;
1050 mPisyncFinished = false; 1050 mPisyncFinished = false;
1051 qApp->processEvents(); 1051 qApp->processEvents();
1052 if ( mAskForPreferences ) 1052 if ( mAskForPreferences )
1053 if ( !edit_pisync_options()) { 1053 if ( !edit_pisync_options()) {
1054 mParent->topLevelWidget()->setCaption( i18n("Syncing aborted. Nothing synced.") ); 1054 mParent->topLevelWidget()->setCaption( i18n("Syncing aborted. Nothing synced.") );
1055 mPisyncFinished = true; 1055 mPisyncFinished = true;
1056 return; 1056 return;
1057 } 1057 }
1058 bool ok; 1058 bool ok;
1059 Q_UINT16 port = mActiveSyncPort.toUInt(&ok); 1059 Q_UINT16 port = mActiveSyncPort.toUInt(&ok);
1060 if ( ! ok ) { 1060 if ( ! ok ) {
1061 mParent->topLevelWidget()->setCaption( i18n("Sorry, no valid port.Syncing cancelled.") ); 1061 mParent->topLevelWidget()->setCaption( i18n("Sorry, no valid port.Syncing cancelled.") );
1062 mPisyncFinished = true; 1062 mPisyncFinished = true;
1063 return; 1063 return;
1064 } 1064 }
1065 KCommandSocket* commandSocket = new KCommandSocket( mPassWordPiSync, port, mActiveSyncIP, this, mParent->topLevelWidget() ); 1065 KCommandSocket* commandSocket = new KCommandSocket( mPassWordPiSync, port, mActiveSyncIP, this, mParent->topLevelWidget() );
1066 connect( commandSocket, SIGNAL(commandFinished( KCommandSocket*, int )), this, SLOT(deleteCommandSocket(KCommandSocket*, int)) ); 1066 connect( commandSocket, SIGNAL(commandFinished( KCommandSocket*, int )), this, SLOT(deleteCommandSocket(KCommandSocket*, int)) );
1067 commandSocket->readFile( syncFileName() ); 1067 commandSocket->readFile( syncFileName() );
1068} 1068}
1069 1069
1070void KSyncManager::deleteCommandSocket(KCommandSocket*s, int state) 1070void KSyncManager::deleteCommandSocket(KCommandSocket*s, int state)
1071{ 1071{
1072 //enum { success, errorW, errorR, quiet }; 1072 //enum { success, errorW, errorR, quiet };
1073 1073
1074 1074
1075 1075
1076 if ( state == KCommandSocket::errorR ||state == KCommandSocket::errorTO ||state == KCommandSocket::errorPW || 1076 if ( state == KCommandSocket::errorR ||state == KCommandSocket::errorTO ||state == KCommandSocket::errorPW ||
1077 state == KCommandSocket::errorCA ||state == KCommandSocket::errorFI ||state == KCommandSocket::errorUN ) { 1077 state == KCommandSocket::errorCA ||state == KCommandSocket::errorFI ||state == KCommandSocket::errorUN||state == KCommandSocket::errorED ) {
1078 if ( state == KCommandSocket::errorPW ) 1078 if ( state == KCommandSocket::errorPW )
1079 mParent->topLevelWidget()->setCaption( i18n("Wrong password: Receiving remote file failed.") ); 1079 mParent->topLevelWidget()->setCaption( i18n("Wrong password: Receiving remote file failed.") );
1080 else if ( state == KCommandSocket::errorR ||state == KCommandSocket::errorTO ) 1080 else if ( state == KCommandSocket::errorR ||state == KCommandSocket::errorTO )
1081 mParent->topLevelWidget()->setCaption( i18n("ERROR: Receiving remote file failed.") ); 1081 mParent->topLevelWidget()->setCaption( i18n("ERROR: Receiving remote file failed.") );
1082 else if ( state == KCommandSocket::errorCA ) 1082 else if ( state == KCommandSocket::errorCA )
1083 mParent->topLevelWidget()->setCaption( i18n("Sync cancelled from remote.") ); 1083 mParent->topLevelWidget()->setCaption( i18n("Sync cancelled from remote.") );
1084 else if ( state == KCommandSocket::errorFI ) 1084 else if ( state == KCommandSocket::errorFI )
1085 mParent->topLevelWidget()->setCaption( i18n("File error on remote.") ); 1085 mParent->topLevelWidget()->setCaption( i18n("File error on remote.") );
1086 else if ( state == KCommandSocket::errorED )
1087 mParent->topLevelWidget()->setCaption( i18n("Please close error dialog on remote.") );
1086 else if ( state == KCommandSocket::errorUN ) 1088 else if ( state == KCommandSocket::errorUN )
1087 mParent->topLevelWidget()->setCaption( i18n("Unknown error on remote.") ); 1089 mParent->topLevelWidget()->setCaption( i18n("Unknown error on remote.") );
1088 delete s; 1090 delete s;
1089 if ( state == KCommandSocket::errorR ) { 1091 if ( state == KCommandSocket::errorR ) {
1090 KCommandSocket* commandSocket = new KCommandSocket( mPassWordPiSync, mActiveSyncPort.toUInt(), mActiveSyncIP, this, mParent->topLevelWidget()); 1092 KCommandSocket* commandSocket = new KCommandSocket( mPassWordPiSync, mActiveSyncPort.toUInt(), mActiveSyncIP, this, mParent->topLevelWidget());
1091 connect( commandSocket, SIGNAL(commandFinished( KCommandSocket*, int)), this, SLOT(deleteCommandSocket(KCommandSocket*, int )) ); 1093 connect( commandSocket, SIGNAL(commandFinished( KCommandSocket*, int)), this, SLOT(deleteCommandSocket(KCommandSocket*, int )) );
1092 commandSocket->sendStop(); 1094 commandSocket->sendStop();
1093 } 1095 }
1094 mPisyncFinished = true; 1096 mPisyncFinished = true;
1095 return; 1097 return;
1096 1098
1097 } else if ( state == KCommandSocket::errorW ) { 1099 } else if ( state == KCommandSocket::errorW ) {
1098 mParent->topLevelWidget()->setCaption( i18n("ERROR:Writing back file failed.") ); 1100 mParent->topLevelWidget()->setCaption( i18n("ERROR:Writing back file failed.") );
1099 mPisyncFinished = true; 1101 mPisyncFinished = true;
1100 1102
1101 } else if ( state == KCommandSocket::successR ) { 1103 } else if ( state == KCommandSocket::successR ) {
1102 QTimer::singleShot( 1, this , SLOT ( readFileFromSocket())); 1104 QTimer::singleShot( 1, this , SLOT ( readFileFromSocket()));
1103 1105
1104 } else if ( state == KCommandSocket::successW ) { 1106 } else if ( state == KCommandSocket::successW ) {
1105 mParent->topLevelWidget()->setCaption( i18n("Pi-Sync successful!") ); 1107 mParent->topLevelWidget()->setCaption( i18n("Pi-Sync successful!") );
1106 mPisyncFinished = true; 1108 mPisyncFinished = true;
1107 } else if ( state == KCommandSocket::quiet ){ 1109 } else if ( state == KCommandSocket::quiet ){
1108 qDebug("KSS: quiet "); 1110 qDebug("KSS: quiet ");
1109 mPisyncFinished = true; 1111 mPisyncFinished = true;
1110 } else { 1112 } else {
1111 qDebug("KSS: Error: unknown state: %d ", state); 1113 qDebug("KSS: Error: unknown state: %d ", state);
1112 mPisyncFinished = true; 1114 mPisyncFinished = true;
1113 } 1115 }
1114 1116
1115 delete s; 1117 delete s;
1116} 1118}
1117 1119
1118void KSyncManager::readFileFromSocket() 1120void KSyncManager::readFileFromSocket()
1119{ 1121{
1120 QString fileName = syncFileName(); 1122 QString fileName = syncFileName();
1121 bool syncOK = true; 1123 bool syncOK = true;
1122 mParent->topLevelWidget()->setCaption( i18n("Remote file saved to temp file.") ); 1124 mParent->topLevelWidget()->setCaption( i18n("Remote file saved to temp file.") );
1123 if ( ! syncWithFile( fileName , true ) ) { 1125 if ( ! syncWithFile( fileName , true ) ) {
1124 mParent->topLevelWidget()->setCaption( i18n("Syncing failed.") ); 1126 mParent->topLevelWidget()->setCaption( i18n("Syncing failed.") );
1125 syncOK = false; 1127 syncOK = false;
1126 } 1128 }
1127 KCommandSocket* commandSocket = new KCommandSocket( mPassWordPiSync, mActiveSyncPort.toUInt(), mActiveSyncIP, this, mParent->topLevelWidget() ); 1129 KCommandSocket* commandSocket = new KCommandSocket( mPassWordPiSync, mActiveSyncPort.toUInt(), mActiveSyncIP, this, mParent->topLevelWidget() );
1128 connect( commandSocket, SIGNAL(commandFinished( KCommandSocket*, int)), this, SLOT(deleteCommandSocket(KCommandSocket*, int )) ); 1130 connect( commandSocket, SIGNAL(commandFinished( KCommandSocket*, int)), this, SLOT(deleteCommandSocket(KCommandSocket*, int )) );
1129 if ( mWriteBackFile && syncOK ) 1131 if ( mWriteBackFile && syncOK )
1130 commandSocket->writeFile( fileName ); 1132 commandSocket->writeFile( fileName );
1131 else { 1133 else {
1132 commandSocket->sendStop(); 1134 commandSocket->sendStop();
1133 if ( syncOK ) 1135 if ( syncOK )
1134 mParent->topLevelWidget()->setCaption( i18n("Pi-Sync succesful!") ); 1136 mParent->topLevelWidget()->setCaption( i18n("Pi-Sync succesful!") );
1135 mPisyncFinished = true; 1137 mPisyncFinished = true;
1136 } 1138 }
1137} 1139}
1138 1140
1139KServerSocket:: KServerSocket ( QString pw, Q_UINT16 port, int backlog, QObject * parent, const char * name ) : QServerSocket( port, backlog, parent, name ) 1141KServerSocket:: KServerSocket ( QString pw, Q_UINT16 port, int backlog, QObject * parent, const char * name ) : QServerSocket( port, backlog, parent, name )
1140{ 1142{
1141 mPassWord = pw; 1143 mPassWord = pw;
1142 mSocket = 0; 1144 mSocket = 0;
1143 mSyncActionDialog = 0; 1145 mSyncActionDialog = 0;
1144 blockRC = false; 1146 blockRC = false;
1145 mErrorMessage = 0; 1147 mErrorMessage = 0;
1146} 1148}
1147 1149
1148void KServerSocket::newConnection ( int socket ) 1150void KServerSocket::newConnection ( int socket )
1149{ 1151{
1150 // qDebug("KServerSocket:New connection %d ", socket); 1152 // qDebug("KServerSocket:New connection %d ", socket);
1151 if ( mSocket ) { 1153 if ( mSocket ) {
1152 qDebug("KSS::newConnection Socket deleted! "); 1154 qDebug("KSS::newConnection Socket deleted! ");
1153 delete mSocket; 1155 delete mSocket;
1154 mSocket = 0; 1156 mSocket = 0;
1155 } 1157 }
1156 mSocket = new QSocket( this ); 1158 mSocket = new QSocket( this );
1157 connect( mSocket , SIGNAL(readyRead()), this, SLOT(readClient()) ); 1159 connect( mSocket , SIGNAL(readyRead()), this, SLOT(readClient()) );
1158 connect( mSocket , SIGNAL(delayedCloseFinished()), this, SLOT(discardClient()) ); 1160 connect( mSocket , SIGNAL(delayedCloseFinished()), this, SLOT(discardClient()) );
1159 mSocket->setSocket( socket ); 1161 mSocket->setSocket( socket );
1160} 1162}
1161 1163
1162void KServerSocket::discardClient() 1164void KServerSocket::discardClient()
1163{ 1165{
1164 QTimer::singleShot( 10, this , SLOT ( deleteSocket())); 1166 QTimer::singleShot( 10, this , SLOT ( deleteSocket()));
1165} 1167}
1166void KServerSocket::deleteSocket() 1168void KServerSocket::deleteSocket()
1167{ 1169{
1168 qDebug("KSS::deleteSocket"); 1170 qDebug("KSS::deleteSocket");
1169 if ( mSocket ) { 1171 if ( mSocket ) {
1170 delete mSocket; 1172 delete mSocket;
1171 mSocket = 0; 1173 mSocket = 0;
1172 } 1174 }
1173 if ( mErrorMessage ) 1175 if ( mErrorMessage )
1174 QTimer::singleShot( 10, this , SLOT ( displayErrorMessage())); 1176 QTimer::singleShot( 10, this , SLOT ( displayErrorMessage()));
1175} 1177}
1176void KServerSocket::readClient() 1178void KServerSocket::readClient()
1177{ 1179{
1178 if ( blockRC ) 1180 if ( blockRC )
1179 return; 1181 return;
1180 if ( mSocket == 0 ) { 1182 if ( mSocket == 0 ) {
1181 qDebug("ERROR::KSS::readClient(): mSocket == 0 "); 1183 qDebug("ERROR::KSS::readClient(): mSocket == 0 ");
1182 return; 1184 return;
1183 } 1185 }
1184 if ( mErrorMessage ) { 1186 if ( mErrorMessage ) {
1185 mErrorMessage = 999; 1187 mErrorMessage = 999;
1186 error_connect("ERROR_UN\r\n\r\n"); 1188 error_connect("ERROR_ED\r\n\r\n");
1187 return; 1189 return;
1188 } 1190 }
1189 mErrorMessage = 0; 1191 mErrorMessage = 0;
1190 //qDebug("KServerSocket::readClient()"); 1192 //qDebug("KServerSocket::readClient()");
1191 if ( mSocket->canReadLine() ) { 1193 if ( mSocket->canReadLine() ) {
1192 QString line = mSocket->readLine(); 1194 QString line = mSocket->readLine();
1193 //qDebug("KServerSocket readline: %s ", line.latin1()); 1195 //qDebug("KServerSocket readline: %s ", line.latin1());
1194 QStringList tokens = QStringList::split( QRegExp("[ \r\n][ \r\n]*"), line ); 1196 QStringList tokens = QStringList::split( QRegExp("[ \r\n][ \r\n]*"), line );
1195 if ( tokens[0] == "GET" ) { 1197 if ( tokens[0] == "GET" ) {
1196 if ( tokens[1] == mPassWord ) { 1198 if ( tokens[1] == mPassWord ) {
1197 //emit sendFile( mSocket ); 1199 //emit sendFile( mSocket );
1198 bool ok = false; 1200 bool ok = false;
1199 QDateTime dt = KGlobal::locale()->readDateTime( tokens[2], KLocale::ISODate, &ok); 1201 QDateTime dt = KGlobal::locale()->readDateTime( tokens[2], KLocale::ISODate, &ok);
1200 if ( ok ) { 1202 if ( ok ) {
1201 KSyncManager::mRequestedSyncEvent = dt; 1203 KSyncManager::mRequestedSyncEvent = dt;
1202 } 1204 }
1203 else 1205 else
1204 KSyncManager::mRequestedSyncEvent = QDateTime(); 1206 KSyncManager::mRequestedSyncEvent = QDateTime();
1205 send_file(); 1207 send_file();
1206 } 1208 }
1207 else { 1209 else {
1208 mErrorMessage = 1; 1210 mErrorMessage = 1;
1209 error_connect("ERROR_PW\r\n\r\n"); 1211 error_connect("ERROR_PW\r\n\r\n");
1210 } 1212 }
1211 } 1213 }
1212 if ( tokens[0] == "PUT" ) { 1214 if ( tokens[0] == "PUT" ) {
1213 if ( tokens[1] == mPassWord ) { 1215 if ( tokens[1] == mPassWord ) {
1214 //emit getFile( mSocket ); 1216 //emit getFile( mSocket );
1215 blockRC = true; 1217 blockRC = true;
1216 get_file(); 1218 get_file();
1217 } 1219 }
1218 else { 1220 else {
1219 mErrorMessage = 2; 1221 mErrorMessage = 2;
1220 error_connect("ERROR_PW\r\n\r\n"); 1222 error_connect("ERROR_PW\r\n\r\n");
1221 end_connect(); 1223 end_connect();
1222 } 1224 }
1223 } 1225 }
1224 if ( tokens[0] == "STOP" ) { 1226 if ( tokens[0] == "STOP" ) {
1225 //emit endConnect(); 1227 //emit endConnect();
1226 end_connect(); 1228 end_connect();
1227 } 1229 }
1228 } 1230 }
1229} 1231}
1230void KServerSocket::displayErrorMessage() 1232void KServerSocket::displayErrorMessage()
1231{ 1233{
1232 if ( mErrorMessage == 1 ) 1234 if ( mErrorMessage == 1 ) {
1233 KMessageBox::error( 0, i18n("Got send file request\nwith invalid password")); 1235 KMessageBox::error( 0, i18n("Got send file request\nwith invalid password"));
1234 else if ( mErrorMessage == 2 ) 1236 mErrorMessage = 0;
1237 }
1238 else if ( mErrorMessage == 2 ) {
1235 KMessageBox::error( 0, i18n("Got receive file request\nwith invalid password")); 1239 KMessageBox::error( 0, i18n("Got receive file request\nwith invalid password"));
1236 mErrorMessage = 0; 1240 mErrorMessage = 0;
1241 }
1237} 1242}
1238void KServerSocket::error_connect( QString errmess ) 1243void KServerSocket::error_connect( QString errmess )
1239{ 1244{
1240 QTextStream os( mSocket ); 1245 QTextStream os( mSocket );
1241 os.setEncoding( QTextStream::Latin1 ); 1246 os.setEncoding( QTextStream::Latin1 );
1242 os << errmess ; 1247 os << errmess ;
1243 mSocket->close(); 1248 mSocket->close();
1244 if ( mSocket->state() == QSocket::Idle ) { 1249 if ( mSocket->state() == QSocket::Idle ) {
1245 QTimer::singleShot( 0, this , SLOT ( discardClient())); 1250 QTimer::singleShot( 0, this , SLOT ( discardClient()));
1246 } 1251 }
1247} 1252}
1248void KServerSocket::end_connect() 1253void KServerSocket::end_connect()
1249{ 1254{
1250 delete mSyncActionDialog; 1255 delete mSyncActionDialog;
1251 mSyncActionDialog = 0; 1256 mSyncActionDialog = 0;
1252} 1257}
1253void KServerSocket::send_file() 1258void KServerSocket::send_file()
1254{ 1259{
1255 //qDebug("MainWindow::sendFile(QSocket* s) "); 1260 //qDebug("MainWindow::sendFile(QSocket* s) ");
1256 if ( mSyncActionDialog ) 1261 if ( mSyncActionDialog )
1257 delete mSyncActionDialog; 1262 delete mSyncActionDialog;
1258 mSyncActionDialog = new QDialog ( 0, "input-dialog", true ); 1263 mSyncActionDialog = new QDialog ( 0, "input-dialog", true );
1259 mSyncActionDialog->setCaption(i18n("Received sync request")); 1264 mSyncActionDialog->setCaption(i18n("Received sync request"));
1260 QLabel* label = new QLabel( i18n("Synchronizing from remote ...\n\nDo not use this application!\n\nIf syncing fails\nyou can close this dialog."), mSyncActionDialog ); 1265 QLabel* label = new QLabel( i18n("Synchronizing from remote ...\n\nDo not use this application!\n\nIf syncing fails\nyou can close this dialog."), mSyncActionDialog );
1261 label->setAlignment ( Qt::AlignHCenter ); 1266 label->setAlignment ( Qt::AlignHCenter );
1262 QVBoxLayout* lay = new QVBoxLayout( mSyncActionDialog ); 1267 QVBoxLayout* lay = new QVBoxLayout( mSyncActionDialog );
1263 lay->addWidget( label); 1268 lay->addWidget( label);
1264 lay->setMargin(7); 1269 lay->setMargin(7);
1265 lay->setSpacing(7); 1270 lay->setSpacing(7);
1266 if ( KSyncManager::mRequestedSyncEvent.isValid() ) { 1271 if ( KSyncManager::mRequestedSyncEvent.isValid() ) {
1267 int secs = QDateTime::currentDateTime().secsTo( KSyncManager::mRequestedSyncEvent ); 1272 int secs = QDateTime::currentDateTime().secsTo( KSyncManager::mRequestedSyncEvent );
1268 secs = 333; 1273 //secs = 333;
1269 if ( secs < 0 ) 1274 if ( secs < 0 )
1270 secs = secs * (-1); 1275 secs = secs * (-1);
1271 if ( secs > 30 ) 1276 if ( secs > 30 )
1272 //if ( true ) 1277 //if ( true )
1273 { 1278 {
1274 QString warning = i18n("Clock skew of\nsyncing devices\nis %1 seconds!").arg( secs ); 1279 QString warning = i18n("Clock skew of\nsyncing devices\nis %1 seconds!").arg( secs );
1275 QLabel* label = new QLabel( warning, mSyncActionDialog ); 1280 QLabel* label = new QLabel( warning, mSyncActionDialog );
1276 label->setAlignment ( Qt::AlignHCenter ); 1281 label->setAlignment ( Qt::AlignHCenter );
1277 lay->addWidget( label); 1282 lay->addWidget( label);
1278 if ( secs > 180 ) 1283 if ( secs > 180 )
1279 { 1284 {
1280 if ( secs > 300 ) { 1285 if ( secs > 300 ) {
1281 if ( KMessageBox::Cancel == KMessageBox::warningContinueCancel(0, i18n("The clocks of the syncing\ndevices have a difference\nof more than 5 minutes.\nPlease adjust your clocks.\nYou may get wrong syncing results!\nPlease confirm synchronization!"), i18n("High clock skew!"),i18n("Synchronize!"))) { 1286 if ( KMessageBox::Cancel == KMessageBox::warningContinueCancel(0, i18n("The clocks of the syncing\ndevices have a difference\nof more than 5 minutes.\nPlease adjust your clocks.\nYou may get wrong syncing results!\nPlease confirm synchronization!"), i18n("High clock skew!"),i18n("Synchronize!"))) {
1282 qDebug("KSS::Sync cancelled ,cs"); 1287 qDebug("KSS::Sync cancelled ,cs");
1283 mErrorMessage = 0; 1288 mErrorMessage = 0;
1284 end_connect(); 1289 end_connect();
1285 error_connect("ERROR_CA\r\n\r\n"); 1290 error_connect("ERROR_CA\r\n\r\n");
1286 return ; 1291 return ;
1287 } 1292 }
1288 } 1293 }
1289 QFont f = label->font(); 1294 QFont f = label->font();
1290 f.setPointSize ( f.pointSize() *2 ); 1295 f.setPointSize ( f.pointSize() *2 );
1291 f. setBold (true ); 1296 f. setBold (true );
1292 QLabel* label = new QLabel( warning, mSyncActionDialog ); 1297 QLabel* label = new QLabel( warning, mSyncActionDialog );
1293 label->setFont( f ); 1298 label->setFont( f );
1294 warning = i18n("ADJUST\nYOUR\nCLOCKS!"); 1299 warning = i18n("ADJUST\nYOUR\nCLOCKS!");
1295 label->setText( warning ); 1300 label->setText( warning );
1296 label->setAlignment ( Qt::AlignHCenter ); 1301 label->setAlignment ( Qt::AlignHCenter );
1297 lay->addWidget( label); 1302 lay->addWidget( label);
1298 mSyncActionDialog->setFixedSize( 230, 300); 1303 mSyncActionDialog->setFixedSize( 230, 300);
1299 } else { 1304 } else {
1300 mSyncActionDialog->setFixedSize( 230, 200); 1305 mSyncActionDialog->setFixedSize( 230, 200);
1301 } 1306 }
1302 } else { 1307 } else {
1303 mSyncActionDialog->setFixedSize( 230, 120); 1308 mSyncActionDialog->setFixedSize( 230, 120);
1304 } 1309 }
1305 } else 1310 } else
1306 mSyncActionDialog->setFixedSize( 230, 120); 1311 mSyncActionDialog->setFixedSize( 230, 120);
1307 mSyncActionDialog->show(); 1312 mSyncActionDialog->show();
1308 mSyncActionDialog->raise(); 1313 mSyncActionDialog->raise();
1309 emit request_file(); 1314 emit request_file();
1310 qApp->processEvents(); 1315 qApp->processEvents();
1311 QString fileName = mFileName; 1316 QString fileName = mFileName;
1312 QFile file( fileName ); 1317 QFile file( fileName );
1313 if (!file.open( IO_ReadOnly ) ) { 1318 if (!file.open( IO_ReadOnly ) ) {
1314 mErrorMessage = 0; 1319 mErrorMessage = 0;
1315 end_connect(); 1320 end_connect();
1316 error_connect("ERROR_FI\r\n\r\n"); 1321 error_connect("ERROR_FI\r\n\r\n");
1317 return ; 1322 return ;
1318 } 1323 }
1319 mSyncActionDialog->setCaption( i18n("Sending file...") ); 1324 mSyncActionDialog->setCaption( i18n("Sending file...") );
1320 QTextStream ts( &file ); 1325 QTextStream ts( &file );
1321 ts.setEncoding( QTextStream::Latin1 ); 1326 ts.setEncoding( QTextStream::Latin1 );
1322 1327
1323 QTextStream os( mSocket ); 1328 QTextStream os( mSocket );
1324 os.setEncoding( QTextStream::Latin1 ); 1329 os.setEncoding( QTextStream::Latin1 );
1325 while ( ! ts.atEnd() ) { 1330 while ( ! ts.atEnd() ) {
1326 os << ts.readLine() << "\r\n"; 1331 os << ts.readLine() << "\r\n";
1327 } 1332 }
1328 os << "\r\n"; 1333 os << "\r\n";
1329 //os << ts.read(); 1334 //os << ts.read();
1330 file.close(); 1335 file.close();
1331 mSyncActionDialog->setCaption( i18n("Waiting for synced file...") ); 1336 mSyncActionDialog->setCaption( i18n("Waiting for synced file...") );
1332 mSocket->close(); 1337 mSocket->close();
1333 if ( mSocket->state() == QSocket::Idle ) 1338 if ( mSocket->state() == QSocket::Idle )
1334 QTimer::singleShot( 10, this , SLOT ( discardClient())); 1339 QTimer::singleShot( 10, this , SLOT ( discardClient()));
1335} 1340}
1336void KServerSocket::get_file() 1341void KServerSocket::get_file()
1337{ 1342{
1338 mSyncActionDialog->setCaption( i18n("Receiving synced file...") ); 1343 mSyncActionDialog->setCaption( i18n("Receiving synced file...") );
1339 1344
1340 piTime.start(); 1345 piTime.start();
1341 piFileString = ""; 1346 piFileString = "";
1342 QTimer::singleShot( 1, this , SLOT (readBackFileFromSocket( ) )); 1347 QTimer::singleShot( 1, this , SLOT (readBackFileFromSocket( ) ));
1343} 1348}
1344 1349
1345 1350
1346void KServerSocket::readBackFileFromSocket() 1351void KServerSocket::readBackFileFromSocket()
1347{ 1352{
1348 //qDebug("readBackFileFromSocket() %d ", piTime.elapsed ()); 1353 //qDebug("readBackFileFromSocket() %d ", piTime.elapsed ());
1349 while ( mSocket->canReadLine () ) { 1354 while ( mSocket->canReadLine () ) {
1350 piTime.restart(); 1355 piTime.restart();
1351 QString line = mSocket->readLine (); 1356 QString line = mSocket->readLine ();
1352 piFileString += line; 1357 piFileString += line;
1353 //qDebug("readline: %s ", line.latin1()); 1358 //qDebug("readline: %s ", line.latin1());
1354 mSyncActionDialog->setCaption( i18n("Received %1 bytes").arg( piFileString.length() ) ); 1359 mSyncActionDialog->setCaption( i18n("Received %1 bytes").arg( piFileString.length() ) );
1355 1360
1356 } 1361 }
1357 if ( piTime.elapsed () < 3000 ) { 1362 if ( piTime.elapsed () < 3000 ) {
1358 // wait for more 1363 // wait for more
1359 //qDebug("waitformore "); 1364 //qDebug("waitformore ");
1360 QTimer::singleShot( 100, this , SLOT (readBackFileFromSocket( ) )); 1365 QTimer::singleShot( 100, this , SLOT (readBackFileFromSocket( ) ));
1361 return; 1366 return;
1362 } 1367 }
1363 QString fileName = mFileName; 1368 QString fileName = mFileName;
1364 QFile file ( fileName ); 1369 QFile file ( fileName );
1365 if (!file.open( IO_WriteOnly ) ) { 1370 if (!file.open( IO_WriteOnly ) ) {
1366 delete mSyncActionDialog; 1371 delete mSyncActionDialog;
1367 mSyncActionDialog = 0; 1372 mSyncActionDialog = 0;
1368 qDebug("KSS:Error open read back file "); 1373 qDebug("KSS:Error open read back file ");
1369 piFileString = ""; 1374 piFileString = "";
1370 emit file_received( false ); 1375 emit file_received( false );
1371 blockRC = false; 1376 blockRC = false;
1372 return ; 1377 return ;
1373 1378
1374 } 1379 }
1375 1380
1376 // mView->setLoadedFileVersion(QDateTime::currentDateTime().addSecs( -1)); 1381 // mView->setLoadedFileVersion(QDateTime::currentDateTime().addSecs( -1));
1377 QTextStream ts ( &file ); 1382 QTextStream ts ( &file );
1378 ts.setEncoding( QTextStream::Latin1 ); 1383 ts.setEncoding( QTextStream::Latin1 );
1379 mSyncActionDialog->setCaption( i18n("Writing file to disk...") ); 1384 mSyncActionDialog->setCaption( i18n("Writing file to disk...") );
1380 ts << piFileString; 1385 ts << piFileString;
1381 mSocket->close(); 1386 mSocket->close();
1382 if ( mSocket->state() == QSocket::Idle ) 1387 if ( mSocket->state() == QSocket::Idle )
1383 QTimer::singleShot( 10, this , SLOT ( discardClient())); 1388 QTimer::singleShot( 10, this , SLOT ( discardClient()));
1384 file.close(); 1389 file.close();
1385 piFileString = ""; 1390 piFileString = "";
1386 emit file_received( true ); 1391 emit file_received( true );
1387 delete mSyncActionDialog; 1392 delete mSyncActionDialog;
1388 mSyncActionDialog = 0; 1393 mSyncActionDialog = 0;
1389 blockRC = false; 1394 blockRC = false;
1390 1395
1391} 1396}
1392 1397
1393KCommandSocket::KCommandSocket ( QString password, Q_UINT16 port, QString host, QObject * parent, QWidget * cap, const char * name ): QObject( parent, name ) 1398KCommandSocket::KCommandSocket ( QString password, Q_UINT16 port, QString host, QObject * parent, QWidget * cap, const char * name ): QObject( parent, name )
1394{ 1399{
1395 mPassWord = password; 1400 mPassWord = password;
1396 mSocket = 0; 1401 mSocket = 0;
1397 mFirst = false; 1402 mFirst = false;
1398 mFirstLine = true; 1403 mFirstLine = true;
1399 mPort = port; 1404 mPort = port;
1400 mHost = host; 1405 mHost = host;
1401 tlw = cap; 1406 tlw = cap;
1402 mRetVal = quiet; 1407 mRetVal = quiet;
1403 mTimerSocket = new QTimer ( this ); 1408 mTimerSocket = new QTimer ( this );
1404 connect( mTimerSocket, SIGNAL ( timeout () ), this, SLOT ( deleteSocket() ) ); 1409 connect( mTimerSocket, SIGNAL ( timeout () ), this, SLOT ( deleteSocket() ) );
1405} 1410}
1406void KCommandSocket::sendFileRequest() 1411void KCommandSocket::sendFileRequest()
1407{ 1412{
1408 if ( tlw ) 1413 if ( tlw )
1409 tlw->setCaption( i18n("Connected! Sending request for remote file ...") ); 1414 tlw->setCaption( i18n("Connected! Sending request for remote file ...") );
1410 mTimerSocket->start( 300000 ); 1415 mTimerSocket->start( 300000 );
1411 QTextStream os( mSocket ); 1416 QTextStream os( mSocket );
1412 os.setEncoding( QTextStream::Latin1 ); 1417 os.setEncoding( QTextStream::Latin1 );
1413 1418
1414 QString curDt = " " +KGlobal::locale()->formatDateTime(QDateTime::currentDateTime().addSecs(-1),true, true,KLocale::ISODate ); 1419 QString curDt = " " +KGlobal::locale()->formatDateTime(QDateTime::currentDateTime().addSecs(-1),true, true,KLocale::ISODate );
1415 os << "GET " << mPassWord << curDt <<"\r\n\r\n"; 1420 os << "GET " << mPassWord << curDt <<"\r\n\r\n";
1416} 1421}
1417 1422
1418void KCommandSocket::readFile( QString fn ) 1423void KCommandSocket::readFile( QString fn )
1419{ 1424{
1420 if ( !mSocket ) { 1425 if ( !mSocket ) {
1421 mSocket = new QSocket( this ); 1426 mSocket = new QSocket( this );
1422 connect( mSocket, SIGNAL(readyRead()), this, SLOT(startReadFileFromSocket()) ); 1427 connect( mSocket, SIGNAL(readyRead()), this, SLOT(startReadFileFromSocket()) );
1423 connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) ); 1428 connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) );
1424 connect( mSocket, SIGNAL(connected ()), this, SLOT(sendFileRequest() )); 1429 connect( mSocket, SIGNAL(connected ()), this, SLOT(sendFileRequest() ));
1425 } 1430 }
1426 mFileString = ""; 1431 mFileString = "";
1427 mFileName = fn; 1432 mFileName = fn;
1428 mFirst = true; 1433 mFirst = true;
1429 if ( tlw ) 1434 if ( tlw )
1430 tlw->setCaption( i18n("Trying to connect to remote...") ); 1435 tlw->setCaption( i18n("Trying to connect to remote...") );
1431 mTimerSocket->start( 20000 ); 1436 mTimerSocket->start( 20000 );
1432 mSocket->connectToHost( mHost, mPort ); 1437 mSocket->connectToHost( mHost, mPort );
1433 qDebug("KSS: Waiting for connection"); 1438 qDebug("KSS: Waiting for connection");
1434} 1439}
1435 1440
1436void KCommandSocket::writeFile( QString fileName ) 1441void KCommandSocket::writeFile( QString fileName )
1437{ 1442{
1438 if ( !mSocket ) { 1443 if ( !mSocket ) {
1439 mSocket = new QSocket( this ); 1444 mSocket = new QSocket( this );
1440 connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) ); 1445 connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) );
1441 connect( mSocket, SIGNAL(connected ()), this, SLOT(writeFileToSocket()) ); 1446 connect( mSocket, SIGNAL(connected ()), this, SLOT(writeFileToSocket()) );
1442 } 1447 }
1443 mFileName = fileName ; 1448 mFileName = fileName ;
1444 mTimerSocket->start( 20000 ); 1449 mTimerSocket->start( 20000 );
1445 mSocket->connectToHost( mHost, mPort ); 1450 mSocket->connectToHost( mHost, mPort );
1446} 1451}
1447void KCommandSocket::writeFileToSocket() 1452void KCommandSocket::writeFileToSocket()
1448{ 1453{
1449 mTimerSocket->stop(); 1454 mTimerSocket->stop();
1450 QFile file2( mFileName ); 1455 QFile file2( mFileName );
1451 if (!file2.open( IO_ReadOnly ) ) { 1456 if (!file2.open( IO_ReadOnly ) ) {
1452 mRetVal= errorW; 1457 mRetVal= errorW;
1453 mSocket->close(); 1458 mSocket->close();
1454 if ( mSocket->state() == QSocket::Idle ) 1459 if ( mSocket->state() == QSocket::Idle )
1455 QTimer::singleShot( 10, this , SLOT ( deleteSocket())); 1460 QTimer::singleShot( 10, this , SLOT ( deleteSocket()));
1456 return ; 1461 return ;
1457 } 1462 }
1458 QTextStream ts2( &file2 ); 1463 QTextStream ts2( &file2 );
1459 ts2.setEncoding( QTextStream::Latin1 ); 1464 ts2.setEncoding( QTextStream::Latin1 );
1460 QTextStream os2( mSocket ); 1465 QTextStream os2( mSocket );
1461 os2.setEncoding( QTextStream::Latin1 ); 1466 os2.setEncoding( QTextStream::Latin1 );
1462 os2 << "PUT " << mPassWord << "\r\n\r\n";; 1467 os2 << "PUT " << mPassWord << "\r\n\r\n";;
1463 while ( ! ts2.atEnd() ) { 1468 while ( ! ts2.atEnd() ) {
1464 os2 << ts2.readLine() << "\r\n"; 1469 os2 << ts2.readLine() << "\r\n";
1465 } 1470 }
1466 os2 << "\r\n"; 1471 os2 << "\r\n";
1467 mRetVal= successW; 1472 mRetVal= successW;
1468 file2.close(); 1473 file2.close();
1469 mSocket->close(); 1474 mSocket->close();
1470 if ( mSocket->state() == QSocket::Idle ) 1475 if ( mSocket->state() == QSocket::Idle )
1471 QTimer::singleShot( 10, this , SLOT ( deleteSocket())); 1476 QTimer::singleShot( 10, this , SLOT ( deleteSocket()));
1472} 1477}
1473void KCommandSocket::sendStop() 1478void KCommandSocket::sendStop()
1474{ 1479{
1475 if ( !mSocket ) { 1480 if ( !mSocket ) {
1476 mSocket = new QSocket( this ); 1481 mSocket = new QSocket( this );
1477 connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) ); 1482 connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) );
1478 } 1483 }
1479 mSocket->connectToHost( mHost, mPort ); 1484 mSocket->connectToHost( mHost, mPort );
1480 QTextStream os2( mSocket ); 1485 QTextStream os2( mSocket );
1481 os2.setEncoding( QTextStream::Latin1 ); 1486 os2.setEncoding( QTextStream::Latin1 );
1482 os2 << "STOP\r\n\r\n"; 1487 os2 << "STOP\r\n\r\n";
1483 mSocket->close(); 1488 mSocket->close();
1484 if ( mSocket->state() == QSocket::Idle ) 1489 if ( mSocket->state() == QSocket::Idle )
1485 QTimer::singleShot( 10, this , SLOT ( deleteSocket())); 1490 QTimer::singleShot( 10, this , SLOT ( deleteSocket()));
1486} 1491}
1487 1492
1488void KCommandSocket::startReadFileFromSocket() 1493void KCommandSocket::startReadFileFromSocket()
1489{ 1494{
1490 if ( ! mFirst ) 1495 if ( ! mFirst )
1491 return; 1496 return;
1492 mFirst = false; 1497 mFirst = false;
1493 mTimerSocket->stop(); 1498 mTimerSocket->stop();
1494 mFileString = ""; 1499 mFileString = "";
1495 mTime.start(); 1500 mTime.start();
1496 mFirstLine = true; 1501 mFirstLine = true;
1497 QTimer::singleShot( 1, this , SLOT (readFileFromSocket( ) )); 1502 QTimer::singleShot( 1, this , SLOT (readFileFromSocket( ) ));
1498 1503
1499} 1504}
1500void KCommandSocket::readFileFromSocket() 1505void KCommandSocket::readFileFromSocket()
1501{ 1506{
1502 //qDebug("readBackFileFromSocket() %d ", mTime.elapsed ()); 1507 //qDebug("readBackFileFromSocket() %d ", mTime.elapsed ());
1503 while ( mSocket->canReadLine () ) { 1508 while ( mSocket->canReadLine () ) {
1504 mTime.restart(); 1509 mTime.restart();
1505 QString line = mSocket->readLine (); 1510 QString line = mSocket->readLine ();
1506 if ( mFirstLine ) { 1511 if ( mFirstLine ) {
1507 mFirstLine = false; 1512 mFirstLine = false;
1508 if ( line.left( 6 ) == "ERROR_" ) { 1513 if ( line.left( 6 ) == "ERROR_" ) {
1509 if ( line.left( 8 ) == "ERROR_PW" ) { 1514 if ( line.left( 8 ) == "ERROR_PW" ) {
1510 mRetVal = errorPW; 1515 mRetVal = errorPW;
1511 deleteSocket(); 1516 deleteSocket();
1512 return ; 1517 return ;
1513 } 1518 }
1514 if ( line.left( 8 ) == "ERROR_CA" ) { 1519 if ( line.left( 8 ) == "ERROR_CA" ) {
1515 mRetVal = errorCA; 1520 mRetVal = errorCA;
1516 deleteSocket(); 1521 deleteSocket();
1517 return ; 1522 return ;
1518 } 1523 }
1519 if ( line.left( 8 ) == "ERROR_FI" ) { 1524 if ( line.left( 8 ) == "ERROR_FI" ) {
1520 mRetVal = errorFI; 1525 mRetVal = errorFI;
1521 deleteSocket(); 1526 deleteSocket();
1522 return ; 1527 return ;
1523 } 1528 }
1529 if ( line.left( 8 ) == "ERROR_ED" ) {
1530 mRetVal = errorED;
1531 deleteSocket();
1532 return ;
1533 }
1524 mRetVal = errorUN; 1534 mRetVal = errorUN;
1525 deleteSocket(); 1535 deleteSocket();
1526 return ; 1536 return ;
1527 } 1537 }
1528 } 1538 }
1529 mFileString += line; 1539 mFileString += line;
1530 //qDebug("readline: %s ", line.latin1()); 1540 //qDebug("readline: %s ", line.latin1());
1531 } 1541 }
1532 if ( mTime.elapsed () < 3000 ) { 1542 if ( mTime.elapsed () < 3000 ) {
1533 // wait for more 1543 // wait for more
1534 //qDebug("waitformore "); 1544 //qDebug("waitformore ");
1535 QTimer::singleShot( 100, this , SLOT (readFileFromSocket( ) )); 1545 QTimer::singleShot( 100, this , SLOT (readFileFromSocket( ) ));
1536 return; 1546 return;
1537 } 1547 }
1538 QString fileName = mFileName; 1548 QString fileName = mFileName;
1539 QFile file ( fileName ); 1549 QFile file ( fileName );
1540 if (!file.open( IO_WriteOnly ) ) { 1550 if (!file.open( IO_WriteOnly ) ) {
1541 mFileString = ""; 1551 mFileString = "";
1542 mRetVal = errorR; 1552 mRetVal = errorR;
1543 qDebug("KSS:Error open temp sync file for writing: %s",fileName.latin1() ); 1553 qDebug("KSS:Error open temp sync file for writing: %s",fileName.latin1() );
1544 deleteSocket(); 1554 deleteSocket();
1545 return ; 1555 return ;
1546 1556
1547 } 1557 }
1548 // mView->setLoadedFileVersion(QDateTime::currentDateTime().addSecs( -1)); 1558 // mView->setLoadedFileVersion(QDateTime::currentDateTime().addSecs( -1));
1549 QTextStream ts ( &file ); 1559 QTextStream ts ( &file );
1550 ts.setEncoding( QTextStream::Latin1 ); 1560 ts.setEncoding( QTextStream::Latin1 );
1551 ts << mFileString; 1561 ts << mFileString;
1552 file.close(); 1562 file.close();
1553 mFileString = ""; 1563 mFileString = "";
1554 mRetVal = successR; 1564 mRetVal = successR;
1555 mSocket->close(); 1565 mSocket->close();
1556 // if state is not idle, deleteSocket(); is called via 1566 // if state is not idle, deleteSocket(); is called via
1557 // connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) ); 1567 // connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) );
1558 if ( mSocket->state() == QSocket::Idle ) 1568 if ( mSocket->state() == QSocket::Idle )
1559 deleteSocket(); 1569 deleteSocket();
1560} 1570}
1561 1571
1562void KCommandSocket::deleteSocket() 1572void KCommandSocket::deleteSocket()
1563{ 1573{
1564 //qDebug("KCommandSocket::deleteSocket() "); 1574 //qDebug("KCommandSocket::deleteSocket() ");
1565 if ( mTimerSocket->isActive () ) { 1575 if ( mTimerSocket->isActive () ) {
1566 mTimerSocket->stop(); 1576 mTimerSocket->stop();
1567 mRetVal = errorTO; 1577 mRetVal = errorTO;
1568 qDebug("KCS::Connection to remote host timed out"); 1578 qDebug("KCS::Connection to remote host timed out");
1569 if ( mSocket ) { 1579 if ( mSocket ) {
1570 mSocket->close(); 1580 mSocket->close();
1571 //if ( mSocket->state() == QSocket::Idle ) 1581 //if ( mSocket->state() == QSocket::Idle )
1572 // deleteSocket(); 1582 // deleteSocket();
1573 delete mSocket; 1583 delete mSocket;
1574 mSocket = 0; 1584 mSocket = 0;
1575 } 1585 }
1576 KMessageBox::error( 0, i18n("Connection to remote\nhost timed out!\nDid you forgot to enable\nsyncing on remote host?")); 1586 KMessageBox::error( 0, i18n("Connection to remote\nhost timed out!\nDid you forgot to enable\nsyncing on remote host?"));
1577 emit commandFinished( this, mRetVal ); 1587 emit commandFinished( this, mRetVal );
1578 return; 1588 return;
1579 } 1589 }
1580 //qDebug("KCommandSocket::deleteSocket() %d", mRetVal ); 1590 //qDebug("KCommandSocket::deleteSocket() %d", mRetVal );
1581 if ( mSocket) 1591 if ( mSocket)
1582 delete mSocket; 1592 delete mSocket;
1583 mSocket = 0; 1593 mSocket = 0;
1584 emit commandFinished( this, mRetVal ); 1594 emit commandFinished( this, mRetVal );
1585} 1595}