Diag-Client-Lib
Public Types | Public Member Functions | Private Types | Static Private Member Functions | Private Attributes | List of all members
diag::client::conversation::DmConversation Class Referencefinal

Class to establish connection with Diagnostic Server. More...

#include <dm_conversation.h>

Inheritance diagram for diag::client::conversation::DmConversation:
Inheritance graph
[legend]
Collaboration diagram for diag::client::conversation::DmConversation:
Collaboration graph
[legend]

Public Types

using ConversationState = conversation_state_impl::ConversationState
 Type alias for conversation internal state. More...
 
using SyncTimer = utility::sync_timer::SyncTimer< std::chrono::steady_clock >
 Type alias for synchronous timer. More...
 
- Public Types inherited from diag::client::conversation::Conversation
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...
 

Public Member Functions

 DmConversation (std::string_view conversion_name, DMConversationType &conversion_identifier)
 Constructs an instance of DmConversation. More...
 
 DmConversation (const DmConversation &other) noexcept=delete
 Deleted copy assignment and copy constructor. More...
 
DmConversationoperator= (const DmConversation &other) noexcept=delete
 
 DmConversation (DmConversation &&other) noexcept=delete
 Deleted move assignment and move constructor. More...
 
DmConversationoperator= (DmConversation &&other) noexcept=delete
 
 ~DmConversation () 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::ConversionHandlerGetConversationHandler () noexcept override
 Function to get the conversation handler from conversation object. More...
 
ConnectResult ConnectToDiagServer (std::uint16_t target_address, IpAddress host_ip_addr) noexcept override
 Function to connect to Diagnostic Server. More...
 
DisconnectResult DisconnectFromDiagServer () noexcept override
 Function to disconnect from Diagnostic Server. More...
 
