blob: 6bc896e90af277b19c1f24f697de66de6dc9daac [file] [log] [blame]
Alex Vakulenkof0f55342015-08-18 15:51:40 -07001/*
2 * Copyright 2015 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#ifndef BUFFET_AVAHI_MDNS_CLIENT_H_
18#define BUFFET_AVAHI_MDNS_CLIENT_H_
19
20#include <map>
21#include <string>
22
Casey Dahlin494b7242015-12-14 11:42:47 -080023#include <avahi-client/client.h>
24#include <avahi-client/publish.h>
25#include <avahi-common/thread-watch.h>
Alex Vakulenkof0f55342015-08-18 15:51:40 -070026
27#include "buffet/mdns_client.h"
28
29namespace buffet {
30
31// Publishes privet service on mDns using Avahi.
32class AvahiMdnsClient : public MdnsClient {
33 public:
Casey Dahlin494b7242015-12-14 11:42:47 -080034 explicit AvahiMdnsClient();
Alex Vakulenkof0f55342015-08-18 15:51:40 -070035 ~AvahiMdnsClient() override;
36
Alex Vakulenkoe32375b2015-09-28 08:55:40 -070037 // weave::provider::DnsServiceDiscovery implementation.
Alex Vakulenko35d119a2015-09-10 16:16:27 -070038 void PublishService(const std::string& service_type, uint16_t port,
39 const std::vector<std::string>& txt) override;
Robert Gindacf92c662015-08-20 09:30:11 -070040 void StopPublishing(const std::string& service_type) override;
Alex Vakulenkof0f55342015-08-18 15:51:40 -070041
42 private:
Alex Vakulenko3dae2c92015-12-17 11:21:09 -080043 static void OnAvahiClientStateUpdate(AvahiClient* s,
44 AvahiClientState state,
45 void* userdata);
46 void RepublishService();
47
Casey Dahlin494b7242015-12-14 11:42:47 -080048 uint16_t prev_port_{0};
Alex Vakulenko3dae2c92015-12-17 11:21:09 -080049 std::string prev_service_type_;
Alex Vakulenko0022b752015-10-02 11:09:59 -070050 std::string service_name_;
Alex Vakulenko3dae2c92015-12-17 11:21:09 -080051 std::vector<std::string> txt_records_;
Casey Dahlin494b7242015-12-14 11:42:47 -080052 std::unique_ptr<AvahiThreadedPoll, decltype(&avahi_threaded_poll_free)>
53 thread_pool_{nullptr, &avahi_threaded_poll_free};
54 std::unique_ptr< ::AvahiClient, decltype(&avahi_client_free)> client_{
55 nullptr, &avahi_client_free};
56 std::unique_ptr<AvahiEntryGroup, decltype(&avahi_entry_group_free)> group_{
57 nullptr, &avahi_entry_group_free};
Robert Gindacf92c662015-08-20 09:30:11 -070058
Alex Vakulenkof0f55342015-08-18 15:51:40 -070059 DISALLOW_COPY_AND_ASSIGN(AvahiMdnsClient);
60};
61
62} // namespace buffet
63
64#endif // BUFFET_AVAHI_MDNS_CLIENT_H_