// // Copyright 2022 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_SRC_CORE_EXT_XDS_XDS_CLUSTER_SPECIFIER_PLUGIN_H #define GRPC_SRC_CORE_EXT_XDS_XDS_CLUSTER_SPECIFIER_PLUGIN_H #include #include #include #include #include "absl/strings/string_view.h" #include "upb/mem/arena.h" #include "upb/reflection/def.h" #include "src/core/ext/xds/xds_common_types.h" #include "src/core/lib/gprpp/validation_errors.h" #include "src/core/lib/json/json.h" namespace grpc_core { class XdsClusterSpecifierPluginImpl { public: virtual ~XdsClusterSpecifierPluginImpl() = default; // Returns the config proto message name. virtual absl::string_view ConfigProtoName() const = 0; // Loads the proto message into the upb symtab. virtual void PopulateSymtab(upb_DefPool* symtab) const = 0; // Returns the LB policy config in JSON form. virtual Json GenerateLoadBalancingPolicyConfig( XdsExtension extension, upb_Arena* arena, upb_DefPool* symtab, ValidationErrors* errors) const = 0; }; class XdsRouteLookupClusterSpecifierPlugin final : public XdsClusterSpecifierPluginImpl { absl::string_view ConfigProtoName() const override; void PopulateSymtab(upb_DefPool* symtab) const override; Json GenerateLoadBalancingPolicyConfig( XdsExtension extension, upb_Arena* arena, upb_DefPool* symtab, ValidationErrors* errors) const override; }; class XdsClusterSpecifierPluginRegistry final { public: XdsClusterSpecifierPluginRegistry(); // Not copyable. XdsClusterSpecifierPluginRegistry(const XdsClusterSpecifierPluginRegistry&) = delete; XdsClusterSpecifierPluginRegistry& operator=( const XdsClusterSpecifierPluginRegistry&) = delete; // Movable. XdsClusterSpecifierPluginRegistry( XdsClusterSpecifierPluginRegistry&& other) noexcept : registry_(std::move(other.registry_)) {} XdsClusterSpecifierPluginRegistry& operator=( XdsClusterSpecifierPluginRegistry&& other) noexcept { registry_ = std::move(other.registry_); return *this; } void RegisterPlugin(std::unique_ptr plugin); void PopulateSymtab(upb_DefPool* symtab) const; const XdsClusterSpecifierPluginImpl* GetPluginForType( absl::string_view config_proto_type_name) const; private: std::map> registry_; }; } // namespace grpc_core #endif // GRPC_SRC_CORE_EXT_XDS_XDS_CLUSTER_SPECIFIER_PLUGIN_H