leaky_ref_counted_singleton-inl.h 1008 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. #ifndef LEAKY_REF_COUNTED_SINGLETON_INL_H_
  2. #error "Direct inclusion of this file is not allowed, include leaky_ref_counted_singleton.h"
  3. // For the sake of sane code completion.
  4. #include "leaky_ref_counted_singleton.h"
  5. #endif
  6. #include "new.h"
  7. #include <atomic>
  8. #include <mutex>
  9. #include <util/system/compiler.h>
  10. #include <util/system/sanitizers.h>
  11. namespace NYT {
  12. ////////////////////////////////////////////////////////////////////////////////
  13. template <class T, class... TArgs>
  14. TIntrusivePtr<T> LeakyRefCountedSingleton(TArgs&&... args)
  15. {
  16. static std::atomic<T*> Ptr;
  17. auto* ptr = Ptr.load(std::memory_order::acquire);
  18. if (Y_LIKELY(ptr)) {
  19. return ptr;
  20. }
  21. static std::once_flag Initialized;
  22. std::call_once(Initialized, [&] {
  23. auto ptr = New<T>(std::forward<TArgs>(args)...);
  24. Ref(ptr.Get());
  25. Ptr.store(ptr.Get());
  26. });
  27. return Ptr.load();
  28. }
  29. ////////////////////////////////////////////////////////////////////////////////
  30. } // namespace NYT