Expand description
§Crate autosar-data-abstraction
This crate provides an abstraction layer for the AUTOSAR data model.
It is built on top of the crate autosar-data and provides complex interactions with
the model on top of the elementary operations of autosar-data.
Since the AUTOSAR data model is very complex and has many different types of elements, this crate does not aim to provide full coverage of all classes. Instead the focus is on the most common classes and their interactions.
Any other data can still be accessed through the basic operations of autosar-data, because the
calls to autosar-data and autosar-data-abstraction can be mixed freely.
§Example
let model = AutosarModel::new();
let _file = model.create_file("file.arxml", AutosarVersion::Autosar_00049).unwrap();
let package_1 = ArPackage::get_or_create(&model, "/System").unwrap();
let system = package_1.create_system("System", SystemCategory::SystemExtract).unwrap();
let package_2 = ArPackage::get_or_create(&model, "/Clusters").unwrap();
// create an Ethernet cluster and a physical channel for VLAN 33
let eth_cluster = system.create_ethernet_cluster("EthCluster", &package_2).unwrap();
let vlan_info = EthernetVlanInfo {
vlan_id: 33,
vlan_name: "VLAN_33".to_string(),
};
let eth_channel = eth_cluster
.create_physical_channel("EthChannel", Some(vlan_info))
.unwrap();
let vlan_info_2 = eth_channel.vlan_info().unwrap();
// create an ECU instance and connect it to the Ethernet channel
let package_3 = ArPackage::get_or_create(&model, "/Ecus").unwrap();
let ecu_instance_a = system.create_ecu_instance("Ecu_A", &package_3).unwrap();
let ethctrl = ecu_instance_a
.create_ethernet_communication_controller(
"EthernetController",
Some("ab:cd:ef:01:02:03".to_string())
)
.unwrap();
let channels_iter = ethctrl.connected_channels();
ethctrl
.connect_physical_channel("Ecu_A_connector", ð_channel)
.unwrap();
let channels_iter = ethctrl.connected_channels();
// ...Modules§
- communication
- Communication between ECUs in a system
- datatype
- Autosar Data Types
- ecu_
configuration - Module for ECU configuration
- software_
component - Software component types and compositions
Structs§
- ArPackage
- An
ArPackageis an Autosar package, which can contain other packages or elements - EcuInstance
- The
EcuInstancerepresents one ECU in aSystem - EcuInstance
Iterator - An iterator over all
EcuInstancesin a System - SwcTo
EcuMapping - A
SwcToEcuMappingcontains a mapping between aSwComponentPrototypeand anEcuInstance - System
- The System is the top level of a system template
- System
Mapping - A
SystemMappingcontains mappings in theSystem
Enums§
- Autosar
Abstraction Error - The error type
AutosarAbstractionErrorwraps all errors from the crate - Byte
Order - The
ByteOrderis used to define the order of bytes in a multi-byte value - System
Category - The category of a System
Traits§
- Abstraction
Element - The
AbstractionElementtrait is implemented by all classes that represent elements in the AUTOSAR model.