mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 17:59:46 +02:00

moved generic graph interfaces to features graph module created graph service broker first commit of program graph module adapted to new graph api GT-3317 connected listeners, documented and prettied up code changed GhidraGraph to preserve order of created graph. Removed edge filtering from initial program graph display GT-3317 added exporters for supported formats GT-3317 fixed GhidraGraph bug where it lost edges updates changed to new action builder removed icons, improved AttributeFilters removed DialogComponentProviderBuilder fixed generic alphabet soup added vertex name updating. GT-3317 added threading to sugiyama adapted to take advantage of multi-threaded edge crossing reduction in circle layout eliminated parallel edges, improved sizing, updated jungrapht version GT-3317 fixing AST graph and moving modules and packages started help GT-3317 updated min-cross and color selections uses min-cross that optimizes for graph size GT-3317 help, javadocs changes from review comments and cleaning up warnings and simplifying exporter code fixing warnings, simplifying unnecessarily complicated code more changes from review more changes from review, simplifications. removed unnecessary threading, renamed vertex, edge, etc GT-3317 squashed many commits to make rebase easier. Mostly changes from first code review.
59 lines
1.7 KiB
Java
59 lines
1.7 KiB
Java
/* ###
|
|
* IP: GHIDRA
|
|
*
|
|
* 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.
|
|
*/
|
|
import ghidra.app.script.GhidraScript;
|
|
import ghidra.app.services.GraphDisplayBroker;
|
|
import ghidra.framework.plugintool.PluginTool;
|
|
import ghidra.service.graph.*;
|
|
|
|
/**
|
|
* Example script for creating and displaying a graph in ghidra
|
|
*/
|
|
public class ExampleGraphServiceScript extends GhidraScript {
|
|
private AttributedGraph graph = new AttributedGraph();
|
|
private int nextEdgeID = 1;
|
|
|
|
@Override
|
|
protected void run() throws Exception {
|
|
PluginTool tool = getState().getTool();
|
|
GraphDisplayBroker service = tool.getService(GraphDisplayBroker.class);
|
|
GraphDisplay display = service.getDefaultGraphDisplay(false, monitor);
|
|
generateGraph();
|
|
display.setGraph(graph, "Test", false, monitor);
|
|
}
|
|
|
|
private void generateGraph() {
|
|
|
|
AttributedVertex A = vertex("A");
|
|
AttributedVertex B = vertex("B");
|
|
AttributedVertex C = vertex("C");
|
|
AttributedVertex D = vertex("D");
|
|
|
|
edge(A, B);
|
|
edge(A, C);
|
|
edge(B, D);
|
|
edge(C, D);
|
|
edge(D, A);
|
|
}
|
|
|
|
private AttributedVertex vertex(String name) {
|
|
return graph.addVertex(name, name);
|
|
}
|
|
|
|
private AttributedEdge edge(AttributedVertex v1, AttributedVertex v2) {
|
|
return graph.addEdge(v1, v2);
|
|
}
|
|
|
|
}
|