std::pair<::uds_transport::UdsTransportProtocolMgr::IndicationResult, ::uds_transport::UdsMessagePtrIndicateMessage (::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. More...
 
void HandleMessage (::uds_transport::UdsMessagePtr message) noexcept override
 Function to Hands over a valid received Uds message. More...
 
Result< uds_message::UdsResponseMessagePtr, DiagErrorSendDiagnosticRequest (uds_message::UdsRequestMessageConstPtr message) noexcept override
 Function to send Diagnostic Request and get Diagnostic Response. More...
 
- Public Member Functions inherited from diag::client::conversation::Conversation
 Conversation () noexcept=default
 Constructs an instance of Conversation. More...
 
 Conversation (const Conversation &other) noexcept=delete
 Deleted copy assignment and copy constructor. More...
 
Conversationoperator= (const Conversation &other) noexcept=delete
 
 Conversation (Conversation &&other) noexcept=delete
 Deleted move assignment and move constructor. More...
 
Conversationoperator= (Conversation &&other) noexcept=delete
 
virtual ~Conversation () noexcept=default
 Destructs an instance of Conversation. More...
 
virtual core_type::Result< diag::client::vehicle_info::VehicleInfoMessageResponseUniquePtr, DiagClient::VehicleInfoResponseErrorSendVehicleIdentificationRequest (vehicle_info::VehicleInfoListRequestType) noexcept
 Function to send vehicle identification request and get the Diagnostic Server list. More...
 
auto GetActivityStatus () const noexcept -> ActivityStatusType
 Get the current activity status of this conversation. More...
 

Private Types

enum class  SessionControlType : std::uint8_t { kDefaultSession = 0x01 , kProgrammingSession = 0x02 , kExtendedSession = 0x03 , kSystemSafetySession = 0x04 }
 Definitions of active diagnostic session. More...
 
enum class  SecurityLevelType : std::uint8_t { kLocked = 0x00 , kUnLocked = 0x01 }
 Definitions of active security level. More...
 

Static Private Member Functions

static DiagClientConversation::DiagError ConvertResponseType (::uds_transport::UdsTransportProtocolMgr::TransmissionResult result_type)
 Helper function to convert response type. More...
 

Private Attributes

SessionControlType active_session_
 Store the active diagnostic session. More...
 
SecurityLevelType active_security_level_
 Store the active diagnostic security level. More...
 
std::uint32_t rx_buffer_size_
 Store the size of reception buffer size setting. More...
 
std::uint16_t p2_client_max_
 Store the maximum p2 client time. More...
 
std::uint16_t p2_star_client_max_
 Store the maximum p2 star client time. More...
 
std::uint16_t source_address_
 Store the logical source address of conversation. More...
 
std::uint16_t target_address_
 Store the logical target address of remote server. More...
 
std::string remote_address_
 Store the remote IP address of remote server. More...
 
std::string conversation_name_
 Store the conversation name. More...
 
std::unique_ptr<::uds_transport::ConversionHandlerdm_conversion_handler_
 Store the dm conversation handler. More...
 
std::unique_ptr<::uds_transport::Connectionconnection_
 Store the underlying transport protocol connection object. More...
 
SyncTimer sync_timer_
 Store the synchronous timer. More...
 
::uds_transport::ByteVector payload_rx_buffer_
 Store the received uds response. More...
 
conversation_state_impl::ConversationStateImpl conversation_state_
 Store the conversation state. More...
 

Additional Inherited Members

- Protected Attributes inherited from diag::client::conversation::Conversation
ActivityStatusType activity_status_ {ActivityStatusType::kInactive}
 Store the conversation activity status. More...
 

Detailed Description

Class to establish connection with Diagnostic Server.

Definition at line 28 of file dm_conversation.h.

Member Typedef Documentation

◆ ConversationState

Type alias for conversation internal state.

Definition at line 33 of file dm_conversation.h.

◆ SyncTimer

Type alias for synchronous timer.

Definition at line 37 of file dm_conversation.h.

Member Enumeration Documentation

◆ SecurityLevelType

Definitions of active security level.

Enumerator
kLocked 
kUnLocked 

Definition at line 178 of file dm_conversation.h.

178  : std::uint8_t {
179  kLocked = 0x00,
180  kUnLocked = 0x01,
181  };

◆ SessionControlType

Definitions of active diagnostic session.

Enumerator
kDefaultSession 
kProgrammingSession 
kExtendedSession 
kSystemSafetySession 

Definition at line 168 of file dm_conversation.h.

168  : std::uint8_t {
169  kDefaultSession = 0x01,
170  kProgrammingSession = 0x02,
171  kExtendedSession = 0x03,
172  kSystemSafetySession = 0x04
173  };

Constructor & Destructor Documentation

◆ DmConversation() [1/3]

diag::client::conversation::DmConversation::DmConversation ( std::string_view  conversion_name,
DMConversationType conversion_identifier 
)

Constructs an instance of DmConversation.

Parameters
[in]conversion_nameThe name of conversation
[in]conversion_identifierThe identifier consisting of conversation settings

Definition at line 107 of file dm_conversation.cpp.

109  : Conversation{},
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},
116  target_address_{},
117  conversation_name_{conversion_name},
119  std::make_unique<DmConversationHandler>(conversion_identifier.handler_id, *this)} {}
Conversation() noexcept=default
Constructs an instance of Conversation.
std::uint16_t p2_client_max_
Store the maximum p2 client time.
std::unique_ptr<::uds_transport::ConversionHandler > dm_conversion_handler_
Store the dm conversation handler.
std::uint32_t rx_buffer_size_
Store the size of reception buffer size setting.
std::uint16_t p2_star_client_max_
Store the maximum p2 star client time.
SessionControlType active_session_
Store the active diagnostic session.
std::uint16_t target_address_
Store the logical target address of remote server.
SecurityLevelType active_security_level_
Store the active diagnostic security level.
std::uint16_t source_address_
Store the logical source address of conversation.
std::string conversation_name_
Store the conversation name.

◆ DmConversation() [2/3]

diag::client::conversation::DmConversation::DmConversation ( const DmConversation other)
deletenoexcept

Deleted copy assignment and copy constructor.

◆ DmConversation() [3/3]

diag::client::conversation::DmConversation::DmConversation ( DmConversation &&  other)
deletenoexcept

Deleted move assignment and move constructor.

◆ ~DmConversation()

diag::client::conversation::DmConversation::~DmConversation ( )
overridedefault

Destructs an instance of DmConversation.

Member Function Documentation

◆ ConnectToDiagServer()

