/* * * Copyright 2015 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_RESOLVER_H #define GRPC_CORE_EXT_FILTERS_CLIENT_CHANNEL_RESOLVER_H #include #include #include "src/core/ext/filters/client_channel/server_address.h" #include "src/core/ext/filters/client_channel/service_config.h" #include "src/core/lib/gprpp/abstract.h" #include "src/core/lib/gprpp/orphanable.h" #include "src/core/lib/gprpp/ref_counted_ptr.h" #include "src/core/lib/iomgr/combiner.h" #include "src/core/lib/iomgr/iomgr.h" extern grpc_core::DebugOnlyTraceFlag grpc_trace_resolver_refcount; namespace grpc_core { /// Interface for name resolution. /// /// This interface is designed to support both push-based and pull-based /// mechanisms. A push-based mechanism is one where the resolver will /// subscribe to updates for a given name, and the name service will /// proactively send new data to the resolver whenever the data associated /// with the name changes. A pull-based mechanism is one where the resolver /// needs to query the name service again to get updated information (e.g., /// DNS). /// /// Note: All methods with a "Locked" suffix must be called from the /// combiner passed to the constructor. class Resolver : public InternallyRefCounted { public: /// Results returned by the resolver. struct Result { ServerAddressList addresses; RefCountedPtr service_config; grpc_error* service_config_error = GRPC_ERROR_NONE; const grpc_channel_args* args = nullptr; // TODO(roth): Remove everything below once grpc_error and // grpc_channel_args are convert to copyable and movable C++ objects. Result() = default; ~Result(); Result(const Result& other); Result(Result&& other); Result& operator=(const Result& other); Result& operator=(Result&& other); }; /// A proxy object used by the resolver to return results to the /// client channel. class ResultHandler { public: virtual ~ResultHandler() {} /// Returns a result to the channel. /// Takes ownership of \a result.args. virtual void ReturnResult(Result result) GRPC_ABSTRACT; // NOLINT /// Returns a transient error to the channel. /// If the resolver does not set the GRPC_ERROR_INT_GRPC_STATUS /// attribute on the error, calls will be failed with status UNKNOWN. virtual void ReturnError(grpc_error* error) GRPC_ABSTRACT; // TODO(yashkt): As part of the service config error handling // changes, add a method to parse the service config JSON string. GRPC_ABSTRACT_BASE_CLASS }; // Not copyable nor movable. Resolver(const Resolver&) = delete; Resolver& operator=(const Resolver&) = delete; /// Starts resolving. virtual void StartLocked() GRPC_ABSTRACT; /// Asks the resolver to obtain an updated resolver result, if /// applicable. /// /// This is useful for pull-based implementations to decide when to /// re-resolve. However, the implementation is not required to /// re-resolve immediately upon receiving this call; it may instead /// elect to delay based on some configured minimum time between /// queries, to avoid hammering the name service with queries. /// /// For push-based implementations, this may be a no-op. /// /// Note: Implementations must not invoke any method on the /// ResultHandler from within this call. virtual void RequestReresolutionLocked() {} /// Resets the re-resolution backoff, if any. /// This needs to be implemented only by pull-based implementations; /// for push-based implementations, it will be a no-op. /// TODO(roth): Pull the backoff code out of resolver and into /// client_channel, so that it can be shared across resolver /// implementations. At that point, this method can go away. virtual void ResetBackoffLocked() {} // Note: This must be invoked while holding the combiner. void Orphan() override { ShutdownLocked(); Unref(); } GRPC_ABSTRACT_BASE_CLASS protected: GRPC_ALLOW_CLASS_TO_USE_NON_PUBLIC_DELETE /// Does NOT take ownership of the reference to \a combiner. // TODO(roth): Once we have a C++-like interface for combiners, this // API should change to take a RefCountedPtr<>, so that we always take // ownership of a new ref. explicit Resolver(grpc_combiner* combiner, UniquePtr result_handler); virtual ~Resolver(); /// Shuts down the resolver. virtual void ShutdownLocked() GRPC_ABSTRACT; grpc_combiner* combiner() const { return combiner_; } ResultHandler* result_handler() const { return result_handler_.get(); } private: UniquePtr result_handler_; grpc_combiner* combiner_; }; } // namespace grpc_core #endif /* GRPC_CORE_EXT_FILTERS_CLIENT_CHANNEL_RESOLVER_H */