Search in sources :

Example 1 with ZyGraphViewSettings

use of com.google.security.zynamics.binnavi.ZyGraph.ZyGraphViewSettings in project binnavi by google.

the class CGraphFunctions method showNodes.

/**
 * Shows and hides nodes of a graph in one step.
 *
 * @param parent Parent used for dialogs.
 * @param graph The graph where the nodes are shown and hidden.
 * @param toShow List of nodes to show.
 * @param toHide List of nodes to hide.
 */
public static void showNodes(final JFrame parent, final ZyGraph graph, final Collection<NaviNode> toShow, final Collection<NaviNode> toHide) {
    Preconditions.checkNotNull(graph, "IE02120: Graph argument can not be null");
    Preconditions.checkNotNull(toShow, "IE02121: toShow argument can not be null");
    Preconditions.checkNotNull(toHide, "IE02122: toHide argument can not be null");
    final ZyGraphViewSettings settings = graph.getSettings();
    final Set<NaviNode> neighbours = ProximityRangeCalculator.getNeighbors(graph, toShow, settings.getProximitySettings().getProximityBrowsingChildren(), settings.getProximitySettings().getProximityBrowsingParents());
    neighbours.addAll(toShow);
    final int invisibleNodes = countInvisibleNodes(neighbours);
    if (userCancelsMakingVisible(parent, graph, invisibleNodes)) {
        return;
    }
    graph.showNodes(toShow, toHide);
}
Also used : ZyGraphViewSettings(com.google.security.zynamics.binnavi.ZyGraph.ZyGraphViewSettings) NaviNode(com.google.security.zynamics.binnavi.yfileswrap.zygraph.NaviNode)

Example 2 with ZyGraphViewSettings

use of com.google.security.zynamics.binnavi.ZyGraph.ZyGraphViewSettings in project binnavi by google.

the class CGraphFunctions method showNodes.

/**
 * Shows or hides nodes of a graph in one step.
 *
 * @param parent Parent used for dialogs.
 * @param graph The graph where the nodes are shown or hidden.
 * @param nodes List of nodes to show or hide.
 * @param visible True, to show the nodes. False, to hide the nodes.
 */
public static void showNodes(final Window parent, final ZyGraph graph, final Collection<NaviNode> nodes, final boolean visible) {
    Preconditions.checkNotNull(parent, "IE02123: Parent argument can not be null");
    Preconditions.checkNotNull(graph, "IE02124: Graph argument can not be null");
    Preconditions.checkNotNull(nodes, "IE02125: Nodes argument can not be null");
    if (visible) {
        final ZyGraphViewSettings settings = graph.getSettings();
        final Set<NaviNode> neighbours = ProximityRangeCalculator.getNeighbors(graph, nodes, settings.getProximitySettings().getProximityBrowsingChildren(), settings.getProximitySettings().getProximityBrowsingParents());
        neighbours.addAll(nodes);
        final int invisibleNodes = countInvisibleNodes(neighbours);
        if (userCancelsMakingVisible(parent, graph, invisibleNodes)) {
            return;
        }
    }
    graph.showNodes(nodes, visible);
}
Also used : ZyGraphViewSettings(com.google.security.zynamics.binnavi.ZyGraph.ZyGraphViewSettings) NaviNode(com.google.security.zynamics.binnavi.yfileswrap.zygraph.NaviNode)

Example 3 with ZyGraphViewSettings

use of com.google.security.zynamics.binnavi.ZyGraph.ZyGraphViewSettings in project binnavi by google.

the class CGraphBuilder method buildGraph.

/**
 * Builds a displayable graph from a view.
 *
 * @param view The view to be turned into a graph.
 *
 * @return The generated graph.
 * @throws LoadCancelledException Thrown if loading the graph was canceled.
 */
