channel_init.cc
Go to the documentation of this file.
1 /*
2  *
3  * Copyright 2016 gRPC authors.
4  *
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  * http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  */
18 
20 
22 
23 #include <algorithm>
24 
25 namespace grpc_core {
26 
28  int priority, Stage stage) {
29  slots_[type].emplace_back(std::move(stage), priority);
30 }
31 
34  for (int i = 0; i < GRPC_NUM_CHANNEL_STACK_TYPES; i++) {
35  auto& slots = slots_[i];
36  std::stable_sort(
37  slots.begin(), slots.end(),
38  [](const Slot& a, const Slot& b) { return a.priority < b.priority; });
39  auto& result_slots = result.slots_[i];
40  result_slots.reserve(slots.size());
41  for (auto& slot : slots) {
42  result_slots.emplace_back(std::move(slot.stage));
43  }
44  }
45  return result;
46 }
47 
49  for (const auto& stage : slots_[builder->channel_stack_type()]) {
50  if (!stage(builder)) return false;
51  }
52  return true;
53 }
54 
55 } // namespace grpc_core
_gevent_test_main.result
result
Definition: _gevent_test_main.py:96
grpc_core::ChannelInit::CreateStack
bool CreateStack(ChannelStackBuilder *builder) const
Definition: channel_init.cc:48
priority
int priority
Definition: abseil-cpp/absl/synchronization/internal/graphcycles.cc:286
grpc_core
Definition: call_metric_recorder.h:31
grpc_core::ChannelInit::Builder::RegisterStage
void RegisterStage(grpc_channel_stack_type type, int priority, Stage stage)
Definition: channel_init.cc:27
a
int a
Definition: abseil-cpp/absl/container/internal/hash_policy_traits_test.cc:88
grpc_core::ChannelStackBuilder
Definition: channel_stack_builder.h:41
grpc_core::ChannelInit::Stage
std::function< bool(ChannelStackBuilder *builder)> Stage
Definition: channel_init.h:44
GRPC_NUM_CHANNEL_STACK_TYPES
@ GRPC_NUM_CHANNEL_STACK_TYPES
Definition: channel_stack_type.h:38
profile_analyzer.builder
builder
Definition: profile_analyzer.py:159
channel_init.h
absl::move
constexpr absl::remove_reference_t< T > && move(T &&t) noexcept
Definition: abseil-cpp/absl/utility/utility.h:221
grpc_core::ChannelInit
Definition: channel_init.h:40
b
uint64_t b
Definition: abseil-cpp/absl/container/internal/layout_test.cc:53
grpc_core::ChannelInit::slots_
std::vector< Stage > slots_[GRPC_NUM_CHANNEL_STACK_TYPES]
Definition: channel_init.h:79
grpc_channel_stack_type
grpc_channel_stack_type
Definition: channel_stack_type.h:24
grpc_core::ChannelInit::Builder::slots_
std::vector< Slot > slots_[GRPC_NUM_CHANNEL_STACK_TYPES]
Definition: channel_init.h:71
asyncio_get_stats.type
type
Definition: asyncio_get_stats.py:37
grpc_core::ChannelInit::Builder::Slot
Definition: channel_init.h:65
grpc_core::ChannelInit::Builder::Build
ChannelInit Build()
Definition: channel_init.cc:32
i
uint64_t i
Definition: abseil-cpp/absl/container/btree_benchmark.cc:230
port_platform.h


grpc
Author(s):
autogenerated on Fri May 16 2025 02:57:52