Diag-Client-Lib
doip_routing_activation_handler.h
Go to the documentation of this file.
1 /* Diagnostic Client library
2 * Copyright (C) 2024 Avijit Dey
3 *
4 * This Source Code Form is subject to the terms of the Mozilla Public
5 * License, v. 2.0. If a copy of the MPL was not distributed with this
6 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
7 */
8 #ifndef DIAG_CLIENT_LIB_LIB_DOIP_CLIENT_CHANNEL_TCP_CHANNEL_DOIP_ROUTING_ACTIVATION_HANDLER_H_
9 #define DIAG_CLIENT_LIB_LIB_DOIP_CLIENT_CHANNEL_TCP_CHANNEL_DOIP_ROUTING_ACTIVATION_HANDLER_H_
10 
11 #include <memory>
12 #include <vector>
13 
14 #include "common/doip_message.h"
15 #include "sockets/socket_handler.h"
18 
19 namespace doip_client {
20 namespace channel {
21 namespace tcp_channel {
22 
23 // Forward declaration
24 class DoipTcpChannel;
25 
30  public:
35 
40 
41  public:
47  explicit RoutingActivationHandler(sockets::TcpSocketHandler &tcp_socket_handler);
48 
53 
57  void Start();
58 
63  void Stop();
64 
69  void Reset();
70 
76  void ProcessDoIPRoutingActivationResponse(DoipMessage &doip_payload) noexcept;
77 
85  uds_transport::UdsMessageConstPtr routing_activation_request) noexcept
87 
92  auto IsRoutingActivated() noexcept -> bool;
93 
94  private:
102  uds_transport::UdsMessageConstPtr routing_activation_request) noexcept
103  -> uds_transport::UdsTransportProtocolMgr::TransmissionResult;
104 
105  private:
110 
115 };
116 
117 } // namespace tcp_channel
118 } // namespace channel
119 } // namespace doip_client
120 #endif //DIAG_CLIENT_LIB_LIB_DOIP_CLIENT_CHANNEL_TCP_CHANNEL_DOIP_ROUTING_ACTIVATION_HANDLER_H_
Immutable class to store received doip message.
Definition: doip_message.h:21
Class used as a handler to process routing activation messages.
sockets::TcpSocketHandler::MessagePtr TcpMessagePtr
Type alias for Tcp message pointer.
void ProcessDoIPRoutingActivationResponse(DoipMessage &doip_payload) noexcept
Function to process received routing activation response.
auto SendRoutingActivationRequest(uds_transport::UdsMessageConstPtr routing_activation_request) noexcept -> uds_transport::UdsTransportProtocolMgr::TransmissionResult
Function to send routing activation request.
~RoutingActivationHandler()
Destruct an instance of RoutingActivationHandler.
RoutingActivationHandler(sockets::TcpSocketHandler &tcp_socket_handler)
Constructs an instance of RoutingActivationHandler.
std::unique_ptr< RoutingActivationHandlerImpl > handler_impl_
Stores the Handler implementation.
sockets::TcpSocketHandler::Message TcpMessage
Type alias for Tcp message.
auto HandleRoutingActivationRequest(uds_transport::UdsMessageConstPtr routing_activation_request) noexcept -> uds_transport::UdsTransportProtocolMgr::ConnectionResult
Function to handle sending of routing activation request.
auto IsRoutingActivated() noexcept -> bool
Check if routing activation is active for this handler.
Handler class to manage different socket of various client (Udp / Tcp)
typename Client::MessagePtr MessagePtr
Type alias for message pointer.
typename Client::Message Message
Type alias for message.
std::unique_ptr< const UdsMessage > UdsMessageConstPtr
Definition: uds_message.h:69