// // // 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. // // #include "src/core/lib/surface/connection_context.h" #include #include #include #include "src/core/util/alloc.h" #include "src/core/util/orphanable.h" namespace grpc_core { namespace { void* ConnectionContextStorage() { size_t base_size = sizeof(ConnectionContext) + GPR_ROUND_UP_TO_ALIGNMENT_SIZE( connection_context_detail:: BaseConnectionContextPropertiesTraits::Size()); static constexpr size_t alignment = (GPR_CACHELINE_SIZE > GPR_MAX_ALIGNMENT && GPR_CACHELINE_SIZE % GPR_MAX_ALIGNMENT == 0) ? GPR_CACHELINE_SIZE : GPR_MAX_ALIGNMENT; return gpr_malloc_aligned(base_size, alignment); } } // namespace OrphanablePtr ConnectionContext::Create() { void* p = ConnectionContextStorage(); return OrphanablePtr(new (p) ConnectionContext()); } ConnectionContext::ConnectionContext() { for (size_t i = 0; i < connection_context_detail::BaseConnectionContextPropertiesTraits:: NumProperties(); ++i) { registered_properties()[i] = nullptr; } } void ConnectionContext::Orphan() { this->~ConnectionContext(); gpr_free_aligned(const_cast(this)); } ConnectionContext::~ConnectionContext() { for (size_t i = 0; i < connection_context_detail::BaseConnectionContextPropertiesTraits:: NumProperties(); ++i) { connection_context_detail::BaseConnectionContextPropertiesTraits::Destroy( i, registered_properties()[i]); } } } // namespace grpc_core