armodel 1.6.2__py3-none-any.whl → 1.6.4__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 +13 -10
- armodel/cli/arxml_format_cli.py +1 -2
- armodel/cli/connector2xlsx_cli.py +2 -3
- armodel/cli/connector_update_cli.py +2 -5
- armodel/cli/memory_section_cli.py +2 -2
- armodel/cli/swc_list_cli.py +2 -3
- armodel/cli/system_signal_cli.py +2 -2
- armodel/lib/sw_component.py +3 -3
- armodel/lib/system_signal.py +3 -5
- armodel/models/{m2/autosar_templates/autosar_top_level_structure.py → M2/AUTOSARTemplates/AutosarTopLevelStructure.py} +5 -7
- armodel/models/{bsw_module_template.py → M2/AUTOSARTemplates/BswModuleTemplate/BswBehavior.py} +113 -140
- armodel/models/M2/AUTOSARTemplates/BswModuleTemplate/BswImplementation.py +60 -0
- armodel/models/M2/AUTOSARTemplates/BswModuleTemplate/BswInterfaces.py +52 -0
- armodel/models/M2/AUTOSARTemplates/BswModuleTemplate/BswOverview.py +77 -0
- armodel/models/M2/AUTOSARTemplates/BswModuleTemplate/__init__.py +4 -0
- armodel/models/M2/AUTOSARTemplates/CommonStructure/Implementation.py +238 -0
- armodel/models/{m2/autosar_templates/common_structure/implementation_data_types.py → M2/AUTOSARTemplates/CommonStructure/ImplementationDataTypes.py} +7 -6
- armodel/models/M2/AUTOSARTemplates/CommonStructure/InternalBehavior.py +119 -0
- armodel/models/M2/AUTOSARTemplates/CommonStructure/ModeDeclaration.py +96 -0
- armodel/models/M2/AUTOSARTemplates/CommonStructure/ResourceConsumption/MemorySectionUsage.py +69 -0
- armodel/models/M2/AUTOSARTemplates/CommonStructure/ResourceConsumption/__init__.py +20 -0
- armodel/models/{service_needs.py → M2/AUTOSARTemplates/CommonStructure/ServiceNeeds.py} +13 -9
- armodel/models/M2/AUTOSARTemplates/CommonStructure/SwcBswMapping.py +35 -0
- armodel/models/M2/AUTOSARTemplates/CommonStructure/SwcInternalBehavior/ModeDeclarationGroup.py +24 -0
- armodel/models/M2/AUTOSARTemplates/CommonStructure/Timing/TimingConstraint/ExecutionOrderConstraint.py +45 -0
- armodel/models/M2/AUTOSARTemplates/CommonStructure/Timing/TimingConstraint/TimingConstraint.py +24 -0
- armodel/models/M2/AUTOSARTemplates/CommonStructure/Timing/TimingConstraint/TimingExtensions.py +33 -0
- armodel/models/M2/AUTOSARTemplates/CommonStructure/TriggerDeclaration.py +9 -0
- armodel/models/{m2/autosar_templates/common_structure → M2/AUTOSARTemplates/CommonStructure}/__init__.py +4 -3
- armodel/models/{m2/autosar_templates/ecuc_description_template.py → M2/AUTOSARTemplates/ECUCDescriptionTemplate.py} +6 -7
- armodel/models/{m2/autosar_templates/generic_structure/abstract_structure.py → M2/AUTOSARTemplates/GenericStructure/AbstractStructure.py} +25 -5
- armodel/models/{m2/autosar_templates/generic_structure/ar_package.py → M2/AUTOSARTemplates/GenericStructure/GeneralTemplateClasses/ARPackage.py} +41 -29
- armodel/models/M2/AUTOSARTemplates/GenericStructure/GeneralTemplateClasses/ArObject.py +16 -0
- armodel/models/M2/AUTOSARTemplates/GenericStructure/GeneralTemplateClasses/ElementCollection.py +1 -0
- armodel/models/M2/AUTOSARTemplates/GenericStructure/GeneralTemplateClasses/EngineeringObject.py +52 -0
- armodel/models/{general_structure.py → M2/AUTOSARTemplates/GenericStructure/GeneralTemplateClasses/Identifiable.py} +42 -159
- armodel/models/{ar_object.py → M2/AUTOSARTemplates/GenericStructure/GeneralTemplateClasses/PrimitiveTypes.py} +179 -71
- armodel/models/M2/AUTOSARTemplates/GenericStructure/__init__.py +1 -0
- armodel/models/{m2/autosar_templates/sw_component_template/communication.py → M2/AUTOSARTemplates/SWComponentTemplate/Communication.py} +22 -5
- armodel/models/{m2/autosar_templates/sw_component_template/components/instance_refs.py → M2/AUTOSARTemplates/SWComponentTemplate/Components/InstanceRefs.py} +2 -4
- armodel/models/{m2/autosar_templates/sw_component_template/components → M2/AUTOSARTemplates/SWComponentTemplate/Components}/__init__.py +114 -10
- armodel/models/{m2/autosar_templates/sw_component_template/composition/instance_refs.py → M2/AUTOSARTemplates/SWComponentTemplate/Composition/InstanceRefs.py} +2 -5
- armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/Composition/__init__.py +96 -0
- armodel/models/{m2/autosar_templates/sw_component_template/data_type/data_prototypes.py → M2/AUTOSARTemplates/SWComponentTemplate/Datatype/DataPrototypes.py} +24 -8
- armodel/models/{datatype.py → M2/AUTOSARTemplates/SWComponentTemplate/Datatype/Datatypes.py} +16 -73
- armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/EndToEndProtection.py +177 -0
- armodel/models/{m2/autosar_templates/sw_component_template/port_interface/instance_refs.py → M2/AUTOSARTemplates/SWComponentTemplate/PortInterface/InstanceRefs.py} +2 -2
- armodel/models/{m2/autosar_templates/sw_component_template/port_interface → M2/AUTOSARTemplates/SWComponentTemplate/PortInterface}/__init__.py +10 -6
- armodel/models/{rpt_scenario.py → M2/AUTOSARTemplates/SWComponentTemplate/RPTScenario.py} +4 -6
- armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcImplementation.py +34 -0
- armodel/models/{m2/autosar_templates/sw_component_template/swc_internal_behavior/access_count.py → M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/AccessCount.py} +2 -2
- armodel/models/{m2/autosar_templates/sw_component_template/swc_internal_behavior/data_elements.py → M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/DataElements.py} +7 -5
- armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/IncludedDataTypes.py +24 -0
- armodel/models/{m2/autosar_templates/sw_component_template/swc_internal_behavior/instance_refs_usage.py → M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/InstanceRefsUsage.py} +3 -3
- armodel/models/{m2/autosar_templates/sw_component_template/swc_internal_behavior/mode_declaration_group.py → M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/ModeDeclarationGroup.py} +4 -4
- armodel/models/{per_instance_memory.py → M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/PerInstanceMemory.py} +5 -6
- armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/PortAPIOptions.py +86 -0
- armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/RTEEvents.py +174 -0
- armodel/models/{m2/autosar_templates/sw_component_template/swc_internal_behavior/server_call.py → M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/ServerCall.py} +3 -4
- armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/ServiceMapping.py +57 -0
- armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/Trigger.py +8 -0
- armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/__init__.py +358 -0
- armodel/models/{m2/autosar_templates/system_template/data_mapping.py → M2/AUTOSARTemplates/SystemTemplate/DataMapping.py} +2 -3
- armodel/models/{fibex/can_communication.py → M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Can/CanCommunication.py} +3 -3
- armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Ethernet/EthernetFrame.py +14 -0
- armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Ethernet/ServiceInstances.py +116 -0
- armodel/models/{fibex/lin_communication.py → M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Lin/LinCommunication.py} +5 -2
- armodel/models/{fibex/fibex_4_multiplatform.py → M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Multiplatform.py} +5 -4
- armodel/models/{fibex/fibex_core/core_communication.py → M2/AUTOSARTemplates/SystemTemplate/Fibex/FibexCore/CoreCommunication.py} +4 -6
- armodel/models/{fibex/fibex_core/core_topology.py → M2/AUTOSARTemplates/SystemTemplate/Fibex/FibexCore/CoreTopology.py} +6 -7
- armodel/models/{m2/autosar_templates/system_template/instance_refs.py → M2/AUTOSARTemplates/SystemTemplate/InstanceRefs.py} +2 -2
- armodel/models/{m2/autosar_templates/system_template/network_management.py → M2/AUTOSARTemplates/SystemTemplate/NetworkManagement.py} +5 -6
- armodel/models/M2/AUTOSARTemplates/SystemTemplate/TransportProtocols.py +6 -0
- armodel/models/{m2/autosar_templates/system_template → M2/AUTOSARTemplates/SystemTemplate}/__init__.py +3 -4
- armodel/models/M2/MSR/AsamHdo/AdminData.py +18 -0
- armodel/models/M2/MSR/AsamHdo/BaseTypes.py +77 -0
- armodel/models/{m2_msr.py → M2/MSR/AsamHdo/ComputationMethod.py} +43 -28
- armodel/models/{global_constraints.py → M2/MSR/AsamHdo/Constraints/GlobalConstraints.py} +6 -4
- armodel/models/M2/MSR/AsamHdo/SpecialData.py +60 -0
- armodel/models/{m2/msr/asam_hdo/units.py → M2/MSR/AsamHdo/Units.py} +3 -3
- armodel/models/M2/MSR/CalibrationData/CalibrationValue.py +26 -0
- armodel/models/{m2/msr/data_dictionary/auxillary_objects.py → M2/MSR/DataDictionary/AuxillaryObjects.py} +3 -4
- armodel/models/M2/MSR/DataDictionary/Axis.py +145 -0
- armodel/models/M2/MSR/DataDictionary/CalibrationParameter.py +37 -0
- armodel/models/{m2/msr/data_dictionary/data_def_properties.py → M2/MSR/DataDictionary/DataDefProperties.py} +19 -10
- armodel/models/{record_layout.py → M2/MSR/DataDictionary/RecordLayout.py} +26 -25
- armodel/models/{annotation.py → M2/MSR/Documentation/Annotation.py} +8 -10
- armodel/models/{m2/msr/documentation/block_elements.py → M2/MSR/Documentation/BlockElements.py} +2 -2
- armodel/models/M2/MSR/Documentation/TextModel/LanguageDataModel.py +16 -0
- armodel/models/{multilanguage_data.py → M2/MSR/Documentation/TextModel/MultilanguageData.py} +20 -32
- armodel/models/M2/MSR/Documentation/TextModel/__init__.py +0 -0
- armodel/models/M2/MSR/Documentation/__init__.py +3 -0
- armodel/models/M2/MSR/__init__.py +1 -0
- armodel/models/M2/__init__.py +0 -0
- armodel/models/__init__.py +50 -24
- armodel/parser/abstract_arxml_parser.py +8 -4
- armodel/parser/arxml_parser.py +117 -90
- armodel/parser/connector_xlsx_parser.py +5 -3
- armodel/parser/file_parser.py +2 -1
- armodel/report/connector_xls_report.py +3 -2
- armodel/tests/test_armodel/models/test_ar_object.py +2 -3
- armodel/tests/test_armodel/models/test_ar_package.py +21 -9
- armodel/tests/test_armodel/models/test_ar_ref.py +7 -5
- armodel/tests/test_armodel/models/test_bsw_module_template.py +5 -1
- armodel/tests/test_armodel/models/test_common_structure.py +11 -5
- armodel/tests/test_armodel/models/test_data_dictionary.py +2 -2
- armodel/tests/test_armodel/models/test_data_prototype.py +8 -4
- armodel/tests/test_armodel/models/test_datatype.py +28 -14
- armodel/tests/test_armodel/models/test_general_structure.py +12 -2
- armodel/tests/test_armodel/models/test_implementation.py +3 -2
- armodel/tests/test_armodel/models/test_m2_msr.py +4 -2
- armodel/tests/test_armodel/models/test_port_interface.py +21 -11
- armodel/tests/test_armodel/models/test_port_prototype.py +1 -1
- armodel/tests/test_armodel/parser/test_parse_bswmd.py +13 -13
- armodel/tests/test_armodel/parser/test_sw_components.py +2 -2
- armodel/tests/test_armodel/parser/test_system.py +30 -0
- armodel/writer/abstract_arxml_writer.py +5 -2
- armodel/writer/arxml_writer.py +136 -91
- {armodel-1.6.2.dist-info → armodel-1.6.4.dist-info}/METADATA +16 -1
- armodel-1.6.4.dist-info/RECORD +156 -0
- armodel/lib/data_analyzer.py +0 -34
- armodel/models/ar_package.py +0 -641
- armodel/models/ar_ref.py +0 -25
- armodel/models/calibration.py +0 -119
- armodel/models/common_structure.py +0 -272
- armodel/models/communication.py +0 -17
- armodel/models/data_def_properties.py +0 -16
- armodel/models/data_dictionary.py +0 -59
- armodel/models/data_prototype.py +0 -103
- armodel/models/end_to_end_protection.py +0 -67
- armodel/models/fibex/fibex_core.py +0 -341
- armodel/models/fibex/lin_topology.py +0 -7
- armodel/models/implementation.py +0 -135
- armodel/models/internal_behavior.py +0 -63
- armodel/models/m2/autosar_templates/common_structure/implementation.py +0 -21
- armodel/models/m2/autosar_templates/sw_component_template/composition/__init__.py +0 -154
- armodel/models/m2/autosar_templates/sw_component_template/port_interface.py +0 -236
- armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/__init__.py +0 -203
- armodel/models/m2/autosar_templates/sw_component_template/swc_internal_behavior/trigger.py +0 -10
- armodel/models/m2/autosar_templates/system_template/transport_protocols.py +0 -7
- armodel/models/mode_declaration.py +0 -8
- armodel/models/port_interface.py +0 -165
- armodel/models/port_prototype.py +0 -6
- armodel/models/service_mapping.py +0 -11
- armodel/models/sw_component.py +0 -385
- armodel/models/system_template/network_management.py +0 -7
- armodel/models/system_template/transport_protocols.py +0 -7
- armodel/models/timing.py +0 -91
- armodel/models/unit.py +0 -14
- armodel-1.6.2.dist-info/RECORD +0 -142
- /armodel/models/{fibex → M2/AUTOSARTemplates/CommonStructure/SwcInternalBehavior}/__init__.py +0 -0
- /armodel/models/{fibex/fibex_4_can → M2/AUTOSARTemplates/CommonStructure/Timing/TimingConstraint}/__init__.py +0 -0
- /armodel/models/{fibex/fibex_4_lin → M2/AUTOSARTemplates/CommonStructure/Timing}/__init__.py +0 -0
- /armodel/models/{fibex/fibex_core → M2/AUTOSARTemplates/GenericStructure/GeneralTemplateClasses}/__init__.py +0 -0
- /armodel/models/{m2 → M2/AUTOSARTemplates/SWComponentTemplate/Datatype}/__init__.py +0 -0
- /armodel/models/{m2/autosar_templates → M2/AUTOSARTemplates/SWComponentTemplate}/__init__.py +0 -0
- /armodel/models/{m2/autosar_templates/generic_structure → M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Can}/__init__.py +0 -0
- /armodel/models/{m2/autosar_templates/sw_component_template → M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Ethernet}/__init__.py +0 -0
- /armodel/models/{m2/autosar_templates/sw_component_template/data_type → M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Lin}/__init__.py +0 -0
- /armodel/models/{m2/msr → M2/AUTOSARTemplates/SystemTemplate/Fibex/FibexCore}/__init__.py +0 -0
- /armodel/models/{m2/msr/asam_hdo → M2/AUTOSARTemplates/SystemTemplate/Fibex}/__init__.py +0 -0
- /armodel/models/{m2/msr/data_dictionary → M2/AUTOSARTemplates}/__init__.py +0 -0
- /armodel/models/{m2/msr/documentation → M2/MSR/AsamHdo/Constraints}/__init__.py +0 -0
- /armodel/models/{system_template → M2/MSR/AsamHdo}/__init__.py +0 -0
- /armodel/models/{ecuc_parameter_def_template.py → M2/MSR/CalibrationData/__init__.py} +0 -0
- /armodel/models/{m2/autosar_templates/common_structure/constants.py → M2/MSR/DataDictionary/__init__.py} +0 -0
- {armodel-1.6.2.dist-info → armodel-1.6.4.dist-info}/LICENSE +0 -0
- {armodel-1.6.2.dist-info → armodel-1.6.4.dist-info}/WHEEL +0 -0
- {armodel-1.6.2.dist-info → armodel-1.6.4.dist-info}/entry_points.txt +0 -0
- {armodel-1.6.2.dist-info → armodel-1.6.4.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,156 @@
|
|
|
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=Rg2am26-0YJR68Wthv3MlXYfQbM16-pMinUoF0udYa4,10874
|
|
4
|
+
armodel/cli/arxml_format_cli.py,sha256=IvPSH0bWslFtNAUXx5D_CKoaZEpVy0dri3FJMrDdElY,1998
|
|
5
|
+
armodel/cli/connector2xlsx_cli.py,sha256=hNrVRkSBlkVO3aNOQMmvmf2fPZ-ijILukKrqh5v-m4k,2163
|
|
6
|
+
armodel/cli/connector_update_cli.py,sha256=glEONaSKBpKGzKW3X_Gvvr0ovzjVxGo_-qbYfWh9__E,2294
|
|
7
|
+
armodel/cli/memory_section_cli.py,sha256=YPhnfP9dd8yjPG_F32FaKhnCGVmLIK-WH33Jbup31O8,2179
|
|
8
|
+
armodel/cli/swc_list_cli.py,sha256=yrObi-imM3X6M8R5y5KrZlAdq2IE4mltP9-aH_iwlqk,2441
|
|
9
|
+
armodel/cli/system_signal_cli.py,sha256=nOVVMZtcSHytmZ8ln-zwu4mhY4Oi9i13RbMyS-RdlEQ,2141
|
|
10
|
+
armodel/data_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
|
+
armodel/data_models/sw_connector.py,sha256=ZU1B3AI84vpSSSpQaGR6CMc3qZGnhbK1Z-SQGvwYA9o,584
|
|
12
|
+
armodel/lib/__init__.py,sha256=5629DkORqTomt16J6VL40o5hFv86-9SRB1240OJWTts,142
|
|
13
|
+
armodel/lib/cli_args_parser.py,sha256=WiTC3wy_fZYloA1AjPqCvvOA_26V_y5toun0qfV51cw,1207
|
|
14
|
+
armodel/lib/sw_component.py,sha256=spUeVR8ftzqf9h-pilh17qQg8amYqcqh39XKYql3HO4,1367
|
|
15
|
+
armodel/lib/system_signal.py,sha256=E3FNiUGRUZovTCclCkabkVPpScMIACOXERUpbAuBTv8,1397
|
|
16
|
+
armodel/models/__init__.py,sha256=w7hTbvipp7WJrn92lRF9msiUjyYrC83wjjYkF30E4JI,3377
|
|
17
|
+
armodel/models/M2/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
18
|
+
armodel/models/M2/AUTOSARTemplates/AutosarTopLevelStructure.py,sha256=TiHSzzMbGUIteC139YIChIDs5LmkQiYnLsHuiRY4_tU,5056
|
|
19
|
+
armodel/models/M2/AUTOSARTemplates/ECUCDescriptionTemplate.py,sha256=YL1F6U8chH-GrWi9tU1TtUq-4Ht6y5Z7s5o5tzCheTw,9283
|
|
20
|
+
armodel/models/M2/AUTOSARTemplates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
+
armodel/models/M2/AUTOSARTemplates/BswModuleTemplate/BswBehavior.py,sha256=znEBuhFXu6Ndy7vDj2I31MlENqCpHwJn_ofRImBK3Nk,13815
|
|
22
|
+
armodel/models/M2/AUTOSARTemplates/BswModuleTemplate/BswImplementation.py,sha256=el7uFWztAqqYaCX_BOiSI6n7zeXsdD7acwpK52ZO5cM,2209
|
|
23
|
+
armodel/models/M2/AUTOSARTemplates/BswModuleTemplate/BswInterfaces.py,sha256=FjCCqKHS-KMJySiwpDtiBk5WhzrVMSHOJTCaWR4842A,2638
|
|
24
|
+
armodel/models/M2/AUTOSARTemplates/BswModuleTemplate/BswOverview.py,sha256=40BTjkzcUIXECsd3-wkpgbTKivcJcaFq_k20QQyYsD4,3691
|
|
25
|
+
armodel/models/M2/AUTOSARTemplates/BswModuleTemplate/__init__.py,sha256=IY7GCwskITrwr1Rv76zzNUupbMsPAiG4ZMf5ZqtQuBg,118
|
|
26
|
+
armodel/models/M2/AUTOSARTemplates/CommonStructure/Implementation.py,sha256=qlaUllbaM1JeX8exwtBFa850BAJ7TIsB54sOKGNV5Gk,8061
|
|
27
|
+
armodel/models/M2/AUTOSARTemplates/CommonStructure/ImplementationDataTypes.py,sha256=2qTV7qXwY-Hjh50N_F0ESShE1tczuQFoDef2jCweD-0,6136
|
|
28
|
+
armodel/models/M2/AUTOSARTemplates/CommonStructure/InternalBehavior.py,sha256=jgm8FyfKtqyqZodLG9QJgiH1EIWC5STGgrxryVHRcMI,4595
|
|
29
|
+
armodel/models/M2/AUTOSARTemplates/CommonStructure/ModeDeclaration.py,sha256=uNQNAw8w7BEwVgcNcI3_1qoGtKfb48nar4v1coB8Exk,3459
|
|
30
|
+
armodel/models/M2/AUTOSARTemplates/CommonStructure/ServiceNeeds.py,sha256=FnZKwzFBLDtGgfSyNFgPB5UXVpUgQ4if41MOunQW2Jo,2980
|
|
31
|
+
armodel/models/M2/AUTOSARTemplates/CommonStructure/SwcBswMapping.py,sha256=r4nlKEU4E5SlmHULjH5CNL0sc-0Vu5JMO6wdF_BXUJs,1549
|
|
32
|
+
armodel/models/M2/AUTOSARTemplates/CommonStructure/TriggerDeclaration.py,sha256=2EsBfqxFsulXPJ5oq3OgmCD9W_vt4pp_fQWgAEjsPY0,436
|
|
33
|
+
armodel/models/M2/AUTOSARTemplates/CommonStructure/__init__.py,sha256=BYcTeUQMQgPBmVW4tPaFiE1hfAmQSU_BFaOvPreN8GU,6087
|
|
34
|
+
armodel/models/M2/AUTOSARTemplates/CommonStructure/ResourceConsumption/MemorySectionUsage.py,sha256=ofDfPbseP_9jFerQ3LDT_gBCrmgLaHXHLP70Kd194dI,2250
|
|
35
|
+
armodel/models/M2/AUTOSARTemplates/CommonStructure/ResourceConsumption/__init__.py,sha256=6hKD01y9JmacGUii3PUKRWZMh2G3z50RT68i1g-iyRU,1095
|
|
36
|
+
armodel/models/M2/AUTOSARTemplates/CommonStructure/SwcInternalBehavior/ModeDeclarationGroup.py,sha256=z_yAJqX68naBD-KynDHg1I8z8YEyxxNn1-MV9pXy_xc,899
|
|
37
|
+
armodel/models/M2/AUTOSARTemplates/CommonStructure/SwcInternalBehavior/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
+
armodel/models/M2/AUTOSARTemplates/CommonStructure/Timing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
39
|
+
armodel/models/M2/AUTOSARTemplates/CommonStructure/Timing/TimingConstraint/ExecutionOrderConstraint.py,sha256=RDlIzYdEQgdLpm31XsCS_lmaobm3Xrp--SKNfzuHTt0,1925
|
|
40
|
+
armodel/models/M2/AUTOSARTemplates/CommonStructure/Timing/TimingConstraint/TimingConstraint.py,sha256=MisOfnrb7XkBcULivGtdkWL31sh-TZ23cxG8_bfIz_Y,937
|
|
41
|
+
armodel/models/M2/AUTOSARTemplates/CommonStructure/Timing/TimingConstraint/TimingExtensions.py,sha256=ZX5_9bouXg33rzDvZaHL95Zt-f7Y75DzICpHopZzJTs,1488
|
|
42
|
+
armodel/models/M2/AUTOSARTemplates/CommonStructure/Timing/TimingConstraint/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
43
|
+
armodel/models/M2/AUTOSARTemplates/GenericStructure/AbstractStructure.py,sha256=abfBOkDWUGN5xDPoLjYw-cfTio988lSuA35jtOPil2c,3016
|
|
44
|
+
armodel/models/M2/AUTOSARTemplates/GenericStructure/__init__.py,sha256=ovguP4wzQEDNguczwiZnhMm4dRRVcvnzmHrfQtlRCNQ,15
|
|
45
|
+
armodel/models/M2/AUTOSARTemplates/GenericStructure/GeneralTemplateClasses/ARPackage.py,sha256=2l6qetOBIuQyFq7GjIN9QxTlD3e7R8VuOXWC1iPg6d0,28739
|
|
46
|
+
armodel/models/M2/AUTOSARTemplates/GenericStructure/GeneralTemplateClasses/ArObject.py,sha256=lGpAPeVhgMbHPmdZWSxd4bKRIy6ALd1jeaa8mkHXy0Y,559
|
|
47
|
+
armodel/models/M2/AUTOSARTemplates/GenericStructure/GeneralTemplateClasses/ElementCollection.py,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
|
|
48
|
+
armodel/models/M2/AUTOSARTemplates/GenericStructure/GeneralTemplateClasses/EngineeringObject.py,sha256=GAlpyZhgyJSNyMpGMDqF7wd7bpzQtpWhB-2wYUvQbYw,1718
|
|
49
|
+
armodel/models/M2/AUTOSARTemplates/GenericStructure/GeneralTemplateClasses/Identifiable.py,sha256=F8ubItWX-JwOA-X75eO2XLAX-a51cjwfJDud7NMDujU,5490
|
|
50
|
+
armodel/models/M2/AUTOSARTemplates/GenericStructure/GeneralTemplateClasses/PrimitiveTypes.py,sha256=HAd3sWBPPmiJrIaD6l9IYZ3ZXAG4-Ozojk_2oIIh5eg,9166
|
|
51
|
+
armodel/models/M2/AUTOSARTemplates/GenericStructure/GeneralTemplateClasses/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
52
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/Communication.py,sha256=YyLeFwkn828KAO3aH5kftu5sJMGSo-UMwbYF1mh0t9E,11899
|
|
53
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/EndToEndProtection.py,sha256=OvATuHGdlLGpf56CEVvqG1TBqag8rW_zzw3jBEc_7Jk,6216
|
|
54
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/RPTScenario.py,sha256=qtSMJjrELFXwnXBrNFKtteo7tqO8m16KHd_p7Tw2JJ4,669
|
|
55
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcImplementation.py,sha256=ExFASEiGd3qBbHARe_p2ZlaS9YFaJ9oy68ytbeh7qVI,1259
|
|
56
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/Components/InstanceRefs.py,sha256=t4a16t4-ebvsY9k6JKXB-ZmgLy8vP1ri-Jqjqgngd14,5796
|
|
58
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/Components/__init__.py,sha256=7Z6YmVa2UcZAwj-cNqDA91iIRYDay-IRp_gFnU_Eeyw,15256
|
|
59
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/Composition/InstanceRefs.py,sha256=srGGmPcgQUNeUioEIsMao0MQUlua8X0UG01ipLyEvSs,4971
|
|
60
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/Composition/__init__.py,sha256=KUr6PFp6doYN43g6fXI8qqvjHM5y4ppL0V-nyvvulUs,3426
|
|
61
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/Datatype/DataPrototypes.py,sha256=-yNp1clIZWA4l-ImyQ9bIW-Emg3vS2_REv6oe7USb6o,4425
|
|
62
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/Datatype/Datatypes.py,sha256=zMON4n8gvWppzjnOgfVEK44oka5jIl3bvYqKkOs7SsQ,4414
|
|
63
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/Datatype/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
64
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/PortInterface/InstanceRefs.py,sha256=FbBS2lLJP7hLNeHTITHqL_4g79-V-ux8kZs6d7c1Z1Y,1420
|
|
65
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/PortInterface/__init__.py,sha256=BcJFFcwl213ykh3UIyhFU5XIOEDm24eYBha1vdscEZ4,10587
|
|
66
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/AccessCount.py,sha256=qTvbVFpGJN6cKZnQKVAGN6jcRXw8l1V6PpyKD-nIIFI,530
|
|
67
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/DataElements.py,sha256=L-IS9E_uCJxZM99PWNEBIP5XDvyKnzbOrckMSaMrNsk,1923
|
|
68
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/IncludedDataTypes.py,sha256=ejt-TSbPsEMSbr2u7kjdna6qQzI901y9f0Ls8QPIEf0,851
|
|
69
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/InstanceRefsUsage.py,sha256=a8DeEFGuT6w_F2gj8FmD2eHQk-OeuBSXyZUx3U_HNps,5745
|
|
70
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/ModeDeclarationGroup.py,sha256=vgDitxhaIdRq883xM3_c5W9b_n60fGNb8UZDvxh1640,1413
|
|
71
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/PerInstanceMemory.py,sha256=660PzTkQGpE4tieurBlXO5X-T3TdKgRx2LghxhTYuws,1397
|
|
72
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/PortAPIOptions.py,sha256=sBc-OmYx7gxv5RYvpa4bitMA4A6X1XddHiGkXxaYcYc,2789
|
|
73
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/RTEEvents.py,sha256=hfQVpBNj4AAfT_plDQaDaqH6wORrk1Gv1LBh2Yw11BQ,5585
|
|
74
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/ServerCall.py,sha256=kRDm0qoMI7Us7LdcVMwCX3-LA6mAuILvY-h_x9ZUanU,976
|
|
75
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/ServiceMapping.py,sha256=xbUMlFQEpgCbzaK9e2FBWIRg_pJbv_stQLYqBdzlaho,2248
|
|
76
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/Trigger.py,sha256=lHfGVkfp4xinYS3j3rEAentSpHi7o_Rgy98O5CSo-Uc,404
|
|
77
|
+
armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/__init__.py,sha256=Fxhj0jJjrUtQcC4qi2gjhciENUb-sSvHrNp0qa1ljtE,18443
|
|
78
|
+
armodel/models/M2/AUTOSARTemplates/SystemTemplate/DataMapping.py,sha256=vqL3PBz58XRnnEEbPBtXYHbyTMdmYucgDzuhW48os9Q,2588
|
|
79
|
+
armodel/models/M2/AUTOSARTemplates/SystemTemplate/InstanceRefs.py,sha256=xqD7TAMihcxroPMtIHxsDQNj5nGk1GRfZhAgzlffS30,1691
|
|
80
|
+
armodel/models/M2/AUTOSARTemplates/SystemTemplate/NetworkManagement.py,sha256=bbOcXTS8aQOy5M18yf2FwKCFv_rcnjHsTRrGCRHpWys,17318
|
|
81
|
+
armodel/models/M2/AUTOSARTemplates/SystemTemplate/TransportProtocols.py,sha256=Qg6SnO8rEHjMhaKlIQhUaQK5-OBa5hjQ3LJB9ErPags,334
|
|
82
|
+
armodel/models/M2/AUTOSARTemplates/SystemTemplate/__init__.py,sha256=XrdtP8UsTwVsyoaI0HPxYWSo36LWN90SkfFe7thSivg,10651
|
|
83
|
+
armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Multiplatform.py,sha256=tGy9C8g_XB4pPnv8oeGq_kztq8_Xb9U87Go1oa_ZMSI,4324
|
|
84
|
+
armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
85
|
+
armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Can/CanCommunication.py,sha256=Sftihbe-JU8GEFCubE4b2nvZpWs12ZzAzHJRwZrKnFA,3729
|
|
86
|
+
armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Can/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
87
|
+
armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Ethernet/EthernetFrame.py,sha256=EvRGdOINgQ5BqSnAiOSVKl84na6LFy452rl37T41efY,685
|
|
88
|
+
armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Ethernet/ServiceInstances.py,sha256=jG9KGNBUHz3hJT6MUBADUANhPN5vGFE1mPKqbfHp2rI,4133
|
|
89
|
+
armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Ethernet/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
90
|
+
armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Lin/LinCommunication.py,sha256=ZhoignKlV0OVUqKLN-b_N2hiDZB-oX1WeHNmJYdGGwI,1486
|
|
91
|
+
armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Lin/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
92
|
+
armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/FibexCore/CoreCommunication.py,sha256=cDx37DNAZf7zGMfm7OD40fTIQrR0IySbi2KcU8SSrfM,19768
|
|
93
|
+
armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/FibexCore/CoreTopology.py,sha256=dUWyPxmA5DHV8M36tDp97639wkAw69xCMIgWG_Zj9Hc,7363
|
|
94
|
+
armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/FibexCore/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
95
|
+
armodel/models/M2/MSR/__init__.py,sha256=Nqnn8clbgv-5l0PgxcTOldg8mkMKrFn4TvPL-rYUUGg,1
|
|
96
|
+
armodel/models/M2/MSR/AsamHdo/AdminData.py,sha256=DxAmK0FvzZUq9W8jVNQz0dSuh8kZWYiceSKp1btOJKQ,501
|
|
97
|
+
armodel/models/M2/MSR/AsamHdo/BaseTypes.py,sha256=scTFT98zWzs7qxuby8XgbmDiuVzVfB7Gtp7VgJwnqAg,2383
|
|
98
|
+
armodel/models/M2/MSR/AsamHdo/ComputationMethod.py,sha256=X1kHH5EDnadcWpLaUOcvuGwEndl7xa-UEzcJOM4M1bk,5503
|
|
99
|
+
armodel/models/M2/MSR/AsamHdo/SpecialData.py,sha256=Ri2exT0Yw1p_T1j3xzG3fN45FMLNDkqfXx2BUy3k1jo,1360
|
|
100
|
+
armodel/models/M2/MSR/AsamHdo/Units.py,sha256=Q4IenSntOUcHi-C_jkciTvBv9LHXsoOeUydRwFPM8Ak,3349
|
|
101
|
+
armodel/models/M2/MSR/AsamHdo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
102
|
+
armodel/models/M2/MSR/AsamHdo/Constraints/GlobalConstraints.py,sha256=ptkzrYophW1GkWZ1bxa5Xld89tqBVEnxdIUR5EHTGNE,1499
|
|
103
|
+
armodel/models/M2/MSR/AsamHdo/Constraints/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
104
|
+
armodel/models/M2/MSR/CalibrationData/CalibrationValue.py,sha256=DnoV8tQ4js2wnhAt-S-s4RKdn_LnZFEIWueQjlEwrnc,906
|
|
105
|
+
armodel/models/M2/MSR/CalibrationData/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
106
|
+
armodel/models/M2/MSR/DataDictionary/AuxillaryObjects.py,sha256=qsaOAXRZTo5ipfY5bdOYztjzS0ohv1PTJpuQJbKdbQw,1526
|
|
107
|
+
armodel/models/M2/MSR/DataDictionary/Axis.py,sha256=S8prTTmF4viFk_EzhY2ywP00opBMl4omZKUQiSTCFzE,4365
|
|
108
|
+
armodel/models/M2/MSR/DataDictionary/CalibrationParameter.py,sha256=Sr1rK7w7JhlgWShrxb2ZVVzLJDsXxWDwh_N9rhKkuhA,1466
|
|
109
|
+
armodel/models/M2/MSR/DataDictionary/DataDefProperties.py,sha256=dvHqj4cHdF3DgfFvqVcAogZVznnNLJATtbGcA7mJV_I,9514
|
|
110
|
+
armodel/models/M2/MSR/DataDictionary/RecordLayout.py,sha256=VQrQ6JxeTb7YMVmgJoGKUQ5XySWxfPq5WIup-lMpOgc,4704
|
|
111
|
+
armodel/models/M2/MSR/DataDictionary/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
|
+
armodel/models/M2/MSR/Documentation/Annotation.py,sha256=1D5KTccJ6CsNEWWNsGtl-cC5qja4tj_dJ8-A43pIS2w,1522
|
|
113
|
+
armodel/models/M2/MSR/Documentation/BlockElements.py,sha256=5mKxztTXGW07um7D8UR-0FblU-XLr4X-yU3QFDpPhRY,560
|
|
114
|
+
armodel/models/M2/MSR/Documentation/__init__.py,sha256=3qc0x3v-5g8WuKiqVkteoP7fEephP1WhTfXJ3K4CS0o,83
|
|
115
|
+
armodel/models/M2/MSR/Documentation/TextModel/LanguageDataModel.py,sha256=N56B-p1eWNP01ETcjnjfNgWgzzUSgtJCerdFuG9b01k,367
|
|
116
|
+
armodel/models/M2/MSR/Documentation/TextModel/MultilanguageData.py,sha256=OGbRaB8RgItToR1KEObW4CXSCi0ZWOkwnd_TFi4y6jg,1235
|
|
117
|
+
armodel/models/M2/MSR/Documentation/TextModel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
118
|
+
armodel/parser/__init__.py,sha256=wFcqh5unmDvKvf4R8vWkeertAXwWxAuOOEsbsM4mOHs,78
|
|
119
|
+
armodel/parser/abstract_arxml_parser.py,sha256=0-OrbzkpPPcppTo50XHcyAfZ8c7Uu9sD3vejB-E09ks,11237
|
|
120
|
+
armodel/parser/arxml_parser.py,sha256=wFXgdmk_fA5HnGUySsgxwj2hXoeCCYOQSD3Fy6NxlT4,179353
|
|
121
|
+
armodel/parser/connector_xlsx_parser.py,sha256=0YW0WGOeDFdSNEY_Xh8Hi-Zlv4e4ctaLUh9pibj2-1w,10312
|
|
122
|
+
armodel/parser/excel_parser.py,sha256=-Ws0eDvGna9LPQC9T8bgMg3Zq84v04aSuSxZUlZx1Wo,698
|
|
123
|
+
armodel/parser/file_parser.py,sha256=OMGh1oBgvDvz3qz8PrKxpTKqTsuFy3i9zw_Sfpes9M8,1464
|
|
124
|
+
armodel/report/__init__.py,sha256=EId0Ph3qYyzkKHKplJrs00ToxHeSjQVvhLwrSoV-SBw,52
|
|
125
|
+
armodel/report/connector_xls_report.py,sha256=8TZdsbEJFKkVzOVLBfUS8ugagrwNhxdM330mZYkQHOA,4039
|
|
126
|
+
armodel/report/excel_report.py,sha256=Iome8wALpOFZyZkMCG5DPSAFkfv4pU0y_BZXHVSdonc,1412
|
|
127
|
+
armodel/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
128
|
+
armodel/tests/test_armodel/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
129
|
+
armodel/tests/test_armodel/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
130
|
+
armodel/tests/test_armodel/models/test_ar_object.py,sha256=KTtHTyftEZp1nTVEOLXuyS4nogrmLbH03-UGQ5azndY,5100
|
|
131
|
+
armodel/tests/test_armodel/models/test_ar_package.py,sha256=V0i3D99HccG-DyOR_84iTwqJjbOXTjUjeWGJiXGD0g8,15518
|
|
132
|
+
armodel/tests/test_armodel/models/test_ar_ref.py,sha256=LWfN1V6tRQMS_L-jIu5LhDWrPE2IuyOOOZsEudCAGBY,3724
|
|
133
|
+
armodel/tests/test_armodel/models/test_bsw_module_template.py,sha256=8PZyuw8ZDsT-JN03CiVIJfoSZtzg9OyEutdN4M_KqPo,2253
|
|
134
|
+
armodel/tests/test_armodel/models/test_common_structure.py,sha256=WAhhKmLRGCwIwfyKvEBYDgZOwyYaA07aKNOqWfu5z6c,3982
|
|
135
|
+
armodel/tests/test_armodel/models/test_data_dictionary.py,sha256=4xY0QgHhU2_K762i8qoJOXFFitMzWYL090roQDrWkYo,1154
|
|
136
|
+
armodel/tests/test_armodel/models/test_data_prototype.py,sha256=PVIvVItwWcdGyqfn_5JJHBK7H6-C1543-XHQ0djq4LQ,4550
|
|
137
|
+
armodel/tests/test_armodel/models/test_datatype.py,sha256=N-ODIm9cMiMjO1-oN1gHyjLMQF4WNjoYIlDha0KQ7uk,12736
|
|
138
|
+
armodel/tests/test_armodel/models/test_general_structure.py,sha256=3LlW5RTlDwUtyFxyzFzsoc3SGUVzgNdX7H5pML5-BVU,2779
|
|
139
|
+
armodel/tests/test_armodel/models/test_implementation.py,sha256=Z1UdwFCN9StTlTXoL1hUdkJcAQDS9KI3os9-wxkGMpk,1083
|
|
140
|
+
armodel/tests/test_armodel/models/test_m2_msr.py,sha256=vg5Ey0Ik30pIJiudZML5M-9RfECycc888otrWLkURSM,2785
|
|
141
|
+
armodel/tests/test_armodel/models/test_port_interface.py,sha256=pkhVP2ow1jCH4t5_VZOc14WAyS8LKEyUj3fAvmwDtAo,9858
|
|
142
|
+
armodel/tests/test_armodel/models/test_port_prototype.py,sha256=eJMfvimtniRIhqA57bL1qMfp0_D9J9LrM-5GtGVl6OM,533
|
|
143
|
+
armodel/tests/test_armodel/parser/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
144
|
+
armodel/tests/test_armodel/parser/test_arxml_parser.py,sha256=4-4DKdHIZN50wiM0tzzP-nejY74aEtAWhURwYxDGrWw,747
|
|
145
|
+
armodel/tests/test_armodel/parser/test_parse_bswmd.py,sha256=khyJdeMAfAbllHieAfXsZE4ycA_fb74PCu-6Ske4QRA,10260
|
|
146
|
+
armodel/tests/test_armodel/parser/test_sw_components.py,sha256=U1Ajcis7PxndJYw1BXkTZQ453LuEcwEX216yZ0w-wGM,4180
|
|
147
|
+
armodel/tests/test_armodel/parser/test_system.py,sha256=W-pmPQLgz4XFnI-070wCPyRhI5I7zZgc6jwHroZclQA,1051
|
|
148
|
+
armodel/writer/__init__.py,sha256=eXr3qhGzFIvHNBin22x-Tk2JM6QwRgx1jwrluDKAlzQ,37
|
|
149
|
+
armodel/writer/abstract_arxml_writer.py,sha256=92w6wYva6oy4UrEXJ7X4Ks1SA0PAlrEhjjffsIP2nEA,5556
|
|
150
|
+
armodel/writer/arxml_writer.py,sha256=Yfh4HQ0Y-MDKDE95svhYo6VdIeYsvRgRkGnY8wFLT_c,175071
|
|
151
|
+
armodel-1.6.4.dist-info/LICENSE,sha256=rceTpGhsmmN1M0k1KO0HRS11iCjen-2y56ZEqgo43wo,1088
|
|
152
|
+
armodel-1.6.4.dist-info/METADATA,sha256=10jX57Nfe9OKWlGL7_QRsUzxJiFOvSHukbopxediVhY,10891
|
|
153
|
+
armodel-1.6.4.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
|
|
154
|
+
armodel-1.6.4.dist-info/entry_points.txt,sha256=7n_GwPbHcnqMTnKCnPjjjo3s_uo_vaFrjtZQeDQtHHM,397
|
|
155
|
+
armodel-1.6.4.dist-info/top_level.txt,sha256=AEATYsqAuRpr0XGa_ThW7-o4WLlA5e3PEgD0QJhzmoA,8
|
|
156
|
+
armodel-1.6.4.dist-info/RECORD,,
|
armodel/lib/data_analyzer.py
DELETED
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
import logging
|
|
2
|
-
|
|
3
|
-
from typing import List
|
|
4
|
-
from ..models import AUTOSAR, ARPackage, AtomicSwComponentType, CompositionSwComponentType
|
|
5
|
-
|
|
6
|
-
class SwComponentAnalyzer:
|
|
7
|
-
def __init__(self) -> None:
|
|
8
|
-
self.swcs = [] # type: List[AtomicSwComponentType]
|
|
9
|
-
|
|
10
|
-
def parse_pkg(self, parent: ARPackage):
|
|
11
|
-
for pkg in parent.getARPackages():
|
|
12
|
-
self.parse_pkg(pkg)
|
|
13
|
-
for swc in parent.getSwComponentTypes():
|
|
14
|
-
self.swcs.append(swc)
|
|
15
|
-
|
|
16
|
-
def import_data(self, document: AUTOSAR):
|
|
17
|
-
for pkg in document.getARPackages():
|
|
18
|
-
self.parse_pkg(pkg)
|
|
19
|
-
|
|
20
|
-
def print_out(self, option = {}):
|
|
21
|
-
logger = logging.getLogger()
|
|
22
|
-
|
|
23
|
-
logger.info("== SW-C LIST ==")
|
|
24
|
-
|
|
25
|
-
if option['filter'] == 'CompositionSwComponent':
|
|
26
|
-
swc_list = filter(lambda o: isinstance(o, CompositionSwComponentType), self.swcs)
|
|
27
|
-
else:
|
|
28
|
-
swc_list = self.swcs
|
|
29
|
-
|
|
30
|
-
for swc in sorted(swc_list, key = lambda o: o.short_name):
|
|
31
|
-
if option['format'] == 'long':
|
|
32
|
-
logger.info("%s" % swc.full_name)
|
|
33
|
-
else:
|
|
34
|
-
logger.info("%s" % swc.short_name)
|