author | zecke <zecke> | 2002-06-12 16:37:52 (UTC) |
---|---|---|
committer | zecke <zecke> | 2002-06-12 16:37:52 (UTC) |
commit | ac707e366de561cabc8074b62025d143200869d7 (patch) (side-by-side diff) | |
tree | ad30bac3657fde6e664e7784eb34873989e94699 /core | |
parent | 9b87f7a2f2de6b5c1bad4f35f76fc7a0fd1ad021 (diff) | |
download | opie-ac707e366de561cabc8074b62025d143200869d7.zip opie-ac707e366de561cabc8074b62025d143200869d7.tar.gz opie-ac707e366de561cabc8074b62025d143200869d7.tar.bz2 |
OBEX time
-rw-r--r-- | core/applets/obex/obex.cc | 32 | ||||
-rw-r--r-- | core/applets/obex/obex.h | 10 | ||||
-rw-r--r-- | core/applets/obex/obex.pro | 8 | ||||
-rw-r--r-- | core/applets/obex/obeximpl.cc | 25 | ||||
-rw-r--r-- | core/applets/obex/obeximpl.h | 5 |
5 files changed, 44 insertions, 36 deletions
diff --git a/core/applets/obex/obex.cc b/core/applets/obex/obex.cc index f2ceff8..582ebbc 100644 --- a/core/applets/obex/obex.cc +++ b/core/applets/obex/obex.cc @@ -1,6 +1,6 @@ -#include "kprocess.h" +#include <opie/oprocess.h> #include "obex.h" using namespace OpieObex; @@ -17,16 +17,16 @@ Obex::~Obex() { delete m_send; } void Obex::receive() { - m_rec = new KProcess(); + m_rec = new OProcess(); *m_rec << "irobex_palm3"; // connect to the necessary slots - connect(m_rec, SIGNAL(processExited(KProcess*) ), - this, SLOT(slotExited(KProcess*) ) ); + connect(m_rec, SIGNAL(processExited(OProcess*) ), + this, SLOT(slotExited(OProcess*) ) ); - connect(m_rec, SIGNAL(receivedStdout(KProcess*, char*, int ) ), - this, SLOT(slotStdOut(KProcess*, char*, int) ) ); + connect(m_rec, SIGNAL(receivedStdout(OProcess*, char*, int ) ), + this, SLOT(slotStdOut(OProcess*, char*, int) ) ); - if(!m_rec->start(KProcess::NotifyOnExit, KProcess::AllOutput) ) { + if(!m_rec->start(OProcess::NotifyOnExit, OProcess::AllOutput) ) { qWarning("could not start :("); emit done( false ); } @@ -42,18 +42,18 @@ void Obex::sendNow(){ if ( m_count >= 15 ) { // could not send emit error(-1 ); } - // KProcess inititialisation - m_send = new KProcess(); + // OProcess inititialisation + m_send = new OProcess(); *m_send << "irobex_palm3"; *m_send << m_file; // connect to slots Exited and and StdOut - connect(m_send, SIGNAL(processExited(KProcess*) ), - this, SLOT(slotExited(KProcess*)) ); - connect(m_send, SIGNAL(receivedStdout(KProcess*, char*, int )), - this, SLOT(slotStdOut(KProcess*, char*, int) ) ); + connect(m_send, SIGNAL(processExited(OProcess*) ), + this, SLOT(slotExited(OProcess*)) ); + connect(m_send, SIGNAL(receivedStdout(OProcess*, char*, int )), + this, SLOT(slotStdOut(OProcess*, char*, int) ) ); // now start it - if (!m_send->start(/*KProcess::NotifyOnExit, KProcess::AllOutput*/ ) ) { + if (!m_send->start(/*OProcess::NotifyOnExit, OProcess::AllOutput*/ ) ) { m_count = 15; emit error(-1 ); } @@ -62,14 +62,14 @@ void Obex::sendNow(){ emit currentTry( m_count ); } -void Obex::slotExited(KProcess* proc ){ +void Obex::slotExited(OProcess* proc ){ if (proc == m_rec ) { // recieve process recieved(); }else if ( proc == m_send ) { sendEnd(); } } -void Obex::slotStdOut(KProcess* proc, char* buf, int len){ +void Obex::slotStdOut(OProcess* proc, char* buf, int len){ if ( proc == m_rec ) { // only recieve QCString cstring( buf, len ); m_outp.append( cstring.data() ); diff --git a/core/applets/obex/obex.h b/core/applets/obex/obex.h index 17b8141..4e78015 100644 --- a/core/applets/obex/obex.h +++ b/core/applets/obex/obex.h @@ -5,7 +5,7 @@ #include <qobject.h> -class KProcess; +class OProcess; class QCopChannel; namespace OpieObex { class Obex : public QObject { @@ -53,8 +53,8 @@ namespace OpieObex { uint m_count; QString m_file; QString m_outp; - KProcess *m_send; - KProcess *m_rec; + OProcess *m_send; + OProcess *m_rec; private slots: @@ -65,8 +65,8 @@ namespace OpieObex { //void send(const QString&); // the process exited - void slotExited(KProcess* proc) ; - void slotStdOut(KProcess*, char*, int); + void slotExited(OProcess* proc) ; + void slotStdOut(OProcess*, char*, int); private: void sendNow(); diff --git a/core/applets/obex/obex.pro b/core/applets/obex/obex.pro index ce07ac9..72ad78f 100644 --- a/core/applets/obex/obex.pro +++ b/core/applets/obex/obex.pro @@ -1,11 +1,11 @@ TEMPLATE = lib CONFIG += qt warn_on release -HEADERS = kprocess.h kprocctrl.h obex.h -SOURCES = kprocess.cpp kprocctrl.cpp obex.cc +HEADERS = obex.h obeximpl.h +SOURCES = obex.cc obeximpl.cc TARGET = obex -DESTDIR = ../../plugins/applets +DESTDIR = ../../plugins/obex INCLUDEPATH += $(OPIEDIR)/include DEPENDPATH += ../$(OPIEDIR)/include -LIBS += -lqpe +LIBS += -lqpe -lopie VERSION = 0.0.1 diff --git a/core/applets/obex/obeximpl.cc b/core/applets/obex/obeximpl.cc index a3004ab..fa2a30a 100644 --- a/core/applets/obex/obeximpl.cc +++ b/core/applets/obex/obeximpl.cc @@ -1,16 +1,21 @@ +#include <qdatastream.h> +#include <qpe/qcom.h> #include "obex.h" #include "obeximpl.h" + + using namespace OpieObex; ObexImpl::ObexImpl( ) - : QObject { + : QObject() { // register to a channel + qWarning( "c'tor" ); m_obex = new Obex(this, "obex"); m_chan = new QCopChannel("QPE/Obex" ); - cconnect(m_chan, SIGNAL(received(const QCString&, const QByteArray& ) ), + connect(m_chan, SIGNAL(received(const QCString&, const QByteArray& ) ), this, SLOT(slotMessage(const QCString&, const QByteArray&) ) ); } ObexImpl::~ObexImpl() { @@ -19,32 +24,34 @@ ObexImpl::~ObexImpl() { } QRESULT ObexImpl::queryInterface( const QUuid &uuid, QUnknownInterface **iface ) { *iface = 0; - if( uuid == IID_QUknown ) + if( uuid == IID_QUnknown ) *iface = this; else if( uuid == IID_ObexInterface ) *iface = this; + qWarning("query" ); if(*iface ) (*iface)->addRef(); return QS_OK; } void ObexImpl::slotMessage( const QCString& msg, const QByteArray&data ) { - QDataStrean stream( data, IO_ReadOnly ); + QDataStream stream( data, IO_ReadOnly ); + qWarning("Message %s", msg.data() ); if(msg == "send(QString,QString,QString)" ) { QString desc; stream >> desc; QString filename; stream >> filename; m_obex->send(filename ); - QCopEnvelope e ("QPE/Obex", "done(QString)" ): - e << filename; - }else if( ) { - + QCopEnvelope e ("QPE/Obex", "done(QString)" ); + e << filename; + }else if(msg == "receive(bool)" ) { + ; } } Q_EXPORT_INTERFACE() { - Q_CREATE_INSTANCE( IrdaAppletImpl ) + Q_CREATE_INSTANCE( ObexImpl ) } diff --git a/core/applets/obex/obeximpl.h b/core/applets/obex/obeximpl.h index 996627b..d5159e1 100644 --- a/core/applets/obex/obeximpl.h +++ b/core/applets/obex/obeximpl.h @@ -2,16 +2,17 @@ #ifndef OpieObexImpl_H #define OpieObexImpl_H +#include <qobject.h> #include "../obexinterface.h" #include <qpe/qcopenvelope_qws.h> namespace OpieObex { class Obex; - class ObexImpl : public ObexInterface, public QObject { + class ObexImpl : public QObject, public ObexInterface { Q_OBJECT public: ObexImpl(); - virtual ObexImpl(); + virtual ~ObexImpl(); QRESULT queryInterface( const QUuid&, QUnknownInterface** ); Q_REFCOUNT // for reference counting (macro ) private: |