DiagClientConversation::ConnectResult diag::client::conversation::DmConversation::ConnectToDiagServer ( std::uint16_t  target_address,
IpAddress  host_ip_addr 
)
overridevirtualnoexcept

Function to connect to Diagnostic Server.

Parameters
[in]target_addressLogical address of the Remote server
[in]host_ip_addrIP address of the Remote server
Returns
ConnectResult Connection result returned

Reimplemented from diag::client::conversation::Conversation.

Definition at line 153 of file dm_conversation.cpp.

154  {
155  // create an uds message just to get the port number
156  // source address required for Routing Activation
157  uds_transport::ByteVector payload{}; // empty payload
158  // Send Connect request to doip layer
159  DiagClientConversation::ConnectResult const connection_result{
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;
166  logger::DiagClientLogger::GetDiagClientLogger().GetLogger().LogInfo(
167  FILE_NAME, __LINE__, __func__, [this](std::stringstream &msg) {
168  msg << "'" << conversation_name_ << "'"
169  << "-> "
170  << "Successfully connected to Server with IP <" << remote_address_ << ">"
171  << " and LA= 0x" << std::hex << target_address_;
172  });
173  } else {
174  logger::DiagClientLogger::GetDiagClientLogger().GetLogger().LogError(
175  FILE_NAME, __LINE__, __func__, [this](std::stringstream &msg) {
176  msg << "'" << conversation_name_ << "'"
177  << "-> "
178  << "Failed connecting to Server with IP <" << remote_address_ << ">"
179  << " and LA= 0x" << std::hex << target_address_;
180  });
181  }
182  return connection_result;
183 }
std::string remote_address_
Store the remote IP address of remote server.
std::unique_ptr<::uds_transport::Connection > connection_
Store the underlying transport protocol connection object.
static auto GetDiagClientLogger() noexcept -> DiagClientLogger &
Get the diag client logger instance.
Definition: logger.h:32
#define FILE_NAME
Definition: file_path.h:14
std::vector< std::uint8_t > ByteVector

References FILE_NAME, diag::client::logger::DiagClientLogger::GetDiagClientLogger(), and diag::client::conversation::DiagClientConversation::kConnectSuccess.

Here is the call graph for this function:

◆ ConvertResponseType()

DiagClientConversation::DiagError diag::client::conversation::DmConversation::ConvertResponseType ( ::uds_transport::UdsTransportProtocolMgr::TransmissionResult  result_type)
staticprivate

Helper function to convert response type.

Parameters
[in]result_typeThe transmission result type
Returns
DiagResult The diagnostic result type

Definition at line 417 of file dm_conversation.cpp.

418  {
421  switch (result_type) {
424  break;
427  break;
430  break;
433  break;
434  default:
436  break;
437  }
438  return ret_result;
439 }
DiagError
Definitions of Diagnostics Request Response results.

References uds_transport::UdsTransportProtocolMgr::kBusyProcessing, diag::client::conversation::DiagClientConversation::kDiagAckTimeout, diag::client::conversation::DiagClientConversation::kDiagBusyProcessing, diag::client::conversation::DiagClientConversation::kDiagGenericFailure, diag::client::conversation::DiagClientConversation::kDiagNegAckReceived, diag::client::conversation::DiagClientConversation::kDiagRequestSendFailed, uds_transport::UdsTransportProtocolMgr::kNegTransmitAckReceived, uds_transport::UdsTransportProtocolMgr::kNoTransmitAckReceived, and uds_transport::UdsTransportProtocolMgr::kTransmitFailed.

◆ DisconnectFromDiagServer()

DiagClientConversation::DisconnectResult diag::client::conversation::DmConversation::DisconnectFromDiagServer ( )
overridevirtualnoexcept

Function to disconnect from Diagnostic Server.

Returns
DisconnectResult Disconnection result returned

Reimplemented from diag::client::conversation::Conversation.

Definition at line 185 of file dm_conversation.cpp.

