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

Class used as a handler to process routing activation messages. More...

#include <doip_routing_activation_handler.h>

Classes

class  RoutingActivationHandlerImpl
 Class implements routing activation handler. More...
 

Public Types

using TcpMessagePtr = sockets::TcpSocketHandler::MessagePtr
 Type alias for Tcp message pointer. More...
 
using TcpMessage = sockets::TcpSocketHandler::Message
 Type alias for Tcp message. More...
 

Public Member Functions

 RoutingActivationHandler (sockets::TcpSocketHandler &tcp_socket_handler)
 Constructs an instance of RoutingActivationHandler. More...
 
 ~RoutingActivationHandler ()
 Destruct an instance of RoutingActivationHandler. More...
 
void Start ()
 Function to start the handler. More...
 
void Stop ()
 Function to stop the handler. More...
 
void Reset ()
 Function to reset the handler. More...
 
void ProcessDoIPRoutingActivationResponse (DoipMessage &doip_payload) noexcept
 Function to process received routing activation response. More...
 
auto HandleRoutingActivationRequest (uds_transport::UdsMessageConstPtr routing_activation_request) noexcept -> uds_transport::UdsTransportProtocolMgr::ConnectionResult
 Function to handle sending of routing activation request. More...
 
auto IsRoutingActivated () noexcept -> bool
 Check if routing activation is active for this handler. More...
 

Private Member Functions

auto SendRoutingActivationRequest (uds_transport::UdsMessageConstPtr routing_activation_request) noexcept -> uds_transport::UdsTransportProtocolMgr::TransmissionResult
 Function to send routing activation request. More...
 

Private Attributes

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

Detailed Description

Class used as a handler to process routing activation messages.

Definition at line 29 of file doip_routing_activation_handler.h.

Member Typedef Documentation

◆ TcpMessage

Type alias for Tcp message.

Definition at line 39 of file doip_routing_activation_handler.h.

◆ TcpMessagePtr

Type alias for Tcp message pointer.

Definition at line 34 of file doip_routing_activation_handler.h.

Constructor & Destructor Documentation

◆ RoutingActivationHandler()

doip_client::channel::tcp_channel::RoutingActivationHandler::RoutingActivationHandler ( sockets::TcpSocketHandler tcp_socket_handler)
explicit

Constructs an instance of RoutingActivationHandler.

Parameters
[in]tcp_socket_handlerThe reference to socket handler

Definition at line 334 of file doip_routing_activation_handler.cpp.

335  : handler_impl_{std::make_unique<RoutingActivationHandlerImpl>(tcp_socket_handler)} {}
std::unique_ptr< RoutingActivationHandlerImpl > handler_impl_
Stores the Handler implementation.

◆ ~RoutingActivationHandler()

doip_client::channel::tcp_channel::RoutingActivationHandler::~RoutingActivationHandler ( )
default

Destruct an instance of RoutingActivationHandler.

Member Function Documentation

◆ HandleRoutingActivationRequest()

auto doip_client::channel::tcp_channel::RoutingActivationHandler::HandleRoutingActivationRequest ( uds_transport::UdsMessageConstPtr  routing_activation_request) -> uds_transport::UdsTransportProtocolMgr::ConnectionResult
noexcept

Function to handle sending of routing activation request.

Parameters
[in]routing_activation_requestThe routing activation request
Returns
Transmission result

Definition at line 387 of file doip_routing_activation_handler.cpp.

389  {
392  if (handler_impl_->GetStateContext().GetActiveState().GetState() ==
393  RoutingActivationState::kIdle) {
394  if (SendRoutingActivationRequest(std::move(routing_activation_request)) ==
396  // Wait for routing activation response
397  handler_impl_->GetStateContext().TransitionTo(
398  RoutingActivationState::kWaitForRoutingActivationRes);
399  handler_impl_->GetSyncTimer().WaitForTimeout(
400  [this, &result]() {
402  handler_impl_->GetStateContext().TransitionTo(RoutingActivationState::kIdle);
403  logger::DoipClientLogger::GetDiagClientLogger().GetLogger().LogError(
404  FILE_NAME, __LINE__, "", [](std::stringstream &msg) {
405  msg << "RoutingActivation response timeout, no response "
406  "received in: "
407  << kDoIPRoutingActivationTimeout << " milliseconds";
408  });
409  },
410  [this, &result]() {
411  if (handler_impl_->GetStateContext().GetActiveState().GetState() ==
412  RoutingActivationState::kRoutingActivationSuccessful) {
413  // success
415  logger::DoipClientLogger::GetDiagClientLogger().GetLogger().LogInfo(
416  FILE_NAME, __LINE__, "", [](std::stringstream &msg) {
417  msg << "RoutingActivation successful with remote server";
418  });
419  } else { // failed
420  handler_impl_->GetStateContext().TransitionTo(RoutingActivationState::kIdle);
421  logger::DoipClientLogger::GetDiagClientLogger().GetLogger().LogError(
422  FILE_NAME, __LINE__, "", [](std::stringstream &msg) {
423  msg << "RoutingActivation failed with remote server";
424  });
425  }
426  },
427  std::chrono::milliseconds{kDoIPRoutingActivationTimeout});
428  } else {
429  // failed, do nothing
430  handler_impl_->GetStateContext().TransitionTo(RoutingActivationState::kIdle);
431  logger::DoipClientLogger::GetDiagClientLogger().GetLogger().LogError(
432  FILE_NAME, __LINE__, "", [](std::stringstream &msg) {
433  msg << "RoutingActivation Request send failed with remote server";
434  });
435  }
436  } else {
437  // channel not free
438  logger::DoipClientLogger::GetDiagClientLogger().GetLogger().LogVerbose(
439  FILE_NAME, __LINE__, "",
440  [](std::stringstream &msg) { msg << "RoutingActivation channel not free"; });
441  }
442  return result;
443 }
auto SendRoutingActivationRequest(uds_transport::UdsMessageConstPtr routing_activation_request) noexcept -> uds_transport::UdsTransportProtocolMgr::TransmissionResult
Function to send routing activation request.
static auto GetDiagClientLogger() noexcept -> DoipClientLogger &
Definition: logger.h:20
#define FILE_NAME
Definition: file_path.h:14
constexpr std::uint32_t kDoIPRoutingActivationTimeout
The timeout value for a DoIP Routing Activation request.

