Panda3D
|
A class to manage a loose queue of isolated tasks, which can be performed either synchronously (in the foreground thread) or asynchronously (by a background thread). More...
#include <pandadoc.hpp>
Public Member Functions | |
__init__ (str name) | |
add (AsyncTask task) | |
Adds the indicated task to the active queue. More... | |
cleanup () | |
Stops all threads and messily empties the task list. More... | |
AsyncTask | findTask (str name) |
Returns the first task found with the indicated name, or NULL if there is no task with the indicated name. More... | |
AsyncTaskChain | findTaskChain (str name) |
Searches a new AsyncTaskChain of the indicated name and returns it if it exists, or NULL otherwise. More... | |
AsyncTaskCollection | findTasks (str name) |
Returns the list of tasks found with the indicated name. More... | |
AsyncTaskCollection | findTasksMatching (const GlobPattern pattern) |
Returns the list of tasks found whose name matches the indicated glob pattern, e.g. More... | |
AsyncTaskCollection | getActiveTasks () |
Returns the set of tasks that are active (and not sleeping) on the task manager, at the time of the call. More... | |
ClockObject | getClock () |
Returns the clock pointer used within the AsyncTaskManager. More... | |
double | getNextWakeTime () |
Returns the scheduled time (on the manager's clock) of the next sleeping task, on any task chain, to awaken. More... | |
int | getNumTaskChains () |
Returns the number of different task chains. More... | |
int | getNumTasks () |
Returns the number of tasks that are currently active or sleeping within the task manager. More... | |
AsyncTaskCollection | getSleepingTasks () |
Returns the set of tasks that are sleeping (and not active) on the task manager, at the time of the call. More... | |
AsyncTaskChain | getTaskChain (int n) |
Returns the nth task chain. More... | |
list | getTaskChains () |
AsyncTaskCollection | getTasks () |
Returns the set of tasks that are active or sleeping on the task manager, at the time of the call. More... | |
bool | hasTask (AsyncTask task) |
Returns true if the indicated task has been added to this AsyncTaskManager, false otherwise. More... | |
AsyncTaskChain | makeTaskChain (str name) |
Creates a new AsyncTaskChain of the indicated name and stores it within the AsyncTaskManager. More... | |
output (Ostream out) | |
poll () | |
Runs through all the tasks in the task list, once, if the task manager is running in single-threaded mode (no threads available). More... | |
bool | remove (AsyncTask task) |
Removes the indicated task from the active queue. More... | |
int | remove (const AsyncTaskCollection tasks) |
Removes all of the tasks in the AsyncTaskCollection. More... | |
bool | removeTaskChain (str name) |
Removes the AsyncTaskChain of the indicated name. More... | |
setClock (ClockObject clock) | |
Replaces the clock pointer used within the AsyncTaskManager. More... | |
startThreads () | |
Starts any requested threads to service the tasks on the queue. More... | |
stopThreads () | |
Stops any threads that are currently running. More... | |
waitForTasks () | |
Blocks until the task list is empty. More... | |
write (Ostream out, int indent_level) | |
![]() | |
TypeHandle | getType () |
int | getTypeIndex () |
Returns the internal index number associated with this object's TypeHandle, a unique number for each different type. More... | |
bool | isExactType (TypeHandle handle) |
Returns true if the current object is the indicated type exactly. More... | |
bool | isOfType (TypeHandle handle) |
Returns true if the current object is or derives from the indicated type. More... | |
![]() | |
int | getRefCount () |
Returns the current reference count. More... | |
ref () | |
Explicitly increments the reference count. More... | |
bool | testRefCountIntegrity () |
Does some easy checks to make sure that the reference count isn't completely bogus. More... | |
bool | testRefCountNonzero () |
Does some easy checks to make sure that the reference count isn't zero, or completely bogus. More... | |
bool | unref () |
Explicitly decrements the reference count. More... | |
![]() | |
__init__ (const Namable) | |
__init__ (str initial_name) | |
clearName () | |
Resets the Namable's name to empty. More... | |
str | getName () |
bool | hasName () |
Returns true if the Namable has a nonempty name set, false if the name is empty. More... | |
output (Ostream out) | |
Outputs the Namable. More... | |
setName (str name) | |
Static Public Member Functions | |
static TypeHandle | getClassType () |
static AsyncTaskManager | getGlobalPtr () |
Returns a pointer to the global AsyncTaskManager. More... | |
![]() | |
static TypeHandle | getClassType () |
![]() | |
static TypeHandle | getClassType () |
![]() | |
static TypeHandle | getClassType () |
![]() | |
static TypeHandle | getClassType () |
Public Attributes | |
AsyncTaskCollection | active_tasks |
Returns the set of tasks that are active (and not sleeping) on the task manager, at the time of the call. More... | |
ClockObject | clock |
Returns the clock pointer used within the AsyncTaskManager. More... | |
double | next_wake_time |
Returns the scheduled time (on the manager's clock) of the next sleeping task, on any task chain, to awaken. More... | |
AsyncTaskCollection | sleeping_tasks |
Returns the set of tasks that are sleeping (and not active) on the task manager, at the time of the call. More... | |
AsyncTaskCollection | tasks |
Returns the set of tasks that are active or sleeping on the task manager, at the time of the call. More... | |
![]() | |
TypeHandle | type |
Returns the TypeHandle representing this object's type. More... | |
![]() | |
int | ref_count |
The current reference count. More... | |
![]() | |
const String | name |
A class to manage a loose queue of isolated tasks, which can be performed either synchronously (in the foreground thread) or asynchronously (by a background thread).
The AsyncTaskManager is actually a collection of AsyncTaskChains, each of which maintains a list of tasks. Each chain can be either foreground or background (it may run only in the main thread, or it may be serviced by one or more background threads). See AsyncTaskChain for more information.
If you do not require background processing, it is perfectly acceptable to create only one AsyncTaskChain, which runs in the main thread. This is a common configuration.
__init__ | ( | str | name | ) |
add | ( | AsyncTask | task | ) |
Adds the indicated task to the active queue.
It is an error if the task is already added to this or any other active queue.
cleanup | ( | ) |
Stops all threads and messily empties the task list.
This is intended to be called on destruction only.
AsyncTask findTask | ( | str | name | ) |
Returns the first task found with the indicated name, or NULL if there is no task with the indicated name.
If there are multiple tasks with the same name, returns one of them arbitrarily.
AsyncTaskChain findTaskChain | ( | str | name | ) |
Searches a new AsyncTaskChain of the indicated name and returns it if it exists, or NULL otherwise.
AsyncTaskCollection findTasks | ( | str | name | ) |
Returns the list of tasks found with the indicated name.
AsyncTaskCollection findTasksMatching | ( | const GlobPattern | pattern | ) |
Returns the list of tasks found whose name matches the indicated glob pattern, e.g.
"my_task_*".
AsyncTaskCollection getActiveTasks | ( | ) |
Returns the set of tasks that are active (and not sleeping) on the task manager, at the time of the call.
|
static |
ClockObject getClock | ( | ) |
Returns the clock pointer used within the AsyncTaskManager.
See set_clock().
|
static |
Returns a pointer to the global AsyncTaskManager.
This is the AsyncTaskManager that most code should use for queueing tasks and suchlike.
double getNextWakeTime | ( | ) |
Returns the scheduled time (on the manager's clock) of the next sleeping task, on any task chain, to awaken.
Returns -1 if there are no sleeping tasks.
int getNumTaskChains | ( | ) |
Returns the number of different task chains.
int getNumTasks | ( | ) |
Returns the number of tasks that are currently active or sleeping within the task manager.
AsyncTaskCollection getSleepingTasks | ( | ) |
Returns the set of tasks that are sleeping (and not active) on the task manager, at the time of the call.
AsyncTaskChain getTaskChain | ( | int | n | ) |
Returns the nth task chain.
list getTaskChains | ( | ) |
AsyncTaskCollection getTasks | ( | ) |
Returns the set of tasks that are active or sleeping on the task manager, at the time of the call.
bool hasTask | ( | AsyncTask | task | ) |
Returns true if the indicated task has been added to this AsyncTaskManager, false otherwise.
AsyncTaskChain makeTaskChain | ( | str | name | ) |
Creates a new AsyncTaskChain of the indicated name and stores it within the AsyncTaskManager.
If a task chain with this name already exists, returns it instead.
output | ( | Ostream | out | ) |
poll | ( | ) |
Runs through all the tasks in the task list, once, if the task manager is running in single-threaded mode (no threads available).
This method does nothing in threaded mode, so it may safely be called in either case.
bool remove | ( | AsyncTask | task | ) |
Removes the indicated task from the active queue.
Returns true if the task is successfully removed, or false if it wasn't there.
int remove | ( | const AsyncTaskCollection | tasks | ) |
Removes all of the tasks in the AsyncTaskCollection.
Returns the number of tasks removed.
bool removeTaskChain | ( | str | name | ) |
Removes the AsyncTaskChain of the indicated name.
If the chain still has tasks, this will block until all tasks are finished.
Returns true if successful, or false if the chain did not exist.
setClock | ( | ClockObject | clock | ) |
Replaces the clock pointer used within the AsyncTaskManager.
This is used to control when tasks with a set_delay() specified will be scheduled. It can also be ticked automatically each epoch, if set_tick_clock() is true.
The default is the global clock pointer.
startThreads | ( | ) |
Starts any requested threads to service the tasks on the queue.
This is normally not necessary, since adding a task will start the threads automatically.
stopThreads | ( | ) |
Stops any threads that are currently running.
If any tasks are still pending and have not yet been picked up by a thread, they will not be serviced unless poll() or start_threads() is later called.
waitForTasks | ( | ) |
Blocks until the task list is empty.
write | ( | Ostream | out, |
int | indent_level | ||
) |
AsyncTaskCollection active_tasks |
Returns the set of tasks that are active (and not sleeping) on the task manager, at the time of the call.
ClockObject clock |
Returns the clock pointer used within the AsyncTaskManager.
See set_clock().
double next_wake_time |
Returns the scheduled time (on the manager's clock) of the next sleeping task, on any task chain, to awaken.
Returns -1 if there are no sleeping tasks.
AsyncTaskCollection sleeping_tasks |
Returns the set of tasks that are sleeping (and not active) on the task manager, at the time of the call.
AsyncTaskCollection tasks |
Returns the set of tasks that are active or sleeping on the task manager, at the time of the call.