| // |
| // Copyright 2024 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_LIB_SURFACE_CHANNEL_H |
| #define GRPC_SRC_CORE_LIB_SURFACE_CHANNEL_H |
| |
| #include <map> |
| #include <string> |
| |
| #include "absl/base/thread_annotations.h" |
| #include "absl/status/statusor.h" |
| #include "absl/strings/string_view.h" |
| #include "absl/types/optional.h" |
| |
| #include <grpc/event_engine/event_engine.h> |
| #include <grpc/grpc.h> |
| #include <grpc/impl/compression_types.h> |
| #include <grpc/support/port_platform.h> |
| #include <grpc/support/time.h> |
| |
| #include "src/core/channelz/channelz.h" |
| #include "src/core/lib/channel/channel_args.h" |
| #include "src/core/lib/gprpp/cpp_impl_of.h" |
| #include "src/core/lib/gprpp/ref_counted.h" |
| #include "src/core/lib/gprpp/ref_counted_ptr.h" |
| #include "src/core/lib/gprpp/sync.h" |
| #include "src/core/lib/gprpp/time.h" |
| #include "src/core/lib/iomgr/iomgr_fwd.h" |
| #include "src/core/lib/resource_quota/arena.h" |
| #include "src/core/lib/resource_quota/resource_quota.h" |
| #include "src/core/lib/slice/slice.h" |
| #include "src/core/lib/surface/channel_stack_type.h" |
| #include "src/core/lib/transport/call_arena_allocator.h" |
| #include "src/core/lib/transport/call_destination.h" |
| #include "src/core/lib/transport/connectivity_state.h" |
| |
| // Forward declaration to avoid dependency loop. |
| struct grpc_channel_stack; |
| |
| namespace grpc_core { |
| |
| // Forward declaration to avoid dependency loop. |
| class Transport; |
| |
| class Channel : public UnstartedCallDestination, |
| public CppImplOf<Channel, grpc_channel> { |
| public: |
| struct RegisteredCall { |
| Slice path; |
| absl::optional<Slice> authority; |
| |
| explicit RegisteredCall(const char* method_arg, const char* host_arg); |
| RegisteredCall(const RegisteredCall& other); |
| RegisteredCall& operator=(const RegisteredCall&) = delete; |
| |
| ~RegisteredCall(); |
| }; |
| |
| virtual bool IsLame() const = 0; |
| |
| // TODO(roth): This should return a C++ type. |
| virtual grpc_call* CreateCall(grpc_call* parent_call, |
| uint32_t propagation_mask, |
| grpc_completion_queue* cq, |
| grpc_pollset_set* pollset_set_alternative, |
| Slice path, absl::optional<Slice> authority, |
| Timestamp deadline, bool registered_method) = 0; |
| |
| virtual grpc_event_engine::experimental::EventEngine* event_engine() |
| const = 0; |
| |
| virtual bool SupportsConnectivityWatcher() const = 0; |
| |
| virtual grpc_connectivity_state CheckConnectivityState( |
| bool try_to_connect) = 0; |
| |
| // For external watched via the C-core API. |
| virtual void WatchConnectivityState( |
| grpc_connectivity_state last_observed_state, Timestamp deadline, |
| grpc_completion_queue* cq, void* tag) = 0; |
| |
| // For internal watches. |
| virtual void AddConnectivityWatcher( |
| grpc_connectivity_state initial_state, |
| OrphanablePtr<AsyncConnectivityStateWatcherInterface> watcher) = 0; |
| virtual void RemoveConnectivityWatcher( |
| AsyncConnectivityStateWatcherInterface* watcher) = 0; |
| |
| virtual void GetInfo(const grpc_channel_info* channel_info) = 0; |
| |
| virtual void ResetConnectionBackoff() = 0; |
| |
| absl::string_view target() const { return target_; } |
| channelz::ChannelNode* channelz_node() const { return channelz_node_.get(); } |
| grpc_compression_options compression_options() const { |
| return compression_options_; |
| } |
| |
| RegisteredCall* RegisterCall(const char* method, const char* host); |
| |
| int TestOnlyRegisteredCalls() { |
| MutexLock lock(&mu_); |
| return registration_table_.size(); |
| } |
| |
| // For tests only. |
| // Pings the channel's peer. Load-balanced channels will select one |
| // subchannel to ping. If the channel is not connected, posts a |
| // failure to the CQ. |
| virtual void Ping(grpc_completion_queue* cq, void* tag) = 0; |
| |
| // TODO(roth): Remove these methods when LegacyChannel goes away. |
| virtual grpc_channel_stack* channel_stack() const { return nullptr; } |
| virtual bool is_client() const { return true; } |
| virtual bool is_promising() const { return true; } |
| |
| CallArenaAllocator* call_arena_allocator() const { |
| return call_arena_allocator_.get(); |
| } |
| |
| protected: |
| Channel(std::string target, const ChannelArgs& channel_args); |
| |
| private: |
| const std::string target_; |
| const RefCountedPtr<channelz::ChannelNode> channelz_node_; |
| const grpc_compression_options compression_options_; |
| |
| Mutex mu_; |
| // The map key needs to be owned strings rather than unowned char*'s to |
| // guarantee that it outlives calls on the core channel (which may outlast |
| // the C++ or other wrapped language Channel that registered these calls). |
| std::map<std::pair<std::string, std::string>, RegisteredCall> |
| registration_table_ ABSL_GUARDED_BY(mu_); |
| const RefCountedPtr<CallArenaAllocator> call_arena_allocator_; |
| }; |
| |
| } // namespace grpc_core |
| |
| /// The same as grpc_channel_destroy, but doesn't create an ExecCtx, and so |
| /// is safe to use from within core. |
| inline void grpc_channel_destroy_internal(grpc_channel* channel) { |
| grpc_core::Channel::FromC(channel)->Unref(); |
| } |
| |
| // Return the channel's compression options. |
| inline grpc_compression_options grpc_channel_compression_options( |
| const grpc_channel* channel) { |
| return grpc_core::Channel::FromC(channel)->compression_options(); |
| } |
| |
| inline grpc_core::channelz::ChannelNode* grpc_channel_get_channelz_node( |
| grpc_channel* channel) { |
| return grpc_core::Channel::FromC(channel)->channelz_node(); |
| } |
| |
| // Ping the channels peer (load balanced channels will select one sub-channel to |
| // ping); if the channel is not connected, posts a failed. |
| void grpc_channel_ping(grpc_channel* channel, grpc_completion_queue* cq, |
| void* tag, void* reserved); |
| |
| #endif // GRPC_SRC_CORE_LIB_SURFACE_CHANNEL_H |