py_canoe 3.0.3__py3-none-any.whl → 26.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- py_canoe/__init__.py +2 -1
- py_canoe/canoe.py +910 -0
- py_canoe/core/__init__.py +0 -0
- py_canoe/core/application.py +170 -0
- py_canoe/core/bus.py +301 -0
- py_canoe/core/capl.py +59 -0
- py_canoe/core/child_elements/__init__.py +0 -0
- py_canoe/core/child_elements/application_model.py +24 -0
- py_canoe/core/child_elements/application_model_file.py +21 -0
- py_canoe/core/child_elements/application_model_files.py +22 -0
- py_canoe/core/child_elements/application_model_setup.py +15 -0
- py_canoe/core/child_elements/application_models.py +22 -0
- py_canoe/core/child_elements/application_socket.py +11 -0
- py_canoe/core/child_elements/application_specific_module.py +24 -0
- py_canoe/core/child_elements/application_specific_modules.py +16 -0
- py_canoe/core/child_elements/audio_interface.py +28 -0
- py_canoe/core/child_elements/available_modules.py +22 -0
- py_canoe/core/child_elements/basic_module.py +19 -0
- py_canoe/core/child_elements/basic_modules.py +16 -0
- py_canoe/core/child_elements/c_libraries.py +28 -0
- py_canoe/core/child_elements/c_library.py +33 -0
- py_canoe/core/child_elements/can_controller.py +74 -0
- py_canoe/core/child_elements/capl_function.py +17 -0
- py_canoe/core/child_elements/ccp_setup.py +15 -0
- py_canoe/core/child_elements/channel.py +20 -0
- py_canoe/core/child_elements/channels.py +19 -0
- py_canoe/core/child_elements/communication_setup.py +23 -0
- py_canoe/core/child_elements/compile_result.py +22 -0
- py_canoe/core/child_elements/configured_channel.py +48 -0
- py_canoe/core/child_elements/configured_channels.py +21 -0
- py_canoe/core/child_elements/configured_module.py +82 -0
- py_canoe/core/child_elements/configured_modules.py +61 -0
- py_canoe/core/child_elements/connected_modules.py +14 -0
- py_canoe/core/child_elements/data_source.py +42 -0
- py_canoe/core/child_elements/data_source_file.py +21 -0
- py_canoe/core/child_elements/data_source_files.py +22 -0
- py_canoe/core/child_elements/data_source_issue.py +22 -0
- py_canoe/core/child_elements/data_source_issues.py +16 -0
- py_canoe/core/child_elements/data_source_setup.py +17 -0
- py_canoe/core/child_elements/data_sources.py +27 -0
- py_canoe/core/child_elements/database_setup.py +62 -0
- py_canoe/core/child_elements/device.py +34 -0
- py_canoe/core/child_elements/devices.py +13 -0
- py_canoe/core/child_elements/diagnostic.py +22 -0
- py_canoe/core/child_elements/diagnostic_request.py +59 -0
- py_canoe/core/child_elements/diagnostic_response.py +34 -0
- py_canoe/core/child_elements/diagnostic_responses.py +13 -0
- py_canoe/core/child_elements/diagnostics_setup.py +254 -0
- py_canoe/core/child_elements/distributed_mode.py +74 -0
- py_canoe/core/child_elements/encoding.py +27 -0
- py_canoe/core/child_elements/encodings.py +13 -0
- py_canoe/core/child_elements/environment_array.py +13 -0
- py_canoe/core/child_elements/environment_group.py +22 -0
- py_canoe/core/child_elements/environment_info.py +14 -0
- py_canoe/core/child_elements/environment_variable.py +55 -0
- py_canoe/core/child_elements/fdx_files.py +50 -0
- py_canoe/core/child_elements/file_group_data_source.py +17 -0
- py_canoe/core/child_elements/general_setup.py +66 -0
- py_canoe/core/child_elements/macros_setup.py +52 -0
- py_canoe/core/child_elements/mc_ecus.py +428 -0
- py_canoe/core/child_elements/measurement_setup.py +269 -0
- py_canoe/core/child_elements/modules.py +87 -0
- py_canoe/core/child_elements/most_disassembler.py +21 -0
- py_canoe/core/child_elements/most_network_interface.py +4 -0
- py_canoe/core/child_elements/namespace.py +21 -0
- py_canoe/core/child_elements/namespaces.py +19 -0
- py_canoe/core/child_elements/network.py +18 -0
- py_canoe/core/child_elements/network_adapters.py +13 -0
- py_canoe/core/child_elements/nodes.py +119 -0
- py_canoe/core/child_elements/open_configuration_result.py +0 -0
- py_canoe/core/child_elements/panel_setup.py +97 -0
- py_canoe/core/child_elements/participant.py +17 -0
- py_canoe/core/child_elements/participants.py +22 -0
- py_canoe/core/child_elements/ports.py +81 -0
- py_canoe/core/child_elements/replay_collection.py +56 -0
- py_canoe/core/child_elements/security_configuration.py +20 -0
- py_canoe/core/child_elements/security_setup.py +31 -0
- py_canoe/core/child_elements/signals.py +39 -0
- py_canoe/core/child_elements/simulation_setup.py +0 -0
- py_canoe/core/child_elements/single_file_data_source.py +13 -0
- py_canoe/core/child_elements/snippet_setup.py +68 -0
- py_canoe/core/child_elements/standalone_mode.py +0 -0
- py_canoe/core/child_elements/start_value_list.py +0 -0
- py_canoe/core/child_elements/symbol_mappings.py +0 -0
- py_canoe/core/child_elements/tcp_ip_stack_setting.py +0 -0
- py_canoe/core/child_elements/test_configurations.py +0 -0
- py_canoe/core/child_elements/test_environment.py +64 -0
- py_canoe/core/child_elements/test_environments.py +26 -0
- py_canoe/core/child_elements/test_module.py +213 -0
- py_canoe/core/child_elements/test_modules.py +23 -0
- py_canoe/core/child_elements/test_setup.py +16 -0
- py_canoe/core/child_elements/test_setup_folder_ext.py +36 -0
- py_canoe/core/child_elements/test_setup_folders.py +25 -0
- py_canoe/core/child_elements/user_files.py +0 -0
- py_canoe/core/child_elements/variable.py +144 -0
- py_canoe/core/child_elements/variable_events.py +14 -0
- py_canoe/core/child_elements/variables.py +29 -0
- py_canoe/core/child_elements/variables_file.py +15 -0
- py_canoe/core/child_elements/variables_files.py +19 -0
- py_canoe/core/child_elements/visual_sequence_setup.py +46 -0
- py_canoe/core/child_elements/vt_system.py +83 -0
- py_canoe/core/child_elements/vtt_sut_import_result.py +21 -0
- py_canoe/core/child_elements/write.py +71 -0
- py_canoe/core/child_elements/xcp_setup.py +12 -0
- py_canoe/core/configuration.py +509 -0
- py_canoe/core/environment.py +59 -0
- py_canoe/core/measurement.py +149 -0
- py_canoe/core/networks.py +103 -0
- py_canoe/core/performance.py +21 -0
- py_canoe/core/simulation.py +53 -0
- py_canoe/core/system.py +164 -0
- py_canoe/core/ui.py +53 -0
- py_canoe/core/version.py +54 -0
- py_canoe/helpers/__init__.py +0 -0
- py_canoe/helpers/common.py +78 -0
- {py_canoe-3.0.3.dist-info → py_canoe-26.0.0.dist-info}/METADATA +331 -327
- py_canoe-26.0.0.dist-info/RECORD +118 -0
- py_canoe-26.0.0.dist-info/WHEEL +4 -0
- py_canoe/logging_collection.py +0 -345
- py_canoe/py_canoe.py +0 -2586
- py_canoe/py_canoe_logger.py +0 -29
- py_canoe-3.0.3.dist-info/LICENSE +0 -21
- py_canoe-3.0.3.dist-info/RECORD +0 -8
- py_canoe-3.0.3.dist-info/WHEEL +0 -4
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
py_canoe/__init__.py,sha256=V5fQWgu7TtGUskHnl99xdi26u1Ga95TjAop3vwJozB8,74
|
|
2
|
+
py_canoe/canoe.py,sha256=gV8oaCGCDoUEOn3xusDvARfdZxcUpKqkQXOa0z1QiGo,35825
|
|
3
|
+
py_canoe/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
py_canoe/core/application.py,sha256=Iny6my76_025ugoyUxpoYtzDvTTvqas72UpN0xPw4GM,7068
|
|
5
|
+
py_canoe/core/bus.py,sha256=HZwnMXdpOKmgGkRXBXDodFvGPUTstypbb9M1f-fD1Ho,14293
|
|
6
|
+
py_canoe/core/capl.py,sha256=3Km8nVtCPF8X1U6z0QiRBma2D4AUgabp2V9jfmI4wSU,2482
|
|
7
|
+
py_canoe/core/child_elements/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
8
|
+
py_canoe/core/child_elements/application_model.py,sha256=49rOuC2xv2B6mi5hJliXEMbj1x6AKlvBZEYNfI8ZIFs,758
|
|
9
|
+
py_canoe/core/child_elements/application_model_file.py,sha256=p-vFLuRSaJJmOpwQIrpBuUPOujWSxhT2_qkhcrJgyxM,500
|
|
10
|
+
py_canoe/core/child_elements/application_model_files.py,sha256=Z0OwKq2lm7PsAXri37t9W_-59kZttKfTYDygddqPnkw,708
|
|
11
|
+
py_canoe/core/child_elements/application_model_setup.py,sha256=Bd3fEAoYcziFk5R5em1iFzDnGJ_SuSlrLN8YCATSt9M,446
|
|
12
|
+
py_canoe/core/child_elements/application_models.py,sha256=7dAg8AeSXP-coEpQqlr7Krhw8SDvMeH_d8WS5Vqy0sU,657
|
|
13
|
+
py_canoe/core/child_elements/application_socket.py,sha256=GwXVFuxxlfrgbIh-i0dy4u4oFgV05-0rZn3S4XpUQKc,306
|
|
14
|
+
py_canoe/core/child_elements/application_specific_module.py,sha256=0ArCQhoK9lz2QMZYw-xacubMfA3TTS6oIUQ-O9H0rEc,767
|
|
15
|
+
py_canoe/core/child_elements/application_specific_modules.py,sha256=cz9CeaoV_Qdk4O6qffr3JpJfhJl4XCe-R0TQRmu0RF0,599
|
|
16
|
+
py_canoe/core/child_elements/audio_interface.py,sha256=Fykduiu8-JyxZm_7uxARP-yoOXwbPWKDPp_hrCm5Uq0,1052
|
|
17
|
+
py_canoe/core/child_elements/available_modules.py,sha256=HgAAp4IBSeObHsOBNc53PZHaPs9Fg6UrcmM1xaqe0fk,911
|
|
18
|
+
py_canoe/core/child_elements/basic_module.py,sha256=GcBA2FxQSz4kKKiJN77-AQTGnug6NnowqSlb0RMrVs8,512
|
|
19
|
+
py_canoe/core/child_elements/basic_modules.py,sha256=J5PfyQdR6zT8wmuLPOtkTKrdh_aNRembkwaX9mpOKZA,499
|
|
20
|
+
py_canoe/core/child_elements/c_libraries.py,sha256=kwOsJkscZwiYQWInZSu9Lub9Tr5aMe8Gi7WH6jX0wgU,1016
|
|
21
|
+
py_canoe/core/child_elements/c_library.py,sha256=Ds0k8TvGgRyvPe7-1gzsMXdWaxJliYPRFGnX5nsrl2E,910
|
|
22
|
+
py_canoe/core/child_elements/can_controller.py,sha256=Bm2GcwLExzWuNDCk2lFT3i82hlvYqxko2LRoOQRoUGM,2217
|
|
23
|
+
py_canoe/core/child_elements/capl_function.py,sha256=QcttWcK6HAZTbeUFHgFT5-Ip9DzQBbzLa8fNUoruZmk,464
|
|
24
|
+
py_canoe/core/child_elements/ccp_setup.py,sha256=iLs2FAQp-TrTDPAbL0TbHOlXJF_lIlHpZt3bkuq-ZUA,379
|
|
25
|
+
py_canoe/core/child_elements/channel.py,sha256=AYQ7tJV1m22VpS3r8b7pAF3ojvlDKVp2aYvnVsTQ7_U,514
|
|
26
|
+
py_canoe/core/child_elements/channels.py,sha256=4xhfkIrLaVs0bX16yDyPIlWAa3tI_V8844PgJF-2tik,533
|
|
27
|
+
py_canoe/core/child_elements/communication_setup.py,sha256=F4BiJzgOhK32Kr0QmyG7HTgUNrk1GXWFc32_giHLc2Y,929
|
|
28
|
+
py_canoe/core/child_elements/compile_result.py,sha256=JVEp4prBN-QxdVL_xLRHPYKVg2CWtwbXMomHNB5ecqc,582
|
|
29
|
+
py_canoe/core/child_elements/configured_channel.py,sha256=dHobveeu0V0XsApTeXDjttKLO1CMVUxmNezap044OrI,1219
|
|
30
|
+
py_canoe/core/child_elements/configured_channels.py,sha256=NSSSepqvGb0bjqPSGkaBSPMCncGNp0wHsqte1ZYPvNA,699
|
|
31
|
+
py_canoe/core/child_elements/configured_module.py,sha256=rdb1Vf57Y2Z-s8tSzz0bm9xuXtSGL0nrT_nns23pH2Y,1917
|
|
32
|
+
py_canoe/core/child_elements/configured_modules.py,sha256=Fem-LWgLJLCMt5vKM57Cuw6hYfyn86iZcOYFtbiTTBM,2008
|
|
33
|
+
py_canoe/core/child_elements/connected_modules.py,sha256=rZ6G3sttK7ONTSWuukoMYSdTbMcLxgRjXQz1ZXohukM,478
|
|
34
|
+
py_canoe/core/child_elements/data_source.py,sha256=Tux3psrNUQpgAhqK8GXp7BFzlWyeVXd86EzHmzU1wes,1158
|
|
35
|
+
py_canoe/core/child_elements/data_source_file.py,sha256=S4hubCCt-WrkDhxFUZz-vEsYetXUIz4bgiOfP9nBa4E,496
|
|
36
|
+
py_canoe/core/child_elements/data_source_files.py,sha256=QjdM8-dTfKiqBEyyrOJLeER0IceAzCXa7AJ7HE6UKXE,682
|
|
37
|
+
py_canoe/core/child_elements/data_source_issue.py,sha256=n0yRCLTdyydI5GKI9Wa0S8eUxSpns5V0iY2deKvNmPM,598
|
|
38
|
+
py_canoe/core/child_elements/data_source_issues.py,sha256=_aPpxWcGuORedrymoV7alaClamFq6pWlJK-Hp-ja124,482
|
|
39
|
+
py_canoe/core/child_elements/data_source_setup.py,sha256=NdT8PcluQuxiZxqjNirBaFh634g6dK0FB9QCufmn7cs,582
|
|
40
|
+
py_canoe/core/child_elements/data_sources.py,sha256=DZOCEjvC_jKzy2g71Wdtn-kyLB6K1IafntkUFM4Pzzo,1013
|
|
41
|
+
py_canoe/core/child_elements/database_setup.py,sha256=cspIojoCIIFhHMRnF9XszLDQHMXvzHXDrcnNRD2XhD8,1750
|
|
42
|
+
py_canoe/core/child_elements/device.py,sha256=RPQrbidk74WTuKHCrOOLxLOmqWJwfAs-PlFcryX-M0o,1215
|
|
43
|
+
py_canoe/core/child_elements/devices.py,sha256=UH5uupLcOXYAxd71W2e2mQFCr3Q6hsH6E3NuDE53rzM,334
|
|
44
|
+
py_canoe/core/child_elements/diagnostic.py,sha256=CTOju5L6hHpCkOvRFfgEGaGBog58mWgi8bnp2O5hxT8,807
|
|
45
|
+
py_canoe/core/child_elements/diagnostic_request.py,sha256=w0luOjV4CTBQbtyCW5rQN6-L9-qotDo-PyAsO2XzUfk,1937
|
|
46
|
+
py_canoe/core/child_elements/diagnostic_response.py,sha256=q81TmJ-4ij5Ji1cxaXPEvXIMyf17ypXrfPSfutoxaKA,1152
|
|
47
|
+
py_canoe/core/child_elements/diagnostic_responses.py,sha256=fuABb5edi1srZ-yK_A3FIskmNPmIaykSwIZaNHcL5Dg,395
|
|
48
|
+
py_canoe/core/child_elements/diagnostics_setup.py,sha256=6saszuSI24hHg6QMYVSDYg0E4rjCo5Veyds1zfPjfIw,7298
|
|
49
|
+
py_canoe/core/child_elements/distributed_mode.py,sha256=0NMfKy4cqF0-hydHyo7hAOOUa0b56k4KcHy_5b_VCDo,2216
|
|
50
|
+
py_canoe/core/child_elements/encoding.py,sha256=To8T8A0T9Ib-NmxiCrslOChBv8jw-sSVqWFsjPSu1mM,618
|
|
51
|
+
py_canoe/core/child_elements/encodings.py,sha256=60U8WhA_Uj9Zf5eAllVIoBVz2soQvRjRoYt0oL9H0Ec,335
|
|
52
|
+
py_canoe/core/child_elements/environment_array.py,sha256=JtkVTouViNnxXFhb1zG5dvWOcbfUpyj3AryE-2DQJMw,394
|
|
53
|
+
py_canoe/core/child_elements/environment_group.py,sha256=xpnLzGuWu7Z-cxN46nNCrDmWOqMx-zaDV6fzkrtYgzE,603
|
|
54
|
+
py_canoe/core/child_elements/environment_info.py,sha256=iEshlsTHMHd5W49ub63eGF-Xn0UsXLUjfkWDYFYH-JQ,342
|
|
55
|
+
py_canoe/core/child_elements/environment_variable.py,sha256=wyYi8oBOQ0cLCA3Uqch94qa7RrNpyfdy1BfcHYSNVoI,1542
|
|
56
|
+
py_canoe/core/child_elements/fdx_files.py,sha256=_NOa6pVnzg78pW1MffqXhKnryiajX52PPYsLFywZYeM,1249
|
|
57
|
+
py_canoe/core/child_elements/file_group_data_source.py,sha256=XRBj9bmLAhdzJaDRZOHvOSCOweAciMvQBXRz7hkBnHQ,502
|
|
58
|
+
py_canoe/core/child_elements/general_setup.py,sha256=NZOrSv7yZHfd2HHnlVzl9vWfV8C3dFQnNn4jE5GzSjc,2476
|
|
59
|
+
py_canoe/core/child_elements/macros_setup.py,sha256=2jx8E7IYCecXSPy4u9K7DucXN_CLwihb29ia7qxbIPI,1315
|
|
60
|
+
py_canoe/core/child_elements/mc_ecus.py,sha256=9Du7Bkz39RamtMdWUZatWj1ryo5Z6TjAFPFZ4UJXpRQ,12292
|
|
61
|
+
py_canoe/core/child_elements/measurement_setup.py,sha256=hxfB0bqyWGANdxKoprvSF2j53tyPMyQqQU9ee3M36AI,7815
|
|
62
|
+
py_canoe/core/child_elements/modules.py,sha256=r-3D8Wcw7pekgTXEOVVl8bucWjhaXA3Z8nsP_5u0C0E,2607
|
|
63
|
+
py_canoe/core/child_elements/most_disassembler.py,sha256=JoRQxnGSbEA0HVtFh1AosV1PzdWx4_7nRDqHpAzPnd8,1469
|
|
64
|
+
py_canoe/core/child_elements/most_network_interface.py,sha256=my6Q0yG6c6-aCzglrAjEFZuyqe9XyI6SVCDPGDGazXs,180
|
|
65
|
+
py_canoe/core/child_elements/namespace.py,sha256=ZCC3n8Fy1_XipSu3Uvl9J_3cgXa8H7o9fketBcSa5lc,567
|
|
66
|
+
py_canoe/core/child_elements/namespaces.py,sha256=UzCNhDSE9L7IrNPOH7Pq5mQWMQr69YNte2b6NIdu3q4,501
|
|
67
|
+
py_canoe/core/child_elements/network.py,sha256=VdVeHGRxAeozEWGmGbz5sdSxB7m6dX-6HlCA6wj9gS0,425
|
|
68
|
+
py_canoe/core/child_elements/network_adapters.py,sha256=FwzXQNbMqgIUizKsYCXJOTowGwyKqvdyrqOd2ldnuRQ,473
|
|
69
|
+
py_canoe/core/child_elements/nodes.py,sha256=Fn7tvaKuA2_jqK8gCf2HYHvWc-T4hOY1-xYLj9E1y34,3471
|
|
70
|
+
py_canoe/core/child_elements/open_configuration_result.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
|
+
py_canoe/core/child_elements/panel_setup.py,sha256=GJCsxTWpZA0zDQO1z1vfsXpylekOL2rZ-JITaUpPllg,2349
|
|
72
|
+
py_canoe/core/child_elements/participant.py,sha256=cUaOyW_Om8Ovr9GtI5RQpJoybI_kasOyOSQcXpmfvJU,413
|
|
73
|
+
py_canoe/core/child_elements/participants.py,sha256=ih9Csg1ik56KKJgC6onBOVbW_SpQTamQ09ybq28-6lI,666
|
|
74
|
+
py_canoe/core/child_elements/ports.py,sha256=ZOjXtWwfVr5r4qoXsFia594cdVYeu1nVYLo8aSmi7Pg,2329
|
|
75
|
+
py_canoe/core/child_elements/replay_collection.py,sha256=JPNsD3DH0NguJI-FyLJs5mzscBpSPByWAorDwBjr5xE,1505
|
|
76
|
+
py_canoe/core/child_elements/security_configuration.py,sha256=STKDJ_Yl_wybdaKlPA5svN9k7JnsIVR8TfVNVizLAxM,726
|
|
77
|
+
py_canoe/core/child_elements/security_setup.py,sha256=qd3yUGG9GpNhLLp_miahPmZIJJ5xtprHHD7JIEzt4R4,877
|
|
78
|
+
py_canoe/core/child_elements/signals.py,sha256=VnCo3y1j4Q7c4hmtJCazLQoEOcCXVCWlKMoOfDO5IDg,914
|
|
79
|
+
py_canoe/core/child_elements/simulation_setup.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
80
|
+
py_canoe/core/child_elements/single_file_data_source.py,sha256=ADBi1mHIgT9dZTZ1zjyPRWRTxE6VlAnQBCjrXNtXL_c,368
|
|
81
|
+
py_canoe/core/child_elements/snippet_setup.py,sha256=Dk1QUaBGQzo5GMErW38qRLqOp3xyZd7r99st9SYTGJU,1690
|
|
82
|
+
py_canoe/core/child_elements/standalone_mode.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
83
|
+
py_canoe/core/child_elements/start_value_list.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
84
|
+
py_canoe/core/child_elements/symbol_mappings.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
85
|
+
py_canoe/core/child_elements/tcp_ip_stack_setting.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
86
|
+
py_canoe/core/child_elements/test_configurations.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
87
|
+
py_canoe/core/child_elements/test_environment.py,sha256=dkG17S0SQcS-W4weyV8xvtNSFPUhVlqca5UMdP0oBMY,2434
|
|
88
|
+
py_canoe/core/child_elements/test_environments.py,sha256=1NOh6olcMfqglGDPIB56eCK-LnvOniMtWc4VqvqhaiM,964
|
|
89
|
+
py_canoe/core/child_elements/test_module.py,sha256=1nBIMtVsTwoYvFrgbxUxj-1am4oiaGNHz0Rb-_9pF9A,7415
|
|
90
|
+
py_canoe/core/child_elements/test_modules.py,sha256=N_Ly66aIMMi-5yP5f9SzGS35swX35YsxGPLKOIbjvCk,772
|
|
91
|
+
py_canoe/core/child_elements/test_setup.py,sha256=Ogj85uVtLuF4z6A9ibxVrwS3834cfHvzgVKad-1Gmbo,529
|
|
92
|
+
py_canoe/core/child_elements/test_setup_folder_ext.py,sha256=SCUcfXo8NUPMcd2YaixeCMNZEF6VjuWFqXTymbWJVf8,1041
|
|
93
|
+
py_canoe/core/child_elements/test_setup_folders.py,sha256=Pz6raAxtUfc20TRtq5eB7kUZ7oAobzIyAtqht2MVxSA,975
|
|
94
|
+
py_canoe/core/child_elements/user_files.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
|
+
py_canoe/core/child_elements/variable.py,sha256=tLg2PLTrD21QetTmQkkmctx0o2BWDGVjCG0laxvaMZo,4459
|
|
96
|
+
py_canoe/core/child_elements/variable_events.py,sha256=-gwr1X1IGX31h_TMmoh2qBQ4nmhClf_cPNoGGDiQbFg,479
|
|
97
|
+
py_canoe/core/child_elements/variables.py,sha256=6sep4oAq8qzHg3FvpcniDSNg01eMsQcJThVXK08NaGw,1118
|
|
98
|
+
py_canoe/core/child_elements/variables_file.py,sha256=TWLgEzHFvM0pyfuCN9enBZ1OwGhDObd0VXGTu_KXfhI,352
|
|
99
|
+
py_canoe/core/child_elements/variables_files.py,sha256=RH9vv2_Of96Seuc0xG6naCdmRbltUDUuI3QFQ9ZXlDU,530
|
|
100
|
+
py_canoe/core/child_elements/visual_sequence_setup.py,sha256=MkQMq0ik2qgLtSoWL-mRa5uBQjg_mm1yzdmvh785-yc,1172
|
|
101
|
+
py_canoe/core/child_elements/vt_system.py,sha256=3Rq71ZxGZxygMlsXi8bmTISyjzQffZvL6OxpE-jA3uo,3384
|
|
102
|
+
py_canoe/core/child_elements/vtt_sut_import_result.py,sha256=0fNdpSMzrSjLQlSet0xFiG2aP1ajW5veFqoX25jScF0,735
|
|
103
|
+
py_canoe/core/child_elements/write.py,sha256=bnwxyxq-vgGFwsn-P4ZvF7wIKzgXgkLzAf6SvM1gOx4,2604
|
|
104
|
+
py_canoe/core/child_elements/xcp_setup.py,sha256=St2Kr48ISuWuM50LrPpqpbS5tohkFu9IeqqBDVfiKEc,282
|
|
105
|
+
py_canoe/core/configuration.py,sha256=aMwOIDOaXoU3M8OsREHy1-5bSiu08d20VYvgDg6giFY,23481
|
|
106
|
+
py_canoe/core/environment.py,sha256=uTllXJTFjrlOPTqmIgbhiFRMIzKZtJC962sREGfUTJw,2502
|
|
107
|
+
py_canoe/core/measurement.py,sha256=sqIDu0-TMT2dPDBqo2Dw4XYXeccYxtEGe_aA5Rgk3ew,5793
|
|
108
|
+
py_canoe/core/networks.py,sha256=3ee9PlL3a88y7PdpXimYfBL5uhIbQO-37Lnx7rz8mPw,5228
|
|
109
|
+
py_canoe/core/performance.py,sha256=WhG0P_Ytz-cKuyaIooEn2CzlpUqp98XaFJJa6xX_m9I,815
|
|
110
|
+
py_canoe/core/simulation.py,sha256=k6Rr42QSfR3z03Ts6cyM0-Zt-rSC3n_UKai6IhrGvHQ,1731
|
|
111
|
+
py_canoe/core/system.py,sha256=jhTPugiavfquEtbpszIa3d4SRBzjWuy8NaBdZvnGTvw,8129
|
|
112
|
+
py_canoe/core/ui.py,sha256=Kw7rzfei6pTDh_dxlCBTyBncyq2Wm7x7aHhmxU1uw0I,2013
|
|
113
|
+
py_canoe/core/version.py,sha256=olRavFEygOR5flRin1rvjJgiEhmBhsU_78bVPf4ov0U,1520
|
|
114
|
+
py_canoe/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
|
+
py_canoe/helpers/common.py,sha256=oreRo1Hh9JIzewBPz4WeQHak5FMpZCmQ_R6gozRhd8g,3038
|
|
116
|
+
py_canoe-26.0.0.dist-info/WHEEL,sha256=eycQt0QpYmJMLKpE3X9iDk8R04v2ZF0x82ogq-zP6bQ,79
|
|
117
|
+
py_canoe-26.0.0.dist-info/METADATA,sha256=nreI1kQRVWRNfWrUs3hPKI8OHLKo2LgC1_7sHxLRbcw,12273
|
|
118
|
+
py_canoe-26.0.0.dist-info/RECORD,,
|
py_canoe/logging_collection.py
DELETED
|
@@ -1,345 +0,0 @@
|
|
|
1
|
-
"""CANoe COM objects related to logging setup"""
|
|
2
|
-
|
|
3
|
-
import logging
|
|
4
|
-
|
|
5
|
-
import win32com
|
|
6
|
-
|
|
7
|
-
logger = logging.getLogger('CANOE_LOG')
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
class LoggingCollection:
|
|
11
|
-
"""Collection of all Logging Blocks of the current configuration."""
|
|
12
|
-
|
|
13
|
-
def __init__(self, logging_collection_com):
|
|
14
|
-
self._com = win32com.client.Dispatch(logging_collection_com)
|
|
15
|
-
|
|
16
|
-
@property
|
|
17
|
-
def count(self) -> int:
|
|
18
|
-
"""This property returns the number of objects inside the collection."""
|
|
19
|
-
return int(self._com.Count)
|
|
20
|
-
|
|
21
|
-
def item(self, index: int) -> "Logging":
|
|
22
|
-
"""This property returns an object from the collection."""
|
|
23
|
-
return Logging(self._com.Item(index))
|
|
24
|
-
|
|
25
|
-
def add(self, full_name: str) -> "Logging":
|
|
26
|
-
"""This method adds a logging block to the Measurement Setup.
|
|
27
|
-
|
|
28
|
-
:param full_name: full path to log file as "C:/file.(asc|blf|mf4)", may have
|
|
29
|
-
field functions like {IncMeasurement} in the file name
|
|
30
|
-
"""
|
|
31
|
-
return Logging(self._com.Add(full_name))
|
|
32
|
-
|
|
33
|
-
def remove(self, index: int):
|
|
34
|
-
"""This method removes a logging block (Logging) from a logging collection."""
|
|
35
|
-
self._com.Remove(index)
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
class Logging:
|
|
39
|
-
|
|
40
|
-
"""The Logging object represents a Logging Block in the current configuration.
|
|
41
|
-
|
|
42
|
-
The filename extension of the logging file which is specified with this property
|
|
43
|
-
determines the logging format. The full name can now also contain field functions;
|
|
44
|
-
e.g. Logging.FullName = "LOGFILE_M{IncMeasurement}.ASC
|
|
45
|
-
|
|
46
|
-
"""
|
|
47
|
-
|
|
48
|
-
def __init__(self, logging_com):
|
|
49
|
-
self._com = win32com.client.Dispatch(logging_com)
|
|
50
|
-
|
|
51
|
-
@property
|
|
52
|
-
def exporter(self) -> "Exporter":
|
|
53
|
-
"""This property returns an Exporter object."""
|
|
54
|
-
return Exporter(self._com.Exporter)
|
|
55
|
-
|
|
56
|
-
def file_name_options(self):
|
|
57
|
-
"""This property returns a LoggingFileNameOptions object."""
|
|
58
|
-
raise NotImplementedError("FileNameOptions access is not implemented yet.")
|
|
59
|
-
|
|
60
|
-
def filter(self):
|
|
61
|
-
"""This property returns a LoggingFilter object."""
|
|
62
|
-
raise NotImplementedError("FileNameOptions access is not implemented yet.")
|
|
63
|
-
|
|
64
|
-
@property
|
|
65
|
-
def full_name(self) -> str:
|
|
66
|
-
"""This property sets or determines the complete path to the logging file."""
|
|
67
|
-
return self._com.FullName
|
|
68
|
-
|
|
69
|
-
@full_name.setter
|
|
70
|
-
def full_name(self, fullname: str):
|
|
71
|
-
self._com.FullName = fullname
|
|
72
|
-
|
|
73
|
-
@property
|
|
74
|
-
def trigger(self) -> "Trigger":
|
|
75
|
-
"""This property returns a Trigger object."""
|
|
76
|
-
return Trigger(self._com.Trigger)
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
class Trigger:
|
|
80
|
-
|
|
81
|
-
"""Trigger block located before the Logging Block in the Measurement Setup."""
|
|
82
|
-
|
|
83
|
-
def __init__(self, trigger_com):
|
|
84
|
-
self._com = win32com.client.Dispatch(trigger_com)
|
|
85
|
-
|
|
86
|
-
@property
|
|
87
|
-
def active(self) -> bool:
|
|
88
|
-
"""This property sets or returns the status of the trigger."""
|
|
89
|
-
return self._com.Active
|
|
90
|
-
|
|
91
|
-
@active.setter
|
|
92
|
-
def active(self, _active: bool):
|
|
93
|
-
self._com.Active = _active
|
|
94
|
-
|
|
95
|
-
def start(self):
|
|
96
|
-
"""This method starts the trigger."""
|
|
97
|
-
self._com.Start()
|
|
98
|
-
|
|
99
|
-
def stop(self):
|
|
100
|
-
"""This method stops the trigger."""
|
|
101
|
-
self._com.Stop()
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
class Exporter:
|
|
105
|
-
|
|
106
|
-
"""Export dialog.
|
|
107
|
-
|
|
108
|
-
The Exporter object represents an export dialog, as it can
|
|
109
|
-
be used e.g. in a Logging Block in the Measurement Setup.
|
|
110
|
-
|
|
111
|
-
"""
|
|
112
|
-
|
|
113
|
-
def __init__(self, exporter_com):
|
|
114
|
-
self._com = win32com.client.Dispatch(exporter_com)
|
|
115
|
-
|
|
116
|
-
def destinations(self):
|
|
117
|
-
"""Returns a Files object for the destination files of an exporter.
|
|
118
|
-
|
|
119
|
-
On the first access to the destination files of an exporter the Files object
|
|
120
|
-
contains the destination file as it is defined in the according Export dialog.
|
|
121
|
-
|
|
122
|
-
If no destination file is set a destination file is derived from the source
|
|
123
|
-
file. Name and path of this destination file correspond to the name and path
|
|
124
|
-
of the source file. The format is CSV. If as many destination files as source
|
|
125
|
-
files are given, an according destination file will be generated for each
|
|
126
|
-
source file (n to n).
|
|
127
|
-
|
|
128
|
-
If the numbers of destination files and source files don't match, the number of
|
|
129
|
-
destination files must be 1. All source files will be merged into the
|
|
130
|
-
destination file (n to 1).
|
|
131
|
-
"""
|
|
132
|
-
raise NotImplementedError("Destinations access is not implemented yet.")
|
|
133
|
-
|
|
134
|
-
@property
|
|
135
|
-
def filter(self) -> "Filter":
|
|
136
|
-
"""Returns a Filter object"""
|
|
137
|
-
return Filter(self._com.Filter)
|
|
138
|
-
|
|
139
|
-
@property
|
|
140
|
-
def messages(self) -> list["Message"]:
|
|
141
|
-
"""Returns all messages that have been detected during loading.
|
|
142
|
-
|
|
143
|
-
Consist of messages that come from the source files of an exporter
|
|
144
|
-
and can be exported/converted.
|
|
145
|
-
|
|
146
|
-
"""
|
|
147
|
-
messages_collection = Messages(self._com.Symbols)
|
|
148
|
-
messages = []
|
|
149
|
-
for i in range(1, messages_collection.count + 1):
|
|
150
|
-
messages.append(messages_collection.item(i))
|
|
151
|
-
return messages
|
|
152
|
-
|
|
153
|
-
def settings(self):
|
|
154
|
-
"""Returns an ExporterSettings object."""
|
|
155
|
-
raise NotImplementedError("FileNameOptions access is not implemented yet.")
|
|
156
|
-
|
|
157
|
-
def sources(self):
|
|
158
|
-
"""Returns Files object for each source file of the exporter or offline source.
|
|
159
|
-
|
|
160
|
-
On the first access to the source files of the exporter the Files object
|
|
161
|
-
contains the source file as defined in the Export dialog.
|
|
162
|
-
|
|
163
|
-
Typically this is the logging file as set in the Logging Block, as long as no
|
|
164
|
-
other source file has been defined manually.
|
|
165
|
-
|
|
166
|
-
"""
|
|
167
|
-
raise NotImplementedError("FileNameOptions access is not implemented yet.")
|
|
168
|
-
|
|
169
|
-
@property
|
|
170
|
-
def symbols(self) -> list["ExporterSymbol"]:
|
|
171
|
-
"""Returns all symbols that have been detected during loading the source files.
|
|
172
|
-
|
|
173
|
-
This includes signals, system variables and bus statistics information
|
|
174
|
-
that can be exported/converted.
|
|
175
|
-
|
|
176
|
-
"""
|
|
177
|
-
symbols_collection = ExporterSymbols(self._com.Symbols)
|
|
178
|
-
symbols = []
|
|
179
|
-
for i in range(1, symbols_collection.count + 1):
|
|
180
|
-
symbols.append(symbols_collection.item(i))
|
|
181
|
-
return symbols
|
|
182
|
-
|
|
183
|
-
def time_section(self):
|
|
184
|
-
"""Returns the TimeSection object."""
|
|
185
|
-
raise NotImplementedError("TimeSection access is not implemented yet.")
|
|
186
|
-
|
|
187
|
-
def load(self):
|
|
188
|
-
"""Loads source files of an exporter and determines the signals and messages.
|
|
189
|
-
|
|
190
|
-
If several source files are set, all signals and messages of all
|
|
191
|
-
source files are determined.
|
|
192
|
-
|
|
193
|
-
"""
|
|
194
|
-
self._com.Load()
|
|
195
|
-
|
|
196
|
-
def save(self, no_prompt_user: bool = True):
|
|
197
|
-
"""Starts the export/conversion.
|
|
198
|
-
|
|
199
|
-
Although the parameter noPromptUser is set to True, the function will fail
|
|
200
|
-
if a failure situation occurs and the storage cannot be performed. Possible
|
|
201
|
-
failure situations are e.g. write-protection or disk full.
|
|
202
|
-
|
|
203
|
-
"""
|
|
204
|
-
self._com.Save(noPromptUser=no_prompt_user)
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
class Filter:
|
|
208
|
-
"""Represents a Pass Filter for messages and signals in usage with an exporter."""
|
|
209
|
-
|
|
210
|
-
def __init__(self, filter_com):
|
|
211
|
-
self._com = win32com.client.Dispatch(filter_com)
|
|
212
|
-
|
|
213
|
-
@property
|
|
214
|
-
def count(self) -> int:
|
|
215
|
-
"""This property returns the number of objects inside the collection."""
|
|
216
|
-
return int(self._com.Count)
|
|
217
|
-
|
|
218
|
-
@property
|
|
219
|
-
def enabled(self) -> bool:
|
|
220
|
-
"""This property activates/deactivates a Filter object or returns its state.
|
|
221
|
-
|
|
222
|
-
The initial value of this property is False.
|
|
223
|
-
|
|
224
|
-
"""
|
|
225
|
-
return self._com.Enabled
|
|
226
|
-
|
|
227
|
-
@enabled.setter
|
|
228
|
-
def enabled(self, enabled: bool):
|
|
229
|
-
self._com.Enabled = enabled
|
|
230
|
-
|
|
231
|
-
def item(self, index):
|
|
232
|
-
"""This property returns an object from the collection."""
|
|
233
|
-
raise NotImplementedError("Item access is not implemented yet.")
|
|
234
|
-
|
|
235
|
-
def add(self, fullname: str):
|
|
236
|
-
"""This method adds a message or a signal to the explorer's filter.
|
|
237
|
-
|
|
238
|
-
The Exporter object needs fully qualified names of all messages and signals
|
|
239
|
-
that have to be taken into consideration during export or conversion:
|
|
240
|
-
|
|
241
|
-
Messages:
|
|
242
|
-
<DatabaseName>::<MessageName>
|
|
243
|
-
Signals:
|
|
244
|
-
<DatabaseName>::<MessageName>::<SignalName>
|
|
245
|
-
System variables:
|
|
246
|
-
<Namespace>::<SystemVariable>
|
|
247
|
-
Environment variables:
|
|
248
|
-
<DatabaseName>::<EnvironmentVariable>
|
|
249
|
-
|
|
250
|
-
When performing a message-oriented conversion only messages, system variables
|
|
251
|
-
and environment variables are taken into consideration. Any (even specified)
|
|
252
|
-
signals will be ignored.
|
|
253
|
-
|
|
254
|
-
When performing a signal-orientierted export messages, signals, system variables
|
|
255
|
-
and environment variables are taken into consideration. All signals included in
|
|
256
|
-
specified messages, system variables and environment variables will be
|
|
257
|
-
exported as well.
|
|
258
|
-
|
|
259
|
-
Besides using their symbolic name messages can be declared by using their
|
|
260
|
-
numeric ID, which either can be decimal or hexadecimal.
|
|
261
|
-
|
|
262
|
-
:param fullname: of the signal or message
|
|
263
|
-
|
|
264
|
-
"""
|
|
265
|
-
self._com.Add(fullname)
|
|
266
|
-
|
|
267
|
-
def clear(self):
|
|
268
|
-
"""This method clears all messages and signals of the filter."""
|
|
269
|
-
self._com.Clear()
|
|
270
|
-
|
|
271
|
-
def remove(self, index: int):
|
|
272
|
-
"""This method removes a message or a signal from the filter.
|
|
273
|
-
|
|
274
|
-
:param index: number
|
|
275
|
-
|
|
276
|
-
"""
|
|
277
|
-
self._com.Remove(index)
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
class Messages:
|
|
281
|
-
|
|
282
|
-
"""Collection of messages."""
|
|
283
|
-
|
|
284
|
-
def __init__(self, messages_com):
|
|
285
|
-
self._com = win32com.client.Dispatch(messages_com)
|
|
286
|
-
|
|
287
|
-
@property
|
|
288
|
-
def count(self) -> int:
|
|
289
|
-
"""This property returns the number of objects inside the collection."""
|
|
290
|
-
return int(self._com.Count)
|
|
291
|
-
|
|
292
|
-
def item(self, index: int) -> "Message":
|
|
293
|
-
"""This property returns an object from the collection."""
|
|
294
|
-
return Message(self._com.Item(index))
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
class ExporterSymbols:
|
|
298
|
-
|
|
299
|
-
"""Collection of signals."""
|
|
300
|
-
|
|
301
|
-
def __init__(self, symbols_com):
|
|
302
|
-
self._com = win32com.client.Dispatch(symbols_com)
|
|
303
|
-
|
|
304
|
-
@property
|
|
305
|
-
def count(self) -> int:
|
|
306
|
-
"""This property returns the number of objects inside the collection."""
|
|
307
|
-
return int(self._com.Count)
|
|
308
|
-
|
|
309
|
-
def item(self, index: int) -> "ExporterSymbol":
|
|
310
|
-
"""This property returns an object from the collection."""
|
|
311
|
-
return ExporterSymbol(self._com.Item(index))
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
class Message:
|
|
315
|
-
|
|
316
|
-
"""The Message object represents a single message."""
|
|
317
|
-
|
|
318
|
-
def __init__(self, message_com):
|
|
319
|
-
self._com = win32com.client.Dispatch(message_com)
|
|
320
|
-
|
|
321
|
-
@property
|
|
322
|
-
def full_name(self) -> str:
|
|
323
|
-
"""This property determines the fully qualified name of a message.
|
|
324
|
-
|
|
325
|
-
The following format is used: <DatabaseName>::<MessageName>
|
|
326
|
-
|
|
327
|
-
"""
|
|
328
|
-
return self._com.FullName
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
class ExporterSymbol:
|
|
332
|
-
|
|
333
|
-
"""Symbol (signal, system variable or bus statistics information).
|
|
334
|
-
|
|
335
|
-
Found in a source file, loaded by the Exporter.
|
|
336
|
-
|
|
337
|
-
"""
|
|
338
|
-
|
|
339
|
-
def __init__(self, message_com):
|
|
340
|
-
self._com = win32com.client.Dispatch(message_com)
|
|
341
|
-
|
|
342
|
-
@property
|
|
343
|
-
def full_name(self) -> str:
|
|
344
|
-
"""This property returns the fully qualified symbol name."""
|
|
345
|
-
return self._com.FullName
|