185  {
188  // Check if already connected before disconnecting
189  if (connection_->IsConnectToHost()) {
190  // Send disconnect request to doip layer
191  ret_val =
192  static_cast<DiagClientConversation::DisconnectResult>(connection_->DisconnectFromHost());
194  logger::DiagClientLogger::GetDiagClientLogger().GetLogger().LogInfo(
195  FILE_NAME, __LINE__, __func__, [this](std::stringstream &msg) {
196  msg << "'" << conversation_name_ << "'"
197  << "-> "
198  << "Successfully disconnected from Server with IP <" << remote_address_ << ">"
199  << " and LA= 0x" << std::hex << target_address_;
200  });
201  } else {
202  logger::DiagClientLogger::GetDiagClientLogger().GetLogger().LogWarn(
203  FILE_NAME, __LINE__, __func__, [&](std::stringstream &msg) {
204  msg << "'" << conversation_name_ << "'"
205  << "-> "
206  << "Failed to disconnect from Server with IP <" << remote_address_ << ">";
207  });
208  }
209  } else {
211  }
212  return ret_val;
213 }

References connection_, conversation_name_, FILE_NAME, diag::client::logger::DiagClientLogger::GetDiagClientLogger(), diag::client::conversation::DiagClientConversation::kAlreadyDisconnected, diag::client::conversation::DiagClientConversation::kDisconnectFailed, diag::client::conversation::DiagClientConversation::kDisconnectSuccess, remote_address_, and target_address_.

Here is the call graph for this function:

◆ GetConversationHandler()

uds_transport::ConversionHandler & diag::client::conversation::DmConversation::GetConversationHandler ( )
overridevirtualnoexcept

Function to get the conversation handler from conversation object.

Returns
ConversionHandler & The reference to conversation handler

Implements diag::client::conversation::Conversation.

Definition at line 344 of file dm_conversation.cpp.

344  {
345  return *dm_conversion_handler_;
346 }

References dm_conversion_handler_.

◆ HandleMessage()

void diag::client::conversation::DmConversation::HandleMessage ( ::uds_transport::UdsMessagePtr  message)
overridevirtualnoexcept

Function to Hands over a valid received Uds message.

Parameters
[in]messageThe 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 411 of file dm_conversation.cpp.

411  {
412  if (message != nullptr) {
414  }
415 }
conversation_state_impl::ConversationStateImpl conversation_state_
Store the conversation state.
auto GetConversationStateContext() noexcept -> StateContext< ConversationState > &

Referenced by diag::client::conversation::DmConversationHandler::HandleMessage().

Here is the caller graph for this function:

◆ IndicateMessage()

std::pair< uds_transport::UdsTransportProtocolMgr::IndicationResult, uds_transport::UdsMessagePtr > diag::client::conversation::DmConversation::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 
)
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

Parameters
[in]source_addrThe UDS source address of message
[in]target_addrThe UDS target address of message
[in]typeThe indication whether its is phys/func request
[in]channel_idThe transport protocol channel on which message start happened
[in]sizeThe size in bytes of the UdsMessage starting from SID
[in]priorityThe priority of the given message, used for prioritization of conversations
[in]protocol_kindThe identifier of protocol kind associated to message
[in]payload_infoThe 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
Returns
std::pair< IndicationResult, UdsMessagePtr > The pair of IndicationResult and a pointer to UdsMessage owned/created by DM core and returned to the handler to get filled

Implements diag::client::conversation::Conversation.

Definition at line 349 of file dm_conversation.cpp.

