armodel 1.8.5__tar.gz
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-1.8.5/LICENSE +21 -0
- armodel-1.8.5/PKG-INFO +642 -0
- armodel-1.8.5/README.md +624 -0
- armodel-1.8.5/setup.cfg +4 -0
- armodel-1.8.5/setup.py +54 -0
- armodel-1.8.5/src/armodel/__init__.py +3 -0
- armodel-1.8.5/src/armodel/cli/__init__.py +0 -0
- armodel-1.8.5/src/armodel/cli/arxml_dump_cli.py +197 -0
- armodel-1.8.5/src/armodel/cli/arxml_format_cli.py +84 -0
- armodel-1.8.5/src/armodel/cli/connector2xlsx_cli.py +74 -0
- armodel-1.8.5/src/armodel/cli/connector_update_cli.py +74 -0
- armodel-1.8.5/src/armodel/cli/file_list_cli.py +70 -0
- armodel-1.8.5/src/armodel/cli/format_xml_cli.py +62 -0
- armodel-1.8.5/src/armodel/cli/memory_section_cli.py +76 -0
- armodel-1.8.5/src/armodel/cli/swc_list_cli.py +80 -0
- armodel-1.8.5/src/armodel/cli/system_signal_cli.py +74 -0
- armodel-1.8.5/src/armodel/cli/uuid_checker_cli.py +95 -0
- armodel-1.8.5/src/armodel/data_models/__init__.py +0 -0
- armodel-1.8.5/src/armodel/data_models/sw_connector.py +22 -0
- armodel-1.8.5/src/armodel/lib/__init__.py +4 -0
- armodel-1.8.5/src/armodel/lib/cli_args_parser.py +36 -0
- armodel-1.8.5/src/armodel/lib/sw_component.py +36 -0
- armodel-1.8.5/src/armodel/lib/system_signal.py +37 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/AutosarTopLevelStructure.py +296 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/BswModuleTemplate/BswBehavior.py +793 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/BswModuleTemplate/BswImplementation.py +60 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/BswModuleTemplate/BswInterfaces.py +200 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/BswModuleTemplate/BswOverview.py +179 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/BswModuleTemplate/__init__.py +4 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/Filter.py +96 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/FlatMap.py +69 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/Implementation.py +243 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/ImplementationDataTypes.py +170 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/InternalBehavior.py +136 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/ModeDeclaration.py +148 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/ResourceConsumption/HardwareConfiguration.py +33 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/ResourceConsumption/HeapUsage.py +10 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/ResourceConsumption/MemorySectionUsage.py +81 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/ResourceConsumption/SoftwareContext.py +23 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/ResourceConsumption/StackUsage.py +93 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/ResourceConsumption/__init__.py +54 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/ServiceNeeds.py +839 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/StandardizationTemplate/BlueprintDedicated/PortPrototypeBlueprint.py +73 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/StandardizationTemplate/BlueprintDedicated/__init__.py +0 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/StandardizationTemplate/Keyword.py +45 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/StandardizationTemplate/__init__.py +0 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/SwcBswMapping.py +77 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/Timing/TimingConstraint/ExecutionOrderConstraint.py +45 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/Timing/TimingConstraint/TimingConstraint.py +24 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/Timing/TimingConstraint/TimingExtensions.py +33 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/Timing/TimingConstraint/__init__.py +0 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/Timing/__init__.py +0 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/TriggerDeclaration.py +52 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/CommonStructure/__init__.py +205 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/DiagnosticExtract/DiagnosticContribution.py +47 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/DiagnosticExtract/__init__.py +0 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/ECUCDescriptionTemplate.py +346 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/ECUCParameterDefTemplate.py +1249 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/EcuResourceTemplate/HwElementCategory.py +59 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/EcuResourceTemplate/__init__.py +145 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/GenericStructure/AbstractStructure.py +92 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/GenericStructure/GeneralTemplateClasses/ARPackage.py +816 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/GenericStructure/GeneralTemplateClasses/ArObject.py +17 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/GenericStructure/GeneralTemplateClasses/ElementCollection.py +74 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/GenericStructure/GeneralTemplateClasses/EngineeringObject.py +52 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/GenericStructure/GeneralTemplateClasses/Identifiable.py +236 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/GenericStructure/GeneralTemplateClasses/PrimitiveTypes.py +594 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/GenericStructure/GeneralTemplateClasses/__init__.py +0 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/GenericStructure/LifeCycles.py +155 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/GenericStructure/__init__.py +1 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/Communication.py +660 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/Components/InstanceRefs.py +179 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/Components/__init__.py +463 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/Composition/InstanceRefs.py +154 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/Composition/__init__.py +100 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/Datatype/DataPrototypes.py +145 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/Datatype/Datatypes.py +131 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/Datatype/__init__.py +0 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/EndToEndProtection.py +184 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/PortInterface/InstanceRefs.py +39 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/PortInterface/__init__.py +641 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/RPTScenario.py +18 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SoftwareComponentDocumentation.py +80 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcImplementation.py +34 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/AccessCount.py +21 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/AutosarVariableRef.py +34 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/DataElements.py +51 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/IncludedDataTypes.py +24 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/InstanceRefsUsage.py +154 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/ModeDeclarationGroup.py +63 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/PerInstanceMemory.py +41 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/PortAPIOptions.py +86 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/RTEEvents.py +206 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/ServerCall.py +26 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/ServiceMapping.py +137 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/Trigger.py +49 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/SwcInternalBehavior/__init__.py +489 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SWComponentTemplate/__init__.py +0 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/DataMapping.py +259 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/DiagnosticConnection.py +58 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/DoIp.py +29 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/ECUResourceMapping.py +45 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Can/CanCommunication.py +122 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Can/CanTopology.py +344 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Can/__init__.py +0 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Ethernet/EthernetCommunication.py +244 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Ethernet/EthernetFrame.py +16 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Ethernet/EthernetTopology.py +685 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Ethernet/NetworkEndpoint.py +328 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Ethernet/ServiceInstances.py +975 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Ethernet/__init__.py +0 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Flexray/FlexrayCommunication.py +76 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Flexray/FlexrayTopology.py +654 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Flexray/__init__.py +0 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Lin/LinCommunication.py +149 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Lin/LinTopology.py +92 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Lin/__init__.py +0 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/Fibex4Multiplatform.py +205 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/FibexCore/CoreCommunication.py +1232 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/FibexCore/CoreTopology.py +662 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/FibexCore/EcuInstance.py +271 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/FibexCore/Timing.py +172 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/FibexCore/__init__.py +0 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/Fibex/__init__.py +0 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/InstanceRefs.py +87 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/NetworkManagement.py +790 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/RteEventToOsTaskMapping.py +35 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/SWmapping.py +52 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/SecureCommunication.py +83 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/Transformer/__init__.py +524 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/TransportProtocols.py +658 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/SystemTemplate/__init__.py +458 -0
- armodel-1.8.5/src/armodel/models/M2/AUTOSARTemplates/__init__.py +0 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/AsamHdo/AdminData.py +136 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/AsamHdo/BaseTypes.py +76 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/AsamHdo/ComputationMethod.py +329 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/AsamHdo/Constraints/GlobalConstraints.py +42 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/AsamHdo/Constraints/__init__.py +0 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/AsamHdo/SpecialData.py +87 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/AsamHdo/Units.py +105 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/AsamHdo/__init__.py +0 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/CalibrationData/CalibrationValue.py +57 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/CalibrationData/__init__.py +0 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/DataDictionary/AuxillaryObjects.py +41 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/DataDictionary/Axis.py +145 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/DataDictionary/CalibrationParameter.py +37 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/DataDictionary/DataDefProperties.py +351 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/DataDictionary/RecordLayout.py +209 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/DataDictionary/ServiceProcessTask.py +33 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/DataDictionary/__init__.py +0 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/Documentation/Annotation.py +42 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/Documentation/BlockElements/Figure.py +163 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/Documentation/BlockElements/__init__.py +0 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/Documentation/TextModel/BlockElements/ListElements.py +56 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/Documentation/TextModel/BlockElements/PaginationAndView.py +30 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/Documentation/TextModel/BlockElements/__init__.py +110 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/Documentation/TextModel/LanguageDataModel.py +44 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/Documentation/TextModel/MultilanguageData.py +58 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/Documentation/TextModel/__init__.py +0 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/Documentation/__init__.py +3 -0
- armodel-1.8.5/src/armodel/models/M2/MSR/__init__.py +1 -0
- armodel-1.8.5/src/armodel/models/M2/__init__.py +0 -0
- armodel-1.8.5/src/armodel/models/__init__.py +85 -0
- armodel-1.8.5/src/armodel/models/utils/__init__.py +0 -0
- armodel-1.8.5/src/armodel/models/utils/uuid_mgr.py +29 -0
- armodel-1.8.5/src/armodel/parser/__init__.py +2 -0
- armodel-1.8.5/src/armodel/parser/abstract_arxml_parser.py +325 -0
- armodel-1.8.5/src/armodel/parser/arxml_parser.py +5784 -0
- armodel-1.8.5/src/armodel/parser/connector_xlsx_parser.py +194 -0
- armodel-1.8.5/src/armodel/parser/excel_parser.py +18 -0
- armodel-1.8.5/src/armodel/parser/file_parser.py +46 -0
- armodel-1.8.5/src/armodel/report/__init__.py +1 -0
- armodel-1.8.5/src/armodel/report/connector_xls_report.py +78 -0
- armodel-1.8.5/src/armodel/report/excel_report.py +42 -0
- armodel-1.8.5/src/armodel/tests/__init__.py +0 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/__init__.py +0 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/models/__init__.py +0 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/models/test_ECUCParameterDefTemplate.py +116 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/models/test_Identifiable.py +85 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/models/test_ar_object.py +154 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/models/test_ar_package.py +304 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/models/test_ar_ref.py +81 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/models/test_bsw_module_template.py +52 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/models/test_common_structure.py +82 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/models/test_data_dictionary.py +30 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/models/test_data_prototype.py +93 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/models/test_datatype.py +251 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/models/test_general_structure.py +56 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/models/test_implementation.py +27 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/models/test_m2_msr.py +79 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/models/test_port_interface.py +202 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/models/test_port_prototype.py +15 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/parser/__init__.py +0 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/parser/test_arxml_parser.py +53 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/parser/test_bsw_module_descriiption.py +218 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/parser/test_implementation_data_type.py +247 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/parser/test_rte_event.py +142 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/parser/test_runnable_entity.py +135 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/parser/test_sw_components.py +484 -0
- armodel-1.8.5/src/armodel/tests/test_armodel/parser/test_system.py +23 -0
- armodel-1.8.5/src/armodel/transformer/__init__.py +0 -0
- armodel-1.8.5/src/armodel/transformer/abstract.py +6 -0
- armodel-1.8.5/src/armodel/transformer/admin_data.py +31 -0
- armodel-1.8.5/src/armodel/writer/__init__.py +1 -0
- armodel-1.8.5/src/armodel/writer/abstract_arxml_writer.py +147 -0
- armodel-1.8.5/src/armodel/writer/arxml_writer.py +5936 -0
- armodel-1.8.5/src/armodel.egg-info/PKG-INFO +642 -0
- armodel-1.8.5/src/armodel.egg-info/SOURCES.txt +212 -0
- armodel-1.8.5/src/armodel.egg-info/dependency_links.txt +1 -0
- armodel-1.8.5/src/armodel.egg-info/entry_points.txt +12 -0
- armodel-1.8.5/src/armodel.egg-info/not-zip-safe +1 -0
- armodel-1.8.5/src/armodel.egg-info/requires.txt +6 -0
- armodel-1.8.5/src/armodel.egg-info/top_level.txt +1 -0
armodel-1.8.5/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2021 melodypapa
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
armodel-1.8.5/PKG-INFO
ADDED
|
@@ -0,0 +1,642 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: armodel
|
|
3
|
+
Version: 1.8.5
|
|
4
|
+
Summary: the python arxml parser
|
|
5
|
+
Home-page: http://github.com/melodypapa/py-armodel
|
|
6
|
+
Author: melodypapa
|
|
7
|
+
Author-email: melodypapa@outlook.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Description: # 1. py-armodel
|
|
10
|
+
|
|
11
|
+
## 1.1. Purpose
|
|
12
|
+
|
|
13
|
+
To support AUTOSAR model with python
|
|
14
|
+
|
|
15
|
+
## 1.2. Reference Documents
|
|
16
|
+
1. AUTOSAR_TPS_XMLSchemaProductionRules.pdf
|
|
17
|
+
2. AUTOSAR_TPS_ARXMLSerializationRules.pdf
|
|
18
|
+
|
|
19
|
+
|Version|Documentation|Travis CI|Coverage Status|Pypi|
|
|
20
|
+
|--|--|--|--|--|
|
|
21
|
+
|[](https://badge.fury.io/gh/melodypapa%2Fpy-armodel)|[](https://py-armodel.readthedocs.io/en/latest)|[](https://www.travis-ci.com/melodypapa/py-armodel)|[](https://coveralls.io/github/melodypapa/py-armodel?branch=main)|[](https://badge.fury.io/py/armodel)|
|
|
22
|
+
|
|
23
|
+
## 1.3. How to create the distribution and upload to pypi
|
|
24
|
+
1. Run `python setup.py bdist_wheel` to generate distribution
|
|
25
|
+
2. Run `twine check dist/*` to check the validation of distribution
|
|
26
|
+
3. Run `twine upload dist/*` to upload to pypi repository
|
|
27
|
+
4. Check the website https://pypi.org/project/armodel/ to find out it works or not
|
|
28
|
+
|
|
29
|
+
And more details can be found at https://packaging.python.org/
|
|
30
|
+
|
|
31
|
+
## 1.4. How to perform Unit test
|
|
32
|
+
|
|
33
|
+
* Run `pip install pytest pytest-cov` to install pytest.
|
|
34
|
+
* Run `pytest --cov=armodel --cov-report term-missing` to verify all the functionality.
|
|
35
|
+
|
|
36
|
+
## 1.5. How to create a distribution and wheel
|
|
37
|
+
|
|
38
|
+
* Run `python setup.py sdist bdist_wheel --universal`
|
|
39
|
+
|
|
40
|
+
## 1.6. How to create the document
|
|
41
|
+
|
|
42
|
+
1. Run `pip install sphinx` to install the necessary document
|
|
43
|
+
|
|
44
|
+
## 1.7. Heritage
|
|
45
|
+
|
|
46
|
+
```
|
|
47
|
+
- ARObject
|
|
48
|
+
- Referrable
|
|
49
|
+
- MultilanguageReferrable
|
|
50
|
+
- Identifiable
|
|
51
|
+
- PackageableElement
|
|
52
|
+
- ARElement
|
|
53
|
+
- AtpType
|
|
54
|
+
- AutosarDataType
|
|
55
|
+
- PortInterface
|
|
56
|
+
- DataInterface
|
|
57
|
+
- NvDataInterface
|
|
58
|
+
- ParameterInterface
|
|
59
|
+
- SenderReceiverInterface
|
|
60
|
+
- BswModuleEntry
|
|
61
|
+
- EndToEndProtectionSet
|
|
62
|
+
- Implementation
|
|
63
|
+
- BswImplementation
|
|
64
|
+
- AtpFeature
|
|
65
|
+
- AtpPrototype
|
|
66
|
+
- AtpPrototype
|
|
67
|
+
- DataPrototype
|
|
68
|
+
- AutosarDataPrototype
|
|
69
|
+
- VariableDataPrototype
|
|
70
|
+
- ApplicationCompositeElementDataPrototype
|
|
71
|
+
- ApplicationArrayElement
|
|
72
|
+
- ApplicationRecordElement
|
|
73
|
+
- AtpStructureElement
|
|
74
|
+
- BswModuleDescription
|
|
75
|
+
- ExecutableEntity
|
|
76
|
+
- SwcBswMapping
|
|
77
|
+
- PortPrototype
|
|
78
|
+
- AbstractProvidedPortPrototype
|
|
79
|
+
- PPortPrototype
|
|
80
|
+
- AbstractRequiredPortPrototype
|
|
81
|
+
- RPortPrototype
|
|
82
|
+
- ValueSpecification
|
|
83
|
+
- ConstantReference
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## 1.8. CLI usages
|
|
87
|
+
|
|
88
|
+
### 1.8.1. arxml-dump
|
|
89
|
+
|
|
90
|
+
**Dump all the arxml data to screen**
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
`arxml-dump --arxml arg -h`
|
|
94
|
+
|
|
95
|
+
--arxml arg The file name of arxml data
|
|
96
|
+
-h show the help information
|
|
97
|
+
|
|
98
|
+
#### 1.8.1.1. arxml-dump usage
|
|
99
|
+
|
|
100
|
+
**Dump the arxml data from test1.arxml and test2.arxml**
|
|
101
|
+
|
|
102
|
+
```
|
|
103
|
+
$arxml-dump --arxml test1.arxml --arxml test2.arxml
|
|
104
|
+
```
|
|
105
|
+
|
|
106
|
+
### 1.8.2. arxml-swc
|
|
107
|
+
|
|
108
|
+
**List all the SwComponentType in the autosar model**
|
|
109
|
+
|
|
110
|
+
usage: swc-list [-h] [-v] [-f FORMAT] [--filter FILTER] Input [Input ...]
|
|
111
|
+
|
|
112
|
+
-h, --help show the help message and exit
|
|
113
|
+
-v, --verbose Print debug information
|
|
114
|
+
-f FORMAT, --format FORMAT
|
|
115
|
+
Specify the short or long name of Sw-C.
|
|
116
|
+
*short* : only print the short name of SWComponentType
|
|
117
|
+
*long* : print the SWComponentType with ARPackage names
|
|
118
|
+
--filter FILTER Set the filter condition.
|
|
119
|
+
*CompositionSwComponent* : Print the CompositionSwComponent only.
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
#### 1.8.2.1. List all the SW-Components in the specific path
|
|
123
|
+
|
|
124
|
+
```
|
|
125
|
+
$arxml-swc <arxml_folder>
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
#### 1.8.2.2. List all the CompositionSwComponent with the long name
|
|
129
|
+
|
|
130
|
+
```
|
|
131
|
+
$arxml-swc --format long --filter CompositionSwComponent <arxml_folder>
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
### 1.8.3. connector2xlsx
|
|
135
|
+
|
|
136
|
+
**Export all the SwConnector (AssemblySwConnector, DelegationSwConnector) to excel file**
|
|
137
|
+
|
|
138
|
+
```
|
|
139
|
+
$connector2xlsx src/armodel/tests/test_files/SoftwareComponents.arxml data/SoftwareComponents.xlsx
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
### 1.8.4. connector-update
|
|
143
|
+
|
|
144
|
+
**Update all the SwConnector (AssemblySwConnector, DelegationSwConnector) from excel file**
|
|
145
|
+
|
|
146
|
+
```
|
|
147
|
+
$connector-update src/armodel/tests/test_files/SoftwareComponents.arxml data/SoftwareComponents.xlsx data/Test.arxml
|
|
148
|
+
```
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
## 1.9. API
|
|
152
|
+
|
|
153
|
+
### 1.9.1. Constructor
|
|
154
|
+
|
|
155
|
+
```
|
|
156
|
+
ARXMLParser(options={"warning": True})
|
|
157
|
+
```
|
|
158
|
+
|
|
159
|
+
## 1.10. Change notes:
|
|
160
|
+
|
|
161
|
+
**Version 0.1.1**
|
|
162
|
+
|
|
163
|
+
Add the ARRAY category support for ImplementationDataType
|
|
164
|
+
|
|
165
|
+
**Version 0.1.2**
|
|
166
|
+
|
|
167
|
+
Add the AsynchronousServerCallPoint support for ARXML
|
|
168
|
+
|
|
169
|
+
**Version 0.1.3**
|
|
170
|
+
|
|
171
|
+
Fix the attribute intervalType of **Limit** is empty issue.
|
|
172
|
+
|
|
173
|
+
**Version 1.0.0**
|
|
174
|
+
|
|
175
|
+
1. Add the logging support
|
|
176
|
+
2. Add the <warning> option to disable exception raised.
|
|
177
|
+
3. Add the BswMD support
|
|
178
|
+
|
|
179
|
+
**Version 1.1.0**
|
|
180
|
+
|
|
181
|
+
1. Add the InitEvent support. (Issue #5)
|
|
182
|
+
2. Add the DataReceiveEvent support. (Issue #5)
|
|
183
|
+
3. Add the SwcModeSwitchEvent support. (Issue #5)
|
|
184
|
+
|
|
185
|
+
**Version 1.2.0**
|
|
186
|
+
|
|
187
|
+
1. Add the SwcImplementation support (Issue #9)
|
|
188
|
+
2. Add the integer value for memory section alignment (Issue #9)
|
|
189
|
+
3. Remove the required attributes for the Implementation according to the AUTOSAR standard 23R-11. (Issue #9)
|
|
190
|
+
4. Change the START-ON-EVENT-REF to optional according to the AUTOSAR standard 23R-11. (Issue #9)
|
|
191
|
+
5. Change the HANDLE-OUT-OF-RANGE to optional according to the AUTOSAR standard 23R-11. (Issue #9)
|
|
192
|
+
6. Add the SensorActuatorSwComponentType support (Issue #9)
|
|
193
|
+
7. Change the CATEGORY of COMPU-METHOD to optional.
|
|
194
|
+
8. Change the CAN-BE-INVOKED-CONCURRENTLY to optional.
|
|
195
|
+
|
|
196
|
+
**Version 1.3.0**
|
|
197
|
+
|
|
198
|
+
1. List all the SwComponentType (Issue #11)
|
|
199
|
+
2. Support to parse the DelegationSwConnector (Issue #12)
|
|
200
|
+
3. Correct the class definitions of PPortInCompositionInstanceRef and RPortInCompositionInstanceRef. (Issue #12)
|
|
201
|
+
|
|
202
|
+
**Version 1.4.0**
|
|
203
|
+
|
|
204
|
+
1. Support to write the AUTOSAR model to arxml file (Issue #17)
|
|
205
|
+
* ARPackage
|
|
206
|
+
* CompositionSwComponent
|
|
207
|
+
* CompuMethod
|
|
208
|
+
* DataConstr
|
|
209
|
+
* Unit
|
|
210
|
+
2. Support to read the AUTOSAR model from arxml file (Issue #17)
|
|
211
|
+
* ConstantSpecification
|
|
212
|
+
* DataConstr
|
|
213
|
+
* Unit
|
|
214
|
+
|
|
215
|
+
**Version 1.4.1**
|
|
216
|
+
|
|
217
|
+
1. Support to read the AUTOSAR model from arxml file (Issue #19)
|
|
218
|
+
* ServerComSpec
|
|
219
|
+
* PerInstanceMemory
|
|
220
|
+
* PortDefinedArgumentValue
|
|
221
|
+
* DataWriteAccesses
|
|
222
|
+
* NvBlockNeeds
|
|
223
|
+
* CompositeNetworkRepresentation
|
|
224
|
+
* PortGroup
|
|
225
|
+
2. Support to write the AUTOSAR model to arxml file (Issue #19)
|
|
226
|
+
* ServerComSpec
|
|
227
|
+
* PerInstanceMemory
|
|
228
|
+
* ServerCallPoint
|
|
229
|
+
* ReadLocalVariable
|
|
230
|
+
* WrittenLocalVariable
|
|
231
|
+
* PortDefinedArgumentValue
|
|
232
|
+
* RVariableInAtomicSwcInstanceRef
|
|
233
|
+
* DataWriteAccesses
|
|
234
|
+
* NvBlockNeeds
|
|
235
|
+
* RecordValueSpecification
|
|
236
|
+
* CompositeNetworkRepresentation
|
|
237
|
+
* PortGroup
|
|
238
|
+
3. Move the ARPackage from the Elements.
|
|
239
|
+
|
|
240
|
+
**Version 1.4.2**
|
|
241
|
+
|
|
242
|
+
1. Support to read the AUTOSAR model from arxml file (Issue #23)
|
|
243
|
+
* EndToEndProtectionSet
|
|
244
|
+
* EndToEndProtection
|
|
245
|
+
* EndToEndProtectionVariablePrototype
|
|
246
|
+
* EndToEndDescription
|
|
247
|
+
* ApplicationArrayDataType
|
|
248
|
+
* SwRecordLayout
|
|
249
|
+
* SwCalprmAxisSet
|
|
250
|
+
* SwCalprmAxis
|
|
251
|
+
* ApplicationArrayElement
|
|
252
|
+
* ApplicationArrayDataType
|
|
253
|
+
* SwRecordLayoutGroup
|
|
254
|
+
* SwRecordLayoutGroupContent
|
|
255
|
+
2. Support to write the AUTOSAR model to arxml file (Issue #23)
|
|
256
|
+
* EndToEndProtectionSet
|
|
257
|
+
* EndToEndProtection
|
|
258
|
+
* EndToEndProtectionVariablePrototype
|
|
259
|
+
* EndToEndDescription
|
|
260
|
+
* ApplicationArrayDataType
|
|
261
|
+
* SwRecordLayout
|
|
262
|
+
* SwCalprmAxisSet
|
|
263
|
+
* SwCalprmAxis
|
|
264
|
+
* ApplicationArrayElement
|
|
265
|
+
* ApplicationArrayDataType
|
|
266
|
+
* SwRecordLayoutGroup
|
|
267
|
+
* SwRecordLayoutGroupContent
|
|
268
|
+
* ImplementationDataType
|
|
269
|
+
|
|
270
|
+
**Version 1.4.3**
|
|
271
|
+
|
|
272
|
+
1. Support to write the AUTOSAR model to arxml file (Issue #25)
|
|
273
|
+
* BswCalledEntity
|
|
274
|
+
* BswSchedulableEntity
|
|
275
|
+
* BswImplementation
|
|
276
|
+
* ServiceSwComponentType
|
|
277
|
+
* DataTypeMappingSet
|
|
278
|
+
* ModeRequestTypeMap
|
|
279
|
+
* PortInterface
|
|
280
|
+
* ModeInterface
|
|
281
|
+
2. Support ot read the AUTOSAR model to arxml file (Issue #25)
|
|
282
|
+
* ServiceSwComponentType
|
|
283
|
+
* ModeRequestTypeMap
|
|
284
|
+
* PortInterface
|
|
285
|
+
* ModeInterface
|
|
286
|
+
3. Refactor the Base ARType
|
|
287
|
+
* ARFloat
|
|
288
|
+
* ARNumerical
|
|
289
|
+
* ARLiteral
|
|
290
|
+
4. Fix Issue #22 - raise wrong Exception: Invalid ResourceConsumption of Implementation
|
|
291
|
+
|
|
292
|
+
**Version 1.5.0**
|
|
293
|
+
|
|
294
|
+
1. Fix the old ARElement (Issue #27)
|
|
295
|
+
* InitEvent
|
|
296
|
+
* SwcTiming
|
|
297
|
+
* ConstantMemory
|
|
298
|
+
* ModeSwitchReceiverComSpec
|
|
299
|
+
* MODE-ACCESS-POINTS
|
|
300
|
+
2. Add the timestamp to following ARElement (Issue #27)
|
|
301
|
+
* AUTOSAR-VARIABLE-IREF
|
|
302
|
+
* MODE-REQUEST-TYPE-MAP
|
|
303
|
+
3. Timing Extension (Issue #27)
|
|
304
|
+
* TIMING-REQUIREMENTS
|
|
305
|
+
* EXECUTION-ORDER-CONSTRAINT
|
|
306
|
+
* EOC-EXECUTABLE-ENTITY-REF
|
|
307
|
+
4. Communication (Issue #27)
|
|
308
|
+
* LIN-CLUSTER
|
|
309
|
+
* NM-PDU
|
|
310
|
+
* LIN-UNCONDITIONAL-FRAME
|
|
311
|
+
* CAN-FRAME
|
|
312
|
+
* GATEWAY
|
|
313
|
+
* I-SIGNAL
|
|
314
|
+
|
|
315
|
+
**Version 1.6.0**
|
|
316
|
+
|
|
317
|
+
1. Add the annotation support for the Identifiable class. (Issue #29)
|
|
318
|
+
2. Ecuc (Issue #29)
|
|
319
|
+
* EcucValueCollection
|
|
320
|
+
* EcucModuleConfigurationValues
|
|
321
|
+
* EcucContainerValue
|
|
322
|
+
* EcucParameterValue
|
|
323
|
+
* EcucAbstractReferenceValue
|
|
324
|
+
3. To support the following AR Element:
|
|
325
|
+
* I-SIGNAL-GROUP
|
|
326
|
+
* I-SIGNAL-I-PDU-GROUP
|
|
327
|
+
* NM-CONFIG
|
|
328
|
+
* NM-NODE
|
|
329
|
+
* NM-CLUSTER
|
|
330
|
+
* CAN-NM-MODE
|
|
331
|
+
* NM-ECU
|
|
332
|
+
* SECURED-I-PDU
|
|
333
|
+
* MODE-SWITCH-POINTS
|
|
334
|
+
4. Create the CLI (armodel-system-signal) to list all the system signals
|
|
335
|
+
|
|
336
|
+
**Version 1.6.1**
|
|
337
|
+
|
|
338
|
+
1. Organize the armodel package.
|
|
339
|
+
2. Add the Get/Set method for several class.
|
|
340
|
+
|
|
341
|
+
**Version 1.6.2**
|
|
342
|
+
|
|
343
|
+
1. Change the AUTOSAR.clear() to AUTOSAR.new().
|
|
344
|
+
2. Fix the several refactor methods issue.
|
|
345
|
+
|
|
346
|
+
**Version 1.6.3**
|
|
347
|
+
|
|
348
|
+
1. Change the Package structure according to AUTOSAR standard.
|
|
349
|
+
|
|
350
|
+
**Version 1.6.4**
|
|
351
|
+
|
|
352
|
+
1. Refactor the Implementation.
|
|
353
|
+
2. Fix the Binary value
|
|
354
|
+
3. Refactor the SwComponentType.
|
|
355
|
+
|
|
356
|
+
**Version 1.7.0**
|
|
357
|
+
|
|
358
|
+
1. To support the following AR Element:
|
|
359
|
+
* SWC-TO-ECU-MAPPING
|
|
360
|
+
* SW-MAPPINGS
|
|
361
|
+
* ROOT-SOFTWARE-COMPOSITIONS
|
|
362
|
+
* SPEED
|
|
363
|
+
* ECU-INSTANCE
|
|
364
|
+
* COMM-CONTROLLERS
|
|
365
|
+
* CAN-COMMUNICATION-CONNECTOR
|
|
366
|
+
* I-PDU-TIMING
|
|
367
|
+
* DATA-FILTER
|
|
368
|
+
* EVENT-CONTROLLED-TIMING
|
|
369
|
+
|
|
370
|
+
**Version 1.7.1**
|
|
371
|
+
|
|
372
|
+
1. To support the following AR Element:
|
|
373
|
+
* INTRODUCTION
|
|
374
|
+
* LIST
|
|
375
|
+
* SW-INTENDED-RESOLUTION
|
|
376
|
+
* REFERENCE-BASE
|
|
377
|
+
|
|
378
|
+
**Version 1.7.2**
|
|
379
|
+
|
|
380
|
+
1. Fix the invalidationPolicy of SenderReceiverInterface cannot be written in ARXML
|
|
381
|
+
2. To support the following AR Element:
|
|
382
|
+
* SW-ADDR-METHOD
|
|
383
|
+
* DIAGNOSTIC-COMMUNICATION-MANAGER-NEEDS
|
|
384
|
+
* DIAGNOSTIC-ROUTINE-NEEDS
|
|
385
|
+
* DIAGNOSTIC-VALUE-NEEDS
|
|
386
|
+
* DIAGNOSTIC-EVENT-NEEDS
|
|
387
|
+
* CRYPTO-SERVICE-NEEDS
|
|
388
|
+
* DIAG-EVENT-DEBOUNCE-MONITOR-INTERNAL
|
|
389
|
+
* ROLE-BASED-DATA-TYPE-ASSIGNMENT
|
|
390
|
+
* ASYNCHRONOUS-SERVER-CALL-RETURNS-EVENT
|
|
391
|
+
* PR-PORT-PROTOTYPE
|
|
392
|
+
|
|
393
|
+
**Version 1.7.3**
|
|
394
|
+
|
|
395
|
+
1. To support the following AR Element:
|
|
396
|
+
* MEM-CLASS-SYMBOL
|
|
397
|
+
* ASYNCHRONOUS-SERVER-CALL-RESULT-POINTS
|
|
398
|
+
* STEP-SIZE
|
|
399
|
+
* BSW-INTERRUPT-ENTITY
|
|
400
|
+
* FLAT-MAP
|
|
401
|
+
* VARIABLE-AND-PARAMETER-INTERFACE-MAPPING
|
|
402
|
+
* PORT-INTERFACE-MAPPING-SET
|
|
403
|
+
* DATA-MAPPINGS
|
|
404
|
+
* ECU-STATE-MGR-USER-NEEDS
|
|
405
|
+
* STACK-USAGES
|
|
406
|
+
* ROUGH-ESTIMATE-STACK-USAGE
|
|
407
|
+
2. To improve the following AR Element:
|
|
408
|
+
* PARAMETER-INTERFACE
|
|
409
|
+
|
|
410
|
+
**Version 1.7.4**
|
|
411
|
+
|
|
412
|
+
1. To support the following AR Element:
|
|
413
|
+
* DIAGNOSTIC-EVENT-INFO-NEEDS
|
|
414
|
+
* AR-TYPED-PER-INSTANCE-MEMORYS
|
|
415
|
+
* USED-DATA-ELEMENT
|
|
416
|
+
* ETHERNET-COMMUNICATION-CONTROLLER
|
|
417
|
+
* ETHERNET-COMMUNICATION-CONNECTOR
|
|
418
|
+
* ETHERNET-PHYSICAL-CHANNEL
|
|
419
|
+
* PHYSICAL-PROPS
|
|
420
|
+
* SO-AD-CONFIG
|
|
421
|
+
2. To improve the following AR Element:
|
|
422
|
+
* MODE-SWITCH-RECEIVER-COM-SPEC
|
|
423
|
+
* APPLICATION-ARRAY-DATA-TYPE
|
|
424
|
+
|
|
425
|
+
**Version 1.7.5**
|
|
426
|
+
|
|
427
|
+
1. To support the following AR Element:
|
|
428
|
+
* DIAGNOSTIC-CONNECTION
|
|
429
|
+
* DIAGNOSTIC-SERVICE-TABLE
|
|
430
|
+
* LIN-MASTER
|
|
431
|
+
* LIN-COMMUNICATION-CONNECTOR
|
|
432
|
+
* UDP-NM-CLUSTER
|
|
433
|
+
* UDP-NM-NODE
|
|
434
|
+
* MULTIPLEXED-I-PDU
|
|
435
|
+
* USER-DEFINED-I-PDU
|
|
436
|
+
* USER-DEFINED-PDU
|
|
437
|
+
* GENERAL-PURPOSE-I-PDU
|
|
438
|
+
* GENERAL-PURPOSE-PDU
|
|
439
|
+
* SECURE-COMMUNICATION-PROPS-SET
|
|
440
|
+
* SO-AD-ROUTING-GROUP
|
|
441
|
+
* BUS-OFF-RECOVERY
|
|
442
|
+
* SCHEDULE-TABLES
|
|
443
|
+
* INFRASTRUCTURE-SERVICES
|
|
444
|
+
* GENERIC-TP
|
|
445
|
+
* TCP-TP
|
|
446
|
+
* UDP-TP
|
|
447
|
+
* CONSUMED-SERVICE-INSTANCES
|
|
448
|
+
2. Fix the following AR Element
|
|
449
|
+
* SW-RECORD-LAYOUT-V-AXIS
|
|
450
|
+
* SW-RECORD-LAYOUT-GROUP-AXIS
|
|
451
|
+
3. Improve the following AR Element
|
|
452
|
+
* SOCKET-CONNECTION
|
|
453
|
+
* SOCKET-ADDRESS
|
|
454
|
+
|
|
455
|
+
**Version 1.7.6**
|
|
456
|
+
|
|
457
|
+
1. To support the following AR Element:
|
|
458
|
+
* PROVIDED-SERVICE-INSTANCE
|
|
459
|
+
* MAC-MULTICAST-GROUP
|
|
460
|
+
* ASSOCIATED-COM-I-PDU-GROUP-REF
|
|
461
|
+
* CAN-CONTROLLER-CONFIGURATION-REQUIREMENTS
|
|
462
|
+
* CAN-CONTROLLER-FD-REQUIREMENTS
|
|
463
|
+
2. Improve the following AR Element
|
|
464
|
+
* AR-PACKAGE
|
|
465
|
+
* LIN-TP-CONFIG
|
|
466
|
+
* DIAGNOSTIC-SERVICE-TABLE
|
|
467
|
+
* LIN-MASTER
|
|
468
|
+
* IMPLEMENTATION-DATA-TYPE
|
|
469
|
+
* ETHERNET-COMMUNICATION-CONTROLLER
|
|
470
|
+
* I-SIGNAL-PORT
|
|
471
|
+
* SYMBOL-PROPS
|
|
472
|
+
* I-PDU-PORT
|
|
473
|
+
3. Fix the following AR Element
|
|
474
|
+
* I-PDU-MAPPING
|
|
475
|
+
|
|
476
|
+
**Version 1.7.7**
|
|
477
|
+
|
|
478
|
+
1. To support the following AR Element:
|
|
479
|
+
* UDP-NM-CLUSTER
|
|
480
|
+
* UDP-NM-CLUSTER-COUPLING
|
|
481
|
+
* NM-IF-ECUS
|
|
482
|
+
* UDP-NM-ECU
|
|
483
|
+
* TRANSMISSION-MODE-FALSE-TIMING
|
|
484
|
+
* SECURED-I-PDU
|
|
485
|
+
* MULTIPLEXED-I-PDU
|
|
486
|
+
* NM-PDU
|
|
487
|
+
* SECURE-COMMUNICATION-PROPS-SET
|
|
488
|
+
* SO-AD-ROUTING-GROUP
|
|
489
|
+
* ECU-RESOURCE-MAPPINGS
|
|
490
|
+
* SW-IMPL-MAPPINGS
|
|
491
|
+
* CAN-TP-CONFIG
|
|
492
|
+
* DO-IP-TP-CONFIG
|
|
493
|
+
* LIN-TP-CONFIG
|
|
494
|
+
* BSW-BACKGROUND-EVENT
|
|
495
|
+
* BSW-DATA-RECEIVED-EVENT
|
|
496
|
+
* BSW-EXTERNAL-TRIGGER-OCCURRED-EVENT
|
|
497
|
+
* MODE-SWITCHED-ACK-EVENT
|
|
498
|
+
* BACKGROUND-EVENT
|
|
499
|
+
2. Improve the following AR Element
|
|
500
|
+
* ETHERNET-COMMUNICATION-CONNECTOR
|
|
501
|
+
* ECU-INSTANCE
|
|
502
|
+
* CAN-NM-NODE
|
|
503
|
+
* NM-NODE
|
|
504
|
+
* SDG
|
|
505
|
+
* DATA-FILTER
|
|
506
|
+
* USER-DEFINED-PDU
|
|
507
|
+
* APPLICATION-ARRAY-DATA-TYPE
|
|
508
|
+
* MODE-SWITCH-SENDER-COM-SPEC
|
|
509
|
+
|
|
510
|
+
3. Access the RootSwCompositionPrototype directly from AUTOSAR instance
|
|
511
|
+
4. Create the mapping for Implementation and InternalBehavior
|
|
512
|
+
* AUTOSAR::getBehavior()
|
|
513
|
+
* AUTOSAR::getImplementation()
|
|
514
|
+
5. Improve the Identifiable::setCategory with Raw String
|
|
515
|
+
|
|
516
|
+
**Version 1.7.8**
|
|
517
|
+
|
|
518
|
+
1. To support the following AR Element:
|
|
519
|
+
* STATIC-MEMORYS
|
|
520
|
+
* RECEPTION-POLICYS
|
|
521
|
+
* VENDOR-API-INFIX
|
|
522
|
+
* INCLUDED-MODE-DECLARATION-GROUP-SET
|
|
523
|
+
* HW-ELEMENT
|
|
524
|
+
* FLEXRAY-FRAME
|
|
525
|
+
* TYPE-MAPPING
|
|
526
|
+
* DATA-TRANSFORMATION-SET
|
|
527
|
+
* FLEXRAY-COMMUNICATION-CONTROLLER
|
|
528
|
+
* FLEXRAY-COMMUNICATION-CONNECTOR
|
|
529
|
+
* FLEXRAY-PHYSICAL-CHANNEL
|
|
530
|
+
* FLEXRAY-CLUSTER
|
|
531
|
+
* BSW-OPERATION-INVOKED-EVENT
|
|
532
|
+
2. Improve the following AR Element
|
|
533
|
+
* SW-DATA-DEF-PROPS
|
|
534
|
+
* SW-RECORD-LAYOUT-GROUP
|
|
535
|
+
* BSW-MODULE-DESCRIPTION
|
|
536
|
+
* BSW-CALLED-ENTITY
|
|
537
|
+
* BSW-SCHEDULABLE-ENTITY
|
|
538
|
+
* SW-SERVICE-ARG
|
|
539
|
+
* RUNNABLE-ENTITY
|
|
540
|
+
* I-SIGNAL-GROUP
|
|
541
|
+
* END-TO-END-PROTECTION
|
|
542
|
+
* BSW-INTERNAL-TRIGGER-OCCURRED-EVENT
|
|
543
|
+
3. Fix the following AR Element
|
|
544
|
+
* PROVIDED-MODE-GROUPS
|
|
545
|
+
* MANAGED-MODE-GROUPS
|
|
546
|
+
4. Enable the Flake8
|
|
547
|
+
* Fix the Flake8 issues
|
|
548
|
+
5. Add the CompositionSwComponentType in the AUTOSAR root model.
|
|
549
|
+
* AbstractAUTOSAR::getCompositionSwComponentTypes
|
|
550
|
+
* AbstractAUTOSAR::getCompositionSwComponentType
|
|
551
|
+
* AbstractAUTOSAR::addCompositionSwComponentType
|
|
552
|
+
6. Add the duplicate UUID check
|
|
553
|
+
|
|
554
|
+
**Version 1.7.9**
|
|
555
|
+
|
|
556
|
+
1. To improve the following AR Element
|
|
557
|
+
* BSW-MODULE-DESCRIPTION
|
|
558
|
+
* BSW-INTERNAL-BEHAVIOR
|
|
559
|
+
* LIFE-CYCLE-INFO-SET
|
|
560
|
+
* PHYSICAL-DIMENSION
|
|
561
|
+
2. To support the following AR Element:
|
|
562
|
+
* ACTIVATION-POINTS
|
|
563
|
+
* CALL-POINTS
|
|
564
|
+
* LIFE-CYCLE-INFO
|
|
565
|
+
* COLLECTION
|
|
566
|
+
* KEYWORD-SET
|
|
567
|
+
* FIGURE
|
|
568
|
+
* CLIENT-SERVER-INTERFACE-MAPPING
|
|
569
|
+
* DTC-STATUS-CHANGE-NOTIFICATION-NEEDS
|
|
570
|
+
3. Add the test case for
|
|
571
|
+
* AUTOSAR_MOD_AISpecification_BaseTypes_Standard.arxml
|
|
572
|
+
4. Add the API to set the autosar release version and correct schema will be set.
|
|
573
|
+
* AUTOSAR::setARRelease()
|
|
574
|
+
5. Fix the conversion for float number in scientific notation.
|
|
575
|
+
|
|
576
|
+
**Version 1.8.0**
|
|
577
|
+
|
|
578
|
+
1. To support the following AR Element:
|
|
579
|
+
* DLT-USER-NEEDS
|
|
580
|
+
2. Improve the UUID check
|
|
581
|
+
3. Improve the find method of class AbstractAUTOSAR to support the validation of dest
|
|
582
|
+
4. Add the findXXX method of class AbstractAUTOSAR
|
|
583
|
+
* findAtomicSwComponentType
|
|
584
|
+
* findSystemSignal
|
|
585
|
+
* findSystemSignalGroup
|
|
586
|
+
* findPort
|
|
587
|
+
* findVariableDataPrototype
|
|
588
|
+
* findImplementationDataType
|
|
589
|
+
|
|
590
|
+
**Version 1.8.1**
|
|
591
|
+
|
|
592
|
+
1. To support the following AR Element:
|
|
593
|
+
* MODE-DECLARATION-MAPPING-SET
|
|
594
|
+
* MODE-INTERFACE-MAPPING
|
|
595
|
+
* ECUC-MODULE-DEF
|
|
596
|
+
* DOC-REVISION
|
|
597
|
+
* ECUC-PARAM-CONF-CONTAINER-DEF
|
|
598
|
+
* ECUC-BOOLEAN-PARAM-DEF
|
|
599
|
+
* ECUC-STRING-PARAM-DEF
|
|
600
|
+
* ECUC-INTEGER-PARAM-DEF
|
|
601
|
+
* ECUC-FLOAT-PARAM-DEF
|
|
602
|
+
* ECUC-ENUMERATION-PARAM-DEF
|
|
603
|
+
2. Same short name with different type can be added and located.
|
|
604
|
+
|
|
605
|
+
**Version 1.8.2**
|
|
606
|
+
|
|
607
|
+
1. Fix the AUTOSAR XML schema issue
|
|
608
|
+
|
|
609
|
+
**Version 1.8.3**
|
|
610
|
+
|
|
611
|
+
1. To support the SHORT-LABEL for VALUE
|
|
612
|
+
2. To Support the following AR Element:
|
|
613
|
+
* MAX-DELTA-COUNTER-INIT
|
|
614
|
+
* MAX-NO-NEW-OR-REPEATED-DATA
|
|
615
|
+
* USER-DEFINED-TRANSFORMATION-COM-SPEC-PROPS
|
|
616
|
+
* MASK
|
|
617
|
+
|
|
618
|
+
**Version 1.8.4**
|
|
619
|
+
|
|
620
|
+
1. To Support the following AR Element:
|
|
621
|
+
* BSW-SYNCHRONOUS-SERVER-CALL-POINT
|
|
622
|
+
* RETURN-TYPE
|
|
623
|
+
2. Add the armodel-uuid-checker cli.
|
|
624
|
+
3. Remove the space in the boolean type.
|
|
625
|
+
|
|
626
|
+
**Version 1.8.5**
|
|
627
|
+
|
|
628
|
+
1. Reorganize the SwConnector class.
|
|
629
|
+
2. Raise the error if the short name of rootSwCompositionPrototype.
|
|
630
|
+
3. To support the following AR Element:
|
|
631
|
+
* NvProvideComSpec
|
|
632
|
+
4. Fix the duplicate short name of ARPackage and Other ARElements.
|
|
633
|
+
Keywords: AUTOSAR ARXML
|
|
634
|
+
Platform: UNKNOWN
|
|
635
|
+
Classifier: Development Status :: 1 - Planning
|
|
636
|
+
Classifier: Environment :: Console
|
|
637
|
+
Classifier: Programming Language :: Python :: 3
|
|
638
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
639
|
+
Classifier: Operating System :: OS Independent
|
|
640
|
+
Requires-Python: >=3.5
|
|
641
|
+
Description-Content-Type: text/markdown
|
|
642
|
+
Provides-Extra: pytest
|