Diag-Client-Lib
|
Class to search for available diagnostic server over a network. More...
#include <vd_conversation.h>
Public Member Functions | |
VdConversation (std::string_view conversion_name, VDConversationType &conversion_identifier) | |
Constructs an instance of VdConversation. More... | |
VdConversation (const VdConversation &other) noexcept=delete | |
Deleted copy assignment and copy constructor. More... | |
VdConversation & | operator= (const VdConversation &other) noexcept=delete |
VdConversation (VdConversation &&other) noexcept=delete | |
Deleted move assignment and move constructor. More... | |
VdConversation & | operator= (VdConversation &&other) noexcept=delete |
~VdConversation () override | |
Destructs an instance of DmConversation. More... | |
void | Startup () noexcept override |
Function to start the DmConversation. More... | |
void | Shutdown () noexcept override |
Function to shutdown the DmConversation. More... | |
void | RegisterConnection (std::unique_ptr<::uds_transport::Connection > connection) noexcept override |
Function to register the conversation to underlying transport protocol handler. More... | |
::uds_transport::ConversionHandler & | GetConversationHandler () noexcept override |
Function to get the conversation handler from conversation object. More... | |
std::pair<::uds_transport::UdsTransportProtocolMgr::IndicationResult, ::uds_transport::UdsMessagePtr > | IndicateMessage (::uds_transport::UdsMessage::Address source_addr, ::uds_transport::UdsMessage::Address target_addr, ::uds_transport::UdsMessage::TargetAddressType type, ::uds_transport::ChannelID channel_id, std::size_t size, ::uds_transport::Priority priority, ::uds_transport::ProtocolKind protocol_kind, core_type::Span< std::uint8_t const > payloadInfo) noexcept override |
Function to indicate a start of reception of message. More... | |
void | HandleMessage (::uds_transport::UdsMessagePtr message) noexcept override |
Function to Hands over a valid received Uds message. More... | |
core_type::Result< diag::client::vehicle_info::VehicleInfoMessageResponseUniquePtr, DiagClient::VehicleInfoResponseError > | SendVehicleIdentificationRequest (vehicle_info::VehicleInfoListRequestType vehicle_info_request) noexcept override |
Function to send vehicle identification request and get the Diagnostic Server list. More... | |
vehicle_info::VehicleInfoMessageResponseUniquePtr | GetDiagnosticServerList () |
Function to get the list of available diagnostic server. More... | |
![]() | |
Conversation () noexcept=default | |
Constructs an instance of Conversation. More... | |
Conversation (const Conversation &other) noexcept=delete | |
Deleted copy assignment and copy constructor. More... | |
Conversation & | operator= (const Conversation &other) noexcept=delete |
Conversation (Conversation &&other) noexcept=delete | |
Deleted move assignment and move constructor. More... | |
Conversation & | operator= (Conversation &&other) noexcept=delete |
virtual | ~Conversation () noexcept=default |
Destructs an instance of Conversation. More... | |
virtual ConnectResult | ConnectToDiagServer (std::uint16_t, IpAddress) noexcept |
Function to connect to Diagnostic Server. More... | |
virtual DisconnectResult | DisconnectFromDiagServer () noexcept |
Function to disconnect from Diagnostic Server. More... | |
virtual Result< uds_message::UdsResponseMessagePtr, DiagError > | SendDiagnosticRequest (uds_message::UdsRequestMessageConstPtr) noexcept |
Function to send Diagnostic Request and get Diagnostic Response. More... | |
auto | GetActivityStatus () const noexcept -> ActivityStatusType |
Get the current activity status of this conversation. More... | |
Private Types | |
using | PreselectionMode = std::uint8_t |
Type alias of pre-selection mode. More... | |
using | PreselectionValue = std::vector< std::uint8_t > |
Type alias of pre-selection value in terms of vector. More... | |
using | VehicleAddrInfoResponseStruct = diag::client::vehicle_info::VehicleAddrInfoResponse |
Type alias of vehicle address info response. More... | |
using | LogicalAddress = std::uint16_t |
Type alias of logical address. More... | |
Private Member Functions | |
bool | VerifyVehicleInfoRequest (PreselectionMode preselection_mode, std::uint8_t preselection_value_length) |
Function to verify the received vehicle info request. More... | |
Static Private Member Functions | |
static std::pair< LogicalAddress, VehicleAddrInfoResponseStruct > | DeserializeVehicleInfoResponse (::uds_transport::UdsMessagePtr message) |
Function to deserialize the received Vehicle Identification Response/ Announcement. More... | |
static std::pair< PreselectionMode, PreselectionValue > | DeserializeVehicleInfoRequest (vehicle_info::VehicleInfoListRequestType &vehicle_info_request) |
Function to deserialize the Vehicle Information request from user. More... | |
Private Attributes | |
std::unique_ptr<::uds_transport::ConversionHandler > | vd_conversion_handler_ |
Store the vd conversation handler. More... | |
std::string | conversation_name_ |
Store the conversation name. More... | |
std::string | broadcast_address_ |
Store the broadcast Ip address of the conversation. More... | |
std::unique_ptr<::uds_transport::Connection > | connection_ptr_ |
Store the underlying transport protocol connection object. More... | |
std::map< std::uint16_t, VehicleAddrInfoResponseStruct > | vehicle_info_collection_ |
Store the vehicle info collection received till now. More... | |
std::mutex | vehicle_info_container_mutex_ |
Mutex to lock the vehicle info collection container. More... | |
Additional Inherited Members | |
![]() | |
enum class | ActivityStatusType : uint8_t { kActive = 0x00 , kInactive = 0x01 } |
Definitions of current activity status. More... | |
using | IpAddress = DiagClientConversation::IpAddress |
Type alias for Ip address. More... | |
using | ConnectResult = DiagClientConversation::ConnectResult |
Type alias for Connection results. More... | |
using | DisconnectResult = DiagClientConversation::DisconnectResult |
Type alias for Disconnection results. More... | |
using | DiagError = DiagClientConversation::DiagError |
Type alias for Diagnostic results. More... | |
![]() | |
ActivityStatusType | activity_status_ {ActivityStatusType::kInactive} |
Store the conversation activity status. More... | |
Class to search for available diagnostic server over a network.
Definition at line 33 of file vd_conversation.h.
|
private |
Type alias of logical address.
Definition at line 53 of file vd_conversation.h.
|
private |
Type alias of pre-selection mode.
Definition at line 38 of file vd_conversation.h.
|
private |
Type alias of pre-selection value in terms of vector.
Definition at line 43 of file vd_conversation.h.
|
private |
Type alias of vehicle address info response.
Definition at line 48 of file vd_conversation.h.
diag::client::conversation::VdConversation::VdConversation | ( | std::string_view | conversion_name, |
VDConversationType & | conversion_identifier | ||
) |
Constructs an instance of VdConversation.
[in] | conversion_name | The name of conversation |
[in] | conversion_identifier | The identifier consisting of conversation settings |
Definition at line 196 of file vd_conversation.cpp.
|
deletenoexcept |
Deleted copy assignment and copy constructor.
|
deletenoexcept |
Deleted move assignment and move constructor.
|
overridedefault |
Destructs an instance of DmConversation.
|
staticprivate |
Function to deserialize the Vehicle Information request from user.
[in] | vehicle_info_request | The vehicle info request |
Definition at line 378 of file vd_conversation.cpp.
References diag::client::vehicle_info::VehicleAddrInfoRequest::preselection_mode, diag::client::vehicle_info::VehicleAddrInfoRequest::preselection_value, diag::client::conversation::SerializeEIDGIDFromString(), and diag::client::conversation::SerializeVINFromString().
|
staticprivate |
Function to deserialize the received Vehicle Identification Response/ Announcement.
[in] | message | The message to deserialize |
Definition at line 344 of file vd_conversation.cpp.
References diag::client::conversation::ConvertToAsciiString(), and diag::client::conversation::ConvertToHexString().
|
overridevirtualnoexcept |
Function to get the conversation handler from conversation object.
Implements diag::client::conversation::Conversation.
Definition at line 373 of file vd_conversation.cpp.
References vd_conversion_handler_.
vehicle_info::VehicleInfoMessageResponseUniquePtr diag::client::conversation::VdConversation::GetDiagnosticServerList | ( | ) |
Function to get the list of available diagnostic server.
Definition at line 288 of file vd_conversation.cpp.
|
overridevirtualnoexcept |
Function to Hands over a valid received Uds message.
[in] | message | The The Uds message ptr (unique_ptr semantics) with the request. Ownership of the UdsMessage is given back to the conversation here |
Implements diag::client::conversation::Conversation.
Definition at line 312 of file vd_conversation.cpp.
Referenced by diag::client::conversation::VdConversationHandler::HandleMessage().
|
overridevirtualnoexcept |
Function to indicate a start of reception of message.
This is called to indicate the reception of new message by underlying transport protocol handler
[in] | source_addr | The UDS source address of message |
[in] | target_addr | The UDS target address of message |
[in] | type | The indication whether its is phys/func request |
[in] | channel_id | The transport protocol channel on which message start happened |
[in] | size | The size in bytes of the UdsMessage starting from SID |
[in] | priority | The priority of the given message, used for prioritization of conversations |
[in] | protocol_kind | The identifier of protocol kind associated to message |
[in] | payload_info | The View onto the first received payload bytes, if any. This view shall be used only within this function call. It is recommended that the TP provides at least the first two bytes of the request message, so the DM can identify a functional TesterPresent |
Implements diag::client::conversation::Conversation.
Definition at line 294 of file vd_conversation.cpp.
References uds_transport::UdsTransportProtocolMgr::kIndicationNOk, and uds_transport::UdsTransportProtocolMgr::kIndicationOk.
Referenced by diag::client::conversation::VdConversationHandler::IndicateMessage().
|
deletenoexcept |
|
deletenoexcept |
|
overridevirtualnoexcept |
Function to register the conversation to underlying transport protocol handler.
[in] | connection | The conversation connection object |
Implements diag::client::conversation::Conversation.
Definition at line 238 of file vd_conversation.cpp.
|
overridevirtualnoexcept |
Function to send vehicle identification request and get the Diagnostic Server list.
[in] | vehicle_info_request | Vehicle information sent along with request |
Reimplemented from diag::client::conversation::Conversation.
Definition at line 245 of file vd_conversation.cpp.
References FILE_NAME, diag::client::logger::DiagClientLogger::GetDiagClientLogger(), diag::client::DiagClient::kInvalidParameters, diag::client::DiagClient::kNoResponseReceived, diag::client::DiagClient::kTransmitFailed, and uds_transport::UdsTransportProtocolMgr::kTransmitFailed.
|
overridevirtualnoexcept |
Function to shutdown the DmConversation.
Implements diag::client::conversation::Conversation.
Definition at line 223 of file vd_conversation.cpp.
References diag::client::conversation::Conversation::activity_status_, connection_ptr_, conversation_name_, FILE_NAME, diag::client::conversation::Conversation::GetActivityStatus(), diag::client::logger::DiagClientLogger::GetDiagClientLogger(), diag::client::conversation::Conversation::kActive, and diag::client::conversation::Conversation::kInactive.
|
overridevirtualnoexcept |
Function to start the DmConversation.
Implements diag::client::conversation::Conversation.
Definition at line 208 of file vd_conversation.cpp.
References diag::client::conversation::Conversation::activity_status_, connection_ptr_, conversation_name_, FILE_NAME, diag::client::logger::DiagClientLogger::GetDiagClientLogger(), and diag::client::conversation::Conversation::kActive.
|
private |
Function to verify the received vehicle info request.
[in] | preselection_mode | The preselection mode |
[in] | preselection_value_length | The length of preselection value |
Definition at line 322 of file vd_conversation.cpp.
|
private |
Store the broadcast Ip address of the conversation.
Definition at line 209 of file vd_conversation.h.
|
private |
Store the underlying transport protocol connection object.
Definition at line 214 of file vd_conversation.h.
Referenced by Shutdown(), and Startup().
|
private |
Store the conversation name.
Definition at line 204 of file vd_conversation.h.
Referenced by Shutdown(), and Startup().
|
private |
Store the vd conversation handler.
Definition at line 199 of file vd_conversation.h.
Referenced by GetConversationHandler().
|
private |
Store the vehicle info collection received till now.
Definition at line 219 of file vd_conversation.h.
|
private |
Mutex to lock the vehicle info collection container.
Definition at line 224 of file vd_conversation.h.