References FILE_NAME, doip_client::logger::DoipClientLogger::GetDiagClientLogger(), uds_transport::UdsTransportProtocolMgr::kConnectionFailed, uds_transport::UdsTransportProtocolMgr::kConnectionOk, uds_transport::UdsTransportProtocolMgr::kConnectionTimeout, doip_client::channel::tcp_channel::anonymous_namespace{doip_routing_activation_handler.cpp}::kDoIPRoutingActivationTimeout, and uds_transport::UdsTransportProtocolMgr::kTransmitOk.

Here is the call graph for this function:

◆ IsRoutingActivated()

auto doip_client::channel::tcp_channel::RoutingActivationHandler::IsRoutingActivated ( ) -> bool
noexcept

Check if routing activation is active for this handler.

Returns
True if activated, otherwise False

Definition at line 445 of file doip_routing_activation_handler.cpp.

445  {
446  return (handler_impl_->GetStateContext().GetActiveState().GetState() ==
447  RoutingActivationState::kRoutingActivationSuccessful);
448 }

References handler_impl_.

Referenced by doip_client::channel::tcp_channel::DoipTcpChannelHandler::IsRoutingActivated().

Here is the caller graph for this function:

◆ ProcessDoIPRoutingActivationResponse()

auto doip_client::channel::tcp_channel::RoutingActivationHandler::ProcessDoIPRoutingActivationResponse ( DoipMessage doip_payload)
noexcept

Function to process received routing activation response.

Parameters
[in]doip_payloadThe doip message received

Definition at line 345 of file doip_routing_activation_handler.cpp.

346  {
347  RoutingActivationState final_state{RoutingActivationState::kRoutingActivationFailed};
348  if (handler_impl_->GetStateContext().GetActiveState().GetState() ==
349  RoutingActivationState::kWaitForRoutingActivationRes) {
350  // get the ack code
351  RoutingActivationAckType const rout_act_type{doip_payload.GetPayload()[0u]};
352  switch (rout_act_type.act_type_) {
354  // routing successful
355  final_state = RoutingActivationState::kRoutingActivationSuccessful;
356  logger::DoipClientLogger::GetDiagClientLogger().GetLogger().LogInfo(
357  FILE_NAME, __LINE__, __func__, [&doip_payload](std::stringstream &msg) {
358  msg << "RoutingActivation successfully activated in remote "
359  "server with logical Address"
360  << " (0x" << std::hex << doip_payload.GetServerAddress() << ")";
361  });
362  } break;
364  // trigger routing activation after sometime, not implemented yet
365  logger::DoipClientLogger::GetDiagClientLogger().GetLogger().LogInfo(
366  FILE_NAME, __LINE__, __func__, [&doip_payload](std::stringstream &msg) {
367  msg << "RoutingActivation is activated, confirmation required in "
368  "remote server with logical Address"
369  << " (0x" << std::hex << doip_payload.GetServerAddress() << ")";
370  });
371  } break;
372  default:
373  // failure, do nothing
374  logger::DoipClientLogger::GetDiagClientLogger().GetLogger().LogWarn(
375  FILE_NAME, __LINE__, __func__, [&rout_act_type](std::stringstream &msg) {
376  msg << "Routing activation denied due to " << rout_act_type;
377  });
378  break;
379  }
380  handler_impl_->GetStateContext().TransitionTo(final_state);
381  handler_impl_->GetSyncTimer().CancelWait();
382  } else {
383  /* ignore */
384  }
385 }

