Class GraphWriterPlugin
java.lang.Object
kieker.analysis.analysisComponent.AbstractAnalysisComponent
kieker.analysis.plugin.AbstractPlugin
kieker.analysis.plugin.filter.AbstractFilterPlugin
kieker.tools.trace.analysis.filter.visualization.GraphWriterPlugin
- All Implemented Interfaces:
IAnalysisComponent,IFilterPlugin,IPlugin
Deprecated.
1.15 ported to teetime
Generic graph writer plugin to generate graph specifications and save them to disk. This plugin uses
a formatter registry (see
FORMATTER_REGISTRY) to determine the appropriate formatter for a
given graph.- Since:
- 1.6
- Author:
- Holger Knoche
-
Nested Class Summary
Nested classes/interfaces inherited from interface kieker.analysis.plugin.IPlugin
IPlugin.PluginInputPortReference, IPlugin.STATE -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringDeprecated.Name of the configuration property indicating that weights should be included.static final StringDeprecated.Name of the configuration property containing the output file name.static final StringDeprecated.Name of the configuration property containing the output path name.static final StringDeprecated.Name of the configuration property indicating that self-loops should be displayed.static final StringDeprecated.Name of the configuration property indicating that short labels should be used.static final StringDeprecated.Name of the plugin's graph input port.Fields inherited from class kieker.analysis.analysisComponent.AbstractAnalysisComponent
CONFIG_NAME, configuration, logger, projectContext, recordsTimeUnitFromProjectContext -
Constructor Summary
ConstructorsConstructorDescriptionGraphWriterPlugin(Configuration configuration, IProjectContext projectContext) Deprecated.Creates a new instance of this class using the given parameters. -
Method Summary
Modifier and TypeMethodDescriptionDeprecated.This method should deliver aConfigurationobject containing the current configuration of this instance.voidwriteGraph(AbstractGraph<?, ?, ?> graph) Deprecated.Formats a given graph and saves the generated specification to disk.Methods inherited from class kieker.analysis.plugin.filter.AbstractFilterPlugin
init, terminateMethods 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, startMethods inherited from class kieker.analysis.analysisComponent.AbstractAnalysisComponent
getNameMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface kieker.analysis.plugin.IPlugin
connect, getAllDisplayNames, getAllInputPortNames, getAllOutputPortNames, getAllRepositoryPortNames, getConnectedPlugins, getCurrentRepositories, getName, getPluginDescription, getPluginName, getState
-
Field Details
-
CONFIG_PROPERTY_NAME_OUTPUT_FILE_NAME
Deprecated.Name of the configuration property containing the output file name.- See Also:
-
CONFIG_PROPERTY_NAME_OUTPUT_PATH_NAME
Deprecated.Name of the configuration property containing the output path name.- See Also:
-
CONFIG_PROPERTY_NAME_INCLUDE_WEIGHTS
Deprecated.Name of the configuration property indicating that weights should be included.- See Also:
-
CONFIG_PROPERTY_NAME_SHORTLABELS
Deprecated.Name of the configuration property indicating that short labels should be used.- See Also:
-
CONFIG_PROPERTY_NAME_SELFLOOPS
Deprecated.Name of the configuration property indicating that self-loops should be displayed.- See Also:
-
INPUT_PORT_NAME_GRAPHS
Deprecated.Name of the plugin's graph input port.- See Also:
-
-
Constructor Details
-
GraphWriterPlugin
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
-
getCurrentConfiguration
Deprecated.This method should deliver aConfigurationobject containing the current configuration of this instance. In other words: The constructor should be able to use the given object to initialize a new instance of this class with the same intern properties.- Specified by:
getCurrentConfigurationin interfaceIAnalysisComponent- Specified by:
getCurrentConfigurationin interfaceIPlugin- Specified by:
getCurrentConfigurationin classAbstractAnalysisComponent- Returns:
- A completely filled configuration object.
-
writeGraph
Deprecated.Formats a given graph and saves the generated specification to disk. The file name to save the output to is specified by a the configuration optionsCONFIG_PROPERTY_NAME_OUTPUT_PATH_NAMEandCONFIG_PROPERTY_NAME_OUTPUT_FILE_NAME.- Parameters:
graph- The graph to save
-