mirror of
https://github.com/QuasarApp/QuasarAppLib.git
synced 2025-05-05 22:19:43 +00:00
79 lines
2.4 KiB
C++
79 lines
2.4 KiB
C++
/*
|
|
* Copyright (C) 2018-2022 QuasarApp.
|
|
* Distributed under the lgplv3 software license, see the accompanying
|
|
* Everyone is permitted to copy and distribute verbatim copies
|
|
* of this license document, but changing it is not allowed.
|
|
*/
|
|
|
|
#ifndef QASERVICE_H
|
|
#define QASERVICE_H
|
|
#include "quasarapp_global.h"
|
|
|
|
namespace QuasarAppUtils {
|
|
|
|
|
|
|
|
/**
|
|
* @brief The Service class is a template class for creating a singleton services objects.
|
|
* This is manual control wrapper. You should be manually initializing your service object and manually deinitializing.
|
|
* If you don't destroy your service, then service object will be automatically destroyed when application will be closed.
|
|
* @warning If service was destroyed automatically, then destructor of your base class will be not invoked. Use The deinit method for this.
|
|
* @todo Remove the template Base class. Instead, it needs to use a general inherit paradigm
|
|
*/
|
|
template<class Base>
|
|
class Service
|
|
{
|
|
public:
|
|
Service() {
|
|
};
|
|
|
|
/**
|
|
* @brief init This method initialize the @a Base object as a service.
|
|
* @param args This is argumets of a constructo of the @a Base class.
|
|
* @return instance pointer. If the service alredy initialized then return pointer to current service object.
|
|
*/
|
|
template<class BaseClass = Base, class... Args>
|
|
static Base* init(Args&&... args) {
|
|
auto instanceObj = privateInstance();
|
|
if(instanceObj->_data) {
|
|
instanceObj->_data = new BaseClass(std::forward<Args>(args)...);
|
|
}
|
|
|
|
return instanceObj->_data;
|
|
}
|
|
|
|
/**
|
|
* @brief instance This method return pointerer to current service object.
|
|
* @note If object was not initialized, then return false.
|
|
* @return pointerer to current service object if service initialized else nullptr.
|
|
*/
|
|
static Base* instance() {
|
|
return privateInstance()->_data;
|
|
}
|
|
|
|
/**
|
|
* @brief deinit This is distructor method for the service.
|
|
* @note do nothink if this object alredy distroyed.
|
|
*/
|
|
static void deinit() {
|
|
auto instanceObj = privateInstance();
|
|
if(instanceObj->_data) {
|
|
delete instanceObj->_data;
|
|
instanceObj->_data = nullptr;
|
|
}
|
|
}
|
|
|
|
private:
|
|
static Service<Base>* privateInstance() {
|
|
static Service<Base>* privateObject = new Service<Base>;
|
|
return privateObject;
|
|
};
|
|
|
|
Base* _data = nullptr;
|
|
|
|
};
|
|
|
|
|
|
}
|
|
#endif // QASERVICE_H
|