armodel 1.4.0__py3-none-any.whl → 1.5.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.
- armodel/__init__.py +2 -1
- armodel/cli/arxml_dump_cli.py +9 -7
- 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 +228 -24
- armodel/models/ar_ref.py +85 -6
- armodel/models/bsw_module_template.py +113 -27
- armodel/models/calibration.py +107 -4
- armodel/models/common_structure.py +142 -52
- 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/fibex/__init__.py +0 -0
- armodel/models/fibex/can_communication.py +6 -0
- armodel/models/fibex/fibex_4_multiplatform.py +145 -0
- armodel/models/fibex/fibex_core.py +341 -0
- armodel/models/fibex/lin_communication.py +17 -0
- armodel/models/fibex/lin_topology.py +7 -0
- armodel/models/general_structure.py +44 -18
- armodel/models/global_constraints.py +4 -4
- armodel/models/implementation.py +79 -32
- armodel/models/internal_behavior.py +63 -0
- armodel/models/m2_msr.py +6 -4
- armodel/models/mode_declaration.py +8 -0
- 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 +57 -19
- armodel/models/record_layout.py +118 -0
- armodel/models/rpt_scenario.py +20 -0
- armodel/models/service_mapping.py +11 -0
- armodel/models/service_needs.py +48 -0
- armodel/models/sw_component.py +293 -45
- armodel/models/system_template/__init__.py +0 -0
- armodel/models/system_template/network_management.py +7 -0
- armodel/models/system_template/transport_protocols.py +7 -0
- armodel/models/timing.py +91 -0
- armodel/parser/abstract_arxml_parser.py +248 -0
- armodel/parser/arxml_parser.py +1571 -844
- 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 +3 -3
- armodel/tests/test_armodel/models/test_datatype.py +11 -11
- 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/models/test_port_interface.py +5 -5
- armodel/tests/test_armodel/parser/test_arxml_parser.py +15 -0
- armodel/tests/test_armodel/parser/test_parse_bswmd.py +74 -42
- armodel/tests/test_armodel/parser/test_sw_components.py +93 -0
- armodel/writer/abstract_arxml_writer.py +123 -0
- armodel/writer/arxml_writer.py +1701 -358
- {armodel-1.4.0.dist-info → armodel-1.5.0.dist-info}/METADATA +114 -3
- armodel-1.5.0.dist-info/RECORD +91 -0
- {armodel-1.4.0.dist-info → armodel-1.5.0.dist-info}/WHEEL +1 -1
- {armodel-1.4.0.dist-info → armodel-1.5.0.dist-info}/entry_points.txt +2 -0
- armodel-1.4.0.dist-info/RECORD +0 -60
- {armodel-1.4.0.dist-info → armodel-1.5.0.dist-info}/LICENSE +0 -0
- {armodel-1.4.0.dist-info → armodel-1.5.0.dist-info}/top_level.txt +0 -0
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: armodel
|
|
3
|
-
Version: 1.
|
|
3
|
+
Version: 1.5.0
|
|
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,104 @@ 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
|
+
4. Fix Issue #22 - raise wrong Exception: Invalid ResourceConsumption of Implementation
|
|
306
|
+
|
|
307
|
+
**Version 1.5.0**
|
|
308
|
+
|
|
309
|
+
1. Fix the old ARElement (Issue #27)
|
|
310
|
+
* InitEvent
|
|
311
|
+
* SwcTiming
|
|
312
|
+
* ConstantMemory
|
|
313
|
+
* ModeSwitchReceiverComSpec
|
|
314
|
+
* MODE-ACCESS-POINTS
|
|
315
|
+
2. Add the timestamp to following ARElement (Issue #27)
|
|
316
|
+
* AUTOSAR-VARIABLE-IREF
|
|
317
|
+
* MODE-REQUEST-TYPE-MAP
|
|
318
|
+
3. Timing Extension (Issue #27)
|
|
319
|
+
* TIMING-REQUIREMENTS
|
|
320
|
+
* EXECUTION-ORDER-CONSTRAINT
|
|
321
|
+
* EOC-EXECUTABLE-ENTITY-REF
|
|
322
|
+
4. Communication (Issue #27)
|
|
323
|
+
* LIN-CLUSTER
|
|
324
|
+
* NM-PDU
|
|
325
|
+
* LIN-UNCONDITIONAL-FRAME
|
|
326
|
+
* CAN-FRAME
|
|
327
|
+
* GATEWAY
|
|
328
|
+
* I-SIGNAL
|
|
329
|
+
|
|
@@ -0,0 +1,91 @@
|
|
|
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=a3yNfeWwmoDHazJfKzKJVuwPeL9oJ2PAn1vCgpVDttY,10019
|
|
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=3E9dVovu3z9fQNXMC6Yug-wlp3K3pNX_mCCUQRbPQXU,25334
|
|
18
|
+
armodel/models/ar_ref.py,sha256=_DvNtGS0TL_y70fva0cF-dtY7jzwtqDv14xENaew1TY,7586
|
|
19
|
+
armodel/models/bsw_module_template.py,sha256=1SQSk3lFRElfT404_lzWPVuswuxM8vY54TH3sWDqav4,15625
|
|
20
|
+
armodel/models/calibration.py,sha256=aSIVenVmlYKW5kQmaLTiy7kJcSe6yrvCfN8kO03Wk6Q,4087
|
|
21
|
+
armodel/models/common_structure.py,sha256=3rQOJ21zqAHrzMQZcR0Eo8yrONk3hPCsecyqncncaG8,13234
|
|
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=m3kSJfj6BU8xmDd-k3wxnx-wJH3z3rhu3AQ7TWedtL0,6374
|
|
30
|
+
armodel/models/global_constraints.py,sha256=fBCzYaZ55SDG7shneE8dNgFm_QQxPRUUPvzIWBlNKHY,1301
|
|
31
|
+
armodel/models/implementation.py,sha256=bZB1GVU-5VCsx0xATj-0XNlvMuq-pVQ2zAVN-BEy2UU,5631
|
|
32
|
+
armodel/models/internal_behavior.py,sha256=FS49y0iPiG77uM-JiWYPyXkE7OP27UvOMttyNe8Jf3c,2444
|
|
33
|
+
armodel/models/m2_msr.py,sha256=gEaOEDsX_ZeZtcu2as5BAnBR5GjlABDY9K0bsNhG2WU,5061
|
|
34
|
+
armodel/models/mode_declaration.py,sha256=YuZjSv3Iu6bdchdZLCp-iNYsSBC0dcF_mJ65ScfjGSs,240
|
|
35
|
+
armodel/models/multilanguage_data.py,sha256=f7WVEX_U76sZEMcDi3ariiMq6vtUNUheM4xeDFdlyxo,931
|
|
36
|
+
armodel/models/per_instance_memory.py,sha256=286K8xdiKWCVmasrqycth6E5WyQyUvOg8GBUbYYF-yA,498
|
|
37
|
+
armodel/models/port_interface.py,sha256=h1quoa4LRhEC7aGKIUs8bbHeGTQ5vbDkC7AwUUD6U1E,7257
|
|
38
|
+
armodel/models/port_prototype.py,sha256=NDApoDPogKCFO7pAKi6BfMMj4Q6-d3U10mPQQnS5GhM,9477
|
|
39
|
+
armodel/models/record_layout.py,sha256=6ZRzRZr89EUanrYaSGjj_UhlVHewneI3NLglqjL_KzU,4554
|
|
40
|
+
armodel/models/rpt_scenario.py,sha256=WJ47kJE5BfQYKI8hHbL5TGg4mNX0xmjpToXCIwC-pNo,565
|
|
41
|
+
armodel/models/service_mapping.py,sha256=cDmXPaWVnCJ0M9Bkdk_KZvkyCfMQS35ADuFPPACzm70,279
|
|
42
|
+
armodel/models/service_needs.py,sha256=W9dsu2Z9oIPXYJab7sFht3lY7QPe0ozHMQNhrvBX1ec,2553
|
|
43
|
+
armodel/models/sw_component.py,sha256=fut6221yzVaWUwfhr28NgFW8LkC5JVBJ5UzekvrZfWQ,33102
|
|
44
|
+
armodel/models/timing.py,sha256=7XQQli9Dxd6A5-F6NFcGOnEJ-W2y0kYBE3X0bbNdf1A,3289
|
|
45
|
+
armodel/models/unit.py,sha256=uTAHK2LzmQimlQKcWFFrFJJhYAcAlOcsMtvLEQ42EE8,397
|
|
46
|
+
armodel/models/fibex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
47
|
+
armodel/models/fibex/can_communication.py,sha256=mhBqcEHD8Sbpw_nLGQ2gf_Z_i0DYOGu-e47XmbByT3I,195
|
|
48
|
+
armodel/models/fibex/fibex_4_multiplatform.py,sha256=fp_F-vXgUD5hrhMByyTAOSnDzezaWlUjtt8bsgvX0F4,4172
|
|
49
|
+
armodel/models/fibex/fibex_core.py,sha256=YtxeMAWOo6ppV5-8UCoQEjyWMrXWdkfF4uojVAnC53w,10684
|
|
50
|
+
armodel/models/fibex/lin_communication.py,sha256=am8gVHuaJ1byXDTJ6z2RspahDFKkM4Qn4eou8Q-4yRo,520
|
|
51
|
+
armodel/models/fibex/lin_topology.py,sha256=um4viim757JIPCTaD34g7XRpIolkGLsl3XF4gJSePF0,229
|
|
52
|
+
armodel/models/system_template/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
|
+
armodel/models/system_template/network_management.py,sha256=ztMxX4zDFBFEiXmR3zne23Lc_rNuaXQbCJS4eL61VZ0,218
|
|
54
|
+
armodel/models/system_template/transport_protocols.py,sha256=en2Pl3eThqDY5DJ7d8sT0vxLwUQsu88Mn7l2VzcHDZg,221
|
|
55
|
+
armodel/parser/__init__.py,sha256=whzCLvAstuSlm6scgcCId7AUxSX8z8PV8AIKSNWMkGo,37
|
|
56
|
+
armodel/parser/abstract_arxml_parser.py,sha256=V9MR_Rv2ha-1nn653mazmmkNTovgX0yZRoyXEtBzayQ,10452
|
|
57
|
+
armodel/parser/arxml_parser.py,sha256=VWwVBYmR4FPg9Obb8dB9-ysQetfa0aMG5WLI_DPql08,131124
|
|
58
|
+
armodel/parser/connector_xlsx_parser.py,sha256=5KDaHykqL0NszftFG0V5CgmgiRi4Bsg7wJnlRg2pc2k,10087
|
|
59
|
+
armodel/parser/excel_parser.py,sha256=-Ws0eDvGna9LPQC9T8bgMg3Zq84v04aSuSxZUlZx1Wo,698
|
|
60
|
+
armodel/report/__init__.py,sha256=EId0Ph3qYyzkKHKplJrs00ToxHeSjQVvhLwrSoV-SBw,52
|
|
61
|
+
armodel/report/connector_xls_report.py,sha256=7GsvFWo_lfZRKCLAV-a17kC8-3KKSMAR1wGOnp9Cqlo,3876
|
|
62
|
+
armodel/report/excel_report.py,sha256=Iome8wALpOFZyZkMCG5DPSAFkfv4pU0y_BZXHVSdonc,1412
|
|
63
|
+
armodel/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
+
armodel/tests/test_armodel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
65
|
+
armodel/tests/test_armodel/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
|
+
armodel/tests/test_armodel/models/test_ar_object.py,sha256=YLuEYmxk4KqmYGef6ru20i838raHgHrwVgnZQwi5_OU,4941
|
|
67
|
+
armodel/tests/test_armodel/models/test_ar_package.py,sha256=4y_XY788rjzUEa-gX_y_FZ3uHriOMttpj-kJPWTe-nc,14523
|
|
68
|
+
armodel/tests/test_armodel/models/test_ar_ref.py,sha256=2zayiW9gKnNJc3c8no3fPQ3B5m5GvQ5FHFSxXU-yUXo,3260
|
|
69
|
+
armodel/tests/test_armodel/models/test_bsw_module_template.py,sha256=ZmJ9_8omFtbf9_O_OHa0B1v2bP6cdhCzW4oJkuicZYY,2061
|
|
70
|
+
armodel/tests/test_armodel/models/test_common_structure.py,sha256=tbzrrN6PmEAZ59GSwD29K18q0vlg8jIT8ipm7-6ImyQ,3446
|
|
71
|
+
armodel/tests/test_armodel/models/test_data_dictionary.py,sha256=0TCjN3zM1aPLbL4D6fpwoI5Q-hJR8uJZNSjEhiwCegg,1070
|
|
72
|
+
armodel/tests/test_armodel/models/test_data_prototype.py,sha256=-VTR2TKfq3vvbn17Qg7e5s46xwXGsjh7wH7bI1mypds,4206
|
|
73
|
+
armodel/tests/test_armodel/models/test_datatype.py,sha256=aX5YF6E9QPxYpsJtu31T0GSbKYyC98TUxJLDAyR2aqA,11818
|
|
74
|
+
armodel/tests/test_armodel/models/test_general_structure.py,sha256=E8kiGQY_2Lj9lUhLNTHzBgu-xnGl8gO3faNueJFeHJE,2220
|
|
75
|
+
armodel/tests/test_armodel/models/test_implementation.py,sha256=RBIuwvVjiSfAmqytZpT53SJd1AJzwHuH0KdAACoZ2Ik,912
|
|
76
|
+
armodel/tests/test_armodel/models/test_m2_msr.py,sha256=pMWQS4O7FUMrbZcaCR0WF7lYj2m3jvq3AoR4ZbS7Ntg,2650
|
|
77
|
+
armodel/tests/test_armodel/models/test_port_interface.py,sha256=QCu_EwfczGgMRRjdLfU54i8kpyIsU5JYGJ0WayQ4lQQ,9104
|
|
78
|
+
armodel/tests/test_armodel/models/test_port_prototype.py,sha256=wV_QjAg4fb9MfeiwDWldzJiHeNpAcZq5vPZ4rWB2Pn0,494
|
|
79
|
+
armodel/tests/test_armodel/parser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
80
|
+
armodel/tests/test_armodel/parser/test_arxml_parser.py,sha256=4-4DKdHIZN50wiM0tzzP-nejY74aEtAWhURwYxDGrWw,747
|
|
81
|
+
armodel/tests/test_armodel/parser/test_parse_bswmd.py,sha256=pXRy3WBfbOacJa8mB46SRRUcbzUcIDZASUmm5mrU4bw,10188
|
|
82
|
+
armodel/tests/test_armodel/parser/test_sw_components.py,sha256=-hfxJ1wVj0jIP7q8SloNwX4-6xRN5LAV020I-Y5Lybw,4100
|
|
83
|
+
armodel/writer/__init__.py,sha256=eXr3qhGzFIvHNBin22x-Tk2JM6QwRgx1jwrluDKAlzQ,37
|
|
84
|
+
armodel/writer/abstract_arxml_writer.py,sha256=WUE8dIvoMagb9P-2JpdbY5aRg0Ub10N9ncvD8E03AFA,5078
|
|
85
|
+
armodel/writer/arxml_writer.py,sha256=2m6pu34WN7ttzYB64wua9fbJdhW0_PFaqeQP5srfGu8,127136
|
|
86
|
+
armodel-1.5.0.dist-info/LICENSE,sha256=rceTpGhsmmN1M0k1KO0HRS11iCjen-2y56ZEqgo43wo,1088
|
|
87
|
+
armodel-1.5.0.dist-info/METADATA,sha256=JcFF6XB5F-IwByqugOHesNsRUf8DiX3LEMxwmTmAeno,9903
|
|
88
|
+
armodel-1.5.0.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
89
|
+
armodel-1.5.0.dist-info/entry_points.txt,sha256=mK_qNI3DgZJmNdezwKHoDcv470z3IdJpNpaiWV8ZNjA,269
|
|
90
|
+
armodel-1.5.0.dist-info/top_level.txt,sha256=AEATYsqAuRpr0XGa_ThW7-o4WLlA5e3PEgD0QJhzmoA,8
|
|
91
|
+
armodel-1.5.0.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
|