References FILE_NAME, doip_client::logger::DoipClientLogger::GetDiagClientLogger(), doip_client::channel::tcp_channel::anonymous_namespace{doip_routing_activation_handler.cpp}::kDoipRoutingActivationResCodeConfirmtnRequired, and doip_client::channel::tcp_channel::anonymous_namespace{doip_routing_activation_handler.cpp}::kDoipRoutingActivationResCodeRoutingSuccessful.

Here is the call graph for this function:

◆ Reset()

void doip_client::channel::tcp_channel::RoutingActivationHandler::Reset ( )

Function to reset the handler.

This will reset all the internal handler back to default state

Definition at line 343 of file doip_routing_activation_handler.cpp.

343 { handler_impl_->Reset(); }

References handler_impl_.

Referenced by doip_client::channel::tcp_channel::DoipTcpChannelHandler::Reset().

Here is the caller graph for this function:

◆ SendRoutingActivationRequest()

auto doip_client::channel::tcp_channel::RoutingActivationHandler::SendRoutingActivationRequest ( uds_transport::UdsMessageConstPtr  routing_activation_request) -> uds_transport::UdsTransportProtocolMgr::TransmissionResult
privatenoexcept

Function to send routing activation request.

Parameters
[in]routing_activation_requestThe routing activation request
Returns
Transmission result

Definition at line 450 of file doip_routing_activation_handler.cpp.

452  {
455 
456  // Create header
457  TcpMessage::BufferType compose_routing_activation_req{
459  compose_routing_activation_req.reserve(kDoipheadrSize + kDoipRoutingActivationReqMinLen);
460 
461  // Add source address
462  compose_routing_activation_req.emplace_back(
463  static_cast<std::uint8_t>((message->GetSa() & 0xFF00) >> 8u));
464  compose_routing_activation_req.emplace_back(static_cast<std::uint8_t>(message->GetSa() & 0x00FF));
465  // Add activation type
466  compose_routing_activation_req.emplace_back(kDoip_RoutingActivation_ReqActType_Default);
467  // Add reservation byte , default zeroes
468  compose_routing_activation_req.emplace_back(0x00);
469  compose_routing_activation_req.emplace_back(0x00);
470  compose_routing_activation_req.emplace_back(0x00);
471  compose_routing_activation_req.emplace_back(0x00);
472 
473  TcpMessagePtr doip_routing_act_req{
474  std::make_unique<TcpMessage>(message->GetHostIpAddress(), message->GetHostPortNumber(),
475  std::move(compose_routing_activation_req))};
476  // Initiate transmission
477  if (handler_impl_->GetSocketHandler().Transmit(std::move(doip_routing_act_req))) {
479  }
480  return ret_val;
481 }
sockets::TcpSocketHandler::MessagePtr TcpMessagePtr
Type alias for Tcp message pointer.
constexpr std::uint8_t kDoip_RoutingActivation_ReqActType_Default
Routing Activation request activation types.
auto CreateDoipGenericHeader(std::uint16_t payload_type, std::uint32_t payload_len) noexcept -> std::vector< std::uint8_t >
Function to create doip generic header.
constexpr std::uint8_t kDoipheadrSize

References doip_client::channel::tcp_channel::anonymous_namespace{doip_routing_activation_handler.cpp}::CreateDoipGenericHeader(), doip_client::channel::tcp_channel::anonymous_namespace{doip_routing_activation_handler.cpp}::kDoip_RoutingActivation_ReqActType_Default, doip_client::channel::tcp_channel::anonymous_namespace{doip_routing_activation_handler.cpp}::kDoip_RoutingActivation_ReqType, doip_client::kDoipheadrSize, doip_client::channel::tcp_channel::anonymous_namespace{doip_routing_activation_handler.cpp}::kDoipRoutingActivationReqMinLen, uds_transport::UdsTransportProtocolMgr::kTransmitFailed, and uds_transport::UdsTransportProtocolMgr::kTransmitOk.

Here is the call graph for this function:

◆ Start()

void doip_client::channel::tcp_channel::RoutingActivationHandler::Start ( )

Function to start the handler.

Definition at line 339 of file doip_routing_activation_handler.cpp.

339 { handler_impl_->Start(); }

References handler_impl_.

Referenced by doip_client::channel::tcp_channel::DoipTcpChannelHandler::Start().

Here is the caller graph for this function:

◆ Stop()

void doip_client::channel::tcp_channel::RoutingActivationHandler::Stop ( )

Function to stop the handler.

This will reset all the internal handler back to default state

Definition at line 341 of file doip_routing_activation_handler.cpp.

341 { handler_impl_->Stop(); }

References handler_impl_.

Referenced by doip_client::channel::tcp_channel::DoipTcpChannelHandler::Stop().

Here is the caller graph for this function:

Member Data Documentation

◆ handler_impl_

std::unique_ptr<RoutingActivationHandlerImpl> doip_client::channel::tcp_channel::RoutingActivationHandler::handler_impl_
private

Stores the Handler implementation.

Definition at line 114 of file doip_routing_activation_handler.h.

Referenced by IsRoutingActivated(), Reset(), Start(), and Stop().


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