Class Log

  • All Implemented Interfaces:
    Serializable, Descriptive

    public class Log
    extends Group
    A Log is used to track changes for a specific SearchTask, such as changes of status and/or data collection events.
    See Also:
    Serialized Form
    • Constructor Detail

      • Log

        public Log​(SearchTask task)
        Creates a Log for this task that will automatically store TaskStatEvents and a list of DataLogEntries in thread-safe collections. This is done by adding a TaskListener and a StatusChangeListener to the task object.
        Parameters:
        task - the task to be logged.
    • Method Detail

      • getIdentifier

        public final Identifier getIdentifier()
      • isStarted

        public boolean isStarted()
        Checks whether this Log has observed a TaskStateEvent triggered by a change of status of its respective SearchTask to IN_PROGRESS.
        Returns:
        true if the start time is not null
      • isFinished

        public boolean isFinished()
      • toString

        public String toString()
        Outputs all log entries consecutively.
        Overrides:
        toString in class Object
      • getStart

        public LocalTime getStart()
        This is the time after the creation of the Log when a change of status to IN_PROGRESS happened.
        Returns:
        the start time
      • getEnd

        public LocalTime getEnd()
        This is the time after the creation of the Log when a change of status to DONE happened.
        Returns:
        the start time
      • lastEntry

        public LogEntry lastEntry()
        Finds the last recorded entry in this Log.
        Returns:
        last recorded entry.
      • isGraphicalLog

        public static boolean isGraphicalLog()
        Checks whether this Log 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 to verbose
        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