summaryrefslogtreecommitdiff
authorzecke <zecke>2003-09-19 16:45:45 (UTC)
committer zecke <zecke>2003-09-19 16:45:45 (UTC)
commit0468cfef459d613ae0a32a3fa03e67726d19f6e9 (patch) (unidiff)
treea9c3a751f206b97e8eee6046057eba8d92a22d1d
parent42a5104340694255dc514514e7621ac2cee026fe (diff)
downloadopie-0468cfef459d613ae0a32a3fa03e67726d19f6e9.zip
opie-0468cfef459d613ae0a32a3fa03e67726d19f6e9.tar.gz
opie-0468cfef459d613ae0a32a3fa03e67726d19f6e9.tar.bz2
Either be compatible with Sharp( IntelliSync, KitchenSync, QtopiaDesktop)
or with the newer QtopiaDesktop or with both
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--core/launcher/qcopbridge.cpp99
-rw-r--r--core/launcher/qcopbridge.h3
2 files changed, 99 insertions, 3 deletions
diff --git a/core/launcher/qcopbridge.cpp b/core/launcher/qcopbridge.cpp
index f780235..9cb56ce 100644
--- a/core/launcher/qcopbridge.cpp
+++ b/core/launcher/qcopbridge.cpp
@@ -18,24 +18,25 @@
18** 18**
19**********************************************************************/ 19**********************************************************************/
20 20
21#include "qcopbridge.h" 21#include "qcopbridge.h"
22#include "transferserver.h" 22#include "transferserver.h"
23 23
24#ifdef Q_WS_QWS 24#ifdef Q_WS_QWS
25#include <qtopia/qcopenvelope_qws.h> 25#include <qtopia/qcopenvelope_qws.h>
26#endif 26#endif
27#include <qtopia/qpeapplication.h> 27#include <qtopia/qpeapplication.h>
28#include <qtopia/global.h> 28#include <qtopia/global.h>
29#include <qtopia/version.h> 29#include <qtopia/version.h>
30#include <qtopia/config.h>
30 31
31#include <qdir.h> 32#include <qdir.h>
32#include <qfile.h> 33#include <qfile.h>
33#include <qtextstream.h> 34#include <qtextstream.h>
34#include <qdatastream.h> 35#include <qdatastream.h>
35#include <qcstring.h> 36#include <qcstring.h>
36#include <qstringlist.h> 37#include <qstringlist.h>
37#include <qfileinfo.h> 38#include <qfileinfo.h>
38#include <qregexp.h> 39#include <qregexp.h>
39#include <qtimer.h> 40#include <qtimer.h>
40#ifdef Q_WS_QWS 41#ifdef Q_WS_QWS
41#include <qcopchannel_qws.h> 42#include <qcopchannel_qws.h>
@@ -71,35 +72,39 @@ QCopBridge::QCopBridge( Q_UINT16 port, QObject *parent,
71 else { 72 else {
72#ifndef QT_NO_COP 73#ifndef QT_NO_COP
73 desktopChannel = new QCopChannel( "QPE/Desktop", this ); 74 desktopChannel = new QCopChannel( "QPE/Desktop", this );
74 connect( desktopChannel, SIGNAL(received(const QCString &, const QByteArray &)), 75 connect( desktopChannel, SIGNAL(received(const QCString &, const QByteArray &)),
75 this, SLOT(desktopMessage( const QCString &, const QByteArray &)) ); 76 this, SLOT(desktopMessage( const QCString &, const QByteArray &)) );
76 cardChannel = new QCopChannel( "QPE/Card", this ); 77 cardChannel = new QCopChannel( "QPE/Card", this );
77 connect( cardChannel, SIGNAL(received(const QCString &, const QByteArray &)), 78 connect( cardChannel, SIGNAL(received(const QCString &, const QByteArray &)),
78 this, SLOT(desktopMessage( const QCString &, const QByteArray &)) ); 79 this, SLOT(desktopMessage( const QCString &, const QByteArray &)) );
79#endif 80#endif
80 } 81 }
81 sendSync = FALSE; 82 sendSync = FALSE;
82 openConnections.setAutoDelete( TRUE ); 83 openConnections.setAutoDelete( TRUE );
84 authorizeConnections();
83} 85}
84 86
85QCopBridge::~QCopBridge() 87QCopBridge::~QCopBridge()
86{ 88{
87#ifndef QT_NO_COP 89#ifndef QT_NO_COP
88 delete desktopChannel; 90 delete desktopChannel;
89#endif 91#endif
90} 92}
91 93
92void QCopBridge::authorizeConnections() 94void QCopBridge::authorizeConnections()
93{ 95{
96 Config cfg("Security");
97 cfg.setGroup("SyncMode");
98 m_mode = Mode(cfg.readNumEntry("Mode", Sharp ));
94 QListIterator<QCopBridgePI> it(openConnections); 99 QListIterator<QCopBridgePI> it(openConnections);
95 while ( it.current() ) { 100 while ( it.current() ) {
96 if ( !it.current()->verifyAuthorised() ) { 101 if ( !it.current()->verifyAuthorised() ) {
97 disconnect ( it.current(), SIGNAL( connectionClosed( QCopBridgePI *) ), this, SLOT( closed( QCopBridgePI *) ) ); 102 disconnect ( it.current(), SIGNAL( connectionClosed( QCopBridgePI *) ), this, SLOT( closed( QCopBridgePI *) ) );
98 openConnections.removeRef( it.current() ); 103 openConnections.removeRef( it.current() );
99 } else 104 } else
100 ++it; 105 ++it;
101 } 106 }
102} 107}
103 108
104void QCopBridge::newConnection( int socket ) 109void QCopBridge::newConnection( int socket )
105{ 110{
@@ -143,30 +148,116 @@ void QCopBridge::closeOpenConnections()
143 pi->close(); 148 pi->close();
144} 149}
145 150
146 151
147void QCopBridge::desktopMessage( const QCString &command, const QByteArray &data ) 152void QCopBridge::desktopMessage( const QCString &command, const QByteArray &data )
148{ 153{
149 if ( command == "startSync()" ) { 154 if ( command == "startSync()" ) {
150 // we need to buffer it a bit 155 // we need to buffer it a bit
151 sendSync = TRUE; 156 sendSync = TRUE;
152 startTimer( 20000 ); 157 startTimer( 20000 );
153 } 158 }
154 159
160 if ( m_mode & Qtopia1_7 ) {
161 // send the command to all open connections
162 QCopBridgePI *pi;
163 for ( pi = openConnections.first(); pi != 0; pi = openConnections.next() ) {
164 pi->sendDesktopMessage( command, data );
165 }
166 }
167 if ( m_mode & Sharp )
168 sendDesktopMessageOld( command, data );
169}
170
171#ifndef OPIE_NO_OLD_SYNC_CODE
172/*
173 * Old compat mode
174 */
175void QCopBridge::sendDesktopMessageOld( const QCString& command, const QByteArray& args) {
176 command.stripWhiteSpace();
177
178 int paren = command.find( "(" );
179 if ( paren <= 0 ) {
180 qDebug("DesktopMessage: bad qcop syntax");
181 return;
182 }
183
184 QString params = command.mid( paren + 1 );
185 if ( params[params.length()-1] != ')' ) {
186 qDebug("DesktopMessage: bad qcop syntax");
187 return;
188 }
189
190 params.truncate( params.length()-1 );
191
192 QStringList paramList = QStringList::split( ",", params );
193 QString data;
194 if ( paramList.count() ) {
195 QDataStream stream( args, IO_ReadOnly );
196 for ( QStringList::Iterator it = paramList.begin(); it != paramList.end(); ++it ) {
197 QString str;
198 if ( *it == "QString" ) {
199 stream >> str;
200 } else if ( *it == "QCString" ) {
201 QCString cstr;
202 stream >> cstr;
203 str = QString::fromLocal8Bit( cstr );
204 } else if ( *it == "int" ) {
205 int i;
206 stream >> i;
207 str = QString::number( i );
208 } else if ( *it == "bool" ) {
209 int i;
210 stream >> i;
211 str = QString::number( i );
212 } else {
213 qDebug(" cannot route the argument type %s throught the qcop bridge", (*it).latin1() );
214 return;
215 }
216 QString estr;
217 for (int i=0; i<(int)str.length(); i++) {
218 QChar ch = str[i];
219 if ( ch.row() )
220 goto quick;
221 switch (ch.cell()) {
222 case '&':
223 estr.append( "&amp;" );
224 break;
225 case ' ':
226 estr.append( "&0x20;" );
227 break;
228 case '\n':
229 estr.append( "&0x0d;" );
230 break;
231 case '\r':
232 estr.append( "&0x0a;" );
233 break;
234 default: quick:
235 estr.append(ch);
236 }
237 }
238 data += " " + estr;
239 }
240 }
241 QString sendCommand = QString(command.data()) + data;
242
243
155 // send the command to all open connections 244 // send the command to all open connections
156 QCopBridgePI *pi; 245 QCopBridgePI *pi;
157 for ( pi = openConnections.first(); pi != 0; pi = openConnections.next() ) { 246 for ( pi = openConnections.first(); pi != 0; pi = openConnections.next() )
158 pi->sendDesktopMessage( command, data ); 247 pi->sendDesktopMessage( sendCommand );
159 } 248
160} 249}
250#endif
251
161 252
162void QCopBridge::timerEvent( QTimerEvent * ) 253void QCopBridge::timerEvent( QTimerEvent * )
163{ 254{
164 sendSync = FALSE; 255 sendSync = FALSE;
165 killTimers(); 256 killTimers();
166} 257}
167 258
168 259
169QCopBridgePI::QCopBridgePI( int socket, QObject *parent, const char* name ) 260QCopBridgePI::QCopBridgePI( int socket, QObject *parent, const char* name )
170 : QSocket( parent, name ) 261 : QSocket( parent, name )
171{ 262{
172 setSocket( socket ); 263 setSocket( socket );
@@ -220,31 +311,33 @@ void QCopBridgePI::myConnectionClosed()
220} 311}
221 312
222void QCopBridgePI::sendDesktopMessage( const QString &msg ) 313void QCopBridgePI::sendDesktopMessage( const QString &msg )
223{ 314{
224 QString str = "CALL QPE/Desktop " + msg; // No tr 315 QString str = "CALL QPE/Desktop " + msg; // No tr
225 send ( str ); 316 send ( str );
226} 317}
227 318
228void QCopBridgePI::sendDesktopMessage( const QCString &msg, const QByteArray& data ) 319void QCopBridgePI::sendDesktopMessage( const QCString &msg, const QByteArray& data )
229{ 320{
230 if ( !isOpen() ) // eg. Forbidden 321 if ( !isOpen() ) // eg. Forbidden
231 return; 322 return;
323
232 const char hdr[]="CALLB QPE/Desktop "; 324 const char hdr[]="CALLB QPE/Desktop ";
233 writeBlock(hdr,sizeof(hdr)-1); 325 writeBlock(hdr,sizeof(hdr)-1);
234 writeBlock(msg,msg.length()); 326 writeBlock(msg,msg.length());
235 writeBlock(" ",1); 327 writeBlock(" ",1);
236 QByteArray b64 = Opie::Global::encodeBase64(data); 328 QByteArray b64 = Opie::Global::encodeBase64(data);
237 writeBlock(b64.data(),b64.size()); 329 writeBlock(b64.data(),b64.size());
238 writeBlock("\r\n",2); 330 writeBlock("\r\n",2);
331
239} 332}
240 333
241 334
242void QCopBridgePI::send( const QString& msg ) 335void QCopBridgePI::send( const QString& msg )
243{ 336{
244 if ( !isOpen() ) // eg. Forbidden 337 if ( !isOpen() ) // eg. Forbidden
245 return; 338 return;
246 QTextStream os( this ); 339 QTextStream os( this );
247 os << msg << endl; 340 os << msg << endl;
248 //qDebug( "sending qcop message: %s", msg.latin1() ); 341 //qDebug( "sending qcop message: %s", msg.latin1() );
249} 342}
250 343
diff --git a/core/launcher/qcopbridge.h b/core/launcher/qcopbridge.h
index bae3f88..9483d9d 100644
--- a/core/launcher/qcopbridge.h
+++ b/core/launcher/qcopbridge.h
@@ -28,46 +28,49 @@
28#include <qbuffer.h> 28#include <qbuffer.h>
29 29
30class QFileInfo; 30class QFileInfo;
31class QCopBridgePI; 31class QCopBridgePI;
32class QCopChannel; 32class QCopChannel;
33class QTimer; 33class QTimer;
34 34
35class QCopBridge : public QServerSocket 35class QCopBridge : public QServerSocket
36{ 36{
37 Q_OBJECT 37 Q_OBJECT
38 38
39public: 39public:
40 enum Mode { Qtopia1_7= 0x01, Sharp = 0x02, Both = Qtopia1_7 | Sharp };
40 QCopBridge( Q_UINT16 port, QObject *parent = 0, const char* name = 0 ); 41 QCopBridge( Q_UINT16 port, QObject *parent = 0, const char* name = 0 );
41 virtual ~QCopBridge(); 42 virtual ~QCopBridge();
42 43
43 void newConnection( int socket ); 44 void newConnection( int socket );
44 void closeOpenConnections(); 45 void closeOpenConnections();
45 void authorizeConnections(); 46 void authorizeConnections();
46 47
47public slots: 48public slots:
48 void closed( QCopBridgePI *pi ); 49 void closed( QCopBridgePI *pi );
49 void desktopMessage( const QCString &call, const QByteArray & ); 50 void desktopMessage( const QCString &call, const QByteArray & );
50 51
51signals: 52signals:
52 void connectionClosed( const QHostAddress & ); 53 void connectionClosed( const QHostAddress & );
53 54
54protected: 55protected:
55 void timerEvent( QTimerEvent * ); 56 void timerEvent( QTimerEvent * );
57 void sendDesktopMessageOld( const QCString&, const QByteArray& );
56 58
57private: 59private:
58 QCopChannel *desktopChannel; 60 QCopChannel *desktopChannel;
59 QCopChannel *cardChannel; 61 QCopChannel *cardChannel;
60 QList<QCopBridgePI> openConnections; 62 QList<QCopBridgePI> openConnections;
61 bool sendSync; 63 bool sendSync;
64 Mode m_mode;
62}; 65};
63 66
64 67
65class QCopBridgePI : public QSocket 68class QCopBridgePI : public QSocket
66{ 69{
67 Q_OBJECT 70 Q_OBJECT
68 71
69 enum State { Connected, Wait_USER, Wait_PASS, Ready, Forbidden }; 72 enum State { Connected, Wait_USER, Wait_PASS, Ready, Forbidden };
70 73
71public: 74public:
72 QCopBridgePI( int socket, QObject *parent = 0, const char* name = 0 ); 75 QCopBridgePI( int socket, QObject *parent = 0, const char* name = 0 );
73 virtual ~QCopBridgePI(); 76 virtual ~QCopBridgePI();