net.automatalib.visualization.dot.GraphVizSwingVisualizationProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of automata-dot-visualizer Show documentation
Show all versions of automata-dot-visualizer Show documentation
This artifact contains a visualization implementation for the GraphVIZ DOT (http://www.graphviz.org/) tool.
The newest version!
/* Copyright (C) 2013-2023 TU Dortmund
* This file is part of AutomataLib, http://www.automatalib.net/.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.automatalib.visualization.dot;
import java.io.IOException;
import java.util.List;
import java.util.Map;
import javax.swing.JOptionPane;
import net.automatalib.graph.Graph;
import net.automatalib.serialization.dot.GraphDOT;
import net.automatalib.visualization.VisualizationHelper;
import net.automatalib.visualization.VisualizationProvider;
import org.kohsuke.MetaInfServices;
@MetaInfServices(VisualizationProvider.class)
public class GraphVizSwingVisualizationProvider implements VisualizationProvider {
/**
* the {@link #getId() id} of this {@link VisualizationProvider}.
*/
public static final String ID = "graphviz-swing";
private static final int PRIORITY = 11;
@Override
public String getId() {
return ID;
}
@Override
public int getPriority() {
return PRIORITY;
}
@Override
public boolean checkUsable() {
return DOT.checkUsable();
}
@Override
public void visualize(Graph graph,
List> additionalHelpers,
boolean modal,
Map visOptions) {
try {
final StringBuilder sb = new StringBuilder();
GraphDOT.write(graph, sb, additionalHelpers);
DOT.renderDOT(sb.toString(), modal);
} catch (IOException ex) {
JOptionPane.showMessageDialog(null,
"Error rendering graph: " + ex.getMessage(),
"Error rendering graph",
JOptionPane.ERROR_MESSAGE);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy