/* * Copyright 2016 Facebook, Inc. * * 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. */ namespace folly { namespace detail { template template SingletonHolder& SingletonHolder::singleton() { /* library-local */ static auto entry = createGlobal, std::pair>([]() { return new SingletonHolder({typeid(T), typeid(Tag)}, *SingletonVault::singleton()); }); return *entry; } [[noreturn]] void singletonWarnDoubleRegistrationAndAbort( const TypeDescriptor& type); template void SingletonHolder::registerSingleton(CreateFunc c, TeardownFunc t) { std::lock_guard entry_lock(mutex_); if (state_ != SingletonHolderState::NotRegistered) { /* Possible causes: * * You have two instances of the same * folly::Singleton. Probably because you define the * singleton in a header included in multiple places? In general, * folly::Singleton shouldn't be in the header, only off in some * anonymous namespace in a cpp file. Code needing the singleton * will find it when that code references folly::Singleton. * * Alternatively, you could have 2 singletons with the same type * defined with a different name in a .cpp (source) file. For * example: * * Singleton a([] { return new int(3); }); * Singleton b([] { return new int(4); }); * */ singletonWarnDoubleRegistrationAndAbort(type()); } create_ = std::move(c); teardown_ = std::move(t); state_ = SingletonHolderState::Dead; } template void SingletonHolder::registerSingletonMock(CreateFunc c, TeardownFunc t) { if (state_ == SingletonHolderState::NotRegistered) { LOG(FATAL) << "Registering mock before singleton was registered: " << type().name(); } destroyInstance(); { RWSpinLock::WriteHolder wh(&vault_.mutex_); auto it = std::find( vault_.creation_order_.begin(), vault_.creation_order_.end(), type()); if (it != vault_.creation_order_.end()) { vault_.creation_order_.erase(it); } } std::lock_guard entry_lock(mutex_); create_ = std::move(c); teardown_ = std::move(t); } template T* SingletonHolder::get() { if (LIKELY(state_.load(std::memory_order_acquire) == SingletonHolderState::Living)) { return instance_ptr_; } createInstance(); if (instance_weak_.expired()) { throw std::runtime_error( "Raw pointer to a singleton requested after its destruction." " Singleton type is: " + type().name()); } return instance_ptr_; } template std::weak_ptr SingletonHolder::get_weak() { if (UNLIKELY(state_.load(std::memory_order_acquire) != SingletonHolderState::Living)) { createInstance(); } return instance_weak_; } template std::shared_ptr SingletonHolder::try_get() { if (UNLIKELY(state_.load(std::memory_order_acquire) != SingletonHolderState::Living)) { createInstance(); } return instance_weak_.lock(); } template folly::ReadMostlySharedPtr SingletonHolder::try_get_fast() { if (UNLIKELY(state_.load(std::memory_order_acquire) != SingletonHolderState::Living)) { createInstance(); } return instance_weak_fast_.lock(); } template bool SingletonHolder::hasLiveInstance() { return !instance_weak_.expired(); } template void SingletonHolder::preDestroyInstance( ReadMostlyMainPtrDeleter<>& deleter) { instance_copy_ = instance_; deleter.add(std::move(instance_)); } template void SingletonHolder::destroyInstance() { state_ = SingletonHolderState::Dead; instance_.reset(); instance_copy_.reset(); if (destroy_baton_) { constexpr std::chrono::seconds kDestroyWaitTime{5}; auto wait_result = destroy_baton_->timed_wait( std::chrono::steady_clock::now() + kDestroyWaitTime); if (!wait_result) { print_destructor_stack_trace_->store(true); LOG(ERROR) << "Singleton of type " << type().name() << " has a " << "living reference at destroyInstances time; beware! Raw " << "pointer is " << instance_ptr_ << ". It is very likely " << "that some other singleton is holding a shared_ptr to it. " << "Make sure dependencies between these singletons are " << "properly defined."; } } } template SingletonHolder::SingletonHolder( TypeDescriptor typeDesc, SingletonVault& vault) : SingletonHolderBase(typeDesc), vault_(vault) {} template bool SingletonHolder::creationStarted() { // If alive, then creation was of course started. // This is flipped after creating_thread_ was set, and before it was reset. if (state_.load(std::memory_order_acquire) == SingletonHolderState::Living) { return true; } // Not yet built. Is it currently in progress? if (creating_thread_.load(std::memory_order_acquire) != std::thread::id()) { return true; } return false; } template void SingletonHolder::createInstance() { if (creating_thread_.load(std::memory_order_acquire) == std::this_thread::get_id()) { LOG(FATAL) << "circular singleton dependency: " << type().name(); } std::lock_guard entry_lock(mutex_); if (state_.load(std::memory_order_acquire) == SingletonHolderState::Living) { return; } if (state_.load(std::memory_order_acquire) == SingletonHolderState::NotRegistered) { auto ptr = SingletonVault::stackTraceGetter().load(); LOG(FATAL) << "Creating instance for unregistered singleton: " << type().name() << "\n" << "Stacktrace:" << "\n" << (ptr ? (*ptr)() : "(not available)"); } if (state_.load(std::memory_order_acquire) == SingletonHolderState::Living) { return; } SCOPE_EXIT { // Clean up creator thread when complete, and also, in case of errors here, // so that subsequent attempts don't think this is still in the process of // being built. creating_thread_.store(std::thread::id(), std::memory_order_release); }; creating_thread_.store(std::this_thread::get_id(), std::memory_order_release); RWSpinLock::ReadHolder rh(&vault_.stateMutex_); if (vault_.state_ == SingletonVault::SingletonVaultState::Quiescing) { if (vault_.type_ != SingletonVault::Type::Relaxed) { LOG(FATAL) << "Requesting singleton after vault was destroyed."; } return; } auto destroy_baton = std::make_shared>(); auto print_destructor_stack_trace = std::make_shared>(false); auto teardown = teardown_; // Can't use make_shared -- no support for a custom deleter, sadly. std::shared_ptr instance( create_(), [destroy_baton, print_destructor_stack_trace, teardown, type = type()] (T* instance_ptr) mutable { teardown(instance_ptr); destroy_baton->post(); if (print_destructor_stack_trace->load()) { std::string output = "Singleton " + type.name() + " was destroyed.\n"; auto stack_trace_getter = SingletonVault::stackTraceGetter().load(); auto stack_trace = stack_trace_getter ? stack_trace_getter() : ""; if (stack_trace.empty()) { output += "Failed to get destructor stack trace."; } else { output += "Destructor stack trace:\n"; output += stack_trace; } LOG(ERROR) << output; } }); // We should schedule destroyInstances() only after the singleton was // created. This will ensure it will be destroyed before singletons, // not managed by folly::Singleton, which were initialized in its // constructor SingletonVault::scheduleDestroyInstances(); instance_weak_ = instance; instance_ptr_ = instance.get(); instance_.reset(std::move(instance)); instance_weak_fast_ = instance_; destroy_baton_ = std::move(destroy_baton); print_destructor_stack_trace_ = std::move(print_destructor_stack_trace); // This has to be the last step, because once state is Living other threads // may access instance and instance_weak w/o synchronization. state_.store(SingletonHolderState::Living, std::memory_order_release); { RWSpinLock::WriteHolder wh(&vault_.mutex_); vault_.creation_order_.push_back(type()); } } } }