Sha256: 8ece508eca3472ec7df0b54627a15900330da7420694dc5cb4dcd3230bd8a86e

Contents?: true

Size: 1.92 KB

Versions: 19

Compression:

Stored size: 1.92 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/filters/client_channel/server_address.h"
#include "src/core/ext/xds/xds_client_stats.h"
#include "src/core/lib/gprpp/ref_counted_ptr.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

19 entries across 19 versions & 2 rubygems

Version Path
gitlab-grpc-1.42.1.gitlab src/core/ext/filters/client_channel/lb_policy/xds/xds.h
grpc-1.43.1 src/core/ext/filters/client_channel/lb_policy/xds/xds.h
grpc-1.42.0 src/core/ext/filters/client_channel/lb_policy/xds/xds.h
grpc-1.41.1 src/core/ext/filters/client_channel/lb_policy/xds/xds.h
grpc-1.42.0.pre1 src/core/ext/filters/client_channel/lb_policy/xds/xds.h
grpc-1.41.0 src/core/ext/filters/client_channel/lb_policy/xds/xds.h
grpc-1.41.0.pre2 src/core/ext/filters/client_channel/lb_policy/xds/xds.h
grpc-1.40.0 src/core/ext/filters/client_channel/lb_policy/xds/xds.h
grpc-1.39.0 src/core/ext/filters/client_channel/lb_policy/xds/xds.h
grpc-1.40.0.pre1 src/core/ext/filters/client_channel/lb_policy/xds/xds.h
grpc-1.39.0.pre1 src/core/ext/filters/client_channel/lb_policy/xds/xds.h
grpc-1.38.0 src/core/ext/filters/client_channel/lb_policy/xds/xds.h
grpc-1.38.0.pre1 src/core/ext/filters/client_channel/lb_policy/xds/xds.h
grpc-1.37.1 src/core/ext/filters/client_channel/lb_policy/xds/xds.h
grpc-1.37.0 src/core/ext/filters/client_channel/lb_policy/xds/xds.h
grpc-1.37.0.pre1 src/core/ext/filters/client_channel/lb_policy/xds/xds.h
grpc-1.36.0 src/core/ext/filters/client_channel/lb_policy/xds/xds.h
grpc-1.35.0 src/core/ext/filters/client_channel/lb_policy/xds/xds.h
grpc-1.35.0.pre1 src/core/ext/filters/client_channel/lb_policy/xds/xds.h