// Copyright 2019 The Chromium 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 DISCOVERY_DNSSD_IMPL_QUERIER_IMPL_H_ #define DISCOVERY_DNSSD_IMPL_QUERIER_IMPL_H_ #include #include #include #include #include #include "absl/hash/hash.h" #include "absl/strings/string_view.h" #include "discovery/dnssd/impl/constants.h" #include "discovery/dnssd/impl/conversion_layer.h" #include "discovery/dnssd/impl/dns_data_graph.h" #include "discovery/dnssd/impl/instance_key.h" #include "discovery/dnssd/impl/service_key.h" #include "discovery/dnssd/public/dns_sd_instance_endpoint.h" #include "discovery/dnssd/public/dns_sd_querier.h" #include "discovery/mdns/mdns_record_changed_callback.h" #include "discovery/mdns/mdns_records.h" #include "discovery/mdns/public/mdns_service.h" namespace openscreen { namespace discovery { class NetworkInterfaceConfig; class ReportingClient; class QuerierImpl : public DnsSdQuerier, public MdnsRecordChangedCallback { public: // |querier|, |task_runner|, and |network_config| must outlive the QuerierImpl // instance constructed. QuerierImpl(MdnsService* querier, TaskRunner* task_runner, ReportingClient* reporting_client, const NetworkInterfaceConfig* network_config); ~QuerierImpl() override; bool IsQueryRunning(const std::string& service) const; // DnsSdQuerier overrides. void StartQuery(const std::string& service, Callback* callback) override; void StopQuery(const std::string& service, Callback* callback) override; void ReinitializeQueries(const std::string& service) override; // MdnsRecordChangedCallback overrides. std::vector OnRecordChanged( const MdnsRecord& record, RecordChangedEvent event) override; private: friend class QuerierImplTesting; // Applies the provided record change to the underlying |graph_| instance. ErrorOr> ApplyRecordChanges( const MdnsRecord& record, RecordChangedEvent event); // Informs all relevant callbacks of the provided changes. void InvokeChangeCallbacks(std::vector created, std::vector updated, std::vector deleted); // Graph of underlying mDNS Record and their associations with each-other. std::unique_ptr graph_; // Map from the (service, domain) pairs currently being queried for to the // callbacks to call when new InstanceEndpoints are available. std::map> callback_map_; MdnsService* const mdns_querier_; TaskRunner* const task_runner_; ReportingClient* reporting_client_; }; } // namespace discovery } // namespace openscreen #endif // DISCOVERY_DNSSD_IMPL_QUERIER_IMPL_H_