Diag-Client-Lib
Classes | Public Types | Public Member Functions | Private Member Functions | Private Attributes | List of all members
doip_client::channel::udp_channel::VehicleIdentificationHandler Class Referencefinal

Class used as a handler to process vehicle identification req/ res messages. More...

#include <doip_vehicle_identification_handler.h>

Classes

class  VehicleIdentificationHandlerImpl
 Class implements vehicle identification handler. More...
 

Public Types

using UdpMessagePtr = sockets::UdpSocketHandler::MessagePtr
 Type alias for Tcp message pointer. More...
 
using UdpMessage = sockets::UdpSocketHandler::Message
 Type alias for Udp message. More...
 

Public Member Functions

 VehicleIdentificationHandler (sockets::UdpSocketHandler &udp_socket_handler, DoipUdpChannel &channel)
 Constructs an instance of VehicleIdentificationHandler. More...
 
 ~VehicleIdentificationHandler ()
 Destruct an instance of VehicleIdentificationHandler. More...
 
auto HandleVehicleIdentificationRequest (uds_transport::UdsMessageConstPtr vehicle_identification_request) noexcept -> uds_transport::UdsTransportProtocolMgr::TransmissionResult
 Function to handle sending of vehicle identification request. More...
 
void ProcessVehicleIdentificationResponse (DoipMessage &doip_payload) noexcept
 Function to process received vehicle identification response. More...
 

Private Member Functions

auto SendVehicleIdentificationRequest (uds_transport::UdsMessageConstPtr vehicle_identification_request) noexcept -> uds_transport::UdsTransportProtocolMgr::TransmissionResult
 Function to send vehicle identification request. More...
 

Private Attributes

std::unique_ptr< VehicleIdentificationHandlerImplhandler_impl_
 Stores the Handler implementation. More...
 

Detailed Description

Class used as a handler to process vehicle identification req/ res messages.

Definition at line 26 of file doip_vehicle_identification_handler.h.

Member Typedef Documentation

◆ UdpMessage

Type alias for Udp message.

Definition at line 36 of file doip_vehicle_identification_handler.h.

◆ UdpMessagePtr

Type alias for Tcp message pointer.

Definition at line 31 of file doip_vehicle_identification_handler.h.

Constructor & Destructor Documentation

◆ VehicleIdentificationHandler()

doip_client::channel::udp_channel::VehicleIdentificationHandler::VehicleIdentificationHandler ( sockets::UdpSocketHandler udp_socket_handler,
DoipUdpChannel channel 
)

Constructs an instance of VehicleIdentificationHandler.

Parameters
[in]udp_socket_handlerThe reference to socket handler
[in]channelThe reference to doip udp channel

Definition at line 278 of file doip_vehicle_identification_handler.cpp.

280  : handler_impl_{
281  std::make_unique<VehicleIdentificationHandlerImpl>(udp_socket_handler, channel)} {}
std::unique_ptr< VehicleIdentificationHandlerImpl > handler_impl_
Stores the Handler implementation.

◆ ~VehicleIdentificationHandler()

doip_client::channel::udp_channel::VehicleIdentificationHandler::~VehicleIdentificationHandler ( )
default

Destruct an instance of VehicleIdentificationHandler.

Member Function Documentation

◆ HandleVehicleIdentificationRequest()

auto doip_client::channel::udp_channel::VehicleIdentificationHandler::HandleVehicleIdentificationRequest ( uds_transport::UdsMessageConstPtr  vehicle_identification_request) -> uds_transport::UdsTransportProtocolMgr::TransmissionResult
noexcept

Function to handle sending of vehicle identification request.

Parameters
[in]vehicle_identification_requestThe vehicle identification request
Returns
Transmission result

Definition at line 285 of file doip_vehicle_identification_handler.cpp.