public static ZyGraph buildGraph(final INaviView view) throws LoadCancelledException {
    Preconditions.checkNotNull(view, "IE01763: View argument can't be null");
    final Pair<Map<String, String>, ZyGraphViewSettings> viewSettings = loadSettings(view);
    final Map<String, String> rawSettings = viewSettings.first();
    final ZyGraphViewSettings graphSettings = viewSettings.second();
    graphSettings.rawSettings = rawSettings;
    final ZyGraphBuilder builder = new ZyGraphBuilder();
    ZyGraphBuilderManager.instance().setBuilder(view, builder);
    final Graph2D graph = builder.convert(view.getGraph().getNodes(), view.getGraph().getEdges(), graphSettings, view.getType() == ViewType.Native);
    final ZyGraph2DView graphView = new ZyGraph2DView(graph);
    final ZyGraph zyGraph = new ZyGraph(view, builder.getNodeMap(), builder.getEdgeMap(), graphSettings, graphView);
    zyGraph.getView().setCenter(CViewSettingsGenerator.createDoubleSetting(rawSettings, "view_center_x", 0), CViewSettingsGenerator.createDoubleSetting(rawSettings, "view_center_y", 0));
    zyGraph.getView().setWorldRect(CViewSettingsGenerator.createIntegerSetting(rawSettings, "world_rect_x", 0), CViewSettingsGenerator.createIntegerSetting(rawSettings, "world_rect_y", 0), CViewSettingsGenerator.createIntegerSetting(rawSettings, "world_rect_width", 800), CViewSettingsGenerator.createIntegerSetting(rawSettings, "world_rect_height", 600));
    zyGraph.getView().setZoom(CViewSettingsGenerator.createDoubleSetting(rawSettings, "zoom", 1));
    ZyGraphBuilderManager.instance().removeBuilder(view);
    return zyGraph;
}
Also used : ZyGraphBuilder(com.google.security.zynamics.binnavi.yfileswrap.zygraph.Builders.ZyGraphBuilder) ZyGraphViewSettings(com.google.security.zynamics.binnavi.ZyGraph.ZyGraphViewSettings) ZyGraph(com.google.security.zynamics.binnavi.yfileswrap.zygraph.ZyGraph) ZyGraph2DView(com.google.security.zynamics.zylib.yfileswrap.gui.zygraph.ZyGraph2DView) HashMap(java.util.HashMap) Map(java.util.Map) Graph2D(y.view.Graph2D)

Example 4 with ZyGraphViewSettings

use of com.google.security.zynamics.binnavi.ZyGraph.ZyGraphViewSettings in project binnavi by google.

the class CSettingsDialogFunctions method showFlowgraphSettingsDialog.

/**
 * Shows the initial flow graph settings dialog.
 *
 * @param parent Parent window used for dialogs.
 */
public static void showFlowgraphSettingsDialog(final JFrame parent) {
    final ZyGraphViewSettings settings = ConfigManager.instance().getDefaultFlowGraphSettings();
    final CGraphSettingsDialog dlg = new CGraphSettingsDialog(parent, "Initial Flow graph Settings", settings, true, false);
    dlg.setVisible(true);
    ConfigManager.instance().updateFlowgraphSettings(settings);
    ConfigManager.instance().saveSettings(parent);
}
Also used : ZyGraphViewSettings(com.google.security.zynamics.binnavi.ZyGraph.ZyGraphViewSettings) CGraphSettingsDialog(com.google.security.zynamics.binnavi.Gui.GraphSettings.CGraphSettingsDialog)

Example 5 with ZyGraphViewSettings

use of com.google.security.zynamics.binnavi.ZyGraph.ZyGraphViewSettings in project binnavi by google.

the class View2DTest method setUp.

