1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
// 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_CONVERSION_LAYER_H_
#define DISCOVERY_DNSSD_IMPL_CONVERSION_LAYER_H_
#include <string>
#include <vector>
#include "absl/strings/string_view.h"
#include "discovery/dnssd/impl/constants.h"
#include "discovery/dnssd/public/dns_sd_instance_endpoint.h"
#include "discovery/dnssd/public/dns_sd_txt_record.h"
#include "discovery/mdns/mdns_records.h"
#include "platform/base/error.h"
namespace openscreen {
namespace discovery {
class InstanceKey;
class ServiceKey;
// *** Conversions from DNS entities to DNS-SD Entities ***
// Attempts to create a new TXT record from the provided set of strings,
// returning a TxtRecord on success or an error if the provided strings are
// not valid.
ErrorOr<DnsSdTxtRecord> CreateFromDnsTxt(const TxtRecordRdata& txt);
bool IsPtrRecord(const MdnsRecord& record);
// Checks that the instance, service, and domain ids in this instance are valid.
bool HasValidDnsRecordAddress(const MdnsRecord& record);
bool HasValidDnsRecordAddress(const DomainName& domain);
//*** Conversions to DNS entities from DNS-SD Entities ***
// Returns the Domain Name associated with this InstanceKey.
DomainName GetDomainName(const InstanceKey& key);
// Returns the domain name associated with this MdnsRecord. In the case of a PTR
// record, this is the target domain, and it is the named domain in all other
// cases.
DomainName GetDomainName(const MdnsRecord& record);
// Returns the query required to get all instance information about the service
// instances described by the provided InstanceKey.
DnsQueryInfo GetInstanceQueryInfo(const InstanceKey& key);
// Returns the query required to get all service information that matches the
// provided key.
DnsQueryInfo GetPtrQueryInfo(const ServiceKey& key);
// Returns all MdnsRecord entities generated from this object.
std::vector<MdnsRecord> GetDnsRecords(const DnsSdInstanceEndpoint& endpoint);
std::vector<MdnsRecord> GetDnsRecords(const DnsSdInstance& instance);
} // namespace discovery
} // namespace openscreen
#endif // DISCOVERY_DNSSD_IMPL_CONVERSION_LAYER_H_
|