287  {
290  if (handler_impl_->GetStateContext().GetActiveState().GetState() ==
291  VehicleIdentificationState::kIdle) {
292  // change state before sending if SendVehicleIdentificationRequest call takes more time to return and in the
293  // same time async reception starts
294  handler_impl_->GetStateContext().TransitionTo(
295  VehicleIdentificationState::kWaitForVehicleIdentificationRes);
296  if (SendVehicleIdentificationRequest(std::move(vehicle_identification_request)) ==
299  // Wait for 2 sec to collect all the vehicle identification response
300  handler_impl_->GetSyncTimer().WaitForTimeout(
301  [&]() {
302  handler_impl_->GetStateContext().TransitionTo(
303  VehicleIdentificationState::kDoIPCtrlTimeout);
304  // Todo: Send data to upper layer here
305  },
306  [&]() {
307  // no cancellation
308  },
309  std::chrono::milliseconds{kDoIPCtrl});
310  handler_impl_->GetStateContext().TransitionTo(VehicleIdentificationState::kIdle);
311  } else {
312  // failed, do nothing
313  handler_impl_->GetStateContext().TransitionTo(VehicleIdentificationState::kIdle);
314  logger::DoipClientLogger::GetDiagClientLogger().GetLogger().LogError(
315  FILE_NAME, __LINE__, "", [](std::stringstream &msg) {
316  msg << "Vehicle Identification request transmission Failed";
317  });
318  }
319  } else {
320  // not free, state already in idle state
321  }
322  return ret_val;
323 }
auto SendVehicleIdentificationRequest(uds_transport::UdsMessageConstPtr vehicle_identification_request) noexcept -> uds_transport::UdsTransportProtocolMgr::TransmissionResult
Function to send vehicle identification request.
static auto GetDiagClientLogger() noexcept -> DoipClientLogger &
Definition: logger.h:20
#define FILE_NAME
Definition: file_path.h:14
constexpr std::uint32_t kDoIPCtrl

References FILE_NAME, doip_client::logger::DoipClientLogger::GetDiagClientLogger(), doip_client::kDoIPCtrl, uds_transport::UdsTransportProtocolMgr::kTransmitFailed, and uds_transport::UdsTransportProtocolMgr::kTransmitOk.

Here is the call graph for this function:

◆ ProcessVehicleIdentificationResponse()

void doip_client::channel::udp_channel::VehicleIdentificationHandler::ProcessVehicleIdentificationResponse ( DoipMessage doip_payload)
noexcept

Function to process received vehicle identification response.

Parameters
[in]doip_payloadThe doip message received

Definition at line 325 of file doip_vehicle_identification_handler.cpp.

326  {
327  if (handler_impl_->GetStateContext().GetActiveState().GetState() ==
328  VehicleIdentificationState::kWaitForVehicleIdentificationRes) {
329  // Deserialize data to indicate to upper layer
332  ret_val{handler_impl_->GetDoipChannel().IndicateMessage(
333  static_cast<uds_transport::UdsMessage::Address>(0U),
334  static_cast<uds_transport::UdsMessage::Address>(0U),
336  doip_payload.GetPayload().size(), 0U, "DoIPUdp", doip_payload.GetPayload())};
337  if ((ret_val.first ==
339  (ret_val.second != nullptr)) {
340  // Add meta info about ip address
342  {"kRemoteIpAddress", std::string{doip_payload.GetHostIpAddress()}}};
343  ret_val.second->AddMetaInfo(
344  std::make_shared<uds_transport::UdsMessage::MetaInfoMap>(meta_info_map));
345  // copy to application buffer
346  (void) std::copy(doip_payload.GetPayload().begin(), doip_payload.GetPayload().end(),
347  ret_val.second->GetPayload().begin());
348  handler_impl_->GetDoipChannel().HandleMessage(std::move(ret_val.second));
349  }
350  } else {
351  // ignore
352  }
353 }
std::map< std::string, std::string > MetaInfoMap
Definition: uds_message.h:28
std::unique_ptr< UdsMessage > UdsMessagePtr
Definition: uds_message.h:71

