/***************************************************************** Copyright (c) 1999,2000 Preston Brown Copyright (c) 1999 Matthias Ettrich Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ******************************************************************/ #include #include TQMap *kde_dcopObjMap = 0; static inline TQMap *objMap() { if (!kde_dcopObjMap) kde_dcopObjMap = new TQMap; return kde_dcopObjMap; } class DCOPObject::DCOPObjectPrivate { public: DCOPObjectPrivate() { m_signalConnections = 0; m_dcopClient = 0; } unsigned int m_signalConnections; DCOPClient *m_dcopClient; }; DCOPObject::DCOPObject() { d = new DCOPObjectPrivate; ident.sprintf("%p", (void *)this ); objMap()->insert(ident, this ); } DCOPObject::DCOPObject(TQObject *obj) { d = new DCOPObjectPrivate; TQObject *currentObj = obj; while (currentObj != 0L) { ident.prepend( currentObj->name() ); ident.prepend("/"); currentObj = TQT_TQOBJECT(currentObj->parent()); } if ( ident[0] == '/' ) ident = ident.mid(1); objMap()->insert(ident, this); } DCOPObject::DCOPObject(const TQCString &_objId) : ident(_objId) { d = new DCOPObjectPrivate; if ( ident.isEmpty() ) ident.sprintf("%p", (void *)this ); objMap()->insert(ident, this); } DCOPObject::~DCOPObject() { DCOPClient *client = DCOPClient::mainClient(); if ( d->m_signalConnections > 0 && client ) client->disconnectDCOPSignal( 0, 0, 0, objId(), 0 ); objMap()->remove(ident); delete d; } DCOPClient *DCOPObject::callingDcopClient() { return d->m_dcopClient; } void DCOPObject::setCallingDcopClient(DCOPClient *client) { d->m_dcopClient = client; } bool DCOPObject::setObjId(const TQCString &objId) { if (objMap()->find(objId)!=objMap()->end()) return false; DCOPClient *client = DCOPClient::mainClient(); if ( d->m_signalConnections > 0 && client ) client->disconnectDCOPSignal( 0, 0, 0, ident, 0 ); objMap()->remove(ident); ident=objId; objMap()->insert(ident,this); return true; } TQCString DCOPObject::objId() const { return ident; } bool DCOPObject::hasObject(const TQCString &_objId) { if (objMap()->contains(_objId)) return true; else return false; } DCOPObject *DCOPObject::find(const TQCString &_objId) { TQMap::ConstIterator it; it = objMap()->find(_objId); if (it != objMap()->end()) return *it; else return 0L; } TQPtrList DCOPObject::match(const TQCString &partialId) { TQPtrList mlist; TQMap::ConstIterator it(objMap()->begin()); for (; it != objMap()->end(); ++it) if (it.key().left(partialId.length()) == partialId) // found it? mlist.append(it.data()); return mlist; } TQCString DCOPObject::objectName( TQObject* obj ) { if ( obj == 0 ) return TQCString(); TQCString identity; TQObject *currentObj = obj; while (currentObj != 0 ) { identity.prepend( currentObj->name() ); identity.prepend("/"); currentObj = TQT_TQOBJECT(currentObj->parent()); } if ( identity[0] == '/' ) identity = identity.mid(1); return identity; } bool DCOPObject::process(const TQCString &fun, const TQByteArray &data, TQCString& replyType, TQByteArray &replyData) { if ( fun == "interfaces()" ) { replyType = "QCStringList"; TQDataStream reply( replyData, IO_WriteOnly ); reply << interfaces(); return true; } else if ( fun == "functions()" ) { replyType = "QCStringList"; TQDataStream reply( replyData, IO_WriteOnly ); reply << functions(); return true; } return processDynamic( fun, data, replyType, replyData ); } bool DCOPObject::processDynamic( const TQCString&, const TQByteArray&, TQCString&, TQByteArray& ) { return false; } QCStringList DCOPObject::interfacesDynamic() { QCStringList result; return result; } QCStringList DCOPObject::functionsDynamic() { QCStringList result; return result; } QCStringList DCOPObject::interfaces() { QCStringList result = interfacesDynamic(); result << "DCOPObject"; return result; } QCStringList DCOPObject::functions() { QCStringList result = functionsDynamic(); result.prepend("QCStringList functions()"); result.prepend("QCStringList interfaces()"); return result; } void DCOPObject::emitDCOPSignal( const TQCString &signal, const TQByteArray &data) { DCOPClient *client = DCOPClient::mainClient(); if ( client ) client->emitDCOPSignal( objId(), signal, data ); } bool DCOPObject::connectDCOPSignal( const TQCString &sender, const TQCString &senderObj, const TQCString &signal, const TQCString &slot, bool Volatile) { DCOPClient *client = DCOPClient::mainClient(); if ( !client ) return false; d->m_signalConnections++; return client->connectDCOPSignal( sender, senderObj, signal, objId(), slot, Volatile ); } bool DCOPObject::disconnectDCOPSignal( const TQCString &sender, const TQCString &senderObj, const TQCString &signal, const TQCString &slot) { DCOPClient *client = DCOPClient::mainClient(); if ( !client ) return false; d->m_signalConnections--; return client->disconnectDCOPSignal( sender, senderObj, signal, objId(), slot ); } TQPtrList* DCOPObjectProxy::proxies = 0; DCOPObjectProxy::DCOPObjectProxy() { if ( !proxies ) proxies = new TQPtrList; proxies->append( this ); } DCOPObjectProxy::DCOPObjectProxy( DCOPClient*) { if ( !proxies ) proxies = new TQPtrList; proxies->append( this ); } DCOPObjectProxy:: ~DCOPObjectProxy() { if ( proxies ) proxies->removeRef( this ); } bool DCOPObjectProxy::process( const TQCString& /*obj*/, const TQCString& /*fun*/, const TQByteArray& /*data*/, TQCString& /*replyType*/, TQByteArray &/*replyData*/ ) { return false; } void DCOPObject::virtual_hook( int, void* ) { /*BASE::virtual_hook( id, data );*/ } void DCOPObjectProxy::virtual_hook( int, void* ) { /*BASE::virtual_hook( id, data );*/ }