Regina Calculation Engine
|
An object through which external interfaces can obtain progress reports when running long calculations. More...
#include <progress/nprogress.h>
Public Member Functions | |
NProgress () | |
Performs basic initialisation. More... | |
virtual | ~NProgress () |
Destroys this object. More... | |
bool | hasChanged () const |
Determines if the state of progress has changed since the last query. More... | |
bool | isFinished () const |
Is the operation whose progress we are reporting completely finished? More... | |
void | setFinished () |
Signifies that the operation whose progress we are reporting is completely finished. More... | |
void | cancel () const |
Called by an external interface to request that the operation whose progress we are reporting be cancelled. More... | |
bool | isCancelled () const |
Determines whether an external interface has requested that the operation whose progress we are reporting be cancelled. More... | |
std::string | getDescription () const |
Returns a string description of the current state of progress. More... | |
virtual bool | isPercent () const |
Determines if the state of progress can be expressed as a percentage. More... | |
double | getPercent () const |
Returns the current state of progress as a percentage. More... | |
long | getRealTime () const |
Returns the real time elapsed since this operation began. More... | |
long | totalCPUTime () const |
Returns the total CPU time consumed by the program from the beginning to the end of this operation. More... | |
void | writeTextShort (std::ostream &out) const |
Writes this object in short text format to the given output stream. More... | |
Input and Output | |
virtual void | writeTextLong (std::ostream &out) const |
Writes this object in long text format to the given output stream. More... | |
std::string | str () const |
Returns the output from writeTextShort() as a string. More... | |
std::string | toString () const |
A deprecated alias for str(), which returns the output from writeTextShort() as a string. More... | |
std::string | detail () const |
Returns the output from writeTextLong() as a string. More... | |
std::string | toStringLong () const |
A deprecated alias for detail(), which returns the output from writeTextLong() as a string. More... | |
Protected Member Functions | |
virtual std::string | internalGetDescription () const =0 |
Returns a string description of the current state of progress. More... | |
virtual double | internalGetPercent () const |
Returns the current state of progress as a percentage. More... | |
Protected Attributes | |
bool | changed |
Has the state of progress changed since the last query? More... | |
bool | cancelled |
Has this operation been cancelled? More... | |
An object through which external interfaces can obtain progress reports when running long calculations.
The running calculation writes to this object to store the current state of progress, and the external interface reads from this object from a different thread.
When writing progress information to an NProgress object, the last call should be to setFinished(). This informs all threads that the operation is finished and that the NProgress object can be deleted without the risk that the writing thread will attempt to access it again.
If the operation allows it, the reading thread may at any time request that the operation be cancelled by calling cancel(). The writing thread should regularly poll isCancelled(), and if it detects a cancellation request should exit cleanly as soon as possible. Note that the writing thread should still call setFinished() in this situation.
NProgress contains multithreading support; a mutex is used to ensure that the reading and writing threads do not interfere.
NProgress also contains timing support, with measurements in both real time and CPU time. See the routines getRealTime() and totalCPUTime() for details.
Subclasses of NProgress represent the various ways in which progress can be internally stored. Note that subclass member functions must lock the mutex whenever internal data is being accessed or modified (see NMutex::MutexLock for how this is done). Any public subclass member function that changes the state of progress must set the changed flag to true
, and all public subclass query functions must set the changed flag to false
.
|
inline |
Performs basic initialisation.
Note that the internal mutex is not locked during construction.
The internal state-has-changed flag is set to true
.
|
inlinevirtual |
Destroys this object.
|
inline |
Called by an external interface to request that the operation whose progress we are reporting be cancelled.
The operation itself should regularly poll isCancelled() to check if an external interface has made this request.
Note that if cancellation is not sensible or appropriate, the operation may freely ignore such cancellation requests and need not poll isCancelled() at all.
This routine is made const since an external interface should be able to cancel an operation even though it should never modify the state of progress.
|
inherited |
Returns the output from writeTextLong() as a string.
|
inline |
Returns a string description of the current state of progress.
Note that subclasses must override internalGetDescription(), not this routine.
|
inline |
Returns the current state of progress as a percentage.
Note that subclasses must override internalGetPercent(), not this routine.
|
inline |
Returns the real time elapsed since this operation began.
This routine may be called both during and after the operation.
If the operation has been marked as finished, the total elapsed time from start to finish will be reported. Otherwise the time elasped thus far will be reported.
|
inline |
Determines if the state of progress has changed since the last query.
A query is defined to be a call to getDescription(), getPercent() or any of the subclass-specific query routines.
This routine allows interfaces to avoid calls to the slower query routines when they can avoid it.
If no query has yet been made, this routine will return true
.
true
if and only if the state of progress has changed since the last query.
|
protectedpure virtual |
Returns a string description of the current state of progress.
This function must not touch the mutex, and is not required to alter the changed flag. The getDescription() routine takes care of all of these issues.
Implemented in regina::NProgressFinished, regina::NProgressNumber, and regina::NProgressMessage.
|
inlineprotectedvirtual |
Returns the current state of progress as a percentage.
The default implementation returns 0.
This function must not touch the mutex, and is not required to alter the changed flag. The getDescription() routine takes care of all of these issues.
Reimplemented in regina::NProgressFinished, and regina::NProgressNumber.
|
inline |
Determines whether an external interface has requested that the operation whose progress we are reporting be cancelled.
If the operation is polling for cancellation requests and it finds that isCancelled() returns true
, it should generally exit (cleanly) as soon as possible with only partial or no results. However, if cancellation is not sensible or appropriate, the operation may freely ignore such cancellation requests.
Note that even if the underlying operation cancels itself, it should still call setFinished().
true
if and only if an external interface has requested that the operation be cancelled.
|
inline |
Is the operation whose progress we are reporting completely finished?
Once this routine returns true
, it will always return true
; thus there will be no need to call it again.
true
if and only if the operation is finished.
|
inlinevirtual |
Determines if the state of progress can be expressed as a percentage.
The default implementation returns false
.
true
if and only if progress can be expressed as a percentage. Reimplemented in regina::NProgressFinished, and regina::NProgressNumber.
|
inline |
Signifies that the operation whose progress we are reporting is completely finished.
This must be the final member function call to this NProgress object made by the thread performing the corresponding operation. It notifies all other threads that the operation is complete and that this NProgress object can be safely deleted.
This routine should still be called by the operation thread if it cancels itself in response to a request by an external interface (see cancel()).
|
inherited |
Returns the output from writeTextShort() as a string.
__str__()
function.
|
inlineinherited |
A deprecated alias for str(), which returns the output from writeTextShort() as a string.
|
inlineinherited |
A deprecated alias for detail(), which returns the output from writeTextLong() as a string.
|
inline |
Returns the total CPU time consumed by the program from the beginning to the end of this operation.
This routine will only return useful results after the operation has finished.
If the operation has not yet been marked as finished, this routine will return 0.
|
inlinevirtualinherited |
Writes this object in long text format to the given output stream.
The output should provide the user with all the information they could want. The output should be human-readable, should not contain extremely long lines (so users can read the output in a terminal), and should end with a final newline.
The default implementation of this routine merely calls writeTextShort() and adds a newline.
out | the output stream to which to write. |
Reimplemented in regina::NSnapPeaTriangulation, regina::NGroupPresentation, regina::NHomMarkedAbelianGroup, regina::NNormalSurfaceList, regina::NTetrahedron, regina::NSatRegion, regina::NVertex, regina::NEdge, regina::Dim2Triangle, regina::NTriangle, regina::NLayeredSolidTorus, regina::NHomGroupPresentation, regina::NGenericIsomorphism< dim >, regina::NGenericIsomorphism< 2 >, regina::NGenericIsomorphism< 3 >, regina::NTriangulation, regina::NComponent, regina::NTxICore, regina::NTriSolidTorus, regina::NAngleStructureList, regina::Dim2Edge, regina::NBoundaryComponent, regina::NLayeredChain, regina::Dim2Vertex, regina::Dim2Component, regina::NScript, regina::NAugTriSolidTorus, regina::NSpiralSolidTorus, regina::NSurfaceFilterProperties, regina::NLayeredTorusBundle, regina::NManifold, regina::NPlugTriSolidTorus, regina::NMatrixInt, regina::NBlockedSFSTriple, regina::NPluggedTorusBundle, regina::Dim2Triangulation, regina::NSurfaceSubset, regina::NLayeredLensSpace, regina::NLayeredLoop, regina::NFileInfo, regina::NBlockedSFSLoop, regina::NSnappedBall, regina::NBlockedSFSPair, regina::Dim2BoundaryComponent, regina::NTrivialTri, regina::NL31Pillow, regina::NLayeredChainPair, regina::NText, regina::NSurfaceFilterCombination, and regina::NBlockedSFS.
|
inlinevirtual |
Writes this object in short text format to the given output stream.
The output should be human-readable, should fit on a single line, and should not end with a newline.
out | the output stream to which to write. |
Implements regina::ShareableObject.
|
protected |
Has this operation been cancelled?
|
mutableprotected |
Has the state of progress changed since the last query?