References uds_transport::UdsTransportProtocolMgr::kIndicationOk, and uds_transport::UdsMessage::kPhysical.

Referenced by doip_client::channel::udp_channel::DoipUdpChannelHandler::ProcessDoIPPayload().

Here is the caller graph for this function:

◆ SendVehicleIdentificationRequest()

auto doip_client::channel::udp_channel::VehicleIdentificationHandler::SendVehicleIdentificationRequest ( uds_transport::UdsMessageConstPtr  vehicle_identification_request) -> uds_transport::UdsTransportProtocolMgr::TransmissionResult
privatenoexcept

Function to send vehicle identification request.

Parameters
[in]vehicle_identification_requestThe vehicle identification request
Returns
Transmission result

Definition at line 355 of file doip_vehicle_identification_handler.cpp.

357  {
360  // Get preselection mode
361  std::uint8_t const preselection_mode{vehicle_identification_request->GetPayload()[1u]};
362  // Get the payload type & length from preselection mode
363  VehiclePayloadType const doip_vehicle_payload_type{
364  GetVehicleIdentificationPayloadType(preselection_mode)};
365 
366  // create header
367  UdpMessage::BufferType compose_vehicle_identification_req{
368  CreateDoipGenericHeader(doip_vehicle_payload_type.first, doip_vehicle_payload_type.second)};
369  // Copy only if containing VIN / EID
370  if (doip_vehicle_payload_type.first != kDoip_VehicleIdentification_ReqType) {
371  compose_vehicle_identification_req.insert(
372  compose_vehicle_identification_req.begin() + kDoipheadrSize,
373  vehicle_identification_request->GetPayload().begin() + 2U,
374  vehicle_identification_request->GetPayload().end());
375  }
376 
377  UdpMessagePtr doip_vehicle_identification_req{
378  std::make_unique<UdpMessage>(vehicle_identification_request->GetHostIpAddress(),
379  vehicle_identification_request->GetHostPortNumber(),
380  std::move(compose_vehicle_identification_req))};
381  if (handler_impl_->GetSocketHandler().Transmit(std::move(doip_vehicle_identification_req))) {
383  }
384  return ret_val;
385 }
sockets::UdpSocketHandler::MessagePtr UdpMessagePtr
Type alias for Tcp message pointer.
std::pair< std::uint16_t, std::uint8_t > VehiclePayloadType
Type alias of vehicle payload type.
auto CreateDoipGenericHeader(std::uint16_t payload_type, std::uint32_t payload_len) noexcept -> std::vector< std::uint8_t >
Function to create doip generic header.
auto GetVehicleIdentificationPayloadType(std::uint8_t preselection_mode) noexcept -> VehiclePayloadType
Get the vehicle identification payload type based on preselection mode.
constexpr std::uint8_t kDoipheadrSize
constexpr std::uint16_t kDoip_VehicleIdentification_ReqType

References doip_client::channel::udp_channel::anonymous_namespace{doip_vehicle_identification_handler.cpp}::CreateDoipGenericHeader(), doip_client::channel::udp_channel::anonymous_namespace{doip_vehicle_identification_handler.cpp}::GetVehicleIdentificationPayloadType(), doip_client::kDoip_VehicleIdentification_ReqType, doip_client::kDoipheadrSize, uds_transport::UdsTransportProtocolMgr::kTransmitFailed, and uds_transport::UdsTransportProtocolMgr::kTransmitOk.

Here is the call graph for this function:

Member Data Documentation

◆ handler_impl_

std::unique_ptr<VehicleIdentificationHandlerImpl> doip_client::channel::udp_channel::VehicleIdentificationHandler::handler_impl_
private

Stores the Handler implementation.

Definition at line 91 of file doip_vehicle_identification_handler.h.


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