354  {
355  std::pair<uds_transport::UdsTransportProtocolMgr::IndicationResult, uds_transport::UdsMessagePtr>
357  // Verify the payload received :-
358  if (!payload_info.empty()) {
359  // Check for size, else kIndicationOverflow
360  if (size <= rx_buffer_size_) {
361  // Check for pending response
362  // payload = 0x7F XX 0x78
363  if (payload_info[0U] == 0x7F && payload_info[2U] == 0x78) {
364  logger::DiagClientLogger::GetDiagClientLogger().GetLogger().LogInfo(
365  FILE_NAME, __LINE__, "", [&](std::stringstream &msg) {
366  msg << "'" << conversation_name_ << "'"
367  << "-> "
368  << "Diagnostic pending response received in Conversation";
369  });
370  ret_val.first =
374  } else {
375  logger::DiagClientLogger::GetDiagClientLogger().GetLogger().LogDebug(
376  FILE_NAME, __LINE__, "", [this](std::stringstream &msg) {
377  msg << "'" << conversation_name_ << "'"
378  << "-> "
379  << "Diagnostic final response received in Conversation";
380  });
381  // positive or negative response, provide valid buffer
382  // resize the global rx buffer
383  payload_rx_buffer_.resize(size);
385  ret_val.second = std::make_unique<diag::client::uds_message::DmUdsMessage>(
389  }
391  } else {
392  logger::DiagClientLogger::GetDiagClientLogger().GetLogger().LogError(
393  FILE_NAME, __LINE__, "", [&](std::stringstream &msg) {
394  msg << "'" << conversation_name_ << "'"
395  << "-> "
396  << "Diagnostic Conversation Error Indication Overflow";
397  });
399  }
400  } else {
401  logger::DiagClientLogger::GetDiagClientLogger().GetLogger().LogError(
402  FILE_NAME, __LINE__, "", [&](std::stringstream &msg) {
403  msg << "'" << conversation_name_ << "'"
404  << "-> "
405  << "Diagnostic Conversation Rx Payload size 0 received";
406  });
407  }
408  return ret_val;
409 }
constexpr bool empty() const noexcept
Return whether this Span is empty.
Definition: span.h:538
::uds_transport::ByteVector payload_rx_buffer_
Store the received uds response.
SyncTimer sync_timer_
Store the synchronous timer.
void CancelWait()
Function to cancel the synchronous wait.
Definition: sync_timer.h:91

References FILE_NAME, diag::client::logger::DiagClientLogger::GetDiagClientLogger(), uds_transport::UdsTransportProtocolMgr::kIndicationNOk, uds_transport::UdsTransportProtocolMgr::kIndicationOk, uds_transport::UdsTransportProtocolMgr::kIndicationOverflow, and uds_transport::UdsTransportProtocolMgr::kIndicationPending.

Referenced by diag::client::conversation::DmConversationHandler::IndicateMessage().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ operator=() [1/2]

DmConversation& diag::client::conversation::DmConversation::operator= ( const DmConversation other)
deletenoexcept

◆ operator=() [2/2]

DmConversation& diag::client::conversation::DmConversation::operator= ( DmConversation &&  other)
deletenoexcept

◆ RegisterConnection()

void diag::client::conversation::DmConversation::RegisterConnection ( std::unique_ptr<::uds_transport::Connection connection)
overridevirtualnoexcept

Function to register the conversation to underlying transport protocol handler.

Parameters
[in]connectionThe conversation connection object

Implements diag::client::conversation::Conversation.

Definition at line 339 of file dm_conversation.cpp.

340  {
341  connection_ = std::move(connection);
342 }

◆ SendDiagnosticRequest()

Result< uds_message::UdsResponseMessagePtr, DiagClientConversation::DiagError > diag::client::conversation::DmConversation::SendDiagnosticRequest ( uds_message::UdsRequestMessageConstPtr  message)
overridevirtualnoexcept

Function to send Diagnostic Request and get Diagnostic Response.

Parameters
[in]messageThe diagnostic request message wrapped in a unique pointer
Returns
DiagResult The Result returned
uds_message::UdsResponseMessagePtr Diagnostic Response message received, null_ptr in case of error

Reimplemented from diag::client::conversation::Conversation.

Definition at line 216 of file dm_conversation.cpp.

216  {
217  Result<uds_message::UdsResponseMessagePtr, DiagClientConversation::DiagError> result{
220  if (message) {
221  // fill the data
222  uds_transport::ByteVector payload{message->GetPayload()};
223  // Initiate Sending of diagnostic request
225  connection_->Transmit(std::make_unique<diag::client::uds_message::DmUdsMessage>(
226  source_address_, target_address_, message->GetHostIpAddress(), payload))};
227  if (transmission_result ==
229  // Diagnostic Request Sent successful
230  logger::DiagClientLogger::GetDiagClientLogger().GetLogger().LogInfo(
231  FILE_NAME, __LINE__, __func__, [&](std::stringstream &msg) {
232  msg << "'" << conversation_name_ << "'"
233  << "-> "
234  << "Diagnostic Request Sent & Positive Ack received";
235  });
238  // Wait P6Max / P2ClientMax
240  [this, &result]() {
244  logger::DiagClientLogger::GetDiagClientLogger().GetLogger().LogInfo(
245  FILE_NAME, __LINE__, "", [&](std::stringstream &msg) {
246  msg << "'" << conversation_name_ << "'"
247  << "-> "
248  << "Diagnostic Response P2 Timeout happened after " << p2_client_max_
249  << " milliseconds";
250  });
251  },
252  [this]() {
253  // pending or pos/neg response
254  if (conversation_state_.GetConversationStateContext().GetActiveState().GetState() ==
256  // pos/neg response received
258  .GetActiveState()
260  // first pending received
263  }
264  },
265  std::chrono::milliseconds{p2_client_max_});
266 
267  // Wait until final response or timeout
268  while (conversation_state_.GetConversationStateContext().GetActiveState().GetState() !=
270  // Check the active state
271  switch (conversation_state_.GetConversationStateContext().GetActiveState().GetState()) {
275  break;
277  // do nothing
278  break;
280  // wait P6Star/ P2 star client time
282  [this, &result]() {
283  logger::DiagClientLogger::GetDiagClientLogger().GetLogger().LogInfo(
284  FILE_NAME, __LINE__, "", [&](std::stringstream &msg) {
285  msg << "'" << conversation_name_ << "'"
286  << "-> "
287  << "Diagnostic Response P2 Star Timeout "
288  "happened after "
289  << p2_star_client_max_ << " milliseconds";
290  });
294  },
295  [this]() {
296  // pending or pos/neg response
298  .GetActiveState()
299  .GetState() == ConversationState::kDiagRecvdFinalRes) {
300  // pos/neg response received
302  .GetActiveState()
304  // pending received again
307  }
308  },
309  std::chrono::milliseconds{p2_star_client_max_});
310  break;
312  // change state to idle, form the uds response and return
313  result.EmplaceValue(
314  std::make_unique<diag::client::uds_message::DmUdsResponse>(payload_rx_buffer_));
317  break;
318  default:
319  // nothing
320  break;
321  }
322  }
323  } else {
324  // failure
325  result.EmplaceError(ConvertResponseType(transmission_result));
326  }
327  } else {
329  logger::DiagClientLogger::GetDiagClientLogger().GetLogger().LogWarn(
330  FILE_NAME, __LINE__, "", [&](std::stringstream &msg) {
331  msg << "'" << conversation_name_ << "'"
332  << "-> "
333  << "Diagnostic Request message is empty";
334  });
335  }
336  return result;
337 }
static Result FromError(const E &e) noexcept
Build a new Result from the specified error (given as lvalue)
Definition: result.h:83
static DiagClientConversation::DiagError ConvertResponseType(::uds_transport::UdsTransportProtocolMgr::TransmissionResult result_type)
Helper function to convert response type.
void WaitForTimeout(TimeoutCallback &&timeout_func, CancelCallback &&cancellation_func, std::chrono::milliseconds const timeout)
Helper function to wait for response with timeout monitoring.
Definition: sync_timer.h:71

