Package pulse.tasks.logs
Class Log
- java.lang.Object
-
- pulse.util.UpwardsNavigable
-
- pulse.util.Group
-
- pulse.tasks.logs.Log
-
- All Implemented Interfaces:
Serializable
,Descriptive
public class Log extends Group
ALog
is used to track changes for a specificSearchTask
, such as changes of status and/or data collection events.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description Log(SearchTask task)
Creates aLog
for thistask
that will automatically storeTaskStatEvent
s and a list ofDataLogEntr
ies in thread-safe collections.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addListener(LogEntryListener l)
LocalTime
getEnd()
This is the time after the creation of theLog
when a change of status toDONE
happened.Identifier
getIdentifier()
List<LogEntryListener>
getListeners()
List<LogEntry>
getLogEntries()
LocalTime
getStart()
This is the time after the creation of theLog
when a change of status toIN_PROGRESS
happened.void
initListeners()
boolean
isFinished()
static boolean
isGraphicalLog()
Checks whether thisLog
is verbose.boolean
isStarted()
Checks whether thisLog
has observed aTaskStateEvent
triggered by a change of status of its respectiveSearchTask
toIN_PROGRESS
.LogEntry
lastEntry()
Finds the last recorded entry in thisLog
.static void
setGraphicalLog(boolean verbose)
Sets the verbose flag toverbose
long[]
timeTaken()
Time taken where the first array element contains seconds [0] and the second contains milliseconds [1].String
toString()
Outputs all log entries consecutively.-
Methods inherited from class pulse.util.Group
access, children, contents, getDescriptor, getSimpleName, subgroups
-
Methods inherited from class pulse.util.UpwardsNavigable
addHierarchyListener, describe, getHierarchyListeners, getParent, identify, removeHierarchyListener, removeHierarchyListeners, setParent, specificAncestor, tellParent
-
-
-
-
Constructor Detail
-
Log
public Log(SearchTask task)
Creates aLog
for thistask
that will automatically storeTaskStatEvent
s and a list ofDataLogEntr
ies in thread-safe collections. This is done by adding aTaskListener
and aStatusChangeListener
to thetask
object.- Parameters:
task
- the task to be logged.
-
-
Method Detail
-
initListeners
public void initListeners()
- Overrides:
initListeners
in classUpwardsNavigable
-
getListeners
public final List<LogEntryListener> getListeners()
-
addListener
public final void addListener(LogEntryListener l)
-
getIdentifier
public final Identifier getIdentifier()
-
isStarted
public boolean isStarted()
Checks whether thisLog
has observed aTaskStateEvent
triggered by a change of status of its respectiveSearchTask
toIN_PROGRESS
.- Returns:
true
if the start time is notnull
-
isFinished
public boolean isFinished()
-
toString
public String toString()
Outputs all log entries consecutively.
-
getStart
public LocalTime getStart()
This is the time after the creation of theLog
when a change of status toIN_PROGRESS
happened.- Returns:
- the start time
-
getEnd
public LocalTime getEnd()
This is the time after the creation of theLog
when a change of status toDONE
happened.- Returns:
- the start time
-
lastEntry
public LogEntry lastEntry()
Finds the last recorded entry in thisLog
.- Returns:
- last recorded entry.
-
isGraphicalLog
public static boolean isGraphicalLog()
Checks whether thisLog
is verbose. Verbose logs stores all data entries and outputs them on request. This is useful to get an idea of how the search method works, how many iterations are taken to reach a converged value, etc.- Returns:
true
if the verbose flag is on
-
setGraphicalLog
public static void setGraphicalLog(boolean verbose)
Sets the verbose flag toverbose
- Parameters:
verbose
- the new value of the flag- See Also:
isGraphicalLog()
-
timeTaken
public long[] timeTaken()
Time taken where the first array element contains seconds [0] and the second contains milliseconds [1].- Returns:
- an array of long values that sum um to the time taken to process a task
-
-