poco/Foundation/include/Poco/TaskManager.h

153 lines
3.9 KiB
C
Raw Normal View History

2012-04-29 20:52:25 +02:00
//
// TaskManager.h
//
// Library: Foundation
// Package: Tasks
// Module: Tasks
//
// Definition of the TaskManager class.
//
// Copyright (c) 2004-2006, Applied Informatics Software Engineering GmbH.
// and Contributors.
//
// SPDX-License-Identifier: BSL-1.0
2012-04-29 20:52:25 +02:00
//
#ifndef Foundation_TaskManager_INCLUDED
#define Foundation_TaskManager_INCLUDED
#include "Poco/Foundation.h"
#include "Poco/Mutex.h"
#include "Poco/Task.h"
#include "Poco/AutoPtr.h"
#include "Poco/NotificationCenter.h"
#include "Poco/Timestamp.h"
#include <list>
namespace Poco {
class Notification;
class ThreadPool;
class Exception;
class Foundation_API TaskManager
/// The TaskManager manages a collection of tasks
/// and monitors their lifetime.
///
/// A TaskManager has a built-in NotificationCenter that
/// is used to send out notifications on task progress
/// and task states. See the TaskNotification class and its
/// subclasses for the various events that result in a notification.
/// To keep the number of notifications small, a TaskProgressNotification
/// will only be sent out once in 100 milliseconds.
{
public:
using TaskPtr = AutoPtr<Task>;
using TaskList = std::list<TaskPtr>;
2012-04-29 20:52:25 +02:00
TaskManager(const std::string& name = "",
int minCapacity = 2,
int maxCapacity = 16,
int idleTime = 60,
int stackSize = POCO_THREAD_STACK_SIZE);
/// Creates the TaskManager.
2012-04-29 20:52:25 +02:00
TaskManager(ThreadPool& pool);
/// Creates the TaskManager, using the
/// given ThreadPool (should be used
/// by this TaskManager exclusively).
2012-04-29 20:52:25 +02:00
~TaskManager();
/// Destroys the TaskManager.
bool start(Task* pTask);
2012-04-29 20:52:25 +02:00
/// Starts the given task in a thread obtained
/// from the thread pool; returns true if successful.
///
/// If this method returns false, the task was cancelled
/// before it could be started, or it was already running;
/// in any case, a false return means refusal of ownership
/// and indicates that the task pointer may not be valid
/// anymore (it will only be valid if it was duplicated
/// prior to this call).
2012-04-29 20:52:25 +02:00
///
/// The TaskManager takes ownership of the Task object
/// and deletes it when it is finished.
2012-04-29 20:52:25 +02:00
void cancelAll();
/// Requests cancellation of all tasks.
2022-07-07 11:18:20 +02:00
2012-04-29 20:52:25 +02:00
void joinAll();
/// Waits for the completion of all the threads
/// in the TaskManager's thread pool.
///
/// Note: joinAll() will wait for ALL tasks in the
/// TaskManager's ThreadPool to complete. If the
/// ThreadPool has threads created by other
/// facilities, these threads must also complete
/// before joinAll() can return.
TaskList taskList() const;
/// Returns a copy of the internal task list.
int count() const;
/// Returns the number of tasks in the internal task list.
void addObserver(const AbstractObserver& observer);
/// Registers an observer with the NotificationCenter.
/// Usage:
/// Observer<MyClass, MyNotification> obs(*this, &MyClass::handleNotification);
/// notificationCenter.addObserver(obs);
void removeObserver(const AbstractObserver& observer);
/// Unregisters an observer with the NotificationCenter.
static const int MIN_PROGRESS_NOTIFICATION_INTERVAL;
protected:
2012-08-22 04:40:41 +02:00
void postNotification(const Notification::Ptr& pNf);
2022-07-07 11:18:20 +02:00
/// Posts a notification to the task manager's
2012-08-22 04:40:41 +02:00
/// notification center.
2012-04-29 20:52:25 +02:00
void taskStarted(Task* pTask);
void taskProgress(Task* pTask, float progress);
void taskCancelled(Task* pTask);
void taskFinished(Task* pTask);
void taskFailed(Task* pTask, const Exception& exc);
private:
using MutexT = FastMutex;
using ScopedLockT = MutexT::ScopedLock;
2012-04-29 20:52:25 +02:00
ThreadPool& _threadPool;
bool _ownPool;
2012-04-29 20:52:25 +02:00
TaskList _taskList;
Timestamp _lastProgressNotification;
NotificationCenter _nc;
mutable MutexT _mutex;
2012-04-29 20:52:25 +02:00
friend class Task;
};
//
// inlines
//
inline int TaskManager::count() const
{
ScopedLockT lock(_mutex);
2012-04-29 20:52:25 +02:00
return (int) _taskList.size();
}
} // namespace Poco
#endif // Foundation_TaskManager_INCLUDED