2017-10-29 09:24:06 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Copyright (C) 2015 Dimok
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef _ASYNC_DELETER_H
|
|
|
|
#define _ASYNC_DELETER_H
|
|
|
|
|
|
|
|
#include <queue>
|
|
|
|
#include "CThread.h"
|
|
|
|
#include "CMutex.h"
|
|
|
|
|
2018-03-11 16:44:04 +01:00
|
|
|
class AsyncDeleter : public CThread {
|
2017-10-29 09:24:06 +01:00
|
|
|
public:
|
2018-03-11 16:44:04 +01:00
|
|
|
static void destroyInstance() {
|
|
|
|
if(deleterInstance != NULL) {
|
2017-10-29 09:24:06 +01:00
|
|
|
delete deleterInstance;
|
|
|
|
deleterInstance = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-03-11 16:44:04 +01:00
|
|
|
class Element {
|
2017-10-29 09:24:06 +01:00
|
|
|
public:
|
|
|
|
Element() {}
|
|
|
|
virtual ~Element() {}
|
|
|
|
};
|
|
|
|
|
2018-03-11 16:44:04 +01:00
|
|
|
static void pushForDelete(AsyncDeleter::Element *e) {
|
|
|
|
if(!deleterInstance) {
|
2017-10-29 09:24:06 +01:00
|
|
|
deleterInstance = new AsyncDeleter;
|
2018-03-11 16:44:04 +01:00
|
|
|
}
|
2017-10-29 09:24:06 +01:00
|
|
|
deleterInstance->deleteElements.push(e);
|
|
|
|
}
|
|
|
|
|
2018-03-11 16:44:04 +01:00
|
|
|
static bool deleteListEmpty() {
|
|
|
|
if(!deleterInstance) {
|
2017-10-29 09:24:06 +01:00
|
|
|
return true;
|
2018-03-11 16:44:04 +01:00
|
|
|
}
|
2017-10-29 09:24:06 +01:00
|
|
|
return deleterInstance->deleteElements.empty();
|
|
|
|
}
|
|
|
|
|
2018-03-11 16:44:04 +01:00
|
|
|
static bool realListEmpty() {
|
|
|
|
if(!deleterInstance) {
|
2017-10-29 09:24:06 +01:00
|
|
|
return true;
|
2018-03-11 16:44:04 +01:00
|
|
|
}
|
2017-10-29 09:24:06 +01:00
|
|
|
return deleterInstance->realDeleteElements.empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void triggerDeleteProcess(void);
|
|
|
|
|
|
|
|
private:
|
|
|
|
AsyncDeleter();
|
|
|
|
virtual ~AsyncDeleter();
|
|
|
|
|
|
|
|
static AsyncDeleter *deleterInstance;
|
|
|
|
|
|
|
|
void executeThread(void);
|
|
|
|
|
|
|
|
bool exitApplication;
|
|
|
|
std::queue<AsyncDeleter::Element *> deleteElements;
|
|
|
|
std::queue<AsyncDeleter::Element *> realDeleteElements;
|
|
|
|
CMutex deleteMutex;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _ASYNC_DELETER_H
|