/* * Copyright (c) Meta Platforms, Inc. and affiliates. * * 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 #include using std::remove; using std::shared_ptr; using std::vector; namespace apache { namespace thrift { void EventHandlerBase::addEventHandler( const std::shared_ptr& handler) { if (!handlers_) { handlers_ = std::make_shared< std::vector>>(); } handlers_->push_back(handler); } folly::Range*> EventHandlerBase::getEventHandlers() const { if (!handlers_) { return {}; } return folly::range(*handlers_); } const std::shared_ptr>>& EventHandlerBase::getEventHandlersSharedPtr() const { return handlers_; } TProcessorBase::TProcessorBase() { std::shared_lock lock{getRWMutex()}; for (const auto& handler : getHandlers()) { addEventHandler(handler); } } void TProcessorBase::addProcessorEventHandler( std::shared_ptr handler) { if (!handler) { return; } std::unique_lock lock{getRWMutex()}; assert( find(getHandlers().begin(), getHandlers().end(), handler) == getHandlers().end()); getHandlers().push_back(std::move(handler)); } void TProcessorBase::removeProcessorEventHandler( std::shared_ptr handler) { std::unique_lock lock{getRWMutex()}; assert( find(getHandlers().begin(), getHandlers().end(), handler) != getHandlers().end()); getHandlers().erase( remove(getHandlers().begin(), getHandlers().end(), handler), getHandlers().end()); } folly::SharedMutex& TProcessorBase::getRWMutex() { static auto* mutex = new folly::SharedMutex{}; return *mutex; } vector>& TProcessorBase::getHandlers() { static vector> handlers; return handlers; } TClientBase::TClientBase() : TClientBase(Options()) {} TClientBase::TClientBase(Options options) { if (!options.includeGlobalEventHandlers) { return; } // Automatically ask all registered factories to produce an event // handler, and attach the handlers std::shared_lock lock{getRWMutex()}; auto& handlers = getHandlers(); size_t capacity = handlers.size(); if (capacity != 0) { // Initialize the handlers_ in the ctor to be owner of vector object. handlers_ = std::make_shared< std::vector>>(); // production data suggests reserving capacity here. handlers_->reserve(capacity); for (const auto& handler : handlers) { addEventHandler(handler); } } } void TClientBase::addClientEventHandler( std::shared_ptr handler) { if (!handler) { return; } std::unique_lock lock{getRWMutex()}; assert( find(getHandlers().begin(), getHandlers().end(), handler) == getHandlers().end()); getHandlers().push_back(std::move(handler)); } void TClientBase::removeClientEventHandler( std::shared_ptr handler) { std::unique_lock lock{getRWMutex()}; assert( find(getHandlers().begin(), getHandlers().end(), handler) != getHandlers().end()); getHandlers().erase( remove(getHandlers().begin(), getHandlers().end(), handler), getHandlers().end()); } folly::SharedMutex& TClientBase::getRWMutex() { static auto* mutex = new folly::SharedMutex{}; return *mutex; } vector>& TClientBase::getHandlers() { static vector> handlers; return handlers; } } // namespace thrift } // namespace apache