diff options
author | Remko Tronçon <git@el-tramo.be> | 2009-07-24 19:28:19 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2009-07-24 19:33:35 (GMT) |
commit | ef4284acb29aca0bdf792ab40356c7955902e307 (patch) | |
tree | 0ccd86089c626f4d7aab02b0d64a6131e0b45a7d /Swiften/LinkLocal/BonjourRegisterQuery.h | |
parent | 8cad7cff0462d8a48a5bc9762ce6d6b62e74d0e5 (diff) | |
download | swift-ef4284acb29aca0bdf792ab40356c7955902e307.zip swift-ef4284acb29aca0bdf792ab40356c7955902e307.tar.bz2 |
LinkLocal: Publish->Register.
Diffstat (limited to 'Swiften/LinkLocal/BonjourRegisterQuery.h')
-rw-r--r-- | Swiften/LinkLocal/BonjourRegisterQuery.h | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/Swiften/LinkLocal/BonjourRegisterQuery.h b/Swiften/LinkLocal/BonjourRegisterQuery.h new file mode 100644 index 0000000..c34ba02 --- /dev/null +++ b/Swiften/LinkLocal/BonjourRegisterQuery.h @@ -0,0 +1,50 @@ +#pragma once + +#include "Swiften/LinkLocal/BonjourQuery.h" +#include "Swiften/LinkLocal/DNSSDRegisterQuery.h" +#include "Swiften/LinkLocal/LinkLocalServiceInfo.h" +#include "Swiften/Base/ByteArray.h" +#include "Swiften/EventLoop/MainEventLoop.h" + +namespace Swift { + class BonjourQuerier; + + class BonjourRegisterQuery : public DNSSDRegisterQuery, public BonjourQuery { + public: + BonjourRegisterQuery(const String& name, int port, const LinkLocalServiceInfo& info, boost::shared_ptr<BonjourQuerier> querier) : BonjourQuery(querier) { + ByteArray txtRecord = info.toTXTRecord(); + DNSServiceErrorType result = DNSServiceRegister( + &sdRef, 0, 0, name.getUTF8Data(), "_presence._tcp", NULL, NULL, port, + txtRecord.getSize(), txtRecord.getData(), + &BonjourRegisterQuery::handleServiceRegisteredStatic, this); + if (result != kDNSServiceErr_NoError) { + // TODO + std::cerr << "Error creating service registration" << std::endl; + } + } + + void registerService() { + run(); + } + + void updateServiceInfo(const LinkLocalServiceInfo& info) { + boost::lock_guard<boost::mutex> lock(sdRefMutex); + ByteArray txtRecord = info.toTXTRecord(); + DNSServiceUpdateRecord(sdRef, NULL, NULL, txtRecord.getSize(), txtRecord.getData(), 0); + } + + private: + static void handleServiceRegisteredStatic(DNSServiceRef, DNSServiceFlags, DNSServiceErrorType errorCode, const char *name, const char *regtype, const char *domain, void *context) { + static_cast<BonjourRegisterQuery*>(context)->handleServiceRegistered(errorCode, name, regtype, domain); + } + + void handleServiceRegistered(DNSServiceErrorType errorCode, const char *name, const char *regtype, const char *domain) { + if (errorCode != kDNSServiceErr_NoError) { + MainEventLoop::postEvent(boost::bind(boost::ref(onRegisterFinished), boost::optional<LinkLocalServiceID>()), shared_from_this()); + } + else { + MainEventLoop::postEvent(boost::bind(boost::ref(onRegisterFinished), boost::optional<LinkLocalServiceID>(LinkLocalServiceID(name, regtype, domain, 0))), shared_from_this()); + } + } + }; +} |