X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=folly%2FSingleton.h;h=48251b6674bb645a2d147dd2b0bedd3069e768d8;hb=b92bbedce7866bf3760863604e1af1e8e42db24a;hp=104054afaa42b30a6e8c7d9876e49a97e75b883f;hpb=e70058f47d312aaf194207ff6034089850750c1e;p=folly.git diff --git a/folly/Singleton.h b/folly/Singleton.h index 104054af..48251b66 100644 --- a/folly/Singleton.h +++ b/folly/Singleton.h @@ -121,16 +121,16 @@ // should call reenableInstances. #pragma once -#include #include #include #include -#include #include #include #include #include #include +#include +#include #include #include @@ -328,7 +328,7 @@ struct SingletonHolder : public SingletonHolderBase { SingletonHolder(SingletonHolder&&) = delete; }; -} +} // namespace detail class SingletonVault { public: @@ -405,7 +405,7 @@ class SingletonVault { * * Sample usage: * - * wangle::IOThreadPoolExecutor executor(max_concurrency_level); + * folly::IOThreadPoolExecutor executor(max_concurrency_level); * folly::Baton<> done; * doEagerInitVia(executor, &done); * done.wait(); // or 'timed_wait', or spin with 'try_wait' @@ -532,9 +532,10 @@ class SingletonVault { // singletons. Create instances of this class in the global scope of // type Singleton to register your singleton for later access via // Singleton::try_get(). -template +template < + typename T, + typename Tag = detail::DefaultTag, + typename VaultTag = detail::DefaultTag /* for testing */> class Singleton { public: typedef std::function CreateFunc; @@ -669,6 +670,21 @@ class LeakySingleton { static T& get() { return instance(); } + static void make_mock(std::nullptr_t /* c */ = nullptr) { + make_mock([]() { return new T; }); + } + + static void make_mock(CreateFunc createFunc) { + auto& entry = entryInstance(); + if (createFunc == nullptr) { + throw std::logic_error( + "nullptr_t should be passed if you want T to be default constructed"); + } + + entry.createFunc = createFunc; + entry.state = State::Dead; + } + private: enum class State { NotRegistered, Dead, Living }; @@ -718,6 +734,6 @@ class LeakySingleton { entry.state = State::Living; } }; -} +} // namespace folly #include