-
Notifications
You must be signed in to change notification settings - Fork 7
docs: add design for abstraction layer API to be used by user code #46
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,297 @@ | ||
| # C++ Diagnostic API Layer - Application Usage | ||
|
|
||
| This API layer provides application-facing abstractions for UDS and SOVD diagnostics. | ||
| Applications implement service/resource/operation interfaces and register them via builder classes. | ||
| The resulting `DiagnosticServicesCollection` controls lifetime and hence keeps the implemented application | ||
| functionality connected to the underlying binding. | ||
|
|
||
| ## Design Goals | ||
|
|
||
| - This API Layer acts as abstraction layer between user code and a concrete binding implementation which communicates with the SOVD Server. | ||
| - guarantees clear independence from underlying implementation details and thus, facilitates easy unit-testability of user code | ||
| - concrete implementation of the underlying binding can get easily exchanged as well as adjusted if required without having to adjust all the user code | ||
|
|
||
| <br> | ||
|
|
||
| - This API layer should have certain pieces of information available to be able to, if required, forward such data to the SOVD Server for further processing there. | ||
| - as a result, user code must provide certain pieces of information as depicted by this design upon registration of SOVD Operations and/or Data Resources | ||
|
|
||
| <br> | ||
|
|
||
| - user code shall have minimal hassle w.r.t. to creating as well as having to populate native SOVD reply payloads | ||
| - ideally, the API layer shall create native SOVD data structures and populate these from the user code's data structures, e.g. to JSON | ||
|
|
||
| <br> | ||
|
|
||
| - user code which is still using legacy UDS APIs shall seamlessly continue to work as before | ||
| - such user code can then get migrated step-wise to new SOVD APIs which eases system migration to the new OpenSOVD stack | ||
|
|
||
| <br> | ||
|
|
||
| - newly written applications shall not use the legacy UDS APIs but the native SOVD ones instead | ||
|
|
||
| ## Diagrams | ||
|
|
||
|  | ||
| A [PlantUML version](./cpp_abstraction_layer_api_for_user_applications.puml) is also available. | ||
|
|
||
| ## Coding Examples | ||
|
|
||
| ### UDS: ReadDataByIdentifier | ||
|
|
||
| ```cpp | ||
| #include "mw/diag/uds/uds.hpp" // illustrative include | ||
|
|
||
| #include <memory_resource> | ||
|
|
||
| class VinReader final : public mw::diag::uds::ReadDataByIdentifier | ||
| { | ||
| public: | ||
| explicit VinReader(std::pmr::memory_resource& memory_resource) : memory_resource_{memory_resource} {} | ||
|
|
||
| mw::diag::Result<ByteVector> Read() override | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this in align with other SCORE projects to roll out your own Result instead of std::expected? |
||
| { | ||
| ByteVector bytes{&memory_resource_}; | ||
| bytes.insert(bytes.end(), {0x56, 0x49, 0x4E}); // "VIN" bytes, example only | ||
| return {std::move(bytes)}; | ||
| } | ||
|
|
||
| private: | ||
| std::pmr::memory_resource& memory_resource_; | ||
| }; | ||
|
|
||
| mw::diag::Result<std::unique_ptr<mw::diag::DiagnosticServicesCollection>> | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. All the unique_ptr instances should carry an allocator with them that makes them pmr aware. |
||
| RegisterVinReader(std::pmr::memory_resource& memory_resource) | ||
| { | ||
| return mw::diag::uds::DiagnosticServicesCollectionBuilder{memory_resource} | ||
| .With<VinReader>("0xF190") // note that `With()` will implicitly forward the builder's memory_resource to `VinReader` | ||
| .Build(); | ||
| } | ||
| ``` | ||
|
|
||
| ### UDS: WriteDataByIdentifier | ||
|
|
||
| ```cpp | ||
| #include "mw/diag/uds/uds.hpp" // illustrative include | ||
|
|
||
| #include <memory_resource> | ||
|
|
||
| class ConfigWriter final : public mw::diag::uds::WriteDataByIdentifier | ||
| { | ||
| public: | ||
| explicit ConfigWriter(std::pmr::memory_resource& memory_resource) : memory_resource_{memory_resource} {} | ||
|
|
||
| mw::diag::Result<void> Write(mw::diag::ByteSequence data) override | ||
| { | ||
| // parse and persist `data` here | ||
|
|
||
| return {}; | ||
| } | ||
|
|
||
| private: | ||
| std::pmr::memory_resource& memory_resource_; | ||
| }; | ||
|
|
||
| mw::diag::Result<std::unique_ptr<mw::diag::DiagnosticServicesCollection>> | ||
| RegisterConfigWriter(std::pmr::memory_resource& memory_resource) | ||
| { | ||
| return mw::diag::uds::DiagnosticServicesCollectionBuilder{memory_resource} | ||
| .With<ConfigWriter>("0xF191") // note that `With()` will implicitly forward the builder's memory_resource to `ConfigWriter` | ||
| .Build(); | ||
| } | ||
| ``` | ||
|
|
||
| ### UDS: RoutineControl | ||
|
|
||
| ```cpp | ||
| #include "mw/diag/uds/uds.hpp" // illustrative include | ||
|
|
||
| #include <memory_resource> | ||
|
|
||
| class MyRoutine final : public mw::diag::uds::RoutineControl | ||
| { | ||
| public: | ||
| explicit MyRoutine(std::pmr::memory_resource& memory_resource) : memory_resource_{memory_resource} {} | ||
|
|
||
| mw::diag::Result<ByteVector> Start(ByteSequence request) override | ||
| { | ||
| // implement your logic for start routine here | ||
|
|
||
| ByteVector bytes{&memory_resource_}; | ||
| bytes.push_back(0x00); | ||
| return {std::move(bytes)}; | ||
| } | ||
|
|
||
| mw::diag::Result<ByteVector> Stop(ByteSequence request) override | ||
| { | ||
| // implement your logic for stop routine here | ||
|
|
||
| ByteVector bytes{&memory_resource_}; | ||
| bytes.push_back(0x00); | ||
| return {std::move(bytes)}; | ||
| } | ||
|
|
||
| mw::diag::Result<ByteVector> RequestResults(ByteSequence request) override | ||
| { | ||
| // implement your logic for request routine results here | ||
|
|
||
| ByteVector bytes{memory_resource_}; | ||
| bytes.insert(bytes.end(), {0x12, 0x34}); | ||
| return {std::move(bytes)}; | ||
| } | ||
|
|
||
| private: | ||
| std::pmr::memory_resource& memory_resource_; | ||
| }; | ||
|
|
||
| mw::diag::Result<std::unique_ptr<mw::diag::DiagnosticServicesCollection>> | ||
| RegisterMyRoutine(std::pmr::memory_resource& memory_resource) | ||
| { | ||
| return mw::diag::uds::DiagnosticServicesCollectionBuilder{memory_resource} | ||
| .With<MyRoutine>("0xFF00") // note that `With()` will implicitly forward the builder's memory_resource to `MyRoutine` | ||
| .Build(); | ||
| } | ||
| ``` | ||
|
|
||
| ### SOVD: ReadOnlyDataResource | ||
|
|
||
| ```cpp | ||
| #include "mw/diag/sovd/sovd.hpp" // illustrative include | ||
|
|
||
| #include <memory_resource> | ||
|
|
||
| class VehicleInfoResource final : public mw::diag::sovd::ReadOnlyDataResource | ||
| { | ||
| public: | ||
| explicit VehicleInfoResource(std::pmr::memory_resource& memory_resource) : memory_resource_{memory_resource} {} | ||
|
|
||
| mw::diag::sovd::Result<mw::diag::sovd::JsonDataReply> Get() override | ||
| { | ||
| mw::diag::sovd::JsonDataReply reply; | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This one would need the memory_resource as well, wouldn't it? |
||
| // reply.set({{"vin", "FOO BAR"}}); // illustrative JSON | ||
| return {std::move(reply)}; | ||
| } | ||
|
|
||
| private: | ||
| std::pmr::memory_resource& memory_resource_; | ||
| }; | ||
|
|
||
| mw::diag::Result<std::unique_ptr<mw::diag::DiagnosticServicesCollection>> | ||
| RegisterVehicleInfoResourceFor(mw::diag::sovd::DiagnosticEntity& entity, | ||
| mw::diag::sovd::JsonSchemaView json_schema, | ||
| std::pmr::memory_resource& memory_resource) | ||
| { | ||
| return mw::diag::sovd::DiagnosticServicesCollectionBuilder{entity, memory_resource} | ||
| .With<VehicleInfoResource>("common/VehicleInfoResource", | ||
| schema, | ||
| mw::diag::sovd::DataCategoryIdentifiers::kSysInfo, | ||
| std::nullopt) // note that `With()` will implicitly forward the builder's memory_resource to `VehicleInfoResource` | ||
| .Build(); | ||
| } | ||
| ``` | ||
|
|
||
| ### SOVD: WritableDataResource | ||
|
|
||
| ```cpp | ||
| #include "mw/diag/sovd/sovd.hpp" // illustrative include | ||
|
|
||
| #include <memory_resource> | ||
|
|
||
| class ConfigResource final : public mw::diag::sovd::WritableDataResource | ||
| { | ||
| public: | ||
| explicit ConfigResource(std::pmr::memory_resource& memory_resource) : memory_resource_{memory_resource} {} | ||
|
|
||
| mw::diag::sovd::Result<void> Put(mw::diag::sovd::DiagnosticRequest request) override | ||
| { | ||
| // parse `request.data` and persist it here as required by your needs | ||
|
|
||
| return {}; | ||
| } | ||
|
|
||
| private: | ||
| std::pmr::memory_resource& memory_resource_; | ||
| }; | ||
|
|
||
| mw::diag::Result<std::unique_ptr<mw::diag::DiagnosticServicesCollection>> | ||
| RegisterConfigResourceFor(mw::diag::sovd::DiagnosticEntity& entity, std::pmr::memory_resource& memory_resource) | ||
| { | ||
| return mw::diag::sovd::DiagnosticServicesCollectionBuilder{entity, memory_resource} | ||
| .With<ConfigResource>("MyApplication/MyComponent/Configure", | ||
| mw::diag::sovd::DataCategoryIdentifiers::kParameter, | ||
| std::nullopt) // note that `With()` will implicitly forward the builder's memory_resource to `ConfigResource` | ||
| .Build(); | ||
| } | ||
| ``` | ||
|
|
||
| ### SOVD: Operations | ||
|
|
||
| ```cpp | ||
| #include "mw/diag/sovd/sovd.hpp" // illustrative include | ||
|
|
||
| #include <memory_resource> | ||
|
|
||
| // synchronous operation | ||
| class SelfTestOperation final : public mw::diag::sovd::Operation | ||
| { | ||
| public: | ||
| explicit SelfTestOperation(std::pmr::memory_resource& memory_resource) : memory_resource_{memory_resource} {} | ||
|
|
||
| mw::diag::sovd::Result<mw::diag::sovd::OperationInfoReply> Info(mw::diag::sovd::DiagnosticRequest) override { return {}; } | ||
| mw::diag::sovd::Result<mw::diag::sovd::OperationStatusReply> Status(mw::diag::sovd::DiagnosticRequest) override { return {}; } | ||
|
|
||
| mw::diag::sovd::Result<mw::diag::sovd::ExecuteOperationReply> Execute(mw::diag::sovd::DiagnosticRequest) override | ||
| { | ||
| // perform operation in place here (=> synchronously) | ||
|
|
||
| return {}; | ||
| } | ||
|
|
||
| mw::diag::sovd::Result<mw::diag::sovd::ExecuteOperationReply> Resume(mw::diag::sovd::DiagnosticRequest) override { return {}; } | ||
| mw::diag::sovd::Result<mw::diag::sovd::ExecuteOperationReply> Reset(mw::diag::sovd::DiagnosticRequest) override { return {}; } | ||
| mw::diag::sovd::Result<void> Stop(mw::diag::sovd::DiagnosticRequest) override { return {}; } | ||
|
|
||
| private: | ||
| std::pmr::memory_resource& memory_resource_; | ||
| }; | ||
|
|
||
| // asynchronous operation | ||
| class LongRunningOperation final : public mw::diag::sovd::Operation | ||
| { | ||
| public: | ||
| explicit LongRunningOperation(std::pmr::memory_resource& memory_resource) : memory_resource_(memory_resource) {} | ||
|
|
||
| mw::diag::sovd::Result<mw::diag::sovd::OperationInfoReply> Info(mw::diag::sovd::DiagnosticRequest) override { return {}; } | ||
| mw::diag::sovd::Result<mw::diag::sovd::OperationStatusReply> Status(mw::diag::sovd::DiagnosticRequest) override | ||
| { | ||
| // return current progress/status | ||
| return {}; | ||
| } | ||
|
|
||
| mw::diag::sovd::Result<mw::diag::sovd::ExecuteOperationReply> Execute(mw::diag::sovd::DiagnosticRequest) override | ||
| { | ||
| // trigger async work here and return initial response | ||
| return {}; | ||
| } | ||
|
|
||
| mw::diag::sovd::Result<mw::diag::sovd::ExecuteOperationReply> Resume(mw::diag::sovd::DiagnosticRequest) override { return {}; } | ||
| mw::diag::sovd::Result<mw::diag::sovd::ExecuteOperationReply> Reset(mw::diag::sovd::DiagnosticRequest) override { return {}; } | ||
| mw::diag::sovd::Result<void> Stop(mw::diag::sovd::DiagnosticRequest) override { return {}; } | ||
|
|
||
| private: | ||
| std::pmr::memory_resource& memory_resource_; | ||
| }; | ||
|
|
||
| mw::diag::Result<std::unique_ptr<mw::diag::DiagnosticServicesCollection>> | ||
| RegisterOperationsFor(mw::diag::sovd::DiagnosticEntity& entity, std::pmr::memory_resource& memory_resource) | ||
| { | ||
| return mw::diag::sovd::DiagnosticServicesCollectionBuilder{entity, memory_resource} | ||
| .With<SelfTestOperation>("MyApplication/MyComponent/PerformSelfTest", | ||
| mw::diag::sovd::OperationInvocationPolicy::kPerformsSynchronousInvocation, | ||
| std::nullopt) // note that `With()` will implicitly forward the builder's memory_resource to `SelfTestOperation` | ||
| .With<LongRunningOperation>("MyApplication/MyComponent/PerformLongRunningTask", | ||
| mw::diag::sovd::OperationInvocationPolicy::kRequiresIndividualAsyncInvocations, | ||
| std::nullopt) // note that `With()` will implicitly forward the builder's memory_resource to `LongRunningOperation` | ||
| .Build(); | ||
| } | ||
| ``` | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"e.g. JSON" sounds as if there were other options. Is that the desired message?