Class TraceReconstructionFilter

java.lang.Object
kieker.analysis.analysisComponent.AbstractAnalysisComponent
kieker.analysis.plugin.AbstractPlugin
kieker.analysis.plugin.filter.AbstractFilterPlugin
All Implemented Interfaces:
kieker.analysis.analysisComponent.IAnalysisComponent, kieker.analysis.plugin.filter.IFilterPlugin, kieker.analysis.plugin.IPlugin

@Deprecated
public class TraceReconstructionFilter
extends AbstractTraceProcessingFilter
Deprecated.
1.15 ported to teetime
Since:
1.1
  • Nested Class Summary

    Nested classes/interfaces inherited from interface kieker.analysis.plugin.IPlugin

    kieker.analysis.plugin.IPlugin.PluginInputPortReference, kieker.analysis.plugin.IPlugin.STATE
  • Field Summary

    Fields 
    Modifier and Type Field Description
    static java.lang.String CONFIG_PROPERTY_NAME_IGNORE_INVALID_TRACES
    Deprecated.
    This is the name of the property determining whether to ignore invalid traces or not.
    static java.lang.String CONFIG_PROPERTY_NAME_MAX_TRACE_DURATION
    Deprecated.
    This is the name of the property determining the maximal duration of a trace.
    static java.lang.String CONFIG_PROPERTY_NAME_TIMEUNIT
    Deprecated.
    This is the name of the property determining the used time unit.
    static java.lang.String CONFIG_PROPERTY_VALUE_MAX_TRACE_DURATION
    Deprecated.
    This is the default value for the maximal duration of a trace.
    static java.lang.String CONFIG_PROPERTY_VALUE_TIMEUNIT
    Deprecated.
    This is the default used time unit.
    static java.lang.String INPUT_PORT_NAME_EXECUTIONS
    Deprecated.
    This is the name of the input port receiving new executions.
    static java.lang.String OUTPUT_PORT_NAME_EXECUTION_TRACE
    Deprecated.
    This is the name of the output port delivering the reconstructed execution traces.
    static java.lang.String OUTPUT_PORT_NAME_INVALID_EXECUTION_TRACE
    Deprecated.
    This is the name of the output port delivering the reconstructed, but invalid executions traces.
    static java.lang.String OUTPUT_PORT_NAME_MESSAGE_TRACE
    Deprecated.
    This is the name of the output port delivering the reconstructed message traces.

    Fields inherited from class kieker.tools.trace.analysis.filter.AbstractTraceAnalysisFilter

    CONFIG_PROPERTY_VALUE_VERBOSE, LOGGER, REPOSITORY_PORT_NAME_SYSTEM_MODEL

    Fields inherited from class kieker.analysis.analysisComponent.AbstractAnalysisComponent

    CONFIG_NAME, configuration, logger, projectContext, recordsTimeUnitFromProjectContext
  • Constructor Summary

    Constructors 
    Constructor Description
    TraceReconstructionFilter​(kieker.common.configuration.Configuration configuration, kieker.analysis.IProjectContext projectContext)
    Deprecated.
    Creates a new instance of this class using the given parameters.
  • Method Summary

    Modifier and Type Method Description
    kieker.common.configuration.Configuration getCurrentConfiguration()
    Deprecated.
    java.util.Set<java.lang.Long> getInvalidTraces()
    Deprecated.
    Returns a set of the IDs of invalid traces.
    long getMaxTout()
    Deprecated.
    Returns the maximum tout timestamp of a processed execution.
    long getMaxTraceDuration()
    Deprecated.
    Return the number of timeunits after which a pending trace is considered to have timed out.
    long getMinTin()
    Deprecated.
    Returns the minimum tin timestamp of a processed execution.
    boolean init()
    Deprecated.
    void inputExecutions​(Execution execution)
    Deprecated.
    This method represents the input port of this filter.
    void printStatusMessage()
    Deprecated.
    Returns a user-addressed status message to be logged by the calling tool.
    void terminate​(boolean error)
    Deprecated.
    Terminates the filter (internally, all pending traces are processed).

    Methods inherited from class kieker.analysis.plugin.AbstractPlugin

    areAllRepositoryPortsConnected, connect, connect, deliver, getAllDisplayNames, getAllInputPortNames, getAllOutputPortNames, getAllRepositoryPortNames, getConnectedPlugins, getCurrentRepositories, getDefaultConfiguration, getIncomingPlugins, getPluginDescription, getPluginName, getRepository, getState, isConnectionAllowed, notifyNewIncomingConnection, notifyNewOutgoingConnection, shutdown, start

    Methods inherited from class kieker.analysis.analysisComponent.AbstractAnalysisComponent

    getName

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface kieker.analysis.plugin.IPlugin

    connect, getAllDisplayNames, getAllInputPortNames, getAllOutputPortNames, getAllRepositoryPortNames, getConnectedPlugins, getCurrentRepositories, getName, getPluginDescription, getPluginName, getState
  • Field Details

  • Constructor Details

    • TraceReconstructionFilter

      public TraceReconstructionFilter​(kieker.common.configuration.Configuration configuration, kieker.analysis.IProjectContext projectContext)
      Deprecated.
      Creates a new instance of this class using the given parameters.
      Parameters:
      configuration - The configuration for this component.
      projectContext - The project context for this component.
  • Method Details

    • getInvalidTraces

      public java.util.Set<java.lang.Long> getInvalidTraces()
      Deprecated.
      Returns a set of the IDs of invalid traces.
      Returns:
      a set of the IDs of invalid traces
    • getMinTin

      public final long getMinTin()
      Deprecated.
      Returns the minimum tin timestamp of a processed execution.
      Returns:
      the minimum tin timestamp of a processed execution
    • getMaxTout

      public final long getMaxTout()
      Deprecated.
      Returns the maximum tout timestamp of a processed execution.
      Returns:
      the maximum tout timestamp of a processed execution
    • init

      public boolean init()
      Deprecated.
      Specified by:
      init in interface kieker.analysis.plugin.IPlugin
      Overrides:
      init in class kieker.analysis.plugin.filter.AbstractFilterPlugin
    • inputExecutions

      public void inputExecutions​(Execution execution)
      Deprecated.
      This method represents the input port of this filter.
      Parameters:
      execution - The next execution.
    • getMaxTraceDuration

      public final long getMaxTraceDuration()
      Deprecated.
      Return the number of timeunits after which a pending trace is considered to have timed out.
      Returns:
      the timeout duration for a pending trace in timeunits
    • terminate

      public void terminate​(boolean error)
      Deprecated.
      Terminates the filter (internally, all pending traces are processed).
      Specified by:
      terminate in interface kieker.analysis.plugin.IPlugin
      Overrides:
      terminate in class kieker.analysis.plugin.filter.AbstractFilterPlugin
      Parameters:
      error - Determines whether the plugin is terminated due to an error or not.
    • printStatusMessage

      public void printStatusMessage()
      Deprecated.
      Description copied from class: AbstractTraceProcessingFilter
      Returns a user-addressed status message to be logged by the calling tool. Extending classes may override this method but should call the then-inherited method first.
      Overrides:
      printStatusMessage in class AbstractTraceProcessingFilter
    • getCurrentConfiguration

      public kieker.common.configuration.Configuration getCurrentConfiguration()
      Deprecated.
      Specified by:
      getCurrentConfiguration in interface kieker.analysis.analysisComponent.IAnalysisComponent
      Specified by:
      getCurrentConfiguration in interface kieker.analysis.plugin.IPlugin
      Overrides:
      getCurrentConfiguration in class AbstractTraceAnalysisFilter