armodel 1.3.0__py3-none-any.whl → 1.4.3__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.
Files changed (75) hide show
  1. armodel/__init__.py +2 -1
  2. armodel/cli/arxml_dump_cli.py +8 -6
  3. armodel/cli/arxml_format_cli.py +72 -0
  4. armodel/cli/connector2xlsx_cli.py +75 -0
  5. armodel/cli/connector_update_cli.py +77 -0
  6. armodel/cli/swc_list_cli.py +2 -2
  7. armodel/data_models/__init__.py +0 -0
  8. armodel/data_models/sw_connector.py +22 -0
  9. armodel/lib/__init__.py +1 -1
  10. armodel/lib/sw_component.py +34 -0
  11. armodel/models/__init__.py +8 -2
  12. armodel/models/annotation.py +20 -0
  13. armodel/models/ar_object.py +184 -0
  14. armodel/models/ar_package.py +144 -14
  15. armodel/models/ar_ref.py +74 -8
  16. armodel/models/bsw_module_template.py +97 -25
  17. armodel/models/calibration.py +119 -0
  18. armodel/models/common_structure.py +203 -36
  19. armodel/models/communication.py +17 -0
  20. armodel/models/data_def_properties.py +16 -0
  21. armodel/models/data_dictionary.py +46 -9
  22. armodel/models/data_prototype.py +24 -5
  23. armodel/models/datatype.py +86 -19
  24. armodel/models/end_to_end_protection.py +67 -0
  25. armodel/models/general_structure.py +72 -17
  26. armodel/models/global_constraints.py +40 -0
  27. armodel/models/implementation.py +80 -32
  28. armodel/models/m2_msr.py +82 -6
  29. armodel/models/multilanguage_data.py +42 -0
  30. armodel/models/per_instance_memory.py +14 -0
  31. armodel/models/port_interface.py +27 -4
  32. armodel/models/port_prototype.py +48 -23
  33. armodel/models/record_layout.py +118 -0
  34. armodel/models/service_mapping.py +11 -0
  35. armodel/models/service_needs.py +48 -0
  36. armodel/models/sw_component.py +257 -43
  37. armodel/models/unit.py +14 -0
  38. armodel/parser/abstract_arxml_parser.py +248 -0
  39. armodel/parser/arxml_parser.py +1550 -648
  40. armodel/parser/connector_xlsx_parser.py +190 -0
  41. armodel/parser/excel_parser.py +18 -0
  42. armodel/report/__init__.py +1 -0
  43. armodel/report/connector_xls_report.py +76 -0
  44. armodel/report/excel_report.py +42 -0
  45. armodel/tests/__init__.py +0 -0
  46. armodel/tests/test_armodel/__init__.py +0 -0
  47. armodel/tests/test_armodel/models/__init__.py +0 -0
  48. armodel/tests/test_armodel/models/test_ar_object.py +152 -0
  49. armodel/tests/test_armodel/models/test_ar_package.py +294 -0
  50. armodel/tests/test_armodel/models/test_ar_ref.py +74 -0
  51. armodel/tests/test_armodel/models/test_bsw_module_template.py +46 -0
  52. armodel/tests/test_armodel/models/test_common_structure.py +73 -0
  53. armodel/tests/test_armodel/models/test_data_dictionary.py +29 -0
  54. armodel/tests/test_armodel/models/test_data_prototype.py +86 -0
  55. armodel/tests/test_armodel/models/test_datatype.py +239 -0
  56. armodel/tests/test_armodel/models/test_general_structure.py +50 -0
  57. armodel/tests/test_armodel/models/test_implementation.py +26 -0
  58. armodel/tests/test_armodel/models/test_m2_msr.py +77 -0
  59. armodel/tests/test_armodel/models/test_port_interface.py +198 -0
  60. armodel/tests/test_armodel/models/test_port_prototype.py +14 -0
  61. armodel/tests/test_armodel/parser/__init__.py +0 -0
  62. armodel/tests/test_armodel/parser/test_arxml_parser.py +15 -0
  63. armodel/tests/test_armodel/parser/test_parse_bswmd.py +192 -0
  64. armodel/tests/test_armodel/parser/test_sw_components.py +93 -0
  65. armodel/writer/__init__.py +1 -0
  66. armodel/writer/abstract_arxml_writer.py +123 -0
  67. armodel/writer/arxml_writer.py +1755 -0
  68. {armodel-1.3.0.dist-info → armodel-1.4.3.dist-info}/METADATA +124 -4
  69. armodel-1.4.3.dist-info/RECORD +78 -0
  70. armodel-1.4.3.dist-info/entry_points.txt +7 -0
  71. armodel-1.3.0.dist-info/RECORD +0 -31
  72. armodel-1.3.0.dist-info/entry_points.txt +0 -4
  73. {armodel-1.3.0.dist-info → armodel-1.4.3.dist-info}/LICENSE +0 -0
  74. {armodel-1.3.0.dist-info → armodel-1.4.3.dist-info}/WHEEL +0 -0
  75. {armodel-1.3.0.dist-info → armodel-1.4.3.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: armodel
3
- Version: 1.3.0
3
+ Version: 1.4.3
4
4
  Summary: the python arxml parser
5
5
  Home-page: http://github.com/melodypapa/py-armodel
6
6
  Author: melodypapa
@@ -16,6 +16,8 @@ Classifier: Operating System :: OS Independent
16
16
  Requires-Python: >=3.5
17
17
  Description-Content-Type: text/markdown
18
18
  Requires-Dist: colorama
19
+ Requires-Dist: openpyxl
20
+ Requires-Dist: lxml
19
21
  Provides-Extra: pytest
20
22
  Requires-Dist: pytest-cov ; extra == 'pytest'
21
23
 
@@ -71,6 +73,7 @@ And more details can be found at https://packaging.python.org/
71
73
  - ParameterInterface
72
74
  - SenderReceiverInterface
73
75
  - BswModuleEntry
76
+ - EndToEndProtectionSet
74
77
  - Implementation
75
78
  - BswImplementation
76
79
  - AtpFeature
@@ -86,6 +89,11 @@ And more details can be found at https://packaging.python.org/
86
89
  - BswModuleDescription
87
90
  - ExecutableEntity
88
91
  - SwcBswMapping
92
+ - PortPrototype
93
+ - AbstractProvidedPortPrototype
94
+ - PPortPrototype
95
+ - AbstractRequiredPortPrototype
96
+ - RPortPrototype
89
97
  - ValueSpecification
90
98
  - ConstantReference
91
99
  ```
@@ -110,7 +118,7 @@ And more details can be found at https://packaging.python.org/
110
118
  $arxml-dump --arxml test1.arxml --arxml test2.arxml
111
119
  ```
112
120
 
113
- ### 1.8.2. swc-list
121
+ ### 1.8.2. arxml-swc
114
122
 
115
123
  **List all the SwComponentType in the autosar model**
116
124
 
@@ -129,15 +137,32 @@ usage: swc-list [-h] [-v] [-f FORMAT] [--filter FILTER] Input [Input ...]
129
137
  #### 1.8.2.1. List all the SW-Components in the specific path
130
138
 
131
139
  ```
132
- $swc-list <arxml_folder>
140
+ $arxml-swc <arxml_folder>
133
141
  ```
134
142
 
135
143
  #### 1.8.2.2. List all the CompositionSwComponent with the long name
136
144
 
137
145
  ```
138
- $swc-list --format long --filter CompositionSwComponent <arxml_folder>
146
+ $arxml-swc --format long --filter CompositionSwComponent <arxml_folder>
139
147
  ```
140
148
 
149
+ ### 1.8.3. connector2xlsx
150
+
151
+ **Export all the SwConnector (AssemblySwConnector, DelegationSwConnector) to excel file**
152
+
153
+ ```
154
+ $connector2xlsx src/armodel/tests/test_files/SoftwareComponents.arxml data/SoftwareComponents.xlsx
155
+ ```
156
+
157
+ ### 1.8.4. connector-update
158
+
159
+ **Update all the SwConnector (AssemblySwConnector, DelegationSwConnector) from excel file**
160
+
161
+ ```
162
+ $connector-update src/armodel/tests/test_files/SoftwareComponents.arxml data/SoftwareComponents.xlsx data/Test.arxml
163
+ ```
164
+
165
+
141
166
  ## 1.9. API
142
167
 
143
168
  ### 1.9.1. Constructor
@@ -183,3 +208,98 @@ Fix the attribute intervalType of **Limit** is empty issue.
183
208
  7. Change the CATEGORY of COMPU-METHOD to optional.
184
209
  8. Change the CAN-BE-INVOKED-CONCURRENTLY to optional.
185
210
 
211
+ **Version 1.3.0**
212
+
213
+ 1. List all the SwComponentType (Issue #11)
214
+ 2. Support to parse the DelegationSwConnector (Issue #12)
215
+ 3. Correct the class definitions of PPortInCompositionInstanceRef and RPortInCompositionInstanceRef. (Issue #12)
216
+
217
+ **Version 1.4.0**
218
+
219
+ 1. Support to write the AUTOSAR model to arxml file (Issue #17)
220
+ * ARPackage
221
+ * CompositionSwComponent
222
+ * CompuMethod
223
+ * DataConstr
224
+ * Unit
225
+ 2. Support to read the AUTOSAR model from arxml file (Issue #17)
226
+ * ConstantSpecification
227
+ * DataConstr
228
+ * Unit
229
+
230
+ **Version 1.4.1**
231
+
232
+ 1. Support to read the AUTOSAR model from arxml file (Issue #19)
233
+ * ServerComSpec
234
+ * PerInstanceMemory
235
+ * PortDefinedArgumentValue
236
+ * DataWriteAccesses
237
+ * NvBlockNeeds
238
+ * CompositeNetworkRepresentation
239
+ * PortGroup
240
+ 2. Support to write the AUTOSAR model to arxml file (Issue #19)
241
+ * ServerComSpec
242
+ * PerInstanceMemory
243
+ * ServerCallPoint
244
+ * ReadLocalVariable
245
+ * WrittenLocalVariable
246
+ * PortDefinedArgumentValue
247
+ * RVariableInAtomicSwcInstanceRef
248
+ * DataWriteAccesses
249
+ * NvBlockNeeds
250
+ * RecordValueSpecification
251
+ * CompositeNetworkRepresentation
252
+ * PortGroup
253
+ 3. Move the ARPackage from the Elements.
254
+
255
+ **Version 1.4.2**
256
+
257
+ 1. Support to read the AUTOSAR model from arxml file (Issue #23)
258
+ * EndToEndProtectionSet
259
+ * EndToEndProtection
260
+ * EndToEndProtectionVariablePrototype
261
+ * EndToEndDescription
262
+ * ApplicationArrayDataType
263
+ * SwRecordLayout
264
+ * SwCalprmAxisSet
265
+ * SwCalprmAxis
266
+ * ApplicationArrayElement
267
+ * ApplicationArrayDataType
268
+ * SwRecordLayoutGroup
269
+ * SwRecordLayoutGroupContent
270
+ 2. Support to write the AUTOSAR model to arxml file (Issue #23)
271
+ * EndToEndProtectionSet
272
+ * EndToEndProtection
273
+ * EndToEndProtectionVariablePrototype
274
+ * EndToEndDescription
275
+ * ApplicationArrayDataType
276
+ * SwRecordLayout
277
+ * SwCalprmAxisSet
278
+ * SwCalprmAxis
279
+ * ApplicationArrayElement
280
+ * ApplicationArrayDataType
281
+ * SwRecordLayoutGroup
282
+ * SwRecordLayoutGroupContent
283
+ * ImplementationDataType
284
+
285
+ **Version 1.4.3**
286
+
287
+ 1. Support to write the AUTOSAR model to arxml file (Issue #25)
288
+ * BswCalledEntity
289
+ * BswSchedulableEntity
290
+ * BswImplementation
291
+ * ServiceSwComponentType
292
+ * DataTypeMappingSet
293
+ * ModeRequestTypeMap
294
+ * PortInterface
295
+ * ModeInterface
296
+ 2. Support ot read the AUTOSAR model to arxml file (Issue #25)
297
+ * ServiceSwComponentType
298
+ * ModeRequestTypeMap
299
+ * PortInterface
300
+ * ModeInterface
301
+ 3. Refactor the Base ARType
302
+ * ARFloat
303
+ * ARNumerical
304
+ * ARLiteral
305
+
@@ -0,0 +1,78 @@
1
+ armodel/__init__.py,sha256=GVXg600GzbcLT2-Lrepuz6mjT6_BsVNmi2eDiz85NiA,67
2
+ armodel/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
+ armodel/cli/arxml_dump_cli.py,sha256=DXgvcX_lK5UK6kN8NSfTVfDSJUP-2KSbqXMffc9P9z0,10018
4
+ armodel/cli/arxml_format_cli.py,sha256=9Ys_3DlcVwV2vDGcE6FAwmVfyx2dKLlIdLi17Fla-Jk,2066
5
+ armodel/cli/connector2xlsx_cli.py,sha256=bPxJ53znVpluabEbjqN58RX8a9dvlf-cF5o7ncjqTyw,2125
6
+ armodel/cli/connector_update_cli.py,sha256=j8T2N-gxHM6CD5Vb44X24HyuhvXwNDIniUkdJ7Dsluc,2286
7
+ armodel/cli/swc_list_cli.py,sha256=NUyOuIYhXsbSzQl1CjWdgdP83CkeAkXS_kWY4zs-XKU,2414
8
+ armodel/data_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
+ armodel/data_models/sw_connector.py,sha256=Eiw848Qs0L3-85cF7uj5IXcudOks2rVU5-CVz-v-cm8,590
10
+ armodel/lib/__init__.py,sha256=d6Zc24rVcVb5-TvPEdaJ7vx_7UJ37z9rLjXtpAzVBwU,93
11
+ armodel/lib/cli_args_parser.py,sha256=WiTC3wy_fZYloA1AjPqCvvOA_26V_y5toun0qfV51cw,1207
12
+ armodel/lib/data_analyzer.py,sha256=y4ViEGPi_xRKD7hw1ptkGl0_UfhnNdgNzf2YjbOhpjM,1159
13
+ armodel/lib/sw_component.py,sha256=y4ViEGPi_xRKD7hw1ptkGl0_UfhnNdgNzf2YjbOhpjM,1159
14
+ armodel/models/__init__.py,sha256=mBpu5GEPCHes0QtWXiccyFIGfCr3CqqfRo1C3LeRc2E,552
15
+ armodel/models/annotation.py,sha256=Pn5Xkl87E0Zs5bBSaSwOfalUT2OOCPJ4Z99Wh_6VIrA,517
16
+ armodel/models/ar_object.py,sha256=_h2wLpOdPQRqTdnR__N5WaJ9oWkWdYg13sBxqsegayM,5326
17
+ armodel/models/ar_package.py,sha256=-6cUA2IXqdohu_y3HV8RIIhMNNNhhAFf6BJfLZ6gZmM,19951
18
+ armodel/models/ar_ref.py,sha256=bA704b_7NZM7KgNDtto2I5EvbVKGiMTc2Rfd7Ny0oJU,6866
19
+ armodel/models/bsw_module_template.py,sha256=4MgwnNmvthqNUHO15tNpkKBj-dieGPnz6DMCeyxba7k,14748
20
+ armodel/models/calibration.py,sha256=aSIVenVmlYKW5kQmaLTiy7kJcSe6yrvCfN8kO03Wk6Q,4087
21
+ armodel/models/common_structure.py,sha256=upQ5BpPZhZmE_Y1S2PwlAJQE2993iNfEgYbRyDBfyBM,12997
22
+ armodel/models/communication.py,sha256=j1QUSM7yfUkd3p7vqckmK9Zf9H6Qf9AAVpckhnr8QRo,601
23
+ armodel/models/data_def_properties.py,sha256=Mhmucm3k_f12IV5BqH3KlJ5SdmIrlmqnmrQPb5gqamA,470
24
+ armodel/models/data_dictionary.py,sha256=1gbRyvWp5QD0Z-2kxNrqa1qrab5kEZTMcNdWscdmth0,2513
25
+ armodel/models/data_prototype.py,sha256=dkjIF1qIsul2SsUbHpX8r1VhDeGdg-Vgf5VUJNiwhpE,2777
26
+ armodel/models/datatype.py,sha256=0YpkrfhFUDn00p0oT4NqVpvD7hYAWzUWRwqvsqEq6zE,8640
27
+ armodel/models/ecuc_parameter_def_template.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
+ armodel/models/end_to_end_protection.py,sha256=Sna3HSsukFHTBj72jWXd3fRvJTEESK1wnKo_KXD5itE,2978
29
+ armodel/models/general_structure.py,sha256=zzKMRsWedhncgqPaDhf3FvsYSHQa4di87eJg2Ie-hAk,6054
30
+ armodel/models/global_constraints.py,sha256=fBCzYaZ55SDG7shneE8dNgFm_QQxPRUUPvzIWBlNKHY,1301
31
+ armodel/models/implementation.py,sha256=xbF0m855qpE3qAcNoeo9DDVx92KbEwYAy1rQzCdixs4,5653
32
+ armodel/models/m2_msr.py,sha256=gEaOEDsX_ZeZtcu2as5BAnBR5GjlABDY9K0bsNhG2WU,5061
33
+ armodel/models/multilanguage_data.py,sha256=f7WVEX_U76sZEMcDi3ariiMq6vtUNUheM4xeDFdlyxo,931
34
+ armodel/models/per_instance_memory.py,sha256=286K8xdiKWCVmasrqycth6E5WyQyUvOg8GBUbYYF-yA,498
35
+ armodel/models/port_interface.py,sha256=h1quoa4LRhEC7aGKIUs8bbHeGTQ5vbDkC7AwUUD6U1E,7257
36
+ armodel/models/port_prototype.py,sha256=gD0T_iHWUGH56q9Gxyj96TrEgpzGPfOIIYTtiV66SVA,8909
37
+ armodel/models/record_layout.py,sha256=6ZRzRZr89EUanrYaSGjj_UhlVHewneI3NLglqjL_KzU,4554
38
+ armodel/models/service_mapping.py,sha256=cDmXPaWVnCJ0M9Bkdk_KZvkyCfMQS35ADuFPPACzm70,279
39
+ armodel/models/service_needs.py,sha256=W9dsu2Z9oIPXYJab7sFht3lY7QPe0ozHMQNhrvBX1ec,2553
40
+ armodel/models/sw_component.py,sha256=whoI2vxms29w5Z_NivtWlAcPgIq9877wgnSN78a2auM,30821
41
+ armodel/models/unit.py,sha256=uTAHK2LzmQimlQKcWFFrFJJhYAcAlOcsMtvLEQ42EE8,397
42
+ armodel/parser/__init__.py,sha256=whzCLvAstuSlm6scgcCId7AUxSX8z8PV8AIKSNWMkGo,37
43
+ armodel/parser/abstract_arxml_parser.py,sha256=58zaHbiHipSTIY1F0NQ7hkbaGB_eCnjEXloVJ7kX8n8,10473
44
+ armodel/parser/arxml_parser.py,sha256=v1F-QShabXUDMBCwRrYUsnNMd5rqjlzlk-B7ybnhj4g,116599
45
+ armodel/parser/connector_xlsx_parser.py,sha256=5KDaHykqL0NszftFG0V5CgmgiRi4Bsg7wJnlRg2pc2k,10087
46
+ armodel/parser/excel_parser.py,sha256=-Ws0eDvGna9LPQC9T8bgMg3Zq84v04aSuSxZUlZx1Wo,698
47
+ armodel/report/__init__.py,sha256=EId0Ph3qYyzkKHKplJrs00ToxHeSjQVvhLwrSoV-SBw,52
48
+ armodel/report/connector_xls_report.py,sha256=7GsvFWo_lfZRKCLAV-a17kC8-3KKSMAR1wGOnp9Cqlo,3876
49
+ armodel/report/excel_report.py,sha256=Iome8wALpOFZyZkMCG5DPSAFkfv4pU0y_BZXHVSdonc,1412
50
+ armodel/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
+ armodel/tests/test_armodel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
+ armodel/tests/test_armodel/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
+ armodel/tests/test_armodel/models/test_ar_object.py,sha256=YLuEYmxk4KqmYGef6ru20i838raHgHrwVgnZQwi5_OU,4941
54
+ armodel/tests/test_armodel/models/test_ar_package.py,sha256=4y_XY788rjzUEa-gX_y_FZ3uHriOMttpj-kJPWTe-nc,14523
55
+ armodel/tests/test_armodel/models/test_ar_ref.py,sha256=2zayiW9gKnNJc3c8no3fPQ3B5m5GvQ5FHFSxXU-yUXo,3260
56
+ armodel/tests/test_armodel/models/test_bsw_module_template.py,sha256=ZmJ9_8omFtbf9_O_OHa0B1v2bP6cdhCzW4oJkuicZYY,2061
57
+ armodel/tests/test_armodel/models/test_common_structure.py,sha256=tbzrrN6PmEAZ59GSwD29K18q0vlg8jIT8ipm7-6ImyQ,3446
58
+ armodel/tests/test_armodel/models/test_data_dictionary.py,sha256=0TCjN3zM1aPLbL4D6fpwoI5Q-hJR8uJZNSjEhiwCegg,1070
59
+ armodel/tests/test_armodel/models/test_data_prototype.py,sha256=vRpKbH49YMhISuJ9N6rEpzIFJxx_WMmS3sr6HYU4WRE,4205
60
+ armodel/tests/test_armodel/models/test_datatype.py,sha256=BH34gx_O_7eDK1DnZkFuL54Z4W4JXGwbytuCbzSMMrM,11811
61
+ armodel/tests/test_armodel/models/test_general_structure.py,sha256=E8kiGQY_2Lj9lUhLNTHzBgu-xnGl8gO3faNueJFeHJE,2220
62
+ armodel/tests/test_armodel/models/test_implementation.py,sha256=RBIuwvVjiSfAmqytZpT53SJd1AJzwHuH0KdAACoZ2Ik,912
63
+ armodel/tests/test_armodel/models/test_m2_msr.py,sha256=pMWQS4O7FUMrbZcaCR0WF7lYj2m3jvq3AoR4ZbS7Ntg,2650
64
+ armodel/tests/test_armodel/models/test_port_interface.py,sha256=JUeAOTOH8Sq7CLW0lDhvflC7h47anFTLgrZzHMfacX8,9099
65
+ armodel/tests/test_armodel/models/test_port_prototype.py,sha256=wV_QjAg4fb9MfeiwDWldzJiHeNpAcZq5vPZ4rWB2Pn0,494
66
+ armodel/tests/test_armodel/parser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
67
+ armodel/tests/test_armodel/parser/test_arxml_parser.py,sha256=4-4DKdHIZN50wiM0tzzP-nejY74aEtAWhURwYxDGrWw,747
68
+ armodel/tests/test_armodel/parser/test_parse_bswmd.py,sha256=4sHoksq7O43n-ltno3V1uT0bBOZicqM9GxPzVuYF8mI,9722
69
+ armodel/tests/test_armodel/parser/test_sw_components.py,sha256=srGfUKWyor_cpXTf52aucNKLG2TO4hN0tKNEuHyEBNI,4091
70
+ armodel/writer/__init__.py,sha256=eXr3qhGzFIvHNBin22x-Tk2JM6QwRgx1jwrluDKAlzQ,37
71
+ armodel/writer/abstract_arxml_writer.py,sha256=WUE8dIvoMagb9P-2JpdbY5aRg0Ub10N9ncvD8E03AFA,5078
72
+ armodel/writer/arxml_writer.py,sha256=-dcADMiXz0_KwUBrtmS4511j03YW563UMCvtUB5awKk,113310
73
+ armodel-1.4.3.dist-info/LICENSE,sha256=rceTpGhsmmN1M0k1KO0HRS11iCjen-2y56ZEqgo43wo,1088
74
+ armodel-1.4.3.dist-info/METADATA,sha256=_Qh58O--kb5mjun0KjgzA1bsuQK2AmD42xsrtjwIX6E,9269
75
+ armodel-1.4.3.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
76
+ armodel-1.4.3.dist-info/entry_points.txt,sha256=mK_qNI3DgZJmNdezwKHoDcv470z3IdJpNpaiWV8ZNjA,269
77
+ armodel-1.4.3.dist-info/top_level.txt,sha256=AEATYsqAuRpr0XGa_ThW7-o4WLlA5e3PEgD0QJhzmoA,8
78
+ armodel-1.4.3.dist-info/RECORD,,
@@ -0,0 +1,7 @@
1
+ [console_scripts]
2
+ arxml-dump = armodel.cli.arxml_dump_cli:cli_main
3
+ arxml-format = armodel.cli.arxml_format_cli:main
4
+ arxml-swc = armodel.cli.swc_list_cli:main
5
+ connector-update = armodel.cli.connector_update_cli:main
6
+ connector2xlsx = armodel.cli.connector2xlsx_cli:main
7
+
@@ -1,31 +0,0 @@
1
- armodel/__init__.py,sha256=K_KHb3O2T21uteIe0wac-tb3kI2xWHTnwV9ShaXesAU,54
2
- armodel/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
3
- armodel/cli/arxml_dump_cli.py,sha256=SELbIKJMN65Lzfuze-q_XPBme-KTPrpb2yDl3fLctc8,9932
4
- armodel/cli/swc_list_cli.py,sha256=9dgW-5Gn1TFqbq5wQd_EFpe9IDLJhPBlYcWRi3m5x84,2414
5
- armodel/lib/__init__.py,sha256=1i7vjCwcVMUrTrN7mRgQsIN6eP-8gsIKSLDh6YXjNe8,94
6
- armodel/lib/cli_args_parser.py,sha256=WiTC3wy_fZYloA1AjPqCvvOA_26V_y5toun0qfV51cw,1207
7
- armodel/lib/data_analyzer.py,sha256=y4ViEGPi_xRKD7hw1ptkGl0_UfhnNdgNzf2YjbOhpjM,1159
8
- armodel/models/__init__.py,sha256=ijDu-Ra2ZjEJNy88Y5ZsPqxAt05_reQsQti-_X4gD3o,402
9
- armodel/models/ar_object.py,sha256=-XM0LFxXJovY7ANh-enGmAFu8yhkj9YzFFyCY7ffO8U,371
10
- armodel/models/ar_package.py,sha256=OPoNGaAhTBf30elxc1dvJMyU6CpMUmvs0SUwaYoEtVs,13275
11
- armodel/models/ar_ref.py,sha256=RZT6URQ91YgmRk1oUTC-0UPnwn61MgEzmII7UKwQXUM,3548
12
- armodel/models/bsw_module_template.py,sha256=k_CZWtTipKtVFjIx08uRqadSubVtBJ-NhUlocfoA0a0,11778
13
- armodel/models/common_structure.py,sha256=DSnuhhYdpDW-klOCZNg8zULuhFBdk7k601YQsPg5IT4,6745
14
- armodel/models/data_dictionary.py,sha256=xSQzXkLQyOJiLIsczlAzGBnrrvHFVv2_-OfVyN6_MSE,867
15
- armodel/models/data_prototype.py,sha256=pyIahyJh4KaikMfHikHiKzbGai1JnkrzDZpkVLvb6iU,2096
16
- armodel/models/datatype.py,sha256=BEc8y3mcQZEvwteFUtJyPYBIwnHJcs9fIyxLgnMK5rk,5802
17
- armodel/models/ecuc_parameter_def_template.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
- armodel/models/general_structure.py,sha256=syJTAAo3DIBE6O0nB8Whm4OEnNyN4uVIAJZPA8t3ukY,4480
19
- armodel/models/implementation.py,sha256=jfatA90Ww51kMqnUsbx6q4JRRRIRFCQXVg88J44RNoA,3850
20
- armodel/models/m2_msr.py,sha256=Gk-h-4jSnOkWlfJJcI1-1YvSQvBqkUJZxlzikwgAsec,2165
21
- armodel/models/port_interface.py,sha256=UDCvj78k3sfG4IJX4FWQj6LUV2mWw6Nt0plMnLsQfZk,6026
22
- armodel/models/port_prototype.py,sha256=Pqp5euv_RDfTlsEqvBkpAreBFMJlovuU49cJsYD4d3Q,7215
23
- armodel/models/sw_component.py,sha256=ix6LP1-TLN1r7YEl3CrUoo_ZGfvNGj5q8p3XNPUbabU,20583
24
- armodel/parser/__init__.py,sha256=whzCLvAstuSlm6scgcCId7AUxSX8z8PV8AIKSNWMkGo,37
25
- armodel/parser/arxml_parser.py,sha256=LPSj4BxO9fV9pIXVhzMjJmOIC4YUSbDi3H6I11McXOM,56759
26
- armodel-1.3.0.dist-info/LICENSE,sha256=rceTpGhsmmN1M0k1KO0HRS11iCjen-2y56ZEqgo43wo,1088
27
- armodel-1.3.0.dist-info/METADATA,sha256=eael0JbJhlKXRebYA2EHb83ccoqjtCd-Z6zVzx51SJk,5932
28
- armodel-1.3.0.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
29
- armodel-1.3.0.dist-info/entry_points.txt,sha256=U-GD6do9I0ZRKENiIdmJMbsLHbtBX2Q7CWIldbNFrc0,109
30
- armodel-1.3.0.dist-info/top_level.txt,sha256=AEATYsqAuRpr0XGa_ThW7-o4WLlA5e3PEgD0QJhzmoA,8
31
- armodel-1.3.0.dist-info/RECORD,,
@@ -1,4 +0,0 @@
1
- [console_scripts]
2
- arxml-dump = armodel.cli.arxml_dump_cli:cli_main
3
- swc-list = armodel.cli.swc_list_cli:main
4
-