author | zautrix <zautrix> | 2004-10-04 18:41:26 (UTC) |
---|---|---|
committer | zautrix <zautrix> | 2004-10-04 18:41:26 (UTC) |
commit | 144952942e57780587739a46253cc7305c79f27c (patch) (unidiff) | |
tree | 82ad5b9b98c6243a9d2c8902f4851c421e70508c | |
parent | 2a99a7ca0816fd68b7fcf2f1fee023aef019000d (diff) | |
download | kdepimpi-144952942e57780587739a46253cc7305c79f27c.zip kdepimpi-144952942e57780587739a46253cc7305c79f27c.tar.gz kdepimpi-144952942e57780587739a46253cc7305c79f27c.tar.bz2 |
more sync fixes
-rw-r--r-- | korganizer/mainwindow.cpp | 133 | ||||
-rw-r--r-- | korganizer/mainwindow.h | 17 |
2 files changed, 140 insertions, 10 deletions
diff --git a/korganizer/mainwindow.cpp b/korganizer/mainwindow.cpp index e4b7869..da73caf 100644 --- a/korganizer/mainwindow.cpp +++ b/korganizer/mainwindow.cpp | |||
@@ -1836,254 +1836,268 @@ void MainWindow::exportVCalendar() | |||
1836 | QString fn = KOPrefs::instance()->mLastVcalFile; | 1836 | QString fn = KOPrefs::instance()->mLastVcalFile; |
1837 | fn = KFileDialog::getSaveFileName( fn, i18n("Export vcal filename(*.vcs)"), this ); | 1837 | fn = KFileDialog::getSaveFileName( fn, i18n("Export vcal filename(*.vcs)"), this ); |
1838 | if ( fn == "" ) | 1838 | if ( fn == "" ) |
1839 | return; | 1839 | return; |
1840 | QFileInfo info; | 1840 | QFileInfo info; |
1841 | info.setFile( fn ); | 1841 | info.setFile( fn ); |
1842 | QString mes; | 1842 | QString mes; |
1843 | bool createbup = true; | 1843 | bool createbup = true; |
1844 | if ( info. exists() ) { | 1844 | if ( info. exists() ) { |
1845 | mes = i18n("Save file\nalready exists!\nOld save file from:\n%1\nOverwrite?\n").arg (KGlobal::locale()->formatDateTime(info.lastModified (), true, false ) ); | 1845 | mes = i18n("Save file\nalready exists!\nOld save file from:\n%1\nOverwrite?\n").arg (KGlobal::locale()->formatDateTime(info.lastModified (), true, false ) ); |
1846 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mes, | 1846 | int result = QMessageBox::warning( this, i18n("KO/Pi: Warning!"),mes, |
1847 | i18n("Overwrite!"), i18n("Cancel"), 0, | 1847 | i18n("Overwrite!"), i18n("Cancel"), 0, |
1848 | 0, 1 ); | 1848 | 0, 1 ); |
1849 | if ( result != 0 ) { | 1849 | if ( result != 0 ) { |
1850 | createbup = false; | 1850 | createbup = false; |
1851 | } | 1851 | } |
1852 | } | 1852 | } |
1853 | if ( createbup ) { | 1853 | if ( createbup ) { |
1854 | if ( mView->exportVCalendar( fn ) ) { | 1854 | if ( mView->exportVCalendar( fn ) ) { |
1855 | KOPrefs::instance()->mLastVcalFile = fn; | 1855 | KOPrefs::instance()->mLastVcalFile = fn; |
1856 | if ( fn.length() > 20 ) | 1856 | if ( fn.length() > 20 ) |
1857 | mes = i18n("KO/Pi:Exported to ...%1").arg(fn.right(20)) ; | 1857 | mes = i18n("KO/Pi:Exported to ...%1").arg(fn.right(20)) ; |
1858 | else | 1858 | else |
1859 | mes = i18n("KO/Pi:Exported to %1").arg(fn ); | 1859 | mes = i18n("KO/Pi:Exported to %1").arg(fn ); |
1860 | setCaption(mes); | 1860 | setCaption(mes); |
1861 | } | 1861 | } |
1862 | } | 1862 | } |
1863 | 1863 | ||
1864 | } | 1864 | } |
1865 | QString MainWindow::getPassword( ) | 1865 | QString MainWindow::getPassword( ) |
1866 | { | 1866 | { |
1867 | QString retfile = ""; | 1867 | QString retfile = ""; |
1868 | QDialog dia ( this, "input-dialog", true ); | 1868 | QDialog dia ( this, "input-dialog", true ); |
1869 | QLineEdit lab ( &dia ); | 1869 | QLineEdit lab ( &dia ); |
1870 | lab.setEchoMode( QLineEdit::Password ); | 1870 | lab.setEchoMode( QLineEdit::Password ); |
1871 | QVBoxLayout lay( &dia ); | 1871 | QVBoxLayout lay( &dia ); |
1872 | lay.setMargin(7); | 1872 | lay.setMargin(7); |
1873 | lay.setSpacing(7); | 1873 | lay.setSpacing(7); |
1874 | lay.addWidget( &lab); | 1874 | lay.addWidget( &lab); |
1875 | dia.setFixedSize( 230,50 ); | 1875 | dia.setFixedSize( 230,50 ); |
1876 | dia.setCaption( i18n("Enter password") ); | 1876 | dia.setCaption( i18n("Enter password") ); |
1877 | QPushButton pb ( "OK", &dia); | 1877 | QPushButton pb ( "OK", &dia); |
1878 | lay.addWidget( &pb ); | 1878 | lay.addWidget( &pb ); |
1879 | connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); | 1879 | connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); |
1880 | dia.show(); | 1880 | dia.show(); |
1881 | int res = dia.exec(); | 1881 | int res = dia.exec(); |
1882 | if ( res ) | 1882 | if ( res ) |
1883 | retfile = lab.text(); | 1883 | retfile = lab.text(); |
1884 | dia.hide(); | 1884 | dia.hide(); |
1885 | qApp->processEvents(); | 1885 | qApp->processEvents(); |
1886 | return retfile; | 1886 | return retfile; |
1887 | 1887 | ||
1888 | } | 1888 | } |
1889 | 1889 | ||
1890 | void MainWindow::enableQuick() | 1890 | void MainWindow::enableQuick() |
1891 | { | 1891 | { |
1892 | QString passWordPiSync = "bhdrvmk"; | 1892 | QString passWordPiSync = "bhdrvmk"; |
1893 | QString retfile = ""; | 1893 | QString retfile = ""; |
1894 | QDialog dia ( this, "input-dialog", true ); | 1894 | QDialog dia ( this, "input-dialog", true ); |
1895 | QLineEdit lab ( &dia ); | 1895 | QLineEdit lab ( &dia ); |
1896 | QVBoxLayout lay( &dia ); | 1896 | QVBoxLayout lay( &dia ); |
1897 | lab.setText( KOPrefs::instance()->mPassiveSyncPort ); | 1897 | lab.setText( KOPrefs::instance()->mPassiveSyncPort ); |
1898 | lay.setMargin(7); | 1898 | lay.setMargin(7); |
1899 | lay.setSpacing(7); | 1899 | lay.setSpacing(7); |
1900 | QLabel label ( i18n("Port number (Default: 9197)"), &dia ); | 1900 | QLabel label ( i18n("Port number (Default: 9197)"), &dia ); |
1901 | lay.addWidget( &label); | 1901 | lay.addWidget( &label); |
1902 | lay.addWidget( &lab); | 1902 | lay.addWidget( &lab); |
1903 | 1903 | ||
1904 | QLineEdit lepw ( &dia ); | 1904 | QLineEdit lepw ( &dia ); |
1905 | lepw.setText( "abc" ); | 1905 | lepw.setText( "abc" ); |
1906 | QLabel label2 ( i18n("Password to enable\naccess from remote:"), &dia ); | 1906 | QLabel label2 ( i18n("Password to enable\naccess from remote:"), &dia ); |
1907 | lay.addWidget( &label2); | 1907 | lay.addWidget( &label2); |
1908 | lay.addWidget( &lepw); | 1908 | lay.addWidget( &lepw); |
1909 | dia.setFixedSize( 230,80 ); | 1909 | dia.setFixedSize( 230,80 ); |
1910 | dia.setCaption( i18n("Enter port for Pi-Sync") ); | 1910 | dia.setCaption( i18n("Enter port for Pi-Sync") ); |
1911 | QPushButton pb ( "OK", &dia); | 1911 | QPushButton pb ( "OK", &dia); |
1912 | lay.addWidget( &pb ); | 1912 | lay.addWidget( &pb ); |
1913 | connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); | 1913 | connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); |
1914 | dia.show(); | 1914 | dia.show(); |
1915 | int res = dia.exec(); | 1915 | int res = dia.exec(); |
1916 | if ( res ) | 1916 | if ( res ) |
1917 | retfile = lab.text(); | 1917 | retfile = lab.text(); |
1918 | else | 1918 | else |
1919 | return; | 1919 | return; |
1920 | dia.hide(); | 1920 | dia.hide(); |
1921 | passWordPiSync = lepw.text(); | 1921 | passWordPiSync = lepw.text(); |
1922 | qApp->processEvents(); | 1922 | qApp->processEvents(); |
1923 | KOPrefs::instance()->mPassiveSyncPort = retfile; | 1923 | KOPrefs::instance()->mPassiveSyncPort = retfile; |
1924 | bool ok; | 1924 | bool ok; |
1925 | Q_UINT16 port = retfile.toUInt(&ok); | 1925 | Q_UINT16 port = retfile.toUInt(&ok); |
1926 | if ( ! ok ) { | 1926 | if ( ! ok ) { |
1927 | KMessageBox::information( this, i18n("No valid port")); | 1927 | KMessageBox::information( this, i18n("No valid port")); |
1928 | return; | 1928 | return; |
1929 | } | 1929 | } |
1930 | qDebug("port %d ", port); | 1930 | qDebug("port %d ", port); |
1931 | mServerSocket = new KServerSocket ( passWordPiSync, port ,1 ); | 1931 | mServerSocket = new KServerSocket ( passWordPiSync, port ,1 ); |
1932 | mServerSocket->setFileName( defaultFileName() ); | ||
1932 | qDebug("connected "); | 1933 | qDebug("connected "); |
1933 | if ( !mServerSocket->ok() ) { | 1934 | if ( !mServerSocket->ok() ) { |
1934 | qWarning("Failed to bind to port %d", port); | 1935 | qWarning("Failed to bind to port %d", port); |
1935 | delete mServerSocket; | 1936 | delete mServerSocket; |
1936 | mServerSocket = 0; | 1937 | mServerSocket = 0; |
1937 | return; | 1938 | return; |
1938 | } | 1939 | } |
1939 | connect( mServerSocket, SIGNAL ( sendFile(QSocket*) ), this, SLOT ( sendFile(QSocket*) ) ); | 1940 | connect( mServerSocket, SIGNAL ( saveFile() ), this, SLOT ( save() ) ); |
1940 | connect( mServerSocket, SIGNAL ( getFile(QSocket*) ), this, SLOT ( getFile(QSocket*) ) ); | 1941 | connect( mServerSocket, SIGNAL ( file_received( bool ) ), this, SLOT ( getFile( bool ) ) ); |
1942 | // connect( mServerSocket, SIGNAL ( sendFile(QSocket*) ), this, SLOT ( sendFile(QSocket*) ) ); | ||
1943 | //connect( mServerSocket, SIGNAL ( getFile(QSocket*) ), this, SLOT ( getFile(QSocket*) ) ); | ||
1941 | } | 1944 | } |
1942 | void MainWindow::sendFile(QSocket* socket) | 1945 | void MainWindow::sendFile(QSocket* socket) |
1943 | { | 1946 | { |
1944 | setCaption( i18n("Received request for file") ); | 1947 | setCaption( i18n("Received request for file") ); |
1945 | qDebug("MainWindow::sendFile(QSocket* s) "); | 1948 | qDebug("MainWindow::sendFile(QSocket* s) "); |
1946 | if ( mSyncActionDialog ) | 1949 | if ( mSyncActionDialog ) |
1947 | delete mSyncActionDialog; | 1950 | delete mSyncActionDialog; |
1948 | mSyncActionDialog = new QDialog ( this, "input-dialog", true ); | 1951 | mSyncActionDialog = new QDialog ( this, "input-dialog", true ); |
1949 | mSyncActionDialog->setCaption(i18n("KO/Pi - WARNING")); | 1952 | mSyncActionDialog->setCaption(i18n("KO/Pi - WARNING")); |
1950 | QLabel* label = new QLabel( i18n("Synchronizing...\nDo not use\nthis application!\n"), mSyncActionDialog ); | 1953 | QLabel* label = new QLabel( i18n("Synchronizing...\nDo not use\nthis application!\n"), mSyncActionDialog ); |
1951 | QVBoxLayout* lay = new QVBoxLayout( mSyncActionDialog ); | 1954 | QVBoxLayout* lay = new QVBoxLayout( mSyncActionDialog ); |
1952 | lay->addWidget( label); | 1955 | lay->addWidget( label); |
1953 | lay->setMargin(7); | 1956 | lay->setMargin(7); |
1954 | lay->setSpacing(7); | 1957 | lay->setSpacing(7); |
1955 | mSyncActionDialog->setFixedSize( 200,100 ); | 1958 | mSyncActionDialog->setFixedSize( 200,100 ); |
1956 | mSyncActionDialog->show(); | 1959 | mSyncActionDialog->show(); |
1957 | qDebug("saving ... "); | 1960 | qDebug("saving ... "); |
1958 | save(); | 1961 | save(); |
1959 | qApp->processEvents(); | 1962 | qApp->processEvents(); |
1960 | QString fileName = defaultFileName(); | 1963 | QString fileName = defaultFileName(); |
1961 | QFile file( fileName ); | 1964 | QFile file( fileName ); |
1962 | if (!file.open( IO_ReadOnly ) ) { | 1965 | if (!file.open( IO_ReadOnly ) ) { |
1963 | setCaption( i18n("Error open file") ); | 1966 | setCaption( i18n("Error open file") ); |
1964 | delete mSyncActionDialog; | 1967 | delete mSyncActionDialog; |
1965 | mSyncActionDialog = 0; | 1968 | mSyncActionDialog = 0; |
1966 | qDebug("error open cal file "); | 1969 | qDebug("error open cal file "); |
1967 | return ; | 1970 | return ; |
1968 | 1971 | ||
1969 | } | 1972 | } |
1970 | setCaption( i18n("Sending file...") ); | 1973 | setCaption( i18n("Sending file...") ); |
1971 | QTextStream ts( &file ); | 1974 | QTextStream ts( &file ); |
1972 | ts.setCodec( QTextCodec::codecForName("utf8") ); | 1975 | ts.setCodec( QTextCodec::codecForName("utf8") ); |
1973 | QTextStream os( socket ); | 1976 | QTextStream os( socket ); |
1974 | os.setCodec( QTextCodec::codecForName("utf8") ); | 1977 | os.setCodec( QTextCodec::codecForName("utf8") ); |
1975 | //os.setEncoding( QTextStream::UnicodeUTF8 ); | 1978 | //os.setEncoding( QTextStream::UnicodeUTF8 ); |
1976 | while ( ! ts.atEnd() ) { | 1979 | while ( ! ts.atEnd() ) { |
1977 | os << ts.readLine() << "\n"; | 1980 | os << ts.readLine() << "\n"; |
1978 | } | 1981 | } |
1979 | //os << ts.read(); | 1982 | //os << ts.read(); |
1980 | socket->close(); | 1983 | socket->close(); |
1981 | file.close(); | 1984 | file.close(); |
1982 | setCaption( i18n("File sent. Waiting to get back synced file") ); | 1985 | setCaption( i18n("File sent. Waiting to get back synced file") ); |
1983 | qDebug("file sent "); | 1986 | qDebug("file sent "); |
1984 | } | 1987 | } |
1985 | void MainWindow::getFile(QSocket* socket) | 1988 | void MainWindow::getFile( bool success ) |
1986 | { | 1989 | { |
1990 | if ( ! success ) { | ||
1991 | setCaption( i18n("Error receiving file. Nothing changed!") ); | ||
1992 | return; | ||
1993 | } | ||
1994 | // pending adjust time for watchSavedFile() | ||
1995 | //mView->watchSavedFile(); | ||
1996 | mView->openCalendar( defaultFileName() ); | ||
1997 | setCaption( i18n("Pi-Sync successful!") ); | ||
1998 | |||
1999 | |||
2000 | #if 0 | ||
1987 | setCaption( i18n("Receiving synced file...") ); | 2001 | setCaption( i18n("Receiving synced file...") ); |
1988 | 2002 | ||
1989 | piTime.start(); | 2003 | piTime.start(); |
1990 | piSocket = socket; | 2004 | piSocket = socket; |
1991 | piFileString = ""; | 2005 | piFileString = ""; |
1992 | QTimer::singleShot( 1, this , SLOT (readBackFileFromSocket( ) )); | 2006 | QTimer::singleShot( 1, this , SLOT (readBackFileFromSocket( ) )); |
1993 | 2007 | #endif | |
1994 | 2008 | ||
1995 | } | 2009 | } |
1996 | void MainWindow::readBackFileFromSocket() | 2010 | void MainWindow::readBackFileFromSocket() |
1997 | { | 2011 | { |
1998 | qDebug("readBackFileFromSocket() %d ", piTime.elapsed ()); | 2012 | qDebug("readBackFileFromSocket() %d ", piTime.elapsed ()); |
1999 | while ( piSocket->canReadLine () ) { | 2013 | while ( piSocket->canReadLine () ) { |
2000 | piTime.restart(); | 2014 | piTime.restart(); |
2001 | QString line = piSocket->readLine (); | 2015 | QString line = piSocket->readLine (); |
2002 | piFileString += line; | 2016 | piFileString += line; |
2003 | qDebug("readline: %s ", line.latin1()); | 2017 | qDebug("readline: %s ", line.latin1()); |
2004 | setCaption( i18n("Received %1 bytes").arg( piFileString.length() ) ); | 2018 | setCaption( i18n("Received %1 bytes").arg( piFileString.length() ) ); |
2005 | 2019 | ||
2006 | } | 2020 | } |
2007 | if ( piTime.elapsed () < 3000 ) { | 2021 | if ( piTime.elapsed () < 3000 ) { |
2008 | // wait for more | 2022 | // wait for more |
2009 | qDebug("waitformore "); | 2023 | qDebug("waitformore "); |
2010 | QTimer::singleShot( 100, this , SLOT (readBackFileFromSocket( ) )); | 2024 | QTimer::singleShot( 100, this , SLOT (readBackFileFromSocket( ) )); |
2011 | return; | 2025 | return; |
2012 | } | 2026 | } |
2013 | QString fileName = defaultFileName(); | 2027 | QString fileName = defaultFileName(); |
2014 | QFile file ( fileName ); | 2028 | QFile file ( fileName ); |
2015 | if (!file.open( IO_WriteOnly ) ) { | 2029 | if (!file.open( IO_WriteOnly ) ) { |
2016 | setCaption( i18n("Error open file for writing!") ); | 2030 | setCaption( i18n("Error open file for writing!") ); |
2017 | delete mSyncActionDialog; | 2031 | delete mSyncActionDialog; |
2018 | mSyncActionDialog = 0; | 2032 | mSyncActionDialog = 0; |
2019 | qDebug("error open cal file "); | 2033 | qDebug("error open cal file "); |
2020 | piFileString = ""; | 2034 | piFileString = ""; |
2021 | return ; | 2035 | return ; |
2022 | 2036 | ||
2023 | } | 2037 | } |
2024 | 2038 | ||
2025 | mView->setLoadedFileVersion(QDateTime::currentDateTime().addSecs( -1)); | 2039 | mView->setLoadedFileVersion(QDateTime::currentDateTime().addSecs( -1)); |
2026 | QTextStream ts ( &file ); | 2040 | QTextStream ts ( &file ); |
2027 | ts.setCodec( QTextCodec::codecForName("utf8") ); | 2041 | ts.setCodec( QTextCodec::codecForName("utf8") ); |
2028 | qDebug("finish "); | 2042 | qDebug("finish "); |
2029 | setCaption( i18n("Writing file to disk...") ); | 2043 | setCaption( i18n("Writing file to disk...") ); |
2030 | ts << piFileString; | 2044 | ts << piFileString; |
2031 | setCaption( i18n("File received - reloading calendar...") ); | 2045 | setCaption( i18n("File received - reloading calendar...") ); |
2032 | piSocket->close(); | 2046 | piSocket->close(); |
2033 | file.close(); | 2047 | file.close(); |
2034 | mView->watchSavedFile(); | 2048 | mView->watchSavedFile(); |
2035 | mView->openCalendar( defaultFileName() ); | 2049 | mView->openCalendar( defaultFileName() ); |
2036 | setCaption( i18n("Pi-Sync successful!") ); | 2050 | setCaption( i18n("Pi-Sync successful!") ); |
2037 | delete mSyncActionDialog; | 2051 | delete mSyncActionDialog; |
2038 | mSyncActionDialog = 0; | 2052 | mSyncActionDialog = 0; |
2039 | piFileString = ""; | 2053 | piFileString = ""; |
2040 | 2054 | ||
2041 | 2055 | ||
2042 | } | 2056 | } |
2043 | void MainWindow::endConnect() | 2057 | void MainWindow::endConnect() |
2044 | { | 2058 | { |
2045 | setCaption( i18n("No file received - syncing successful") ); | 2059 | setCaption( i18n("No file received - syncing successful") ); |
2046 | delete mSyncActionDialog; | 2060 | delete mSyncActionDialog; |
2047 | mSyncActionDialog = 0; | 2061 | mSyncActionDialog = 0; |
2048 | } | 2062 | } |
2049 | void MainWindow::performQuick() | 2063 | void MainWindow::performQuick() |
2050 | { | 2064 | { |
2051 | 2065 | ||
2052 | setCaption( i18n("Please input connection settings") ); | 2066 | setCaption( i18n("Please input connection settings") ); |
2053 | QString retfile = ""; | 2067 | QString retfile = ""; |
2054 | QDialog dia ( this, "input-dialog", true ); | 2068 | QDialog dia ( this, "input-dialog", true ); |
2055 | QLineEdit lab ( &dia ); | 2069 | QLineEdit lab ( &dia ); |
2056 | QVBoxLayout lay( &dia ); | 2070 | QVBoxLayout lay( &dia ); |
2057 | QLabel label ( i18n("IP address\n(Example: 192.168.0.40)"), &dia ); | 2071 | QLabel label ( i18n("IP address\n(Example: 192.168.0.40)"), &dia ); |
2058 | lay.addWidget( &label); | 2072 | lay.addWidget( &label); |
2059 | lab.setText( KOPrefs::instance()->mActiveSyncIP ); | 2073 | lab.setText( KOPrefs::instance()->mActiveSyncIP ); |
2060 | lay.setMargin(7); | 2074 | lay.setMargin(7); |
2061 | lay.setSpacing(7); | 2075 | lay.setSpacing(7); |
2062 | lay.addWidget( &lab); | 2076 | lay.addWidget( &lab); |
2063 | QLabel label2 ( i18n("Port number (Default: 9197)"), &dia ); | 2077 | QLabel label2 ( i18n("Port number (Default: 9197)"), &dia ); |
2064 | lay.addWidget( &label2); | 2078 | lay.addWidget( &label2); |
2065 | QLineEdit lab2 ( &dia ); | 2079 | QLineEdit lab2 ( &dia ); |
2066 | lab2.setText( KOPrefs::instance()->mActiveSyncPort ); | 2080 | lab2.setText( KOPrefs::instance()->mActiveSyncPort ); |
2067 | lay.addWidget( &lab2); | 2081 | lay.addWidget( &lab2); |
2068 | 2082 | ||
2069 | QLineEdit lepw ( &dia ); | 2083 | QLineEdit lepw ( &dia ); |
2070 | lepw.setText( mPassWordPiSync ); | 2084 | lepw.setText( mPassWordPiSync ); |
2071 | QLabel label3 ( i18n("Password to enable\naccess to remote:"), &dia ); | 2085 | QLabel label3 ( i18n("Password to enable\naccess to remote:"), &dia ); |
2072 | lay.addWidget( &label3); | 2086 | lay.addWidget( &label3); |
2073 | lay.addWidget( &lepw); | 2087 | lay.addWidget( &lepw); |
2074 | 2088 | ||
2075 | dia.setFixedSize( 230,200 ); | 2089 | dia.setFixedSize( 230,200 ); |
2076 | dia.setCaption( i18n("Enter port for Pi-Sync ") ); | 2090 | dia.setCaption( i18n("Enter port for Pi-Sync ") ); |
2077 | QPushButton pb ( "OK", &dia); | 2091 | QPushButton pb ( "OK", &dia); |
2078 | lay.addWidget( &pb ); | 2092 | lay.addWidget( &pb ); |
2079 | connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); | 2093 | connect(&pb, SIGNAL( clicked() ), &dia, SLOT ( accept() ) ); |
2080 | dia.show(); | 2094 | dia.show(); |
2081 | int res = dia.exec(); | 2095 | int res = dia.exec(); |
2082 | if ( !res ) { | 2096 | if ( !res ) { |
2083 | setCaption( i18n("Syncing cancelled!") ); | 2097 | setCaption( i18n("Syncing cancelled!") ); |
2084 | return; | 2098 | return; |
2085 | } | 2099 | } |
2086 | mPassWordPiSync = lepw.text(); | 2100 | mPassWordPiSync = lepw.text(); |
2087 | dia.hide(); | 2101 | dia.hide(); |
2088 | KOPrefs::instance()->mActiveSyncPort = lab2.text(); | 2102 | KOPrefs::instance()->mActiveSyncPort = lab2.text(); |
2089 | KOPrefs::instance()->mActiveSyncIP = lab.text(); | 2103 | KOPrefs::instance()->mActiveSyncIP = lab.text(); |
@@ -2397,252 +2411,357 @@ void MainWindow::syncSSH() | |||
2397 | // 256: no such file or dir | 2411 | // 256: no such file or dir |
2398 | // | 2412 | // |
2399 | qDebug("KO: Remote copy result(0 = okay): %d ",result ); | 2413 | qDebug("KO: Remote copy result(0 = okay): %d ",result ); |
2400 | if ( result != 0 ) { | 2414 | if ( result != 0 ) { |
2401 | int len = maxlen; | 2415 | int len = maxlen; |
2402 | while ( len < command.length() ) { | 2416 | while ( len < command.length() ) { |
2403 | command.insert( len , "\n" ); | 2417 | command.insert( len , "\n" ); |
2404 | len += maxlen +2; | 2418 | len += maxlen +2; |
2405 | } | 2419 | } |
2406 | 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 (command) ; | 2420 | 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 (command) ; |
2407 | QMessageBox::information( this, i18n("KO/Pi Sync - ERROR"), | 2421 | QMessageBox::information( this, i18n("KO/Pi Sync - ERROR"), |
2408 | question, | 2422 | question, |
2409 | i18n("Okay!")) ; | 2423 | i18n("Okay!")) ; |
2410 | setCaption ("KO/Pi"); | 2424 | setCaption ("KO/Pi"); |
2411 | return; | 2425 | return; |
2412 | } | 2426 | } |
2413 | 2427 | ||
2414 | 2428 | ||
2415 | setCaption ( i18n( "Copying succeed." ) ); | 2429 | setCaption ( i18n( "Copying succeed." ) ); |
2416 | //mView->setSyncDevice("ssh-scp" ); | 2430 | //mView->setSyncDevice("ssh-scp" ); |
2417 | if ( syncWithFile(localFile , true ) ) { | 2431 | if ( syncWithFile(localFile , true ) ) { |
2418 | // Event* e = mView->getLastSyncEvent(); | 2432 | // Event* e = mView->getLastSyncEvent(); |
2419 | // e->setReadOnly( false ); | 2433 | // e->setReadOnly( false ); |
2420 | // e->setLocation( KOPrefs::instance()->mSyncProfileNames[mCurrentSyncProfile]); | 2434 | // e->setLocation( KOPrefs::instance()->mSyncProfileNames[mCurrentSyncProfile]); |
2421 | // e->setReadOnly( true ); | 2435 | // e->setReadOnly( true ); |
2422 | if ( KOPrefs::instance()->mWriteBackFile ) { | 2436 | if ( KOPrefs::instance()->mWriteBackFile ) { |
2423 | command = "scp " + localFile +" " +remoteUser + "@" + remoteIP +":" + remoteFile ; | 2437 | command = "scp " + localFile +" " +remoteUser + "@" + remoteIP +":" + remoteFile ; |
2424 | setCaption ( i18n( "Writing back file ..." ) ); | 2438 | setCaption ( i18n( "Writing back file ..." ) ); |
2425 | result = system ( command ); | 2439 | result = system ( command ); |
2426 | if ( result != 0 ) { | 2440 | if ( result != 0 ) { |
2427 | int len = maxlen; | 2441 | int len = maxlen; |
2428 | while ( len < command.length() ) { | 2442 | while ( len < command.length() ) { |
2429 | command.insert( len , "\n" ); | 2443 | command.insert( len , "\n" ); |
2430 | len += maxlen +2; | 2444 | len += maxlen +2; |
2431 | } | 2445 | } |
2432 | question = i18n("Sorry, the copy back command failed!\nCommand was:\n%1\n \nTry command on console to get more\ndetailed info about the reason.\n").arg (command) ; | 2446 | question = i18n("Sorry, the copy back command failed!\nCommand was:\n%1\n \nTry command on console to get more\ndetailed info about the reason.\n").arg (command) ; |
2433 | QMessageBox::information( this, i18n("KO/Pi Sync - ERROR"), | 2447 | QMessageBox::information( this, i18n("KO/Pi Sync - ERROR"), |
2434 | question, | 2448 | question, |
2435 | i18n("Okay!")) ; | 2449 | i18n("Okay!")) ; |
2436 | setCaption ("KO/Pi"); | 2450 | setCaption ("KO/Pi"); |
2437 | return; | 2451 | return; |
2438 | } else { | 2452 | } else { |
2439 | setCaption ( i18n( "Syncronization sucessfully completed" ) ); | 2453 | setCaption ( i18n( "Syncronization sucessfully completed" ) ); |
2440 | } | 2454 | } |
2441 | } | 2455 | } |
2442 | } | 2456 | } |
2443 | return; | 2457 | return; |
2444 | #if 0 | 2458 | #if 0 |
2445 | system ("scp zaurus@192.168.0.65:/home/zaurus/Applications/korganizer/mycalendar.ics /home/polo/Applications/korganizer/z_sync.ics"); | 2459 | system ("scp zaurus@192.168.0.65:/home/zaurus/Applications/korganizer/mycalendar.ics /home/polo/Applications/korganizer/z_sync.ics"); |
2446 | while ( timer.elapsed() < 5000 ) | 2460 | while ( timer.elapsed() < 5000 ) |
2447 | qApp->processEvents(); | 2461 | qApp->processEvents(); |
2448 | 2462 | ||
2449 | qDebug("MainWindow::merging) "); | 2463 | qDebug("MainWindow::merging) "); |
2450 | mView->syncCalendar( "/home/polo/Applications/korganizer/z_sync.ics", 0 ); | 2464 | mView->syncCalendar( "/home/polo/Applications/korganizer/z_sync.ics", 0 ); |
2451 | while ( mBlockSaveFlag ) | 2465 | while ( mBlockSaveFlag ) |
2452 | qApp->processEvents(); | 2466 | qApp->processEvents(); |
2453 | save(); | 2467 | save(); |
2454 | system ("scp /home/polo/Applications/korganizer/mycalendar.ics zaurus@192.168.0.65:/home/zaurus/Applications/korganizer/mycalendar.ics"); | 2468 | system ("scp /home/polo/Applications/korganizer/mycalendar.ics zaurus@192.168.0.65:/home/zaurus/Applications/korganizer/mycalendar.ics"); |
2455 | #endif | 2469 | #endif |
2456 | 2470 | ||
2457 | } | 2471 | } |
2458 | 2472 | ||
2459 | 2473 | ||
2460 | void MainWindow::syncSharp() | 2474 | void MainWindow::syncSharp() |
2461 | { | 2475 | { |
2462 | if ( mCalendarModifiedFlag ) | 2476 | if ( mCalendarModifiedFlag ) |
2463 | save(); | 2477 | save(); |
2464 | mView->syncSharp(); | 2478 | mView->syncSharp(); |
2465 | slotModifiedChanged( true ); | 2479 | slotModifiedChanged( true ); |
2466 | 2480 | ||
2467 | } | 2481 | } |
2468 | void MainWindow::syncPhone() | 2482 | void MainWindow::syncPhone() |
2469 | { | 2483 | { |
2470 | if ( mCalendarModifiedFlag ) | 2484 | if ( mCalendarModifiedFlag ) |
2471 | save(); | 2485 | save(); |
2472 | mView->syncPhone(); | 2486 | mView->syncPhone(); |
2473 | slotModifiedChanged( true ); | 2487 | slotModifiedChanged( true ); |
2474 | 2488 | ||
2475 | } | 2489 | } |
2476 | 2490 | ||
2477 | void MainWindow::printSel( ) | 2491 | void MainWindow::printSel( ) |
2478 | { | 2492 | { |
2479 | mView->viewManager()->agendaView()->agenda()->printSelection(); | 2493 | mView->viewManager()->agendaView()->agenda()->printSelection(); |
2480 | } | 2494 | } |
2481 | 2495 | ||
2482 | void MainWindow::printCal() | 2496 | void MainWindow::printCal() |
2483 | { | 2497 | { |
2484 | mView->print();//mCp->showDialog(); | 2498 | mView->print();//mCp->showDialog(); |
2485 | } | 2499 | } |
2486 | 2500 | ||
2487 | 2501 | ||
2488 | 2502 | ||
2489 | KServerSocket:: KServerSocket ( QString pw, Q_UINT16 port, int backlog, QObject * parent, const char * name ) : QServerSocket( port, backlog, parent, name ) | 2503 | KServerSocket:: KServerSocket ( QString pw, Q_UINT16 port, int backlog, QObject * parent, const char * name ) : QServerSocket( port, backlog, parent, name ) |
2490 | { | 2504 | { |
2491 | mPassWord = pw; | 2505 | mPassWord = pw; |
2492 | mSocket = 0; | 2506 | mSocket = 0; |
2507 | mSyncActionDialog = 0; | ||
2493 | }; | 2508 | }; |
2494 | 2509 | ||
2495 | void KServerSocket::newConnection ( int socket ) | 2510 | void KServerSocket::newConnection ( int socket ) |
2496 | { | 2511 | { |
2497 | qDebug("KServerSocket:New connection %d ", socket); | 2512 | qDebug("KServerSocket:New connection %d ", socket); |
2498 | if ( mSocket ) { | 2513 | if ( mSocket ) { |
2499 | qDebug("KServerSocket::newConnection Socket deleted! "); | 2514 | qDebug("KServerSocket::newConnection Socket deleted! "); |
2500 | delete mSocket; | 2515 | delete mSocket; |
2501 | mSocket = 0; | 2516 | mSocket = 0; |
2502 | } | 2517 | } |
2503 | mSocket = new QSocket( this ); | 2518 | mSocket = new QSocket( this ); |
2504 | connect( mSocket , SIGNAL(readyRead()), this, SLOT(readClient()) ); | 2519 | connect( mSocket , SIGNAL(readyRead()), this, SLOT(readClient()) ); |
2505 | connect( mSocket , SIGNAL(delayedCloseFinished()), this, SLOT(discardClient()) ); | 2520 | connect( mSocket , SIGNAL(delayedCloseFinished()), this, SLOT(discardClient()) ); |
2506 | mSocket->setSocket( socket ); | 2521 | mSocket->setSocket( socket ); |
2507 | } | 2522 | } |
2508 | 2523 | ||
2509 | void KServerSocket::discardClient() | 2524 | void KServerSocket::discardClient() |
2510 | { | 2525 | { |
2511 | qDebug(" KServerSocket::discardClient()"); | 2526 | qDebug(" KServerSocket::discardClient()"); |
2512 | if ( mSocket ) { | 2527 | if ( mSocket ) { |
2513 | qDebug("delete "); | 2528 | qDebug("delete "); |
2514 | delete mSocket; | 2529 | delete mSocket; |
2515 | mSocket = 0; | 2530 | mSocket = 0; |
2516 | } | 2531 | } |
2517 | //emit endConnect(); | 2532 | //emit endConnect(); |
2518 | } | 2533 | } |
2519 | void KServerSocket::readClient() | 2534 | void KServerSocket::readClient() |
2520 | { | 2535 | { |
2521 | if ( mSocket == 0 ) { | 2536 | if ( mSocket == 0 ) { |
2522 | qDebug("ERROR::KServerSocket::readClient(): mSocket == 0 "); | 2537 | qDebug("ERROR::KServerSocket::readClient(): mSocket == 0 "); |
2523 | return; | 2538 | return; |
2524 | } | 2539 | } |
2525 | qDebug("KServerSocket readClient()"); | 2540 | qDebug("KServerSocket readClient()"); |
2526 | if ( mSocket->canReadLine() ) { | 2541 | if ( mSocket->canReadLine() ) { |
2527 | QStringList tokens = QStringList::split( QRegExp("[ \r\n][ \r\n]*"), mSocket->readLine() ); | 2542 | QStringList tokens = QStringList::split( QRegExp("[ \r\n][ \r\n]*"), mSocket->readLine() ); |
2528 | qDebug("KServerSocket socket->canReadLine()"); | 2543 | qDebug("KServerSocket socket->canReadLine()"); |
2529 | if ( tokens[0] == "GET" ) { | 2544 | if ( tokens[0] == "GET" ) { |
2530 | if ( tokens[1] == mPassWord ) | 2545 | if ( tokens[1] == mPassWord ) |
2531 | emit sendFile( mSocket ); | 2546 | //emit sendFile( mSocket ); |
2547 | send_file(); | ||
2532 | else { | 2548 | else { |
2533 | KMessageBox::information( 0, i18n("ERROR:\nGot send file request\nwith invalid password")); | 2549 | KMessageBox::information( 0, i18n("ERROR:\nGot send file request\nwith invalid password")); |
2534 | qDebug("password %s, invalid password %s ",mPassWord.latin1(), tokens[1].latin1() ); | 2550 | qDebug("password %s, invalid password %s ",mPassWord.latin1(), tokens[1].latin1() ); |
2535 | } | 2551 | } |
2536 | } | 2552 | } |
2537 | if ( tokens[0] == "PUT" ) { | 2553 | if ( tokens[0] == "PUT" ) { |
2538 | if ( tokens[1] == mPassWord ) | 2554 | if ( tokens[1] == mPassWord ) |
2539 | emit getFile( mSocket ); | 2555 | //emit getFile( mSocket ); |
2556 | get_file(); | ||
2540 | else { | 2557 | else { |
2541 | KMessageBox::information( 0, i18n("ERROR:\nGot receive file request\nwith invalid password")); | 2558 | KMessageBox::information( 0, i18n("ERROR:\nGot receive file request\nwith invalid password")); |
2542 | qDebug("password %s, invalid password %s ",mPassWord.latin1(), tokens[1].latin1() ); | 2559 | qDebug("password %s, invalid password %s ",mPassWord.latin1(), tokens[1].latin1() ); |
2543 | } | 2560 | } |
2544 | } | 2561 | } |
2545 | if ( tokens[0] == "STOP" ) { | 2562 | if ( tokens[0] == "STOP" ) { |
2546 | emit endConnect(); | 2563 | emit endConnect(); |
2547 | } | 2564 | } |
2548 | } | 2565 | } |
2549 | } | 2566 | } |
2550 | 2567 | ||
2568 | void KServerSocket::send_file() | ||
2569 | { | ||
2570 | qDebug("MainWindow::sendFile(QSocket* s) "); | ||
2571 | if ( mSyncActionDialog ) | ||
2572 | delete mSyncActionDialog; | ||
2573 | mSyncActionDialog = new QDialog ( 0, "input-dialog", true ); | ||
2574 | mSyncActionDialog->setCaption(i18n("Received sync request")); | ||
2575 | QLabel* label = new QLabel( i18n("Synchronizing...\nDo not use this application!\n\nIf syncing fails you can close this dialog."), mSyncActionDialog ); | ||
2576 | QVBoxLayout* lay = new QVBoxLayout( mSyncActionDialog ); | ||
2577 | lay->addWidget( label); | ||
2578 | lay->setMargin(7); | ||
2579 | lay->setSpacing(7); | ||
2580 | mSyncActionDialog->setFixedSize( 230, 120); | ||
2581 | mSyncActionDialog->show(); | ||
2582 | qDebug("KSS::saving ... "); | ||
2583 | emit saveFile(); | ||
2584 | qApp->processEvents(); | ||
2585 | QString fileName = mFileName; | ||
2586 | QFile file( fileName ); | ||
2587 | if (!file.open( IO_ReadOnly ) ) { | ||
2588 | delete mSyncActionDialog; | ||
2589 | mSyncActionDialog = 0; | ||
2590 | qDebug("KSS::error open file "); | ||
2591 | mSocket->close(); | ||
2592 | if ( mSocket->state() == QSocket::Idle ) | ||
2593 | QTimer::singleShot( 10, this , SLOT ( discardClient())); | ||
2594 | return ; | ||
2595 | |||
2596 | } | ||
2597 | mSyncActionDialog->setCaption( i18n("Sending file...") ); | ||
2598 | QTextStream ts( &file ); | ||
2599 | ts.setCodec( QTextCodec::codecForName("utf8") ); | ||
2600 | QTextStream os( mSocket ); | ||
2601 | os.setCodec( QTextCodec::codecForName("utf8") ); | ||
2602 | //os.setEncoding( QTextStream::UnicodeUTF8 ); | ||
2603 | while ( ! ts.atEnd() ) { | ||
2604 | os << ts.readLine() << "\n"; | ||
2605 | } | ||
2606 | //os << ts.read(); | ||
2607 | file.close(); | ||
2608 | mSyncActionDialog->setCaption( i18n("Waiting to get back synced file") ); | ||
2609 | qDebug("file sent "); | ||
2610 | mSocket->close(); | ||
2611 | if ( mSocket->state() == QSocket::Idle ) | ||
2612 | QTimer::singleShot( 10, this , SLOT ( discardClient())); | ||
2613 | } | ||
2614 | void KServerSocket::get_file() | ||
2615 | { | ||
2616 | mSyncActionDialog->setCaption( i18n("Receiving synced file...") ); | ||
2617 | |||
2618 | piTime.start(); | ||
2619 | piFileString = ""; | ||
2620 | QTimer::singleShot( 1, this , SLOT (readBackFileFromSocket( ) )); | ||
2621 | } | ||
2622 | |||
2623 | |||
2624 | void KServerSocket::readBackFileFromSocket() | ||
2625 | { | ||
2626 | qDebug("readBackFileFromSocket() %d ", piTime.elapsed ()); | ||
2627 | while ( mSocket->canReadLine () ) { | ||
2628 | piTime.restart(); | ||
2629 | QString line = mSocket->readLine (); | ||
2630 | piFileString += line; | ||
2631 | qDebug("readline: %s ", line.latin1()); | ||
2632 | mSyncActionDialog->setCaption( i18n("Received %1 bytes").arg( piFileString.length() ) ); | ||
2633 | |||
2634 | } | ||
2635 | if ( piTime.elapsed () < 3000 ) { | ||
2636 | // wait for more | ||
2637 | qDebug("waitformore "); | ||
2638 | QTimer::singleShot( 100, this , SLOT (readBackFileFromSocket( ) )); | ||
2639 | return; | ||
2640 | } | ||
2641 | QString fileName = mFileName; | ||
2642 | QFile file ( fileName ); | ||
2643 | if (!file.open( IO_WriteOnly ) ) { | ||
2644 | delete mSyncActionDialog; | ||
2645 | mSyncActionDialog = 0; | ||
2646 | qDebug("error open cal file "); | ||
2647 | piFileString = ""; | ||
2648 | emit file_received( false ); | ||
2649 | return ; | ||
2650 | |||
2651 | } | ||
2652 | |||
2653 | // mView->setLoadedFileVersion(QDateTime::currentDateTime().addSecs( -1)); | ||
2654 | QTextStream ts ( &file ); | ||
2655 | ts.setCodec( QTextCodec::codecForName("utf8") ); | ||
2656 | qDebug("finish "); | ||
2657 | mSyncActionDialog->setCaption( i18n("Writing file to disk...") ); | ||
2658 | ts << piFileString; | ||
2659 | mSocket->close(); | ||
2660 | if ( mSocket->state() == QSocket::Idle ) | ||
2661 | QTimer::singleShot( 10, this , SLOT ( discardClient())); | ||
2662 | file.close(); | ||
2663 | delete mSyncActionDialog; | ||
2664 | mSyncActionDialog = 0; | ||
2665 | piFileString = ""; | ||
2666 | emit file_received( true ); | ||
2667 | |||
2668 | } | ||
2669 | |||
2551 | KCommandSocket::KCommandSocket ( QString password, Q_UINT16 port, QString host, QObject * parent, const char * name ): QObject( parent, name ) | 2670 | KCommandSocket::KCommandSocket ( QString password, Q_UINT16 port, QString host, QObject * parent, const char * name ): QObject( parent, name ) |
2552 | { | 2671 | { |
2553 | mPassWord = password; | 2672 | mPassWord = password; |
2554 | mSocket = 0; | 2673 | mSocket = 0; |
2555 | mPort = port; | 2674 | mPort = port; |
2556 | mHost = host; | 2675 | mHost = host; |
2557 | 2676 | ||
2558 | mRetVal = false; | 2677 | mRetVal = false; |
2559 | mTimerSocket = new QTimer ( this ); | 2678 | mTimerSocket = new QTimer ( this ); |
2560 | connect( mTimerSocket, SIGNAL ( timeout () ), this, SLOT ( deleteSocket() ) ); | 2679 | connect( mTimerSocket, SIGNAL ( timeout () ), this, SLOT ( deleteSocket() ) ); |
2561 | } | 2680 | } |
2562 | void KCommandSocket::readFile( QString fn ) | 2681 | void KCommandSocket::readFile( QString fn ) |
2563 | { | 2682 | { |
2564 | if ( !mSocket ) { | 2683 | if ( !mSocket ) { |
2565 | mSocket = new QSocket( this ); | 2684 | mSocket = new QSocket( this ); |
2566 | connect( mSocket, SIGNAL(readyRead()), this, SLOT(startReadFileFromSocket()) ); | 2685 | connect( mSocket, SIGNAL(readyRead()), this, SLOT(startReadFileFromSocket()) ); |
2567 | connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) ); | 2686 | connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) ); |
2568 | } | 2687 | } |
2569 | mFileString = ""; | 2688 | mFileString = ""; |
2570 | mFileName = fn; | 2689 | mFileName = fn; |
2571 | mFirst = true; | 2690 | mFirst = true; |
2572 | mSocket->connectToHost( mHost, mPort ); | 2691 | mSocket->connectToHost( mHost, mPort ); |
2573 | QTextStream os( mSocket ); | 2692 | QTextStream os( mSocket ); |
2574 | os.setEncoding( QTextStream::UnicodeUTF8 ); | 2693 | os.setEncoding( QTextStream::UnicodeUTF8 ); |
2575 | os << "GET " << mPassWord << "\r\n"; | 2694 | os << "GET " << mPassWord << "\r\n"; |
2576 | mTimerSocket->start( 10000 ); | 2695 | mTimerSocket->start( 10000 ); |
2577 | } | 2696 | } |
2578 | 2697 | ||
2579 | void KCommandSocket::writeFile( QString ) | 2698 | void KCommandSocket::writeFile( QString ) |
2580 | { | 2699 | { |
2581 | 2700 | ||
2582 | } | 2701 | } |
2583 | void KCommandSocket::startReadFileFromSocket() | 2702 | void KCommandSocket::startReadFileFromSocket() |
2584 | { | 2703 | { |
2585 | if ( ! mFirst ) | 2704 | if ( ! mFirst ) |
2586 | return; | 2705 | return; |
2587 | mFirst = false; | 2706 | mFirst = false; |
2588 | mTimerSocket->stop(); | 2707 | mTimerSocket->stop(); |
2589 | mFileString = ""; | 2708 | mFileString = ""; |
2590 | mTime.start(); | 2709 | mTime.start(); |
2591 | QTimer::singleShot( 1, this , SLOT (readFileFromSocket( ) )); | 2710 | QTimer::singleShot( 1, this , SLOT (readFileFromSocket( ) )); |
2592 | 2711 | ||
2593 | } | 2712 | } |
2594 | void KCommandSocket::readFileFromSocket() | 2713 | void KCommandSocket::readFileFromSocket() |
2595 | { | 2714 | { |
2596 | qDebug("readBackFileFromSocket() %d ", mTime.elapsed ()); | 2715 | qDebug("readBackFileFromSocket() %d ", mTime.elapsed ()); |
2597 | while ( mSocket->canReadLine () ) { | 2716 | while ( mSocket->canReadLine () ) { |
2598 | mTime.restart(); | 2717 | mTime.restart(); |
2599 | QString line = mSocket->readLine (); | 2718 | QString line = mSocket->readLine (); |
2600 | mFileString += line; | 2719 | mFileString += line; |
2601 | qDebug("readline: %s ", line.latin1()); | 2720 | qDebug("readline: %s ", line.latin1()); |
2602 | } | 2721 | } |
2603 | if ( mTime.elapsed () < 3000 ) { | 2722 | if ( mTime.elapsed () < 3000 ) { |
2604 | // wait for more | 2723 | // wait for more |
2605 | qDebug("waitformore "); | 2724 | qDebug("waitformore "); |
2606 | QTimer::singleShot( 100, this , SLOT (readFileFromSocket( ) )); | 2725 | QTimer::singleShot( 100, this , SLOT (readFileFromSocket( ) )); |
2607 | return; | 2726 | return; |
2608 | } | 2727 | } |
2609 | QString fileName = mFileName; | 2728 | QString fileName = mFileName; |
2610 | QFile file ( fileName ); | 2729 | QFile file ( fileName ); |
2611 | if (!file.open( IO_WriteOnly ) ) { | 2730 | if (!file.open( IO_WriteOnly ) ) { |
2612 | mFileString = ""; | 2731 | mFileString = ""; |
2613 | mRetVal = false; | 2732 | mRetVal = false; |
2614 | qDebug("Error open temp calender file for writing: %s",fileName.latin1() ); | 2733 | qDebug("Error open temp calender file for writing: %s",fileName.latin1() ); |
2615 | deleteSocket(); | 2734 | deleteSocket(); |
2616 | return ; | 2735 | return ; |
2617 | 2736 | ||
2618 | } | 2737 | } |
2619 | // mView->setLoadedFileVersion(QDateTime::currentDateTime().addSecs( -1)); | 2738 | // mView->setLoadedFileVersion(QDateTime::currentDateTime().addSecs( -1)); |
2620 | QTextStream ts ( &file ); | 2739 | QTextStream ts ( &file ); |
2621 | ts.setCodec( QTextCodec::codecForName("utf8") ); | 2740 | ts.setCodec( QTextCodec::codecForName("utf8") ); |
2622 | qDebug("finish "); | 2741 | qDebug("finish "); |
2623 | ts << mFileString; | 2742 | ts << mFileString; |
2624 | file.close(); | 2743 | file.close(); |
2625 | mFileString = ""; | 2744 | mFileString = ""; |
2626 | mRetVal = true; | 2745 | mRetVal = true; |
2627 | mSocket->close(); | 2746 | mSocket->close(); |
2628 | // if state is not idle, deleteSocket(); is called via | 2747 | // if state is not idle, deleteSocket(); is called via |
2629 | // connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) ); | 2748 | // connect( mSocket, SIGNAL(delayedCloseFinished ()), this, SLOT(deleteSocket()) ); |
2630 | if ( mSocket->state() == QSocket::Idle ) | 2749 | if ( mSocket->state() == QSocket::Idle ) |
2631 | deleteSocket(); | 2750 | deleteSocket(); |
2632 | } | 2751 | } |
2633 | 2752 | ||
2634 | void KCommandSocket::deleteSocket() | 2753 | void KCommandSocket::deleteSocket() |
2635 | { | 2754 | { |
2636 | if ( !mSocket) | 2755 | if ( !mSocket) |
2637 | return; | 2756 | return; |
2638 | if ( mTimerSocket->isActive () ) { | 2757 | if ( mTimerSocket->isActive () ) { |
2639 | mTimerSocket->stop(); | 2758 | mTimerSocket->stop(); |
2640 | KMessageBox::information( 0, i18n("ERROR:\nConnection to remote host timed out ")); | 2759 | KMessageBox::information( 0, i18n("ERROR:\nConnection to remote host timed out!\nDid you forgot to enable\nsyncing on remote host? ")); |
2641 | mRetVal = false; | 2760 | mRetVal = false; |
2642 | } | 2761 | } |
2643 | qDebug("KCommandSocket::deleteSocket() %d", mRetVal); | 2762 | qDebug("KCommandSocket::deleteSocket() %d", mRetVal); |
2644 | delete mSocket; | 2763 | delete mSocket; |
2645 | mSocket = 0; | 2764 | mSocket = 0; |
2646 | emit commandFinished( mRetVal ); | 2765 | emit commandFinished( mRetVal ); |
2647 | } | 2766 | } |
2648 | 2767 | ||
diff --git a/korganizer/mainwindow.h b/korganizer/mainwindow.h index 11a816c..8b76067 100644 --- a/korganizer/mainwindow.h +++ b/korganizer/mainwindow.h | |||
@@ -1,201 +1,212 @@ | |||
1 | #ifndef KORGE_MAINWINDOW_H | 1 | #ifndef KORGE_MAINWINDOW_H |
2 | #define KORGE_MAINWINDOW_H | 2 | #define KORGE_MAINWINDOW_H |
3 | 3 | ||
4 | #include <qmainwindow.h> | 4 | #include <qmainwindow.h> |
5 | #include <qtimer.h> | 5 | #include <qtimer.h> |
6 | #include <qdict.h> | 6 | #include <qdict.h> |
7 | #include <qfile.h> | 7 | #include <qfile.h> |
8 | #include <qsocket.h> | 8 | #include <qsocket.h> |
9 | #include <qtextstream.h> | 9 | #include <qtextstream.h> |
10 | #include <qregexp.h> | 10 | #include <qregexp.h> |
11 | 11 | ||
12 | #include <libkcal/incidence.h> | 12 | #include <libkcal/incidence.h> |
13 | #include "simplealarmclient.h" | 13 | #include "simplealarmclient.h" |
14 | 14 | ||
15 | class QAction; | 15 | class QAction; |
16 | class CalendarView; | 16 | class CalendarView; |
17 | class KSyncProfile; | 17 | class KSyncProfile; |
18 | #ifdef DESKTOP_VERSION | 18 | #ifdef DESKTOP_VERSION |
19 | 19 | ||
20 | #define QPEToolBar QToolBar | 20 | #define QPEToolBar QToolBar |
21 | #define QPEMenuBar QMenuBar | 21 | #define QPEMenuBar QMenuBar |
22 | #endif | 22 | #endif |
23 | class QPEToolBar; | 23 | class QPEToolBar; |
24 | #include <qserversocket.h> | 24 | #include <qserversocket.h> |
25 | #include <qsocket.h> | 25 | #include <qsocket.h> |
26 | #include <qnetworkprotocol.h> | 26 | #include <qnetworkprotocol.h> |
27 | 27 | ||
28 | class KServerSocket : public QServerSocket | 28 | class KServerSocket : public QServerSocket |
29 | { | 29 | { |
30 | Q_OBJECT | 30 | Q_OBJECT |
31 | 31 | ||
32 | public: | 32 | public: |
33 | KServerSocket ( QString password, Q_UINT16 port, int backlog = 0, QObject * parent=0, const char * name=0 ); | 33 | KServerSocket ( QString password, Q_UINT16 port, int backlog = 0, QObject * parent=0, const char * name=0 ); |
34 | 34 | ||
35 | void newConnection ( int socket ) ; | 35 | void newConnection ( int socket ) ; |
36 | void setFileName( QString fn ) {mFileName = fn;}; | ||
36 | 37 | ||
37 | signals: | 38 | signals: |
38 | void sendFile(QSocket*); | 39 | //void sendFile(QSocket*); |
39 | void getFile(QSocket*); | 40 | //void getFile(QSocket*); |
41 | void file_received( bool ); | ||
42 | //void file_sent(); | ||
43 | void saveFile(); | ||
40 | void endConnect(); | 44 | void endConnect(); |
41 | private slots: | 45 | private slots: |
42 | void discardClient(); | 46 | void discardClient(); |
43 | void readClient(); | 47 | void readClient(); |
48 | void readBackFileFromSocket(); | ||
44 | private : | 49 | private : |
50 | void send_file(); | ||
51 | void get_file(); | ||
52 | QDialog* mSyncActionDialog; | ||
45 | QSocket* mSocket; | 53 | QSocket* mSocket; |
46 | QString mPassWord; | 54 | QString mPassWord; |
55 | QString mFileName; | ||
56 | QTime piTime; | ||
57 | QString piFileString; | ||
47 | }; | 58 | }; |
48 | 59 | ||
49 | class KCommandSocket : public QObject | 60 | class KCommandSocket : public QObject |
50 | { | 61 | { |
51 | Q_OBJECT | 62 | Q_OBJECT |
52 | 63 | ||
53 | public: | 64 | public: |
54 | KCommandSocket ( QString password, Q_UINT16 port, QString host, QObject * parent=0, const char * name=0 ); | 65 | KCommandSocket ( QString password, Q_UINT16 port, QString host, QObject * parent=0, const char * name=0 ); |
55 | void readFile( QString ); | 66 | void readFile( QString ); |
56 | void writeFile( QString ); | 67 | void writeFile( QString ); |
57 | 68 | ||
58 | 69 | ||
59 | signals: | 70 | signals: |
60 | void commandFinished( bool ); | 71 | void commandFinished( bool ); |
61 | private slots: | 72 | private slots: |
62 | void startReadFileFromSocket(); | 73 | void startReadFileFromSocket(); |
63 | void readFileFromSocket(); | 74 | void readFileFromSocket(); |
64 | void deleteSocket(); | 75 | void deleteSocket(); |
65 | private : | 76 | private : |
66 | QSocket* mSocket; | 77 | QSocket* mSocket; |
67 | QString mPassWord; | 78 | QString mPassWord; |
68 | Q_UINT16 mPort; | 79 | Q_UINT16 mPort; |
69 | QString mHost; | 80 | QString mHost; |
70 | QString mFileName; | 81 | QString mFileName; |
71 | QTimer* mTimerSocket; | 82 | QTimer* mTimerSocket; |
72 | bool mRetVal; | 83 | bool mRetVal; |
73 | QTime mTime; | 84 | QTime mTime; |
74 | QString mFileString; | 85 | QString mFileString; |
75 | bool mFirst; | 86 | bool mFirst; |
76 | }; | 87 | }; |
77 | 88 | ||
78 | namespace KCal { | 89 | namespace KCal { |
79 | class CalendarLocal; | 90 | class CalendarLocal; |
80 | } | 91 | } |
81 | 92 | ||
82 | using namespace KCal; | 93 | using namespace KCal; |
83 | 94 | ||
84 | class MainWindow : public QMainWindow | 95 | class MainWindow : public QMainWindow |
85 | { | 96 | { |
86 | Q_OBJECT | 97 | Q_OBJECT |
87 | public: | 98 | public: |
88 | MainWindow( QWidget *parent = 0, const char *name = 0, QString command = ""); | 99 | MainWindow( QWidget *parent = 0, const char *name = 0, QString command = ""); |
89 | ~MainWindow(); | 100 | ~MainWindow(); |
90 | public slots: | 101 | public slots: |
91 | virtual void showMaximized (); | 102 | virtual void showMaximized (); |
92 | void configureAgenda( int ); | 103 | void configureAgenda( int ); |
93 | void recieve( const QCString& msg, const QByteArray& data ); | 104 | void recieve( const QCString& msg, const QByteArray& data ); |
94 | static QString defaultFileName(); | 105 | static QString defaultFileName(); |
95 | static QString resourcePath(); | 106 | static QString resourcePath(); |
96 | protected slots: | 107 | protected slots: |
97 | void setCaptionToDates(); | 108 | void setCaptionToDates(); |
98 | int ringSync(); | 109 | int ringSync(); |
99 | void multiSync( bool askforPrefs = false ); | 110 | void multiSync( bool askforPrefs = false ); |
100 | void about(); | 111 | void about(); |
101 | void licence(); | 112 | void licence(); |
102 | void faq(); | 113 | void faq(); |
103 | void usertrans(); | 114 | void usertrans(); |
104 | void features(); | 115 | void features(); |
105 | void synchowto(); | 116 | void synchowto(); |
106 | void whatsNew(); | 117 | void whatsNew(); |
107 | void keyBindings(); | 118 | void keyBindings(); |
108 | void aboutAutoSaving();; | 119 | void aboutAutoSaving();; |
109 | void aboutKnownBugs(); | 120 | void aboutKnownBugs(); |
110 | 121 | ||
111 | void processIncidenceSelection( Incidence * ); | 122 | void processIncidenceSelection( Incidence * ); |
112 | 123 | ||
113 | void importQtopia(); | 124 | void importQtopia(); |
114 | void importBday(); | 125 | void importBday(); |
115 | void importOL(); | 126 | void importOL(); |
116 | void importIcal(); | 127 | void importIcal(); |
117 | void importFile( QString, bool ); | 128 | void importFile( QString, bool ); |
118 | void quickImportIcal(); | 129 | void quickImportIcal(); |
119 | 130 | ||
120 | void slotModifiedChanged( bool ); | 131 | void slotModifiedChanged( bool ); |
121 | 132 | ||
122 | void save(); | 133 | void save(); |
123 | void configureToolBar( int ); | 134 | void configureToolBar( int ); |
124 | void printSel(); | 135 | void printSel(); |
125 | void printCal(); | 136 | void printCal(); |
126 | void saveCalendar(); | 137 | void saveCalendar(); |
127 | void loadCalendar(); | 138 | void loadCalendar(); |
128 | void exportVCalendar(); | 139 | void exportVCalendar(); |
129 | void fillFilterMenu(); | 140 | void fillFilterMenu(); |
130 | void selectFilter( int ); | 141 | void selectFilter( int ); |
131 | 142 | ||
132 | void slotSyncMenu( int ); | 143 | void slotSyncMenu( int ); |
133 | void syncSSH(); | 144 | void syncSSH(); |
134 | void confSync(); | 145 | void confSync(); |
135 | void syncSharp(); | 146 | void syncSharp(); |
136 | void syncPhone(); | 147 | void syncPhone(); |
137 | void syncLocalFile(); | 148 | void syncLocalFile(); |
138 | bool syncWithFile( QString, bool ); | 149 | bool syncWithFile( QString, bool ); |
139 | void quickSyncLocalFile(); | 150 | void quickSyncLocalFile(); |
140 | 151 | ||
141 | 152 | ||
142 | protected: | 153 | protected: |
143 | void displayText( QString, QString); | 154 | void displayText( QString, QString); |
144 | void displayFile( QString, QString); | 155 | void displayFile( QString, QString); |
145 | 156 | ||
146 | void enableIncidenceActions( bool ); | 157 | void enableIncidenceActions( bool ); |
147 | 158 | ||
148 | private slots: | 159 | private slots: |
149 | QSocket* piSocket; | 160 | QSocket* piSocket; |
150 | QString piFileString; | 161 | QString piFileString; |
151 | QTime piTime; | 162 | QTime piTime; |
152 | void deleteCommandSocket(bool); | 163 | void deleteCommandSocket(bool); |
153 | void deleteCommandSocketFinish(); | 164 | void deleteCommandSocketFinish(); |
154 | void fillSyncMenu(); | 165 | void fillSyncMenu(); |
155 | void sendFile(QSocket* s); | 166 | void sendFile(QSocket* s); |
156 | void getFile(QSocket* socket); | 167 | void getFile( bool ); |
157 | void readFileFromSocket(); | 168 | void readFileFromSocket(); |
158 | void readBackFileFromSocket(); | 169 | void readBackFileFromSocket(); |
159 | void endConnect(); | 170 | void endConnect(); |
160 | private: | 171 | private: |
161 | //QTimer* mTimerCommandSocket; | 172 | //QTimer* mTimerCommandSocket; |
162 | QString mPassWordPiSync; | 173 | QString mPassWordPiSync; |
163 | KCommandSocket* mCommandSocket; | 174 | KCommandSocket* mCommandSocket; |
164 | QSocket* mCommandSocketFinish; | 175 | QSocket* mCommandSocketFinish; |
165 | KServerSocket * mServerSocket; | 176 | KServerSocket * mServerSocket; |
166 | bool mClosed; | 177 | bool mClosed; |
167 | void saveOnClose(); | 178 | void saveOnClose(); |
168 | int mCurrentSyncProfile; | 179 | int mCurrentSyncProfile; |
169 | void enableQuick(); | 180 | void enableQuick(); |
170 | void performQuick(); | 181 | void performQuick(); |
171 | void performQuickQuick(); | 182 | void performQuickQuick(); |
172 | void syncRemote( KSyncProfile* , bool ask = true); | 183 | void syncRemote( KSyncProfile* , bool ask = true); |
173 | bool mFlagKeyPressed; | 184 | bool mFlagKeyPressed; |
174 | bool mBlockAtStartup; | 185 | bool mBlockAtStartup; |
175 | QPEToolBar *iconToolBar; | 186 | QPEToolBar *iconToolBar; |
176 | void initActions(); | 187 | void initActions(); |
177 | void setDefaultPreferences(); | 188 | void setDefaultPreferences(); |
178 | void keyPressEvent ( QKeyEvent * ) ; | 189 | void keyPressEvent ( QKeyEvent * ) ; |
179 | void keyReleaseEvent ( QKeyEvent * ) ; | 190 | void keyReleaseEvent ( QKeyEvent * ) ; |
180 | QPopupMenu *configureToolBarMenu; | 191 | QPopupMenu *configureToolBarMenu; |
181 | QPopupMenu *selectFilterMenu; | 192 | QPopupMenu *selectFilterMenu; |
182 | QPopupMenu *configureAgendaMenu, *syncMenu; | 193 | QPopupMenu *configureAgendaMenu, *syncMenu; |
183 | CalendarLocal *mCalendar; | 194 | CalendarLocal *mCalendar; |
184 | CalendarView *mView; | 195 | CalendarView *mView; |
185 | QString getPassword(); | 196 | QString getPassword(); |
186 | QAction *mNewSubTodoAction; | 197 | QAction *mNewSubTodoAction; |
187 | 198 | ||
188 | QAction *mShowAction; | 199 | QAction *mShowAction; |
189 | QAction *mEditAction; | 200 | QAction *mEditAction; |
190 | QAction *mDeleteAction; | 201 | QAction *mDeleteAction; |
191 | void closeEvent( QCloseEvent* ce ); | 202 | void closeEvent( QCloseEvent* ce ); |
192 | SimpleAlarmClient mAlarmClient; | 203 | SimpleAlarmClient mAlarmClient; |
193 | QTimer mSaveTimer; | 204 | QTimer mSaveTimer; |
194 | bool mBlockSaveFlag; | 205 | bool mBlockSaveFlag; |
195 | bool mCalendarModifiedFlag; | 206 | bool mCalendarModifiedFlag; |
196 | QPixmap loadPixmap( QString ); | 207 | QPixmap loadPixmap( QString ); |
197 | QDialog * mSyncActionDialog; | 208 | QDialog * mSyncActionDialog; |
198 | }; | 209 | }; |
199 | 210 | ||
200 | 211 | ||
201 | #endif | 212 | #endif |