winIDEA SDK
test_get_area.py
1# This script is licensed under BSD License, see file LICENSE.txt.
2#
3# (c) TASKING Germany GmbH, 2023
4
5import isystem.connect as ic
6import export_profiler_data # see docs section Examples for link to source
7
8
9winidea_id = ''
10
11
12def test_getArea():
13 conn_mgr = ic.ConnectionMgr()
14 conn_mgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
15
16 xml_file_path = export_profiler_data.export_data(conn_mgr)
17 prof_data = ic.CProfilerData2.createInstance(xml_file_path, False)
18
19 area_url = 'Code/main'
20 area = prof_data.getArea(area_url)
21 print(f"Area name (profiled function): {area.getAreaName()}") # -> "main"
22
23 area_url = 'Data/main_loop_counter'
24 area = prof_data.getArea(area_url, 0x6)
25 print(f"State name (state variable): {area.getParentAreaName()}")
26 print(f"State value (state variable): {area.getAreaName()}")
27
28
29if __name__ == "__main__":
30 test_getArea()