Sha256: 45c7ad7c7a6203b5470631bda5ea485f11ec818cff06766880d92b0333c062b6

Contents?: true

Size: 1.91 KB

Versions: 6

Compression:

Stored size: 1.91 KB

Contents

//
// Copyright 2018 gRPC authors.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//     http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//

#ifndef GRPC_CORE_EXT_FILTERS_CLIENT_CHANNEL_LB_POLICY_XDS_XDS_H
#define GRPC_CORE_EXT_FILTERS_CLIENT_CHANNEL_LB_POLICY_XDS_XDS_H

#include <grpc/support/port_platform.h>

#include "src/core/ext/xds/xds_client_stats.h"
#include "src/core/lib/gprpp/ref_counted_ptr.h"
#include "src/core/lib/resolver/server_address.h"

namespace grpc_core {

// Defined in the EDS policy.
extern const char* kXdsLocalityNameAttributeKey;

class XdsLocalityAttribute : public ServerAddress::AttributeInterface {
 public:
  explicit XdsLocalityAttribute(RefCountedPtr<XdsLocalityName> locality_name)
      : locality_name_(std::move(locality_name)) {}

  RefCountedPtr<XdsLocalityName> locality_name() const {
    return locality_name_;
  }

  std::unique_ptr<AttributeInterface> Copy() const override {
    return absl::make_unique<XdsLocalityAttribute>(locality_name_->Ref());
  }

  int Cmp(const AttributeInterface* other) const override {
    const auto* other_locality_attr =
        static_cast<const XdsLocalityAttribute*>(other);
    return locality_name_->Compare(*other_locality_attr->locality_name_);
  }

  std::string ToString() const override {
    return locality_name_->AsHumanReadableString();
  }

 private:
  RefCountedPtr<XdsLocalityName> locality_name_;
};

}  // namespace grpc_core

#endif /* GRPC_CORE_EXT_FILTERS_CLIENT_CHANNEL_LB_POLICY_XDS_XDS_H */

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
grpc-1.46.3-x86_64-linux src/core/ext/filters/client_channel/lb_policy/xds/xds.h
grpc-1.46.3 src/core/ext/filters/client_channel/lb_policy/xds/xds.h
grpc-1.46.2 src/core/ext/filters/client_channel/lb_policy/xds/xds.h
grpc-1.46.2-x86_64-linux src/core/ext/filters/client_channel/lb_policy/xds/xds.h
grpc-1.45.0 src/core/ext/filters/client_channel/lb_policy/xds/xds.h
grpc-1.44.0.pre2 src/core/ext/filters/client_channel/lb_policy/xds/xds.h