References FILE_NAME, core_type::Result< T, E >::FromError(), diag::client::logger::DiagClientLogger::GetDiagClientLogger(), diag::client::conversation::DiagClientConversation::kDiagInvalidParameter, diag::client::conversation::DiagClientConversation::kDiagRequestSendFailed, diag::client::conversation::DiagClientConversation::kDiagResponseTimeout, and uds_transport::UdsTransportProtocolMgr::kTransmitOk.

Here is the call graph for this function:

◆ Shutdown()

void diag::client::conversation::DmConversation::Shutdown ( )
overridevirtualnoexcept

Function to shutdown the DmConversation.

Implements diag::client::conversation::Conversation.

Definition at line 138 of file dm_conversation.cpp.

138  {
140  // shutdown connection
141  connection_->Stop();
142  // Change the state to InActive
144  logger::DiagClientLogger::GetDiagClientLogger().GetLogger().LogInfo(
145  FILE_NAME, __LINE__, __func__, [&](std::stringstream &msg) {
146  msg << "'" << conversation_name_ << "'"
147  << "-> "
148  << "Shutdown completed";
149  });
150  }
151 }
auto GetActivityStatus() const noexcept -> ActivityStatusType
Get the current activity status of this conversation.
Definition: conversation.h:196
ActivityStatusType activity_status_
Store the conversation activity status.
Definition: conversation.h:202

