Class AbstractGraphFilter<G extends AbstractGraph<V,E,O>,V extends AbstractVertex<V,E,O>,E extends AbstractEdge<V,E,O>,O>
java.lang.Object
kieker.analysis.analysisComponent.AbstractAnalysisComponent
kieker.analysis.plugin.AbstractPlugin
kieker.analysis.plugin.filter.AbstractFilterPlugin
kieker.tools.trace.analysis.filter.visualization.AbstractGraphFilter<G,V,E,O>
- Type Parameters:
G- The graph that is processed by this filterV- The vertex type of the graphE- The edge type of the graphO- The type of the graph's elements origins
- All Implemented Interfaces:
kieker.analysis.analysisComponent.IAnalysisComponent,kieker.analysis.plugin.filter.IFilterPlugin,kieker.analysis.plugin.IPlugin,IGraphOutputtingFilter<G>
- Direct Known Subclasses:
DescriptionDecoratorFilter,TraceColoringFilter
@Deprecated public abstract class AbstractGraphFilter<G extends AbstractGraph<V,E,O>,V extends AbstractVertex<V,E,O>,E extends AbstractEdge<V,E,O>,O> extends kieker.analysis.plugin.filter.AbstractFilterPlugin implements IGraphOutputtingFilter<G>
Deprecated.
1.15 moved to teetime
Abstract superclass for all graph filters.
- Since:
- 1.6
-
Nested Class Summary
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringINPUT_PORT_NAME_GRAPHDeprecated.The name of the filter's graph input port.Fields inherited from class kieker.analysis.analysisComponent.AbstractAnalysisComponent
CONFIG_NAME, logger, projectContext, recordsTimeUnitFromProjectContextFields inherited from interface kieker.tools.trace.analysis.filter.IGraphOutputtingFilter
OUTPUT_PORT_NAME_GRAPH -
Constructor Summary
Constructors Constructor Description AbstractGraphFilter(kieker.common.configuration.Configuration configuration, kieker.analysis.IProjectContext projectContext)Deprecated.Creates a new filter with the given configuration. -
Method Summary
Modifier and Type Method Description kieker.common.configuration.ConfigurationgetCurrentConfiguration()Deprecated.protected abstract IOriginRetentionPolicygetDesiredOriginRetentionPolicy()Deprecated.java.lang.StringgetGraphInputPortName()Deprecated.Returns the name of the port this filter accepts graphs on.java.lang.StringgetGraphOutputPortName()Deprecated.Returns the name of the port this filter uses to emit the graph.booleaninit()Deprecated.protected voidnotifyNewIncomingConnection(java.lang.String inputPortName, kieker.analysis.plugin.AbstractPlugin connectedPlugin, java.lang.String outputPortName)Deprecated.protected abstract GperformConcreteGraphProcessing(G graph)Deprecated.This method encapsulates the concrete graph processing performed by the concrete filters.voidprocessGraph(G graph)Deprecated.Processes the given graph.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, notifyNewOutgoingConnection, shutdown, start
-
Field Details
-
INPUT_PORT_NAME_GRAPH
public static final java.lang.String INPUT_PORT_NAME_GRAPHDeprecated.The name of the filter's graph input port.- See Also:
- Constant Field Values
-
-
Constructor Details
-
AbstractGraphFilter
public AbstractGraphFilter(kieker.common.configuration.Configuration configuration, kieker.analysis.IProjectContext projectContext)Deprecated.Creates a new filter with the given configuration.- Parameters:
configuration- The filter configuration to useprojectContext- The project context to use.
-
-
Method Details
-
notifyNewIncomingConnection
protected void notifyNewIncomingConnection(java.lang.String inputPortName, kieker.analysis.plugin.AbstractPlugin connectedPlugin, java.lang.String outputPortName) throws kieker.analysis.exception.AnalysisConfigurationExceptionDeprecated.- Overrides:
notifyNewIncomingConnectionin classkieker.analysis.plugin.AbstractPlugin- Throws:
kieker.analysis.exception.AnalysisConfigurationException
-
init
public boolean init()Deprecated.- Specified by:
initin interfacekieker.analysis.plugin.IPlugin- Overrides:
initin classkieker.analysis.plugin.filter.AbstractFilterPlugin
-
getDesiredOriginRetentionPolicy
protected abstract IOriginRetentionPolicy getDesiredOriginRetentionPolicy() throws kieker.analysis.exception.AnalysisConfigurationExceptionDeprecated.- Throws:
kieker.analysis.exception.AnalysisConfigurationException
-
getCurrentConfiguration
public kieker.common.configuration.Configuration getCurrentConfiguration()Deprecated.- Specified by:
getCurrentConfigurationin interfacekieker.analysis.analysisComponent.IAnalysisComponent- Specified by:
getCurrentConfigurationin interfacekieker.analysis.plugin.IPlugin- Specified by:
getCurrentConfigurationin classkieker.analysis.analysisComponent.AbstractAnalysisComponent
-
processGraph
Deprecated.Processes the given graph.- Parameters:
graph- The graph to process
-
getGraphOutputPortName
public java.lang.String getGraphOutputPortName()Deprecated.Returns the name of the port this filter uses to emit the graph.- Specified by:
getGraphOutputPortNamein interfaceIGraphOutputtingFilter<G extends AbstractGraph<V,E,O>>- Returns:
- See above
-
getGraphInputPortName
public java.lang.String getGraphInputPortName()Deprecated.Returns the name of the port this filter accepts graphs on.- Returns:
- See above
-
performConcreteGraphProcessing
Deprecated.This method encapsulates the concrete graph processing performed by the concrete filters.- Parameters:
graph- The graph to process- Returns:
- The processed graph, which may be the same as the input graph
-