no_destructor.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. // Copyright (c) 2018 The LevelDB Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file. See the AUTHORS file for names of contributors.
  4. #ifndef STORAGE_LEVELDB_UTIL_NO_DESTRUCTOR_H_
  5. #define STORAGE_LEVELDB_UTIL_NO_DESTRUCTOR_H_
  6. #include <type_traits>
  7. #include <utility>
  8. namespace leveldb {
  9. // Wraps an instance whose destructor is never called.
  10. //
  11. // This is intended for use with function-level static variables.
  12. template <typename InstanceType>
  13. class NoDestructor {
  14. public:
  15. template <typename... ConstructorArgTypes>
  16. explicit NoDestructor(ConstructorArgTypes&&... constructor_args) {
  17. static_assert(sizeof(instance_storage_) >= sizeof(InstanceType),
  18. "instance_storage_ is not large enough to hold the instance");
  19. static_assert(
  20. alignof(decltype(instance_storage_)) >= alignof(InstanceType),
  21. "instance_storage_ does not meet the instance's alignment requirement");
  22. new (&instance_storage_)
  23. InstanceType(std::forward<ConstructorArgTypes>(constructor_args)...);
  24. }
  25. ~NoDestructor() = default;
  26. NoDestructor(const NoDestructor&) = delete;
  27. NoDestructor& operator=(const NoDestructor&) = delete;
  28. InstanceType* get() {
  29. return reinterpret_cast<InstanceType*>(&instance_storage_);
  30. }
  31. private:
  32. typename std::aligned_storage<sizeof(InstanceType),
  33. alignof(InstanceType)>::type instance_storage_;
  34. };
  35. } // namespace leveldb
  36. #endif // STORAGE_LEVELDB_UTIL_NO_DESTRUCTOR_H_