17 namespace conversation {
87 priority, protocol_kind, payload_info));
112 rx_buffer_size_{conversion_identifier.rx_buffer_size},
113 p2_client_max_{conversion_identifier.p2_client_max},
114 p2_star_client_max_{conversion_identifier.p2_star_client_max},
115 source_address_{conversion_identifier.source_address},
117 conversation_name_{conversion_name},
118 dm_conversion_handler_{
131 FILE_NAME, __LINE__, __func__, [&](std::stringstream &msg) {
134 <<
"Startup completed";
145 FILE_NAME, __LINE__, __func__, [&](std::stringstream &msg) {
148 <<
"Shutdown completed";
154 std::uint16_t
const target_address,
IpAddress const host_ip_addr) noexcept {
161 connection_->ConnectToHost(std::make_unique<diag::client::uds_message::DmUdsMessage>(
162 source_address_, target_address, host_ip_addr, payload)))};
163 remote_address_ = host_ip_addr;
164 target_address_ = target_address;
167 FILE_NAME, __LINE__, __func__, [
this](std::stringstream &msg) {
168 msg <<
"'" << conversation_name_ <<
"'"
170 <<
"Successfully connected to Server with IP <" << remote_address_ <<
">"
171 <<
" and LA= 0x" << std::hex << target_address_;
175 FILE_NAME, __LINE__, __func__, [
this](std::stringstream &msg) {
176 msg <<
"'" << conversation_name_ <<
"'"
178 <<
"Failed connecting to Server with IP <" << remote_address_ <<
">"
179 <<
" and LA= 0x" << std::hex << target_address_;
182 return connection_result;
195 FILE_NAME, __LINE__, __func__, [
this](std::stringstream &msg) {
198 <<
"Successfully disconnected from Server with IP <" <<
remote_address_ <<
">"
203 FILE_NAME, __LINE__, __func__, [&](std::stringstream &msg) {
206 <<
"Failed to disconnect from Server with IP <" <<
remote_address_ <<
">";
225 connection_->Transmit(std::make_unique<diag::client::uds_message::DmUdsMessage>(
226 source_address_, target_address_, message->GetHostIpAddress(), payload))};
227 if (transmission_result ==
231 FILE_NAME, __LINE__, __func__, [&](std::stringstream &msg) {
232 msg <<
"'" << conversation_name_ <<
"'"
234 <<
"Diagnostic Request Sent & Positive Ack received";
236 conversation_state_.GetConversationStateContext().TransitionTo(
237 ConversationState::kDiagWaitForRes);
239 sync_timer_.WaitForTimeout(
242 conversation_state_.GetConversationStateContext().TransitionTo(
243 ConversationState::kIdle);
245 FILE_NAME, __LINE__,
"", [&](std::stringstream &msg) {
246 msg <<
"'" << conversation_name_ <<
"'"
248 <<
"Diagnostic Response P2 Timeout happened after " << p2_client_max_
254 if (conversation_state_.GetConversationStateContext().GetActiveState().GetState() ==
255 ConversationState::kDiagRecvdFinalRes) {
257 }
else if (conversation_state_.GetConversationStateContext()
259 .GetState() == ConversationState::kDiagRecvdPendingRes) {
261 conversation_state_.GetConversationStateContext().TransitionTo(
262 ConversationState::kDiagStartP2StarTimer);
265 std::chrono::milliseconds{p2_client_max_});
268 while (conversation_state_.GetConversationStateContext().GetActiveState().GetState() !=
269 ConversationState::kIdle) {
271 switch (conversation_state_.GetConversationStateContext().GetActiveState().GetState()) {
272 case ConversationState::kDiagRecvdPendingRes:
273 conversation_state_.GetConversationStateContext().TransitionTo(
274 ConversationState::kDiagStartP2StarTimer);
276 case ConversationState::kDiagRecvdFinalRes:
279 case ConversationState::kDiagStartP2StarTimer:
281 sync_timer_.WaitForTimeout(
284 FILE_NAME, __LINE__,
"", [&](std::stringstream &msg) {
285 msg <<
"'" << conversation_name_ <<
"'"
287 <<
"Diagnostic Response P2 Star Timeout "
289 << p2_star_client_max_ <<
" milliseconds";
292 conversation_state_.GetConversationStateContext().TransitionTo(
293 ConversationState::kIdle);
297 if (conversation_state_.GetConversationStateContext()
299 .GetState() == ConversationState::kDiagRecvdFinalRes) {
301 }
else if (conversation_state_.GetConversationStateContext()
303 .GetState() == ConversationState::kDiagRecvdPendingRes) {
305 conversation_state_.GetConversationStateContext().TransitionTo(
306 ConversationState::kDiagStartP2StarTimer);
309 std::chrono::milliseconds{p2_star_client_max_});
311 case ConversationState::kDiagSuccess:
314 std::make_unique<diag::client::uds_message::DmUdsResponse>(payload_rx_buffer_));
315 conversation_state_.GetConversationStateContext().TransitionTo(
316 ConversationState::kIdle);
325 result.EmplaceError(ConvertResponseType(transmission_result));
330 FILE_NAME, __LINE__,
"", [&](std::stringstream &msg) {
331 msg <<
"'" << conversation_name_ <<
"'"
333 <<
"Diagnostic Request message is empty";
340 std::unique_ptr<uds_transport::Connection> connection) noexcept {
341 connection_ = std::move(connection);
348 std::pair<uds_transport::UdsTransportProtocolMgr::IndicationResult, uds_transport::UdsMessagePtr>
355 std::pair<uds_transport::UdsTransportProtocolMgr::IndicationResult, uds_transport::UdsMessagePtr>
358 if (!payload_info.empty()) {
360 if (size <= rx_buffer_size_) {
363 if (payload_info[0U] == 0x7F && payload_info[2U] == 0x78) {
365 FILE_NAME, __LINE__,
"", [&](std::stringstream &msg) {
366 msg <<
"'" << conversation_name_ <<
"'"
368 <<
"Diagnostic pending response received in Conversation";
372 conversation_state_.GetConversationStateContext().TransitionTo(
373 ConversationState::kDiagRecvdPendingRes);
376 FILE_NAME, __LINE__,
"", [
this](std::stringstream &msg) {
377 msg <<
"'" << conversation_name_ <<
"'"
379 <<
"Diagnostic final response received in Conversation";
383 payload_rx_buffer_.resize(size);
385 ret_val.second = std::make_unique<diag::client::uds_message::DmUdsMessage>(
386 source_address_, target_address_,
"", payload_rx_buffer_);
387 conversation_state_.GetConversationStateContext().TransitionTo(
388 ConversationState::kDiagRecvdFinalRes);
390 sync_timer_.CancelWait();
393 FILE_NAME, __LINE__,
"", [&](std::stringstream &msg) {
394 msg <<
"'" << conversation_name_ <<
"'"
396 <<
"Diagnostic Conversation Error Indication Overflow";
402 FILE_NAME, __LINE__,
"", [&](std::stringstream &msg) {
403 msg <<
"'" << conversation_name_ <<
"'"
405 <<
"Diagnostic Conversation Rx Payload size 0 received";
412 if (message !=
nullptr) {
413 conversation_state_.GetConversationStateContext().TransitionTo(ConversationState::kDiagSuccess);
421 switch (result_type) {
Class type to contains a value (of type ValueType), or an error (of type ErrorType)
static Result FromError(const E &e) noexcept
Build a new Result from the specified error (given as lvalue)
A view over a contiguous sequence of objects.
Interface for diag client conversation.
DiagClientConversation::IpAddress IpAddress
Type alias for Ip address.
auto GetActivityStatus() const noexcept -> ActivityStatusType
Get the current activity status of this conversation.
ActivityStatusType activity_status_
Store the conversation activity status.
DiagError
Definitions of Diagnostics Request Response results.
DisconnectResult
Definitions of Disconnection results.
ConnectResult
Definitions of Connection results.
Class to manage reception from transport protocol handler to dm connection handler.
~DmConversationHandler() override=default
Destructs an instance of DmConversationHandler.
DmConversationHandler(::uds_transport::conversion_manager::ConversionHandlerID handler_id, DmConversation &dm_conversion)
Constructs an instance of DmConversationHandler.
DmConversationHandler & operator=(const DmConversationHandler &other) noexcept=delete
DmConversation & dm_conversation_
Store the reference of dm conversation.
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) const noexcept override
Function to indicate a start of reception of message.
DmConversationHandler & operator=(DmConversationHandler &&other) noexcept=delete
void HandleMessage(::uds_transport::UdsMessagePtr message) const noexcept override
Function to Hands over a valid received Uds message.
DmConversationHandler(DmConversationHandler &&other) noexcept=delete
Deleted move assignment and move constructor.
DmConversationHandler(const DmConversationHandler &other) noexcept=delete
Deleted copy assignment and copy constructor.
Class to establish connection with Diagnostic Server.
void Startup() noexcept override
Function to start the DmConversation.
~DmConversation() override
Destructs an instance of DmConversation.
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.
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.
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.
SecurityLevelType
Definitions of active security level.
::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.
std::uint16_t target_address_
Store the logical target address of remote server.
std::string remote_address_
Store the remote IP address of remote server.
void Shutdown() noexcept override
Function to shutdown the DmConversation.
std::unique_ptr<::uds_transport::Connection > connection_
Store the underlying transport protocol connection object.
std::string conversation_name_
Store the conversation name.
SessionControlType
Definitions of active diagnostic session.
static DiagClientConversation::DiagError ConvertResponseType(::uds_transport::UdsTransportProtocolMgr::TransmissionResult result_type)
Helper function to convert response type.
static auto GetDiagClientLogger() noexcept -> DiagClientLogger &
Get the diag client logger instance.
Class to manage reception from transport protocol handler to connection handler.
ConversionHandler(conversion_manager::ConversionHandlerID handler_id)
Constructs an instance of ConversionHandler.
@ kNegTransmitAckReceived
std::unique_ptr< const UdsMessage > UdsRequestMessageConstPtr
Type alias of unique_ptr for constant UdsRequestMessage.
std::uint8_t ConversionHandlerID
std::string_view ProtocolKind
std::unique_ptr< UdsMessage > UdsMessagePtr
std::vector< std::uint8_t > ByteVector
Structure containing DM conversation type.