armodel 1.4.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.
- armodel/__init__.py +2 -1
- armodel/cli/arxml_dump_cli.py +8 -6
- armodel/cli/arxml_format_cli.py +72 -0
- armodel/cli/connector_update_cli.py +11 -4
- armodel/data_models/__init__.py +0 -0
- armodel/data_models/sw_connector.py +22 -0
- armodel/lib/data_analyzer.py +1 -1
- armodel/models/__init__.py +3 -2
- armodel/models/annotation.py +20 -0
- armodel/models/ar_object.py +163 -18
- armodel/models/ar_package.py +110 -14
- armodel/models/ar_ref.py +62 -6
- armodel/models/bsw_module_template.py +97 -26
- armodel/models/calibration.py +107 -4
- armodel/models/common_structure.py +112 -37
- armodel/models/communication.py +10 -1
- armodel/models/data_def_properties.py +16 -0
- armodel/models/data_dictionary.py +46 -9
- armodel/models/data_prototype.py +24 -5
- armodel/models/datatype.py +69 -20
- armodel/models/end_to_end_protection.py +67 -0
- armodel/models/general_structure.py +25 -15
- armodel/models/global_constraints.py +4 -4
- armodel/models/implementation.py +80 -32
- armodel/models/m2_msr.py +6 -4
- armodel/models/multilanguage_data.py +42 -0
- armodel/models/per_instance_memory.py +14 -0
- armodel/models/port_interface.py +27 -4
- armodel/models/port_prototype.py +37 -17
- armodel/models/record_layout.py +118 -0
- armodel/models/service_mapping.py +11 -0
- armodel/models/service_needs.py +48 -0
- armodel/models/sw_component.py +224 -39
- armodel/parser/abstract_arxml_parser.py +248 -0
- armodel/parser/arxml_parser.py +1280 -810
- armodel/parser/connector_xlsx_parser.py +190 -0
- armodel/parser/excel_parser.py +18 -0
- armodel/tests/test_armodel/models/test_ar_object.py +152 -0
- armodel/tests/test_armodel/models/test_ar_package.py +1 -1
- armodel/tests/test_armodel/models/test_common_structure.py +2 -2
- armodel/tests/test_armodel/models/test_data_dictionary.py +7 -7
- armodel/tests/test_armodel/models/test_data_prototype.py +2 -2
- armodel/tests/test_armodel/models/test_datatype.py +4 -4
- armodel/tests/test_armodel/models/test_general_structure.py +1 -1
- armodel/tests/test_armodel/models/test_implementation.py +26 -0
- armodel/tests/test_armodel/models/test_m2_msr.py +4 -4
- armodel/tests/test_armodel/parser/test_arxml_parser.py +15 -0
- armodel/tests/test_armodel/parser/test_parse_bswmd.py +70 -46
- armodel/tests/test_armodel/parser/test_sw_components.py +93 -0
- armodel/writer/abstract_arxml_writer.py +123 -0
- armodel/writer/arxml_writer.py +1464 -350
- {armodel-1.4.0.dist-info → armodel-1.4.3.dist-info}/METADATA +90 -3
- armodel-1.4.3.dist-info/RECORD +78 -0
- {armodel-1.4.0.dist-info → armodel-1.4.3.dist-info}/WHEEL +1 -1
- {armodel-1.4.0.dist-info → armodel-1.4.3.dist-info}/entry_points.txt +2 -0
- armodel-1.4.0.dist-info/RECORD +0 -60
- {armodel-1.4.0.dist-info → armodel-1.4.3.dist-info}/LICENSE +0 -0
- {armodel-1.4.0.dist-info → armodel-1.4.3.dist-info}/top_level.txt +0 -0
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: armodel
|
|
3
|
-
Version: 1.4.
|
|
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
|
|
7
7
|
Author-email: melodypapa@outlook.com
|
|
8
8
|
License: MIT
|
|
9
9
|
Keywords: AUTOSAR ARXML
|
|
10
|
+
Platform: UNKNOWN
|
|
10
11
|
Classifier: Development Status :: 1 - Planning
|
|
11
12
|
Classifier: Environment :: Console
|
|
12
13
|
Classifier: Programming Language :: Python :: 3
|
|
@@ -14,7 +15,6 @@ Classifier: License :: OSI Approved :: MIT License
|
|
|
14
15
|
Classifier: Operating System :: OS Independent
|
|
15
16
|
Requires-Python: >=3.5
|
|
16
17
|
Description-Content-Type: text/markdown
|
|
17
|
-
License-File: LICENSE
|
|
18
18
|
Requires-Dist: colorama
|
|
19
19
|
Requires-Dist: openpyxl
|
|
20
20
|
Requires-Dist: lxml
|
|
@@ -73,6 +73,7 @@ And more details can be found at https://packaging.python.org/
|
|
|
73
73
|
- ParameterInterface
|
|
74
74
|
- SenderReceiverInterface
|
|
75
75
|
- BswModuleEntry
|
|
76
|
+
- EndToEndProtectionSet
|
|
76
77
|
- Implementation
|
|
77
78
|
- BswImplementation
|
|
78
79
|
- AtpFeature
|
|
@@ -150,9 +151,18 @@ $arxml-swc --format long --filter CompositionSwComponent <arxml_folder>
|
|
|
150
151
|
**Export all the SwConnector (AssemblySwConnector, DelegationSwConnector) to excel file**
|
|
151
152
|
|
|
152
153
|
```
|
|
153
|
-
$connector2xlsx
|
|
154
|
+
$connector2xlsx src/armodel/tests/test_files/SoftwareComponents.arxml data/SoftwareComponents.xlsx
|
|
154
155
|
```
|
|
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
|
+
|
|
156
166
|
## 1.9. API
|
|
157
167
|
|
|
158
168
|
### 1.9.1. Constructor
|
|
@@ -216,3 +226,80 @@ Fix the attribute intervalType of **Limit** is empty issue.
|
|
|
216
226
|
* ConstantSpecification
|
|
217
227
|
* DataConstr
|
|
218
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,,
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
[console_scripts]
|
|
2
2
|
arxml-dump = armodel.cli.arxml_dump_cli:cli_main
|
|
3
|
+
arxml-format = armodel.cli.arxml_format_cli:main
|
|
3
4
|
arxml-swc = armodel.cli.swc_list_cli:main
|
|
4
5
|
connector-update = armodel.cli.connector_update_cli:main
|
|
5
6
|
connector2xlsx = armodel.cli.connector2xlsx_cli:main
|
|
7
|
+
|
armodel-1.4.0.dist-info/RECORD
DELETED
|
@@ -1,60 +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/connector2xlsx_cli.py,sha256=bPxJ53znVpluabEbjqN58RX8a9dvlf-cF5o7ncjqTyw,2125
|
|
5
|
-
armodel/cli/connector_update_cli.py,sha256=apbTgWluMxKsp2adjap93jcTgRHcrCkRIhHbPX1pGc0,2070
|
|
6
|
-
armodel/cli/swc_list_cli.py,sha256=NUyOuIYhXsbSzQl1CjWdgdP83CkeAkXS_kWY4zs-XKU,2414
|
|
7
|
-
armodel/lib/__init__.py,sha256=d6Zc24rVcVb5-TvPEdaJ7vx_7UJ37z9rLjXtpAzVBwU,93
|
|
8
|
-
armodel/lib/cli_args_parser.py,sha256=WiTC3wy_fZYloA1AjPqCvvOA_26V_y5toun0qfV51cw,1207
|
|
9
|
-
armodel/lib/data_analyzer.py,sha256=gIe52MuD90y32ygyyr-K7Nl88SkzEZtMvLyXmssJCBs,1177
|
|
10
|
-
armodel/lib/sw_component.py,sha256=y4ViEGPi_xRKD7hw1ptkGl0_UfhnNdgNzf2YjbOhpjM,1159
|
|
11
|
-
armodel/models/__init__.py,sha256=_T2emjzKbFAiyCR4Zu1c3FVghTzOSjlFKgmg3tTrppc,542
|
|
12
|
-
armodel/models/ar_object.py,sha256=GsTiPaN0lAh87pbsfU_fPfg7WQ_vMuia4ILWHBesDb8,1363
|
|
13
|
-
armodel/models/ar_package.py,sha256=0gY8Vl_eVmxehdi5wECGBzDsKL5KK7HDqS9ISorbUcI,14830
|
|
14
|
-
armodel/models/ar_ref.py,sha256=8QkTAJeJun8TMA39O4PjLYq3N4E7J19gB-DaJwZWpEQ,4075
|
|
15
|
-
armodel/models/bsw_module_template.py,sha256=cGSY2A5L0WmXJSaptCfX41CkmNsgJWDTPM7uQoRVmcs,11822
|
|
16
|
-
armodel/models/calibration.py,sha256=htYFZNCuqcCPIlQDMRt_euTZEyaGKKSzBqZ6tfpZH6s,405
|
|
17
|
-
armodel/models/common_structure.py,sha256=xRfRw7lD7WqJxhS-W2LO-OCXUmKbN7NPQzoa3qI-EZk,10056
|
|
18
|
-
armodel/models/communication.py,sha256=xcHEotwCLCzZm5OB0Opyxc3ODYRxSBPrEfrJ2eWquXg,183
|
|
19
|
-
armodel/models/data_dictionary.py,sha256=xSQzXkLQyOJiLIsczlAzGBnrrvHFVv2_-OfVyN6_MSE,867
|
|
20
|
-
armodel/models/data_prototype.py,sha256=pyIahyJh4KaikMfHikHiKzbGai1JnkrzDZpkVLvb6iU,2096
|
|
21
|
-
armodel/models/datatype.py,sha256=R3XKP3_ocar0uVsIBpOoKubkyIN7Jl9fY7-tgiXYbMg,6453
|
|
22
|
-
armodel/models/ecuc_parameter_def_template.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
23
|
-
armodel/models/general_structure.py,sha256=lomWyNcRLZAcOCwWocSBfCWdfyQ4_X4HdCZ61MxM-kU,5575
|
|
24
|
-
armodel/models/global_constraints.py,sha256=HeQNrDLNweHeqd6u_G7Jhf-CLVZiYTilU9Mqd-bZFUo,1280
|
|
25
|
-
armodel/models/implementation.py,sha256=jfatA90Ww51kMqnUsbx6q4JRRRIRFCQXVg88J44RNoA,3850
|
|
26
|
-
armodel/models/m2_msr.py,sha256=PqwPzLKrc0RWlaHYoX0ftQmSZGxXFIE9ZRp--UtkpOE,4944
|
|
27
|
-
armodel/models/port_interface.py,sha256=UDCvj78k3sfG4IJX4FWQj6LUV2mWw6Nt0plMnLsQfZk,6026
|
|
28
|
-
armodel/models/port_prototype.py,sha256=upFQ5xUR97aQy4FgKil0V85MgqK-GiABWeX8uJUcyZA,7683
|
|
29
|
-
armodel/models/sw_component.py,sha256=yoAw0C86oWgzWsaCSiQ-QCC-Y-hzSRVg7Ju6ReNcsgs,22340
|
|
30
|
-
armodel/models/unit.py,sha256=uTAHK2LzmQimlQKcWFFrFJJhYAcAlOcsMtvLEQ42EE8,397
|
|
31
|
-
armodel/parser/__init__.py,sha256=whzCLvAstuSlm6scgcCId7AUxSX8z8PV8AIKSNWMkGo,37
|
|
32
|
-
armodel/parser/arxml_parser.py,sha256=UVAgUeYCZ_BcXqyHUB2iY3ft3If-HgDDkgZThQy7cWs,83878
|
|
33
|
-
armodel/parser/excel_parser.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
|
-
armodel/report/__init__.py,sha256=EId0Ph3qYyzkKHKplJrs00ToxHeSjQVvhLwrSoV-SBw,52
|
|
35
|
-
armodel/report/connector_xls_report.py,sha256=7GsvFWo_lfZRKCLAV-a17kC8-3KKSMAR1wGOnp9Cqlo,3876
|
|
36
|
-
armodel/report/excel_report.py,sha256=Iome8wALpOFZyZkMCG5DPSAFkfv4pU0y_BZXHVSdonc,1412
|
|
37
|
-
armodel/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
-
armodel/tests/test_armodel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
|
-
armodel/tests/test_armodel/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
-
armodel/tests/test_armodel/models/test_ar_package.py,sha256=LqxArs6g5ePASiBJb70veGDLPTUdP12WLlhwrU90AW0,14520
|
|
41
|
-
armodel/tests/test_armodel/models/test_ar_ref.py,sha256=2zayiW9gKnNJc3c8no3fPQ3B5m5GvQ5FHFSxXU-yUXo,3260
|
|
42
|
-
armodel/tests/test_armodel/models/test_bsw_module_template.py,sha256=ZmJ9_8omFtbf9_O_OHa0B1v2bP6cdhCzW4oJkuicZYY,2061
|
|
43
|
-
armodel/tests/test_armodel/models/test_common_structure.py,sha256=R9QkOvae_4NDD8bYxhnG4kaZwVUQWUwlUoBCYF2SMGA,3448
|
|
44
|
-
armodel/tests/test_armodel/models/test_data_dictionary.py,sha256=sNqJz5XWme9fR3j49xqoxGDgJHx0dIaS7Vhw3jN1Zgk,1077
|
|
45
|
-
armodel/tests/test_armodel/models/test_data_prototype.py,sha256=P66QDxw7Q9xwCJF0BYjH8c4zPz9OnwZVrskHY_YBbhA,4219
|
|
46
|
-
armodel/tests/test_armodel/models/test_datatype.py,sha256=PAIN4fQBa9gM5JvFN6a8rZOzgkiR_ByQ3V_DPL6Joos,11811
|
|
47
|
-
armodel/tests/test_armodel/models/test_general_structure.py,sha256=pkmeJIUfYJqRzXiczL3ZKRcBlI9zbWBjHGGNuLYgOSA,2221
|
|
48
|
-
armodel/tests/test_armodel/models/test_m2_msr.py,sha256=hnh4qJiDlAp70-B7q_A-UqJi2sDllwErMvzOhafTSUk,2656
|
|
49
|
-
armodel/tests/test_armodel/models/test_port_interface.py,sha256=JUeAOTOH8Sq7CLW0lDhvflC7h47anFTLgrZzHMfacX8,9099
|
|
50
|
-
armodel/tests/test_armodel/models/test_port_prototype.py,sha256=wV_QjAg4fb9MfeiwDWldzJiHeNpAcZq5vPZ4rWB2Pn0,494
|
|
51
|
-
armodel/tests/test_armodel/parser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
52
|
-
armodel/tests/test_armodel/parser/test_parse_bswmd.py,sha256=Ik_9zWe1ElR4rY4PBK80avf6ljSajQyqbtauUa8wvGA,8572
|
|
53
|
-
armodel/writer/__init__.py,sha256=eXr3qhGzFIvHNBin22x-Tk2JM6QwRgx1jwrluDKAlzQ,37
|
|
54
|
-
armodel/writer/arxml_writer.py,sha256=VHJn2Kd3oZTVvke8HLCNjb4qrPc2wtKOVf2p8BbDKQI,37664
|
|
55
|
-
armodel-1.4.0.dist-info/LICENSE,sha256=rceTpGhsmmN1M0k1KO0HRS11iCjen-2y56ZEqgo43wo,1088
|
|
56
|
-
armodel-1.4.0.dist-info/METADATA,sha256=coHAolnfyiS2fpMu6YeU3oVp7eBSUfG19_EG5M1zjWM,6877
|
|
57
|
-
armodel-1.4.0.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
58
|
-
armodel-1.4.0.dist-info/entry_points.txt,sha256=tKrWpjYL9k4GVknwAyGDmPRcUMkqOdh6q4PUulLmXC4,219
|
|
59
|
-
armodel-1.4.0.dist-info/top_level.txt,sha256=AEATYsqAuRpr0XGa_ThW7-o4WLlA5e3PEgD0QJhzmoA,8
|
|
60
|
-
armodel-1.4.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|