armodel 1.6.0__py3-none-any.whl → 1.6.2__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.
- armodel/cli/arxml_dump_cli.py +25 -22
- armodel/cli/arxml_format_cli.py +1 -4
- armodel/cli/connector_update_cli.py +1 -1
- armodel/cli/swc_list_cli.py +1 -1
- armodel/data_models/sw_connector.py +3 -3
- armodel/lib/sw_component.py +3 -1
- armodel/lib/system_signal.py +3 -1
- armodel/models/__init__.py +5 -3
- armodel/models/ar_object.py +1 -1
- armodel/models/ar_package.py +185 -151
- armodel/models/ar_ref.py +0 -202
- armodel/models/common_structure.py +3 -71
- armodel/models/communication.py +1 -1
- armodel/models/datatype.py +7 -72
- armodel/models/end_to_end_protection.py +1 -1
- armodel/models/general_structure.py +10 -4
- armodel/models/internal_behavior.py +1 -1
- armodel/models/m2/autosar_templates/autosar_top_level_structure.py +120 -0
- armodel/models/m2/autosar_templates/common_structure/implementation.py +21 -0
- armodel/models/m2/autosar_templates/common_structure/implementation_data_types.py +154 -0
- armodel/models/m2/autosar_templates/ecuc_description_template.py +2 -1
- armodel/models/m2/autosar_templates/generic_structure/__init__.py +0 -0
- armodel/models/m2/autosar_templates/generic_structure/abstract_structure.py +69 -0
- armodel/models/m2/autosar_templates/generic_structure/ar_package.py +528 -0
- armodel/models/m2/autosar_templates/sw_component_template/communication.py +44 -0
- armodel/models/m2/autosar_templates/sw_component_template/components/__init__.py +246 -0
- armodel/models/m2/autosar_templates/sw_component_template/components/instance_refs.py +33 -1
- armodel/models/m2/autosar_templates/sw_component_template/composition/__init__.py +154 -0
- armodel/models/m2/autosar_templates/sw_component_template/composition/instance_refs.py +157 -0
- armodel/models/m2/autosar_templates/sw_component_template/data_type/__init__.py +0 -0
- armodel/models/m2/autosar_templates/sw_component_template/data_type/data_prototypes.py +104 -0
- armodel/models/m2/autosar_templates/sw_component_template/port_interface/__init__.py +243 -0
- armodel/models/m2/autosar_templates/sw_component_template/port_interface/instance_refs.py +39 -0
- armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/data_elements.py +3 -11
- armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/instance_refs_usage.py +169 -0
- armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/mode_declaration_group.py +1 -2
- armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/server_call.py +5 -4
- armodel/models/m2/autosar_templates/system_template/instance_refs.py +48 -0
- armodel/models/m2_msr.py +1 -0
- armodel/models/port_prototype.py +1 -90
- armodel/models/service_needs.py +3 -1
- armodel/models/sw_component.py +6 -143
- armodel/parser/__init__.py +2 -1
- armodel/parser/abstract_arxml_parser.py +1 -1
- armodel/parser/arxml_parser.py +157 -80
- armodel/parser/connector_xlsx_parser.py +3 -1
- armodel/parser/file_parser.py +43 -0
- armodel/report/connector_xls_report.py +2 -1
- armodel/tests/test_armodel/models/test_ar_package.py +6 -3
- armodel/tests/test_armodel/models/test_ar_ref.py +15 -13
- armodel/tests/test_armodel/models/test_common_structure.py +6 -5
- armodel/tests/test_armodel/models/test_data_prototype.py +1 -1
- armodel/tests/test_armodel/models/test_datatype.py +9 -9
- armodel/tests/test_armodel/models/test_general_structure.py +1 -1
- armodel/tests/test_armodel/models/test_implementation.py +1 -1
- armodel/tests/test_armodel/models/test_port_interface.py +2 -2
- armodel/tests/test_armodel/parser/test_parse_bswmd.py +3 -1
- armodel/tests/test_armodel/parser/test_sw_components.py +2 -2
- armodel/writer/abstract_arxml_writer.py +5 -1
- armodel/writer/arxml_writer.py +70 -60
- {armodel-1.6.0.dist-info → armodel-1.6.2.dist-info}/METADATA +5 -1
- {armodel-1.6.0.dist-info → armodel-1.6.2.dist-info}/RECORD +66 -51
- {armodel-1.6.0.dist-info → armodel-1.6.2.dist-info}/LICENSE +0 -0
- {armodel-1.6.0.dist-info → armodel-1.6.2.dist-info}/WHEEL +0 -0
- {armodel-1.6.0.dist-info → armodel-1.6.2.dist-info}/entry_points.txt +0 -0
- {armodel-1.6.0.dist-info → armodel-1.6.2.dist-info}/top_level.txt +0 -0
|
@@ -1,49 +1,49 @@
|
|
|
1
1
|
armodel/__init__.py,sha256=GVXg600GzbcLT2-Lrepuz6mjT6_BsVNmi2eDiz85NiA,67
|
|
2
2
|
armodel/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
armodel/cli/arxml_dump_cli.py,sha256=
|
|
4
|
-
armodel/cli/arxml_format_cli.py,sha256=
|
|
3
|
+
armodel/cli/arxml_dump_cli.py,sha256=vRPZ98BBMbLJK4ySbFJJ2nJI-A8XFZROZ7QT6p9lIHk,10312
|
|
4
|
+
armodel/cli/arxml_format_cli.py,sha256=76IBQo6t9fqL1WXjsdoONuX9FSqapb1WuM1yDJobpfM,2004
|
|
5
5
|
armodel/cli/connector2xlsx_cli.py,sha256=bPxJ53znVpluabEbjqN58RX8a9dvlf-cF5o7ncjqTyw,2125
|
|
6
|
-
armodel/cli/connector_update_cli.py,sha256=
|
|
6
|
+
armodel/cli/connector_update_cli.py,sha256=kEySXg4El5Eez6wnSvCugmOsDzdqbTiRzAfX8Fy8E6g,2324
|
|
7
7
|
armodel/cli/memory_section_cli.py,sha256=ky-EJyl74-F8DpIu6uafEFilfblOvEa4HqQyM5HhqyI,2139
|
|
8
|
-
armodel/cli/swc_list_cli.py,sha256=
|
|
8
|
+
armodel/cli/swc_list_cli.py,sha256=TSzKmxjaPZs499jY4WX5pQ4UZ924m5yqmriQbAsvOTY,2403
|
|
9
9
|
armodel/cli/system_signal_cli.py,sha256=4u474E1yd1CGBPiALL-ZXpDatXpUrD6qyXsR-au2yp0,2101
|
|
10
10
|
armodel/data_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
-
armodel/data_models/sw_connector.py,sha256=
|
|
11
|
+
armodel/data_models/sw_connector.py,sha256=ZU1B3AI84vpSSSpQaGR6CMc3qZGnhbK1Z-SQGvwYA9o,584
|
|
12
12
|
armodel/lib/__init__.py,sha256=5629DkORqTomt16J6VL40o5hFv86-9SRB1240OJWTts,142
|
|
13
13
|
armodel/lib/cli_args_parser.py,sha256=WiTC3wy_fZYloA1AjPqCvvOA_26V_y5toun0qfV51cw,1207
|
|
14
14
|
armodel/lib/data_analyzer.py,sha256=y4ViEGPi_xRKD7hw1ptkGl0_UfhnNdgNzf2YjbOhpjM,1159
|
|
15
|
-
armodel/lib/sw_component.py,sha256=
|
|
16
|
-
armodel/lib/system_signal.py,sha256=
|
|
17
|
-
armodel/models/__init__.py,sha256=
|
|
15
|
+
armodel/lib/sw_component.py,sha256=L4k3iH4i5Z09zeaHxIHjK-xbMH_0PDcOflh4ACJ9WfE,1232
|
|
16
|
+
armodel/lib/system_signal.py,sha256=292yH9yybuCK4GKf7rpECsy27Ds6YRSoYm89yYIKgfw,1352
|
|
17
|
+
armodel/models/__init__.py,sha256=bS1Xj5vu2R_gWy8IE17i4faxmdYdqtsBXphv058Mnyo,1026
|
|
18
18
|
armodel/models/annotation.py,sha256=54XqgKgIzPGRfv3gVCIACKqYt1hUUG6eQDlB06A7xqs,1354
|
|
19
|
-
armodel/models/ar_object.py,sha256=
|
|
20
|
-
armodel/models/ar_package.py,sha256=
|
|
21
|
-
armodel/models/ar_ref.py,sha256=
|
|
19
|
+
armodel/models/ar_object.py,sha256=FqCUl0UcQaE7i8VvkmQPmsLsUGFNLPEDMn2aH3CyuNM,5783
|
|
20
|
+
armodel/models/ar_package.py,sha256=EKHzIrsy1q2w6Uso_4-5cQ2xTMMDTSUQ6Q4hp4PieYQ,32070
|
|
21
|
+
armodel/models/ar_ref.py,sha256=fTt32OxTy-edQqw_WTPnp1y6UAiPhAtxr4BV07rkSzw,488
|
|
22
22
|
armodel/models/bsw_module_template.py,sha256=5qyqhKyyzMrTzwarCWRM8nqjp55MNqBtxFstD7VMzTY,16292
|
|
23
23
|
armodel/models/calibration.py,sha256=aSIVenVmlYKW5kQmaLTiy7kJcSe6yrvCfN8kO03Wk6Q,4087
|
|
24
|
-
armodel/models/common_structure.py,sha256=
|
|
25
|
-
armodel/models/communication.py,sha256=
|
|
24
|
+
armodel/models/common_structure.py,sha256=22SCULP1BFZ5G6ik9_sWgk_VpEUzz3bLq8RJX3l1k9o,9324
|
|
25
|
+
armodel/models/communication.py,sha256=CafA0LKVpSpjMQ0UUdC3IcZf6ttBw6yCvqyqxTLWTXo,693
|
|
26
26
|
armodel/models/data_def_properties.py,sha256=Mhmucm3k_f12IV5BqH3KlJ5SdmIrlmqnmrQPb5gqamA,470
|
|
27
27
|
armodel/models/data_dictionary.py,sha256=1gbRyvWp5QD0Z-2kxNrqa1qrab5kEZTMcNdWscdmth0,2513
|
|
28
28
|
armodel/models/data_prototype.py,sha256=Sq0nizgUKzc6kG3PKVfIE4e_l4UMsDi2m34tm7TVph4,3622
|
|
29
|
-
armodel/models/datatype.py,sha256=
|
|
29
|
+
armodel/models/datatype.py,sha256=zujOOmC0Di6bD-facMEetPcsuXpwY7AB5Fz0KD4zlrc,6327
|
|
30
30
|
armodel/models/ecuc_parameter_def_template.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
31
|
-
armodel/models/end_to_end_protection.py,sha256=
|
|
32
|
-
armodel/models/general_structure.py,sha256=
|
|
31
|
+
armodel/models/end_to_end_protection.py,sha256=Qvcqy5_eoSD8nFJd2mEee-wLtv7VvyGoPqUHkR2JMfM,3022
|
|
32
|
+
armodel/models/general_structure.py,sha256=NlWnbpSQ1DJwubYkkVs5oxYxJGSRFqLVqtb_yu_WJDI,8893
|
|
33
33
|
armodel/models/global_constraints.py,sha256=fBCzYaZ55SDG7shneE8dNgFm_QQxPRUUPvzIWBlNKHY,1301
|
|
34
34
|
armodel/models/implementation.py,sha256=bZB1GVU-5VCsx0xATj-0XNlvMuq-pVQ2zAVN-BEy2UU,5631
|
|
35
|
-
armodel/models/internal_behavior.py,sha256=
|
|
36
|
-
armodel/models/m2_msr.py,sha256=
|
|
35
|
+
armodel/models/internal_behavior.py,sha256=VwrA1iqsYlHK3N_tKtn85ErUKaGq2GHtys0TlVPiWds,2498
|
|
36
|
+
armodel/models/m2_msr.py,sha256=6xEq67DohruwiQFYLSVxo9kW6qPweyDWUOyy6-4pAaQ,5128
|
|
37
37
|
armodel/models/mode_declaration.py,sha256=YuZjSv3Iu6bdchdZLCp-iNYsSBC0dcF_mJ65ScfjGSs,240
|
|
38
38
|
armodel/models/multilanguage_data.py,sha256=fCJAveAXMJQp5-Ndwqz6ti2-RVtMoZuWZJ6A55eWBQQ,1288
|
|
39
39
|
armodel/models/per_instance_memory.py,sha256=KBqRZyi-FtQx25w5mlUjJbI00ZlZdPPgIeDlaIMUTgY,1188
|
|
40
40
|
armodel/models/port_interface.py,sha256=h1quoa4LRhEC7aGKIUs8bbHeGTQ5vbDkC7AwUUD6U1E,7257
|
|
41
|
-
armodel/models/port_prototype.py,sha256=
|
|
41
|
+
armodel/models/port_prototype.py,sha256=ZFjdo7Qlo9rFEO4ihyqoDfv_ttJ1IZMK7au5gxArXTc,413
|
|
42
42
|
armodel/models/record_layout.py,sha256=6ZRzRZr89EUanrYaSGjj_UhlVHewneI3NLglqjL_KzU,4554
|
|
43
43
|
armodel/models/rpt_scenario.py,sha256=WJ47kJE5BfQYKI8hHbL5TGg4mNX0xmjpToXCIwC-pNo,565
|
|
44
44
|
armodel/models/service_mapping.py,sha256=cDmXPaWVnCJ0M9Bkdk_KZvkyCfMQS35ADuFPPACzm70,279
|
|
45
|
-
armodel/models/service_needs.py,sha256=
|
|
46
|
-
armodel/models/sw_component.py,sha256=
|
|
45
|
+
armodel/models/service_needs.py,sha256=cB8X7gXsuVKREf6sMFKPW95tctSiFZwaM8j6jd6III8,2653
|
|
46
|
+
armodel/models/sw_component.py,sha256=fyWy11QXok7tb9Ng5zjJxzijhU1JqNxhWG-JOW5YY-Q,17105
|
|
47
47
|
armodel/models/timing.py,sha256=7XQQli9Dxd6A5-F6NFcGOnEJ-W2y0kYBE3X0bbNdf1A,3289
|
|
48
48
|
armodel/models/unit.py,sha256=uTAHK2LzmQimlQKcWFFrFJJhYAcAlOcsMtvLEQ42EE8,397
|
|
49
49
|
armodel/models/fibex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -59,22 +59,36 @@ armodel/models/fibex/fibex_core/core_communication.py,sha256=Wyoag9k-uLNRSagGX2B
|
|
|
59
59
|
armodel/models/fibex/fibex_core/core_topology.py,sha256=ZaRivNXDOvdXlW4Z1EIYhzh_BGk87UOHgmc8ZjYegNk,7044
|
|
60
60
|
armodel/models/m2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
61
61
|
armodel/models/m2/autosar_templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
|
-
armodel/models/m2/autosar_templates/
|
|
62
|
+
armodel/models/m2/autosar_templates/autosar_top_level_structure.py,sha256=ETQNNosMeyLZ9Jgx1YI--5yieyeFK_m538Ii6vzrFyE,4855
|
|
63
|
+
armodel/models/m2/autosar_templates/ecuc_description_template.py,sha256=i3iKNzibMX4BeL95nUbBTLIH8LSHv7TQ3sGsUqQcbhw,9078
|
|
63
64
|
armodel/models/m2/autosar_templates/common_structure/__init__.py,sha256=OHaKJ0UGd_Ni9F11LHMpc8ILTNgxKuJ9QQnuQDSZ_lw,5804
|
|
64
65
|
armodel/models/m2/autosar_templates/common_structure/constants.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
|
+
armodel/models/m2/autosar_templates/common_structure/implementation.py,sha256=KbgskqCO1970U4kUGvfnhThf9eh2ruO8Uz_NsU-Sh7I,646
|
|
67
|
+
armodel/models/m2/autosar_templates/common_structure/implementation_data_types.py,sha256=1Pca5SMQOWOLd-szP7xpc-KbTPUOERrhCYe1DNqi49o,5771
|
|
68
|
+
armodel/models/m2/autosar_templates/generic_structure/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
|
+
armodel/models/m2/autosar_templates/generic_structure/abstract_structure.py,sha256=Sad_Bt9d1um5zC8T6cRyNhzIDCGDjd48dSO01cH--hg,1948
|
|
70
|
+
armodel/models/m2/autosar_templates/generic_structure/ar_package.py,sha256=94NHRTq_BU1CmoRw0pWEprrhpa_193iqTtYmu5OyevY,27587
|
|
65
71
|
armodel/models/m2/autosar_templates/sw_component_template/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
|
-
armodel/models/m2/autosar_templates/sw_component_template/communication.py,sha256=
|
|
72
|
+
armodel/models/m2/autosar_templates/sw_component_template/communication.py,sha256=_Y51VV0nquCBBVA21uzw7zcresFow6857JcvTyfEHJM,11205
|
|
67
73
|
armodel/models/m2/autosar_templates/sw_component_template/port_interface.py,sha256=XRBp3ZuBbFGFs3BWpF5VsjhuGoDgs1sEuJ7IRI6WET4,9249
|
|
68
|
-
armodel/models/m2/autosar_templates/sw_component_template/components/__init__.py,sha256=
|
|
69
|
-
armodel/models/m2/autosar_templates/sw_component_template/components/instance_refs.py,sha256=
|
|
74
|
+
armodel/models/m2/autosar_templates/sw_component_template/components/__init__.py,sha256=dx6AExOZvsVw6--aueCxNsqZ57PdHaXdPEJCjGeV0_E,9945
|
|
75
|
+
armodel/models/m2/autosar_templates/sw_component_template/components/instance_refs.py,sha256=0eLTmX08Qda7AT3mePELoo-o2IaVRTs_P6p9alJTIAo,5712
|
|
76
|
+
armodel/models/m2/autosar_templates/sw_component_template/composition/__init__.py,sha256=aOE1VA4UfLfA-3xZnDKogBAdQQ4u5SNAq4bybViUY4g,5968
|
|
77
|
+
armodel/models/m2/autosar_templates/sw_component_template/composition/instance_refs.py,sha256=_djnWMHLGYw2C5bjAgopoqwG3r2IG-d9kMZk4cbXtyY,4889
|
|
78
|
+
armodel/models/m2/autosar_templates/sw_component_template/data_type/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
79
|
+
armodel/models/m2/autosar_templates/sw_component_template/data_type/data_prototypes.py,sha256=tGi_fL8zU1Ewe7rssiKSb_EetkPaGKMVdk0eTBAC-yg,3621
|
|
80
|
+
armodel/models/m2/autosar_templates/sw_component_template/port_interface/__init__.py,sha256=MHrDO2xbZ3c2guKWapLSoFJs2_qWabPXYYD5Rmkz4G0,9955
|
|
81
|
+
armodel/models/m2/autosar_templates/sw_component_template/port_interface/instance_refs.py,sha256=P-2ST0LTTXk6Fghh2mATPE5-h2pF55YcKW_2eQUQIvA,1332
|
|
70
82
|
armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/__init__.py,sha256=I4BP4XjWbOwafMXWpTUZ4iQ2Liu_HQaDKyLzQ86KqUs,9452
|
|
71
83
|
armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/access_count.py,sha256=o6BLmmYiqc5U5mb7YtzS74U1FIhDDPt1XgJBiib5VkA,460
|
|
72
|
-
armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/data_elements.py,sha256=
|
|
73
|
-
armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/
|
|
74
|
-
armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/
|
|
84
|
+
armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/data_elements.py,sha256=hHuSHdS2dCpy9XpSq-2WCvj8fbOtBiU4xwHdb8mR5GU,1612
|
|
85
|
+
armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/instance_refs_usage.py,sha256=Btx00UnxqF_2Cfih9KwZc39403OemMSaqVFqNtNUtSI,5598
|
|
86
|
+
armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/mode_declaration_group.py,sha256=_u9bQ4tuZ5_dW29dNIVYmEkFWFwfCBycjH_4sgmaLFM,1210
|
|
87
|
+
armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/server_call.py,sha256=0sFJoX_Mu_S3AZ7EFMyuVEUmo4Md5O0SSf_eJO0Y1BE,814
|
|
75
88
|
armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/trigger.py,sha256=Cwklr56BunDgNEhlge6k2cbudTM2rEt0ka82VSL3a-4,286
|
|
76
89
|
armodel/models/m2/autosar_templates/system_template/__init__.py,sha256=gHp7PG7rcf4g6B0QtQwDooP6K7IrD3ZkP4YEYkPe6l0,10443
|
|
77
90
|
armodel/models/m2/autosar_templates/system_template/data_mapping.py,sha256=wwyRA840YUcfKkeZREqlh2pqOC6unSqPnS7bI0HM9eg,2479
|
|
91
|
+
armodel/models/m2/autosar_templates/system_template/instance_refs.py,sha256=wSrg0gBCZwjBp0mC8b6YmEEnXWBFRrEj0JITzO39gPs,1603
|
|
78
92
|
armodel/models/m2/autosar_templates/system_template/network_management.py,sha256=bIllBikQdg9pDI43Dq6U3Pmn4W7grHlOUhVamnLWYYg,17061
|
|
79
93
|
armodel/models/m2/autosar_templates/system_template/transport_protocols.py,sha256=yHipIJ6z5BBSI8YRCwk0x4ub84PkhGIRxfqFznvqRk8,244
|
|
80
94
|
armodel/models/m2/msr/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -88,40 +102,41 @@ armodel/models/m2/msr/documentation/block_elements.py,sha256=NjarQwu756rTDHVHCHA
|
|
|
88
102
|
armodel/models/system_template/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
89
103
|
armodel/models/system_template/network_management.py,sha256=ztMxX4zDFBFEiXmR3zne23Lc_rNuaXQbCJS4eL61VZ0,218
|
|
90
104
|
armodel/models/system_template/transport_protocols.py,sha256=en2Pl3eThqDY5DJ7d8sT0vxLwUQsu88Mn7l2VzcHDZg,221
|
|
91
|
-
armodel/parser/__init__.py,sha256=
|
|
92
|
-
armodel/parser/abstract_arxml_parser.py,sha256=
|
|
93
|
-
armodel/parser/arxml_parser.py,sha256=
|
|
94
|
-
armodel/parser/connector_xlsx_parser.py,sha256=
|
|
105
|
+
armodel/parser/__init__.py,sha256=wFcqh5unmDvKvf4R8vWkeertAXwWxAuOOEsbsM4mOHs,78
|
|
106
|
+
armodel/parser/abstract_arxml_parser.py,sha256=vFJ3hc0mI1wXVC_9IFXf9nxFT4y8NacJIGwxI6gHj8E,10861
|
|
107
|
+
armodel/parser/arxml_parser.py,sha256=JXx7Gxc1dejIasi_miyVlrQoQ9jwg4Un5pjYFg5Li_w,175840
|
|
108
|
+
armodel/parser/connector_xlsx_parser.py,sha256=1w-1iIpIgPXTnQUS5mCoJm2lEAktwX2Gg5JaNzxq6Co,10198
|
|
95
109
|
armodel/parser/excel_parser.py,sha256=-Ws0eDvGna9LPQC9T8bgMg3Zq84v04aSuSxZUlZx1Wo,698
|
|
110
|
+
armodel/parser/file_parser.py,sha256=SEPj3YsYdsz8iBvxdeDIs63NC-NQLftoIm4yPoHheEc,1410
|
|
96
111
|
armodel/report/__init__.py,sha256=EId0Ph3qYyzkKHKplJrs00ToxHeSjQVvhLwrSoV-SBw,52
|
|
97
|
-
armodel/report/connector_xls_report.py,sha256=
|
|
112
|
+
armodel/report/connector_xls_report.py,sha256=y8BXiqDh-r4UYWLl1UQrCu_NqYbjvsjjBLQdBGRIljk,3947
|
|
98
113
|
armodel/report/excel_report.py,sha256=Iome8wALpOFZyZkMCG5DPSAFkfv4pU0y_BZXHVSdonc,1412
|
|
99
114
|
armodel/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
100
115
|
armodel/tests/test_armodel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
101
116
|
armodel/tests/test_armodel/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
102
117
|
armodel/tests/test_armodel/models/test_ar_object.py,sha256=YLuEYmxk4KqmYGef6ru20i838raHgHrwVgnZQwi5_OU,4941
|
|
103
|
-
armodel/tests/test_armodel/models/test_ar_package.py,sha256=
|
|
104
|
-
armodel/tests/test_armodel/models/test_ar_ref.py,sha256=
|
|
118
|
+
armodel/tests/test_armodel/models/test_ar_package.py,sha256=fOqVe5a11sDPLjHwYSgRb0Y9SpWKRW67aLPmDI2Qn8w,14846
|
|
119
|
+
armodel/tests/test_armodel/models/test_ar_ref.py,sha256=h5XVmdZeVv3aqCaefai9MKI9PwE7YNt-FKGnmZJmc58,3519
|
|
105
120
|
armodel/tests/test_armodel/models/test_bsw_module_template.py,sha256=nUMH7t6dJOXdATt8dfEnLotRUhSUQAYpUCianE0F_ao,2071
|
|
106
|
-
armodel/tests/test_armodel/models/test_common_structure.py,sha256=
|
|
121
|
+
armodel/tests/test_armodel/models/test_common_structure.py,sha256=ZPUA8txjwI16Jwxi9rH_5kcR3qQc4hLjdH7ql2iW7s8,3552
|
|
107
122
|
armodel/tests/test_armodel/models/test_data_dictionary.py,sha256=Z_nn9JK7cJOPjst0ih4qj0212LIsHiJ-YUTfJOPEOvw,1106
|
|
108
|
-
armodel/tests/test_armodel/models/test_data_prototype.py,sha256=
|
|
109
|
-
armodel/tests/test_armodel/models/test_datatype.py,sha256=
|
|
110
|
-
armodel/tests/test_armodel/models/test_general_structure.py,sha256=
|
|
111
|
-
armodel/tests/test_armodel/models/test_implementation.py,sha256=
|
|
123
|
+
armodel/tests/test_armodel/models/test_data_prototype.py,sha256=ev8jFNFVFjkckkZP_dzj4oM49W-8CJJoucQB-0xActk,4259
|
|
124
|
+
armodel/tests/test_armodel/models/test_datatype.py,sha256=LDi92RzIK9Fzs3T30btodBecpwo-GK_eLTK43Wo1K9E,12034
|
|
125
|
+
armodel/tests/test_armodel/models/test_general_structure.py,sha256=QQKLcarnYDpA56LAdis_rr1PyLtiV-q4YLqfVvN1OIk,2258
|
|
126
|
+
armodel/tests/test_armodel/models/test_implementation.py,sha256=O0H18jgbrRwmnUE5tjrcHwoZ8puI4zNsPqqnAPlwn6E,950
|
|
112
127
|
armodel/tests/test_armodel/models/test_m2_msr.py,sha256=pMWQS4O7FUMrbZcaCR0WF7lYj2m3jvq3AoR4ZbS7Ntg,2650
|
|
113
|
-
armodel/tests/test_armodel/models/test_port_interface.py,sha256=
|
|
128
|
+
armodel/tests/test_armodel/models/test_port_interface.py,sha256=o6dqy-4tvz3-9qyefR79OwwoYYeDjwPCvM7ahbzXx2w,9239
|
|
114
129
|
armodel/tests/test_armodel/models/test_port_prototype.py,sha256=wV_QjAg4fb9MfeiwDWldzJiHeNpAcZq5vPZ4rWB2Pn0,494
|
|
115
130
|
armodel/tests/test_armodel/parser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
116
131
|
armodel/tests/test_armodel/parser/test_arxml_parser.py,sha256=4-4DKdHIZN50wiM0tzzP-nejY74aEtAWhURwYxDGrWw,747
|
|
117
|
-
armodel/tests/test_armodel/parser/test_parse_bswmd.py,sha256=
|
|
118
|
-
armodel/tests/test_armodel/parser/test_sw_components.py,sha256=
|
|
132
|
+
armodel/tests/test_armodel/parser/test_parse_bswmd.py,sha256=hh3R2L6QJOl4N9oY5fmy2REQm0KYpPoyY67tUcxf1PI,10257
|
|
133
|
+
armodel/tests/test_armodel/parser/test_sw_components.py,sha256=Mm8eteRFmVHF2VDvCYoxpMGtoya66-zxdq1ZUz4lvOE,4188
|
|
119
134
|
armodel/writer/__init__.py,sha256=eXr3qhGzFIvHNBin22x-Tk2JM6QwRgx1jwrluDKAlzQ,37
|
|
120
|
-
armodel/writer/abstract_arxml_writer.py,sha256=
|
|
121
|
-
armodel/writer/arxml_writer.py,sha256=
|
|
122
|
-
armodel-1.6.
|
|
123
|
-
armodel-1.6.
|
|
124
|
-
armodel-1.6.
|
|
125
|
-
armodel-1.6.
|
|
126
|
-
armodel-1.6.
|
|
127
|
-
armodel-1.6.
|
|
135
|
+
armodel/writer/abstract_arxml_writer.py,sha256=QoBAlVwt8D7Mpsd5t3Cg0foi-vyLlfaeSOqykn3O9u4,5235
|
|
136
|
+
armodel/writer/arxml_writer.py,sha256=Zi_L-bRfKs3msa2kIxx_A9xjpa144QGIB8JvWzDDk3k,170625
|
|
137
|
+
armodel-1.6.2.dist-info/LICENSE,sha256=rceTpGhsmmN1M0k1KO0HRS11iCjen-2y56ZEqgo43wo,1088
|
|
138
|
+
armodel-1.6.2.dist-info/METADATA,sha256=j10Pbt8SKB8z1wZBqpkVKS1iME1y_tdYkTOSGtxpaBQ,10573
|
|
139
|
+
armodel-1.6.2.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
140
|
+
armodel-1.6.2.dist-info/entry_points.txt,sha256=7n_GwPbHcnqMTnKCnPjjjo3s_uo_vaFrjtZQeDQtHHM,397
|
|
141
|
+
armodel-1.6.2.dist-info/top_level.txt,sha256=AEATYsqAuRpr0XGa_ThW7-o4WLlA5e3PEgD0QJhzmoA,8
|
|
142
|
+
armodel-1.6.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|