/* * Copyright (c) 2010-2016 Isode Limited. * All rights reserved. * See the COPYING file for more information. */ #pragma once #include #include #include #include #include #include #include namespace Swift { class BonjourQuerier : public DNSSDQuerier, public std::enable_shared_from_this { public: BonjourQuerier(EventLoop* eventLoop); ~BonjourQuerier(); std::shared_ptr createBrowseQuery(); std::shared_ptr createRegisterQuery( const std::string& name, int port, const ByteArray& info); std::shared_ptr createResolveServiceQuery( const DNSSDServiceID&); std::shared_ptr createResolveHostnameQuery( const std::string& hostname, int interfaceIndex); void start(); void stop(); private: friend class BonjourQuery; void addRunningQuery(std::shared_ptr); void removeRunningQuery(std::shared_ptr); void interruptSelect(); void run(); private: EventLoop* eventLoop; bool stopRequested; std::thread* thread; std::mutex runningQueriesMutex; std::list< std::shared_ptr > runningQueries; int interruptSelectReadSocket; int interruptSelectWriteSocket; std::condition_variable runningQueriesAvailableEvent; }; }