13 #ifndef ML_BACKGROUND_TASK_H
14 #define ML_BACKGROUND_TASK_H
22 #include <ThirdPartyWarningsDisable.h>
23 #include <boost/thread/mutex.hpp>
24 #include <boost/thread/condition.hpp>
25 #include <ThirdPartyWarningsRestore.h>
32 class BackgroundTaskMessage;
33 class BackgroundTaskStatusInformation;
67 virtual void run() = 0;
275 friend struct BackgroundTaskManagerWorkerFunc;
284 void aboutToFinish();
296 void setStatus(
Status status);
299 void setStatusIfNotCanceledOrSuspended(
Status status);
302 void setStatusNoLock(
Status status);
305 void runTaskFinishedCallback();
308 std::string _statusString;
310 mutable boost::mutex _statusMonitor;
311 boost::condition _statusNoLongerSuspended;
322 void* _taskFinishedCBUserData;
331 std::vector<Observer*> _observers;
#define MLBACKGROUNDTASKS_EXPORT
The BackgroundTaskManager is the central singleton that manages running background tasks.
The base class of all background messages.
Abstract interface to observe the BackgroundTask.
virtual void logMessage(BackgroundTask *task, double elapsedSeconds, const std::string &message)=0
Called when a task logs additional messages for verbose logging.
virtual ~Observer()
Virtual destructor.
virtual void statusStringChanged(BackgroundTask *task, double elapsedSeconds, const std::string &status)=0
Called when the status string has changed.
virtual void statusChanged(BackgroundTask *task, double elapsedSeconds, BackgroundTask::Status status)=0
Called when the status has changed.
Base class for a task that is started in an extra thread.
void setTaskFinishedCB(BackgroundTaskFinishedCB *callback, void *userdata)
Set this directly after the initialization of the task from the GUI thread.
void suspend()
Suspends the task.
void sendStatusStringChangedToObservers()
Sends the status string change to all observers.
void cancel()
Cancels the task (i.e., it sets status to canceled).
void setSynchronousCancelField(NotifyField *field)
Sets a cancel field that is used in synchronous mode to check whether cancel was pressed.
void removeObserver(Observer *observer)
Removes the given observer.
void resume()
Resumes the task after it was suspended.
virtual ~BackgroundTask()
void sendMessageToGUI(BackgroundTaskMessage *message)
Sends the message to the GUI.
BackgroundTask(void *owner)
Creates a new task with given owner.
void waitAndExecuteNextMessage()
Executes the next message.
void addObserver(Observer *observer)
Adds the given observer.
void setVerbose(bool flag)
Sets whether task uses verbose logging.
void getStatusInformation(BackgroundTaskStatusInformation &info)
Returns the complete status information.
bool shouldStop()
Returns whether the task should stop its work because it has been canceled.
std::string statusString() const
Returns current status string.
MLuint32 taskId() const
Returns the unique id of this task. The id of a task never changes.
void setSynchronous(bool flag)
Sets whether the task is handled synchronously. Call this only in the setup of the task,...
void sendStatusChangedToObservers()
Sends the status change to all observers.
bool hasOwner() const
Returns whether the owner was deleted.
virtual void setProgress(float progress)
Updates the progress while processing.
void sendLogMessageToObservers(const std::string &msg)
Sends the status string change to all observers.
bool isVerbose() const
Checks whether task uses verbose logging.
bool isCanceled() const
Checks whether the task was canceled.
void * owner() const
Returns the owner of the task Call this from GUI thread only!
float progress() const
Returns current progress This is thread-safe.
Status status() const
Returns the status of the task.
double idleTime() const
Returns the idle time in seconds of the task (e.g., the time it waited for getTile to complete).
bool isSynchronous() const
Checks whether the task is synchronous, which means it is not executed in a different thread.
void setOwnerWasDeleted()
Tells the task that its owner was deleted and cancels the thread.
Status
Defines current status of the task.
void logMessage(const std::string &message)
Logs a message.
virtual void setStatusString(const std::string &status)
Updates the status string while processing.
virtual void run()=0
Method that needs to be reimplemented. This is called from the worker thread.
void addIdleTime(double timeInSecs)
Adds given timeInSecs as spent idle time.
bool executeNextMessage()
Executes the next message.
double runningTime() const
Returns the running time in seconds of the task.
Field without value for notifications.
Class to measure precise time intervals.
#define ML_DISALLOW_COPY_AND_ASSIGN(className)
Defines basic macros.
void BackgroundTaskFinishedCB(void *data, BackgroundTask *task)