References diag::client::conversation::Conversation::activity_status_, connection_, 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.

Here is the call graph for this function:

◆ Startup()

void diag::client::conversation::DmConversation::Startup ( )
overridevirtualnoexcept

Function to start the DmConversation.

Implements diag::client::conversation::Conversation.

Definition at line 123 of file dm_conversation.cpp.

123  {
124  // initialize the connection
125  static_cast<void>(connection_->Initialize());
126  // start the connection
127  connection_->Start();
128  // Change the state to Active
130  logger::DiagClientLogger::GetDiagClientLogger().GetLogger().LogInfo(
131  FILE_NAME, __LINE__, __func__, [&](std::stringstream &msg) {
132  msg << "'" << conversation_name_ << "'"
133  << "-> "
134  << "Startup completed";
135  });
136 }

References diag::client::conversation::Conversation::activity_status_, connection_, conversation_name_, FILE_NAME, diag::client::logger::DiagClientLogger::GetDiagClientLogger(), and diag::client::conversation::Conversation::kActive.

Here is the call graph for this function:

Member Data Documentation

◆ active_security_level_

SecurityLevelType diag::client::conversation::DmConversation::active_security_level_
private

Store the active diagnostic security level.

Definition at line 202 of file dm_conversation.h.

◆ active_session_

SessionControlType diag::client::conversation::DmConversation::active_session_
private

Store the active diagnostic session.

Definition at line 197 of file dm_conversation.h.

◆ connection_

std::unique_ptr<::uds_transport::Connection> diag::client::conversation::DmConversation::connection_
private

Store the underlying transport protocol connection object.

Definition at line 247 of file dm_conversation.h.

Referenced by DisconnectFromDiagServer(), Shutdown(), and Startup().

◆ conversation_name_

std::string diag::client::conversation::DmConversation::conversation_name_
private

Store the conversation name.

Definition at line 237 of file dm_conversation.h.

Referenced by DisconnectFromDiagServer(), Shutdown(), and Startup().

◆ conversation_state_

conversation_state_impl::ConversationStateImpl diag::client::conversation::DmConversation::conversation_state_
private

Store the conversation state.

Definition at line 262 of file dm_conversation.h.

◆ dm_conversion_handler_

std::unique_ptr<::uds_transport::ConversionHandler> diag::client::conversation::DmConversation::dm_conversion_handler_
private

Store the dm conversation handler.

Definition at line 242 of file dm_conversation.h.

Referenced by GetConversationHandler().

◆ p2_client_max_

std::uint16_t diag::client::conversation::DmConversation::p2_client_max_
private

Store the maximum p2 client time.

Definition at line 212 of file dm_conversation.h.

◆ p2_star_client_max_

std::uint16_t diag::client::conversation::DmConversation::p2_star_client_max_
private

Store the maximum p2 star client time.

Definition at line 217 of file dm_conversation.h.

◆ payload_rx_buffer_

::uds_transport::ByteVector diag::client::conversation::DmConversation::payload_rx_buffer_
private

Store the received uds response.

Definition at line 257 of file dm_conversation.h.

◆ remote_address_

std::string diag::client::conversation::DmConversation::remote_address_
private

Store the remote IP address of remote server.

Definition at line 232 of file dm_conversation.h.

Referenced by DisconnectFromDiagServer().

◆ rx_buffer_size_

std::uint32_t diag::client::conversation::DmConversation::rx_buffer_size_
private

Store the size of reception buffer size setting.

Definition at line 207 of file dm_conversation.h.

◆ source_address_

std::uint16_t diag::client::conversation::DmConversation::source_address_
private

Store the logical source address of conversation.

Definition at line 222 of file dm_conversation.h.

◆ sync_timer_

SyncTimer diag::client::conversation::DmConversation::sync_timer_
private

Store the synchronous timer.

Definition at line 252 of file dm_conversation.h.

◆ target_address_

std::uint16_t diag::client::conversation::DmConversation::target_address_
private

Store the logical target address of remote server.

Definition at line 227 of file dm_conversation.h.

Referenced by DisconnectFromDiagServer().


The documentation for this class was generated from the following files: