Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor the compu methods #306

Merged
merged 7 commits into from
May 23, 2024
Merged

Conversation

andlaus
Copy link
Collaborator

@andlaus andlaus commented May 22, 2024

This PR is quite a whopper (sorry), but all of the changes are closely related to the compu methods and I could not think of a good way of splitting this into smaller chunks.

With this PR, compu methods work as they are defined by the XSD: All parameters of all compu methods are specified using attributes of the basic CompuMethod class (i.e., mainly COMPU-INTERNAL-TO-PHYS and COMPU-PHYS-TO-INTERNAL) and the specific behavior of the individual categories are implemented in subclasses. "Specific behavior" encompasses extracting the data relevant for the concrete compu method from their generic form via __post_init__() methods in the subclasses and, based on this, the actual computations to translate internal values to/from physical ones. This approach has the advantages that it is quite a bit cleaner than the previous code (albeit still quite messy IMO), that all compu methods can be handled using the same output writing code and -- most importantly -- that the code now reflects the specification reasonably closely now.

Andreas Lauser <andreas.lauser@mercedes-benz.com>, on behalf of MBition GmbH.
Provider Information

now, they work as they are defined by the XSD: all parameters are set
by the fields specified by the basic `CompuMethod` class, and the
specific behavior of the individual categories are implemented by
subclasses.  This encompasses extracting the relevant data from their
generic form via `__post_init__()` methods in the subclasses and doing
the actual computations to translate internal values to/from physical
values. This approach has the advantages that it is quite a bit
cleaner than the previous code (albeit still quite messy IMO), that
all compu methods can be handled using the same output writing code
and -- most importantly -- that the code now reflects the
specification reasonably closely now.

Signed-off-by: Andreas Lauser <andreas.lauser@mbition.io>
Signed-off-by: Katja Köhler <katja.koehler@mbition.io>
the XSD is very redundant and messy here: it defines multiple
identical groups and does not use inheritance. That said, that does not prevent it to do it better...

thanks to [at]kayoub5 for the nudge!

Signed-off-by: Andreas Lauser <andreas.lauser@mbition.io>
Signed-off-by: Katja Köhler <katja.koehler@mbition.io>
Signed-off-by: Andreas Lauser <andreas.lauser@mbition.io>
Signed-off-by: Katja Köhler <katja.koehler@mbition.io>
…ime data

feeding incorrect data to be en-/decoded should only trigger
`EncodeError` or `DecodeError`. (`OdxError` means "incorrect ODX
model detected")

Signed-off-by: Andreas Lauser <andreas.lauser@mbition.io>
Signed-off-by: Katja Köhler <katja.koehler@mbition.io>
these are reservered for "magic" functions and according to PEP 8
should never be newly created by user code.

thanks to [at]kayoub5 for the catch!

Signed-off-by: Andreas Lauser <andreas.lauser@mbition.io>
Signed-off-by: Katja Köhler <katja.koehler@mbition.io>
Signed-off-by: Andreas Lauser <andreas.lauser@mbition.io>
Signed-off-by: Katja Köhler <katja.koehler@mbition.io>
this makes the code conform to section 7.3.6.6.4 of the spec. Note
that DOPs using non-invertible SCALE-LINEAR compu methods currently
cannot be encoded.

Signed-off-by: Andreas Lauser <andreas.lauser@mbition.io>
Signed-off-by: Katja Köhler <katja.koehler@mbition.io>
@andlaus andlaus merged commit b847bc8 into mercedes-benz:main May 23, 2024
7 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants