8 #ifndef DIAG_CLIENT_LIB_APPL_SRC_DCM_CONVERSATION_VD_CONVERSATION_H
9 #define DIAG_CLIENT_LIB_APPL_SRC_DCM_CONVERSATION_VD_CONVERSATION_H
14 #include <string_view>
28 namespace conversation {
85 void Startup() noexcept override;
98 std::unique_ptr<::
uds_transport::Connection> connection) noexcept override;
132 std::pair<::
uds_transport::UdsTransportProtocolMgr::IndicationResult,
139 core_type::
Span<std::uint8_t const> payloadInfo) noexcept override;
176 std::uint8_t preselection_value_length);
Class type to contains a value (of type ValueType), or an error (of type ErrorType)
Class to manage Diagnostic Client.
Interface for diag client conversation.
Class to search for available diagnostic server over a network.
std::vector< std::uint8_t > PreselectionValue
Type alias of pre-selection value in terms of vector.
VdConversation(const VdConversation &other) noexcept=delete
Deleted copy assignment and copy constructor.
std::map< std::uint16_t, VehicleAddrInfoResponseStruct > vehicle_info_collection_
Store the vehicle info collection received till now.
::uds_transport::ConversionHandler & GetConversationHandler() noexcept override
Function to get the conversation handler from conversation object.
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.
static std::pair< PreselectionMode, PreselectionValue > DeserializeVehicleInfoRequest(vehicle_info::VehicleInfoListRequestType &vehicle_info_request)
Function to deserialize the Vehicle Information request from user.
static std::pair< LogicalAddress, VehicleAddrInfoResponseStruct > DeserializeVehicleInfoResponse(::uds_transport::UdsMessagePtr message)
Function to deserialize the received Vehicle Identification Response/ Announcement.
~VdConversation() override
Destructs an instance of DmConversation.
VdConversation(std::string_view conversion_name, VDConversationType &conversion_identifier)
Constructs an instance of VdConversation.
VdConversation & operator=(VdConversation &&other) noexcept=delete
void Shutdown() noexcept override
Function to shutdown the DmConversation.
std::unique_ptr<::uds_transport::Connection > connection_ptr_
Store the underlying transport protocol connection object.
void RegisterConnection(std::unique_ptr<::uds_transport::Connection > connection) noexcept override
Function to register the conversation to underlying transport protocol handler.
VdConversation & operator=(const VdConversation &other) noexcept=delete
std::uint16_t LogicalAddress
Type alias of logical address.
std::unique_ptr<::uds_transport::ConversionHandler > vd_conversion_handler_
Store the vd conversation handler.
void Startup() noexcept override
Function to start the DmConversation.
bool VerifyVehicleInfoRequest(PreselectionMode preselection_mode, std::uint8_t preselection_value_length)
Function to verify the received vehicle info request.
vehicle_info::VehicleInfoMessageResponseUniquePtr GetDiagnosticServerList()
Function to get the list of available diagnostic server.
void HandleMessage(::uds_transport::UdsMessagePtr message) noexcept override
Function to Hands over a valid received Uds message.
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.
std::string conversation_name_
Store the conversation name.
std::uint8_t PreselectionMode
Type alias of pre-selection mode.
std::mutex vehicle_info_container_mutex_
Mutex to lock the vehicle info collection container.
std::string broadcast_address_
Store the broadcast Ip address of the conversation.
VdConversation(VdConversation &&other) noexcept=delete
Deleted move assignment and move constructor.
Span(T(&)[N]) -> Span< T, N >
VehicleAddrInfoRequest VehicleInfoListRequestType
Type alias of request storage type used while sending vehicle identification request.
std::unique_ptr< VehicleInfoMessage > VehicleInfoMessageResponseUniquePtr
The unique_ptr for Vehicle Identification Response Message.
std::string_view ProtocolKind
std::unique_ptr< UdsMessage > UdsMessagePtr
Structure containing VD conversation type.
Structure containing available Vehicle Address Information.