| // Copyright 2014 The Chromium OS Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #ifndef BUFFET_PEERD_CLIENT_H_ |
| #define BUFFET_PEERD_CLIENT_H_ |
| |
| #include <map> |
| #include <memory> |
| #include <string> |
| |
| #include <base/callback.h> |
| #include <base/memory/ref_counted.h> |
| #include <weave/mdns.h> |
| |
| #include "peerd/dbus-proxies.h" |
| |
| namespace dbus { |
| class Bus; |
| } // namespace dbus |
| |
| namespace buffet { |
| |
| // Publishes privet service on mDns using peerd. |
| class PeerdClient : public weave::Mdns { |
| public: |
| explicit PeerdClient(const scoped_refptr<dbus::Bus>& bus); |
| ~PeerdClient() override; |
| |
| // Mdns implementation. |
| void PublishService(const std::string& service_name, |
| uint16_t port, |
| const std::map<std::string, std::string>& txt) override; |
| void StopPublishing(const std::string& service_name) override; |
| std::string GetId() const override; |
| |
| private: |
| void OnPeerdOnline(org::chromium::peerd::ManagerProxy* manager_proxy); |
| void OnPeerdOffline(const dbus::ObjectPath& object_path); |
| void OnNewPeer(org::chromium::peerd::PeerProxy* peer_proxy); |
| void OnPeerPropertyChanged(org::chromium::peerd::PeerProxy* peer_proxy, |
| const std::string& property_name); |
| |
| // Updates published information. Removes service if HTTP is not alive. |
| void Update(); |
| |
| void ExposeService(); |
| void RemoveService(); |
| |
| void UpdateImpl(); |
| |
| org::chromium::peerd::ObjectManagerProxy peerd_object_manager_proxy_; |
| // |peerd_manager_proxy_| is owned by |peerd_object_manager_proxy_|. |
| org::chromium::peerd::ManagerProxy* peerd_manager_proxy_{nullptr}; |
| |
| // Cached value of the device ID that we got from peerd. |
| std::string device_id_; |
| |
| std::string service_name_; |
| uint16_t port_{0}; |
| std::map<std::string, std::string> txt_; |
| |
| base::WeakPtrFactory<PeerdClient> restart_weak_ptr_factory_{this}; |
| base::WeakPtrFactory<PeerdClient> weak_ptr_factory_{this}; |
| |
| DISALLOW_COPY_AND_ASSIGN(PeerdClient); |
| }; |
| |
| } // namespace buffet |
| |
| #endif // BUFFET_PEERD_CLIENT_H_ |