// // // Copyright 2016 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. // // #include "src/core/lib/channel/channel_stack_builder_impl.h" #include #include #include #include #include #include #include #include "absl/base/thread_annotations.h" #include "absl/container/flat_hash_map.h" #include "absl/status/status.h" #include "absl/strings/str_cat.h" #include #include #include #include "src/core/lib/channel/channel_fwd.h" #include "src/core/lib/channel/channel_stack.h" #include "src/core/lib/debug/trace.h" #include "src/core/lib/gprpp/no_destruct.h" #include "src/core/lib/gprpp/sync.h" #include "src/core/lib/iomgr/closure.h" #include "src/core/lib/iomgr/error.h" #include "src/core/lib/promise/activity.h" #include "src/core/lib/promise/arena_promise.h" #include "src/core/lib/promise/poll.h" #include "src/core/lib/surface/channel_stack_type.h" #include "src/core/lib/transport/error_utils.h" #include "src/core/lib/transport/metadata_batch.h" #include "src/core/lib/transport/transport.h" namespace grpc_core { absl::StatusOr> ChannelStackBuilderImpl::Build() { std::vector stack; for (const auto* filter : this->stack()) { stack.push_back(filter); } // calculate the size of the channel stack size_t channel_stack_size = grpc_channel_stack_size(stack.data(), stack.size()); // allocate memory auto* channel_stack = static_cast(gpr_zalloc(channel_stack_size)); // and initialize it grpc_error_handle error = grpc_channel_stack_init( 1, [](void* p, grpc_error_handle) { auto* stk = static_cast(p); grpc_channel_stack_destroy(stk); gpr_free(stk); }, channel_stack, stack.data(), stack.size(), channel_args(), name(), channel_stack); if (!error.ok()) { grpc_channel_stack_destroy(channel_stack); gpr_free(channel_stack); auto status = grpc_error_to_absl_status(error); return status; } // run post-initialization functions for (size_t i = 0; i < stack.size(); i++) { auto* elem = grpc_channel_stack_element(channel_stack, i); elem->filter->post_init_channel_elem(channel_stack, elem); } return RefCountedPtr(channel_stack); } } // namespace grpc_core