mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-23 14:45:38 +00:00
68 lines
1.5 KiB
C++
68 lines
1.5 KiB
C++
// SPDX-License-Identifier: MIT
|
|
//
|
|
// EmulationStation Desktop Edition
|
|
// AsyncHandle.h
|
|
//
|
|
// Asynchronous operations used by GuiScraperSearch and Scraper.
|
|
//
|
|
|
|
#ifndef ES_CORE_ASYNC_HANDLE_H
|
|
#define ES_CORE_ASYNC_HANDLE_H
|
|
|
|
#include <string>
|
|
|
|
enum AsyncHandleStatus {
|
|
ASYNC_IN_PROGRESS, // Replace with AllowShortEnumsOnASingleLine: false (clang-format >=11.0).
|
|
ASYNC_ERROR,
|
|
ASYNC_DONE
|
|
};
|
|
|
|
// Handle for some asynchronous operations.
|
|
class AsyncHandle
|
|
{
|
|
public:
|
|
AsyncHandle()
|
|
: mStatus(ASYNC_IN_PROGRESS)
|
|
{
|
|
}
|
|
virtual ~AsyncHandle() {}
|
|
|
|
virtual void update() = 0;
|
|
|
|
// Update and return the latest status.
|
|
AsyncHandleStatus status()
|
|
{
|
|
update();
|
|
return mStatus;
|
|
}
|
|
|
|
// User-friendly string of our current status.
|
|
// Will return error message if status() == SEARCH_ERROR.
|
|
std::string getStatusString()
|
|
{
|
|
switch (mStatus) {
|
|
case ASYNC_IN_PROGRESS:
|
|
return "in progress";
|
|
case ASYNC_ERROR:
|
|
return mError;
|
|
case ASYNC_DONE:
|
|
return "done";
|
|
default:
|
|
return "something impossible has occured; row, row, fight the power";
|
|
}
|
|
}
|
|
|
|
protected:
|
|
void setStatus(AsyncHandleStatus status) { mStatus = status; }
|
|
void setError(const std::string& error)
|
|
{
|
|
setStatus(ASYNC_ERROR);
|
|
mError = error;
|
|
}
|
|
|
|
std::string mError;
|
|
AsyncHandleStatus mStatus;
|
|
};
|
|
|
|
#endif // ES_CORE_ASYNC_HANDLE_H
|