@Before
public void setUp() throws CouldntLoadDataException, LoadCancelledException, FileReadException {
    ConfigManager.instance().read();
    final MockDatabase database = new MockDatabase();
    final CModule module = new CModule(1, "", "", new Date(), new Date(), "00000000000000000000000000000000", "0000000000000000000000000000000000000000", 0, 0, new CAddress(0), new CAddress(0), null, null, Integer.MAX_VALUE, false, new MockSqlProvider());
    database.getContent().addModule(module);
    manager.addDatabase(database);
    module.load();
    m_view = module.getContent().getViewContainer().createView("name", "description");
    final ZyGraphViewSettings settings = new ZyGraphViewSettings(new CallGraphSettingsConfigItem());
    settings.getLayoutSettings().setDefaultGraphLayout(LayoutStyle.CIRCULAR);
    final ZyGraph2DView g2dView = new ZyGraph2DView();
    final LinkedHashMap<Node, NaviNode> nodeMap = new LinkedHashMap<Node, NaviNode>();
    final LinkedHashMap<Edge, NaviEdge> edgeMap = new LinkedHashMap<Edge, NaviEdge>();
    final Node node1 = g2dView.getGraph2D().createNode();
    final CTextNode rawNode1 = m_view.getContent().createTextNode(Lists.<IComment>newArrayList(new CComment(null, CommonTestObjects.TEST_USER_1, null, " TEXT NODE ")));
    nodeMap.put(node1, new NaviNode(node1, new ZyNormalNodeRealizer<NaviNode>(new ZyLabelContent(null)), rawNode1));
    final Node node2 = g2dView.getGraph2D().createNode();
    final CTextNode rawNode2 = m_view.getContent().createTextNode(Lists.<IComment>newArrayList(new CComment(null, CommonTestObjects.TEST_USER_1, null, " TEXT COMMENT ")));
    nodeMap.put(node2, new NaviNode(node2, new ZyNormalNodeRealizer<NaviNode>(new ZyLabelContent(null)), rawNode2));
    final Edge edge = g2dView.getGraph2D().createEdge(node1, node2);
    final INaviEdge rawEdge = m_view.getContent().createEdge(rawNode1, rawNode2, com.google.security.zynamics.zylib.gui.zygraph.edges.EdgeType.JUMP_CONDITIONAL_FALSE);
    edgeMap.put(edge, new NaviEdge(nodeMap.get(node1), nodeMap.get(node2), edge, new ZyEdgeRealizer<NaviEdge>(new ZyLabelContent(null), null), rawEdge));
    final ZyGraph graph = new ZyGraph(m_view, nodeMap, edgeMap, settings, g2dView);
    m_view2d = new View2D(database, new CModuleContainer(database, module), graph, pluginInterface);
}
Also used : ZyGraphViewSettings(com.google.security.zynamics.binnavi.ZyGraph.ZyGraphViewSettings) CallGraphSettingsConfigItem(com.google.security.zynamics.binnavi.config.CallGraphSettingsConfigItem) ZyGraph(com.google.security.zynamics.binnavi.yfileswrap.zygraph.ZyGraph) CTextNode(com.google.security.zynamics.binnavi.disassembly.CTextNode) Node(y.base.Node) NaviNode(com.google.security.zynamics.binnavi.yfileswrap.zygraph.NaviNode) NaviNode(com.google.security.zynamics.binnavi.yfileswrap.zygraph.NaviNode) INaviEdge(com.google.security.zynamics.binnavi.disassembly.INaviEdge) CModuleContainer(com.google.security.zynamics.binnavi.disassembly.Modules.CModuleContainer) Date(java.util.Date) CAddress(com.google.security.zynamics.zylib.disassembly.CAddress) LinkedHashMap(java.util.LinkedHashMap) View2D(com.google.security.zynamics.binnavi.yfileswrap.API.disassembly.View2D) CComment(com.google.security.zynamics.binnavi.Gui.GraphWindows.CommentDialogs.CComment) ZyEdgeRealizer(com.google.security.zynamics.zylib.yfileswrap.gui.zygraph.realizers.ZyEdgeRealizer) ZyLabelContent(com.google.security.zynamics.zylib.gui.zygraph.realizers.ZyLabelContent) MockSqlProvider(com.google.security.zynamics.binnavi.Database.MockClasses.MockSqlProvider) ZyNormalNodeRealizer(com.google.security.zynamics.zylib.yfileswrap.gui.zygraph.realizers.ZyNormalNodeRealizer) MockDatabase(com.google.security.zynamics.binnavi.Database.MockClasses.MockDatabase) ZyGraph2DView(com.google.security.zynamics.zylib.yfileswrap.gui.zygraph.ZyGraph2DView) CTextNode(com.google.security.zynamics.binnavi.disassembly.CTextNode) CModule(com.google.security.zynamics.binnavi.disassembly.Modules.CModule) NaviEdge(com.google.security.zynamics.binnavi.yfileswrap.zygraph.NaviEdge) Edge(y.base.Edge) INaviEdge(com.google.security.zynamics.binnavi.disassembly.INaviEdge) NaviEdge(com.google.security.zynamics.binnavi.yfileswrap.zygraph.NaviEdge) INaviEdge(com.google.security.zynamics.binnavi.disassembly.INaviEdge) Before(org.junit.Before)

Aggregations

ZyGraphViewSettings (com.google.security.zynamics.binnavi.ZyGraph.ZyGraphViewSettings)13 NaviNode (com.google.security.zynamics.binnavi.yfileswrap.zygraph.NaviNode)4 ZyGraph (com.google.security.zynamics.binnavi.yfileswrap.zygraph.ZyGraph)3 ZyGraph2DView (com.google.security.zynamics.zylib.yfileswrap.gui.zygraph.ZyGraph2DView)3 MockSqlProvider (com.google.security.zynamics.binnavi.Database.MockClasses.MockSqlProvider)2 CGraphSettingsDialog (com.google.security.zynamics.binnavi.Gui.GraphSettings.CGraphSettingsDialog)2 CDefaultModifier (com.google.security.zynamics.binnavi.ZyGraph.Builders.Modifiers.CDefaultModifier)2 CallGraphSettingsConfigItem (com.google.security.zynamics.binnavi.config.CallGraphSettingsConfigItem)2 DebuggerProvider (com.google.security.zynamics.binnavi.debug.debugger.DebuggerProvider)2 ModuleTargetSettings (com.google.security.zynamics.binnavi.debug.debugger.ModuleTargetSettings)2 NaviEdge (com.google.security.zynamics.binnavi.yfileswrap.zygraph.NaviEdge)2 CAddress (com.google.security.zynamics.zylib.disassembly.CAddress)2 Pair (com.google.security.zynamics.zylib.general.Pair)2 Edge (y.base.Edge)2 Node (y.base.Node)2 CDatabase (com.google.security.zynamics.binnavi.Database.CDatabase)1 MockDatabase (com.google.security.zynamics.binnavi.Database.MockClasses.MockDatabase)1 MockDebugger (com.google.security.zynamics.binnavi.Debug.Debugger.MockDebugger)1 CComment (com.google.security.zynamics.binnavi.Gui.GraphWindows.CommentDialogs.CComment)1 INodeModifier (com.google.security.zynamics.binnavi.ZyGraph.Builders.Modifiers.INodeModifier)1