8 #ifndef DIAGNOSTIC_CLIENT_LIB_APPL_SRC_DCM_CONVERSATION_DM_CONVERSATION_H
9 #define DIAGNOSTIC_CLIENT_LIB_APPL_SRC_DCM_CONVERSATION_DM_CONVERSATION_H
11 #include <string_view>
23 namespace conversation {
69 void Startup() noexcept override;
82 std::unique_ptr<::
uds_transport::Connection> connection) noexcept override;
101 IpAddress host_ip_addr) noexcept override;
135 std::pair<::
uds_transport::UdsTransportProtocolMgr::IndicationResult,
142 core_type::
Span<std::uint8_t const> payload_info) noexcept override;
169 kDefaultSession = 0x01,
170 kProgrammingSession = 0x02,
171 kExtendedSession = 0x03,
172 kSystemSafetySession = 0x04
Class type to contains a value (of type ValueType), or an error (of type ErrorType)
Interface for diag client conversation.
DiagClientConversation::IpAddress IpAddress
Type alias for Ip address.
DiagError
Definitions of Diagnostics Request Response results.
DisconnectResult
Definitions of Disconnection results.
ConnectResult
Definitions of Connection results.
Class to establish connection with Diagnostic Server.
void Startup() noexcept override
Function to start the DmConversation.
std::uint16_t p2_client_max_
Store the maximum p2 client time.
~DmConversation() override
Destructs an instance of DmConversation.
DmConversation & operator=(DmConversation &&other) noexcept=delete
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 > payload_info) noexcept override
Function to indicate a start of reception of message.
DisconnectResult DisconnectFromDiagServer() noexcept override
Function to disconnect from Diagnostic Server.
DmConversation(const DmConversation &other) noexcept=delete
Deleted copy assignment and copy constructor.
std::unique_ptr<::uds_transport::ConversionHandler > dm_conversion_handler_
Store the dm conversation handler.
DmConversation(std::string_view conversion_name, DMConversationType &conversion_identifier)
Constructs an instance of DmConversation.
std::uint32_t rx_buffer_size_
Store the size of reception buffer size setting.
void HandleMessage(::uds_transport::UdsMessagePtr message) noexcept override
Function to Hands over a valid received Uds message.
void RegisterConnection(std::unique_ptr<::uds_transport::Connection > connection) noexcept override
Function to register the conversation to underlying transport protocol handler.
ConnectResult ConnectToDiagServer(std::uint16_t target_address, IpAddress host_ip_addr) noexcept override
Function to connect to Diagnostic Server.
std::uint16_t p2_star_client_max_
Store the maximum p2 star client time.
SecurityLevelType
Definitions of active security level.
DmConversation(DmConversation &&other) noexcept=delete
Deleted move assignment and move constructor.
::uds_transport::ConversionHandler & GetConversationHandler() noexcept override
Function to get the conversation handler from conversation object.
Result< uds_message::UdsResponseMessagePtr, DiagError > SendDiagnosticRequest(uds_message::UdsRequestMessageConstPtr message) noexcept override
Function to send Diagnostic Request and get Diagnostic Response.
SessionControlType active_session_
Store the active diagnostic session.
std::uint16_t target_address_
Store the logical target address of remote server.
::uds_transport::ByteVector payload_rx_buffer_
Store the received uds response.
std::string remote_address_
Store the remote IP address of remote server.
SyncTimer sync_timer_
Store the synchronous timer.
SecurityLevelType active_security_level_
Store the active diagnostic security level.
void Shutdown() noexcept override
Function to shutdown the DmConversation.
std::uint16_t source_address_
Store the logical source address of conversation.
conversation_state_impl::ConversationStateImpl conversation_state_
Store the conversation state.
std::unique_ptr<::uds_transport::Connection > connection_
Store the underlying transport protocol connection object.
std::string conversation_name_
Store the conversation name.
DmConversation & operator=(const DmConversation &other) noexcept=delete
SessionControlType
Definitions of active diagnostic session.
static DiagClientConversation::DiagError ConvertResponseType(::uds_transport::UdsTransportProtocolMgr::TransmissionResult result_type)
Helper function to convert response type.
Span(T(&)[N]) -> Span< T, N >
std::unique_ptr< UdsMessage > UdsResponseMessagePtr
Type alias of unique_ptr for Response Message.
std::unique_ptr< const UdsMessage > UdsRequestMessageConstPtr
Type alias of unique_ptr for constant UdsRequestMessage.
std::string_view ProtocolKind
std::unique_ptr< UdsMessage > UdsMessagePtr
std::vector< std::uint8_t > ByteVector
Structure containing DM conversation type.