Diag-Client-Lib
|
Class used as a handler to process routing activation messages. More...
#include <doip_diagnostic_message_handler.h>
Classes | |
class | DiagnosticMessageHandlerImpl |
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 | |
DiagnosticMessageHandler (sockets::TcpSocketHandler &tcp_socket_handler, DoipTcpChannel &channel) | |
Constructs an instance of DiagnosticMessageHandler. More... | |
~DiagnosticMessageHandler () | |
Destruct an instance of DiagnosticMessageHandler. 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 | ProcessDoIPDiagnosticAckMessageResponse (DoipMessage &doip_payload) noexcept |
Function to process received diagnostic acknowledgement from server. More... | |
void | ProcessDoIPDiagnosticMessageResponse (DoipMessage &doip_payload) noexcept |
Function to process received diagnostic positive/negative response from server. More... | |
auto | HandleDiagnosticRequest (uds_transport::UdsMessageConstPtr diagnostic_request) noexcept -> uds_transport::UdsTransportProtocolMgr::TransmissionResult |
Function to handle sending of diagnostic request. More... | |
Private Member Functions | |
auto | SendDiagnosticRequest (uds_transport::UdsMessageConstPtr diagnostic_request) noexcept -> uds_transport::UdsTransportProtocolMgr::TransmissionResult |
Function to send diagnostic request. More... | |
Private Attributes | |
std::unique_ptr< DiagnosticMessageHandlerImpl > | handler_impl_ |
Stores the Handler implementation. More... | |
Class used as a handler to process routing activation messages.
Definition at line 29 of file doip_diagnostic_message_handler.h.
using doip_client::channel::tcp_channel::DiagnosticMessageHandler::TcpMessage = sockets::TcpSocketHandler::Message |
Type alias for Tcp message.
Definition at line 39 of file doip_diagnostic_message_handler.h.
using doip_client::channel::tcp_channel::DiagnosticMessageHandler::TcpMessagePtr = sockets::TcpSocketHandler::MessagePtr |
Type alias for Tcp message pointer.
Definition at line 34 of file doip_diagnostic_message_handler.h.
doip_client::channel::tcp_channel::DiagnosticMessageHandler::DiagnosticMessageHandler | ( | sockets::TcpSocketHandler & | tcp_socket_handler, |
DoipTcpChannel & | channel | ||
) |
Constructs an instance of DiagnosticMessageHandler.
[in] | tcp_socket_handler | The reference to socket handler |
[in] | channel | The reference to doip channel |
Definition at line 406 of file doip_diagnostic_message_handler.cpp.
|
default |
Destruct an instance of DiagnosticMessageHandler.
|
noexcept |
Function to handle sending of diagnostic request.
[in] | diagnostic_request | The diagnostic request |
Definition at line 493 of file doip_diagnostic_message_handler.cpp.
References FILE_NAME, doip_client::logger::DoipClientLogger::GetDiagClientLogger(), uds_transport::UdsTransportProtocolMgr::kBusyProcessing, doip_client::channel::tcp_channel::anonymous_namespace{doip_diagnostic_message_handler.cpp}::kDoIPDiagnosticAckTimeout, uds_transport::UdsTransportProtocolMgr::kNegTransmitAckReceived, uds_transport::UdsTransportProtocolMgr::kNoTransmitAckReceived, uds_transport::UdsTransportProtocolMgr::kTransmitFailed, and uds_transport::UdsTransportProtocolMgr::kTransmitOk.
|
noexcept |
Function to process received diagnostic acknowledgement from server.
[in] | doip_payload | The doip message received |
Definition at line 418 of file doip_diagnostic_message_handler.cpp.
References FILE_NAME, doip_client::logger::DoipClientLogger::GetDiagClientLogger(), doip_client::channel::tcp_channel::anonymous_namespace{doip_diagnostic_message_handler.cpp}::kDoipDiagMessageNegAck, doip_client::channel::tcp_channel::anonymous_namespace{doip_diagnostic_message_handler.cpp}::kDoipDiagMessagePosAck, and doip_client::channel::tcp_channel::anonymous_namespace{doip_diagnostic_message_handler.cpp}::kDoipDiagnosticMessagePosAckCodeConfirm.
|
noexcept |
Function to process received diagnostic positive/negative response from server.
[in] | doip_payload | The doip message received |
Definition at line 452 of file doip_diagnostic_message_handler.cpp.
References FILE_NAME, doip_client::logger::DoipClientLogger::GetDiagClientLogger(), uds_transport::UdsTransportProtocolMgr::kIndicationOk, uds_transport::UdsTransportProtocolMgr::kIndicationPending, and uds_transport::UdsMessage::kPhysical.
void doip_client::channel::tcp_channel::DiagnosticMessageHandler::Reset | ( | ) |
Function to reset the handler.
This will reset all the internal handler back to default state
Definition at line 416 of file doip_diagnostic_message_handler.cpp.
References handler_impl_.
Referenced by doip_client::channel::tcp_channel::DoipTcpChannelHandler::Reset().
|
privatenoexcept |
Function to send diagnostic request.
[in] | diagnostic_request | The routing activation request |
Definition at line 557 of file doip_diagnostic_message_handler.cpp.
References doip_client::channel::tcp_channel::anonymous_namespace{doip_diagnostic_message_handler.cpp}::CreateDoipGenericHeader(), doip_client::channel::tcp_channel::anonymous_namespace{doip_diagnostic_message_handler.cpp}::kDoipDiagMessage, doip_client::channel::tcp_channel::anonymous_namespace{doip_diagnostic_message_handler.cpp}::kDoipDiagMessageReqResMinLen, doip_client::kDoipheadrSize, uds_transport::UdsTransportProtocolMgr::kTransmitFailed, and uds_transport::UdsTransportProtocolMgr::kTransmitOk.
void doip_client::channel::tcp_channel::DiagnosticMessageHandler::Start | ( | ) |
Function to start the handler.
Definition at line 412 of file doip_diagnostic_message_handler.cpp.
References handler_impl_.
Referenced by doip_client::channel::tcp_channel::DoipTcpChannelHandler::Start().
void doip_client::channel::tcp_channel::DiagnosticMessageHandler::Stop | ( | ) |
Function to stop the handler.
This will reset all the internal handler back to default state
Definition at line 414 of file doip_diagnostic_message_handler.cpp.
References handler_impl_.
Referenced by doip_client::channel::tcp_channel::DoipTcpChannelHandler::Stop().
|
private |
Stores the Handler implementation.
Definition at line 115 of file doip_diagnostic_message_handler.h.