aboutsummaryrefslogtreecommitdiffstats
path: root/experiments/graph_shot.py
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--experiments/graph_shot.py39
1 files changed, 27 insertions, 12 deletions
diff --git a/experiments/graph_shot.py b/experiments/graph_shot.py
index 5f0d45a..e3eb209 100644
--- a/experiments/graph_shot.py
+++ b/experiments/graph_shot.py
@@ -1,11 +1,12 @@
"""Render the graph view headless at a chosen size and print it.
- ~/ida-venv/bin/python experiments/graph_shot.py [func] [cols] [rows] [zoom]
+ ~/ida-venv/bin/python experiments/graph_shot.py [func] [cols] [rows] [zoom] [engine]
The pane a person runs this in is usually too small to judge the layout, and the
pilot lays out synchronously at whatever size you ask for -- so this is the way
to actually look at the thing.
"""
+
import asyncio
import os
import shutil
@@ -19,6 +20,7 @@ func = sys.argv[1] if len(sys.argv) > 1 else "sub_2297"
cols = int(sys.argv[2]) if len(sys.argv) > 2 else 170
rows = int(sys.argv[3]) if len(sys.argv) > 3 else 55
zoom = int(sys.argv[4]) if len(sys.argv) > 4 else 0
+engine = sys.argv[5] if len(sys.argv) > 5 else None
src, tmp = f"{REPO}/targets/echo", "/tmp/echo_shot"
shutil.copy(src, tmp)
@@ -28,26 +30,33 @@ for e in ".i64 .id0 .id1 .id2 .nam .til".split():
except OSError:
pass
-from idatui.app import IdaTui, GraphView # noqa: E402
-from idatui._sync import wait_for # noqa: E402
-from idatui.rpc import screen_text # noqa: E402
+from idatui._sync import wait_for # noqa: E402
+from idatui.app import GraphView, IdaTui # noqa: E402
+from idatui.rpc import screen_text # noqa: E402
async def main() -> None:
app = IdaTui(tmp, keepalive=False)
async with app.run_test(size=(cols, rows)) as pilot:
- await wait_for(lambda: app.program is not None and app._cur is not None,
- pilot.pause, 120)
+ await wait_for(
+ lambda: app.program is not None and app._cur is not None, pilot.pause, 120
+ )
ea = app.program.resolve(func)
fn = app.program.function_of(ea)
app._open_function(fn.addr, fn.name)
- await wait_for(lambda: app._cur is not None and app._cur.ea == fn.addr,
- pilot.pause, 60)
+ await wait_for(
+ lambda: app._cur is not None and app._cur.ea == fn.addr, pilot.pause, 60
+ )
await pilot.pause(0.2)
await pilot.press("space")
gv = app.query_one(GraphView)
- ok = await wait_for(lambda: app._active == "graph" and gv.lay is not None,
- pilot.pause, 90)
+ if engine:
+ gv._engine = engine
+ gv._relayout()
+ app._graph_status()
+ ok = await wait_for(
+ lambda: app._active == "graph" and gv.lay is not None, pilot.pause, 90
+ )
if not ok:
print("graph never opened:", app.query_one("#status").render())
return
@@ -58,8 +67,14 @@ async def main() -> None:
print(screen_text(app)["text"])
print()
print("status:", app.query_one("#status").render())
- print("stats :", gv.lay.stats, "canvas",
- f"{gv.lay.width}x{gv.lay.height}", "zoom", gv.ZOOMS[gv._zoom])
+ print(
+ "stats :",
+ gv.lay.stats,
+ "canvas",
+ f"{gv.lay.width}x{gv.lay.height}",
+ "zoom",
+ gv.ZOOMS[gv._zoom],
+ )
app._save_on_exit = False